Skip to content
View ktlast's full-sized avatar

Block or report ktlast

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. hash_sha1.py hash_sha1.py
    1
    # Left rotate
    2
    def lrot(byte_string, offset):
    3
        for i in range(offset):
    4
            byte_string = byte_string[1:]+byte_string[0]
    5
        return byte_string
  2. Curl-Slack-Attachment: Send attachme... Curl-Slack-Attachment: Send attachments payload to slack via curl; uses single quotes to form payload with variables.
    1
    ## Send slack attachment via curl
    2
    
                  
    3
    ### I. Bot Token
    4
    - Note those single & double quotes around variables. 
    5
    - Note there are backticks around `$(hostname -I)` to style it as code block.
  3. daily-applescript daily-applescript Public

    一些簡化日常流程的 applescript;同時也是配合 ktlast blog 參考

    AppleScript

  4. mongodb-sync-snippet mongodb-sync-snippet Public

    Sync MongoDB data between 2 Clusters

    Python

  5. nginx-certbot nginx-certbot Public

    Forked from wmnnd/nginx-certbot

    Boilerplate configuration for nginx and certbot with docker-compose

    Shell

  6. watch-tx watch-tx Public

    在 terminal 用 shell script 持續觀察台指期報價,方便看盤

    Shell 1 1