Skip to content
View tibix's full-sized avatar
💭
🤷‍♂️
💭
🤷‍♂️

Block or report tibix

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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. Remote GITHUB Repo Setup Remote GITHUB Repo Setup
    1
    #!/bin/zsh	#!/bin/env python3
    2
    bold=$(tput bold)	import os
    3
    normal=$(tput sgr0)	import platform
    4
    
                  
    5
    
                  
  2. FZF + ssh/config FZF + ssh/config
    1
    #!/bin/zsh
    2
    
                  
    3
    set -A complete_ssh $(
    4
            (awk '!/\*/ && /^Host /{print $2}' ~/.ssh/config;) | sort -u
    5
    )
  3. Setup MySQL on MacOS Setup MySQL on MacOS
    1
    # Start mysql service
    2
    brew services start mysql
    3
    
                  
    4
    # Run mysql_secure_install and follow the steps
    5
    mysql_secure_installation
  4. tmux config tmux config
    1
    bind k send-keys -t.- 'tmkill' Enter
    2
    
                  
    3
    # so that escapes register immidiately in vim
    4
    set -sg escape-time 0
    5
    
                  
  5. Clone all your GitHub repos in one go Clone all your GitHub repos in one go
    1
    #!/bin/env python3
    2
    import os
    3
    import platform
    4
    
                  
    5
    # get current OS