Skip to content
View hebertluiz's full-sized avatar
🏠
Working from home
🏠
Working from home

Organizations

@SIRLab
Block or Report

Block or report hebertluiz

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

  1. tput terminfo basic color reference tput terminfo basic color reference
    1
    set_color () {
    2
    
                  
    3
        local arg2
    4
        case $2 in
    5
            bg|background)
  2. Function to help install yum package... Function to help install yum packages in scripts and show progress
    1
    install_packages () {
    2
    
                  
    3
        yum install  -y -q "$@" &
    4
        yum_pid=$!
    5
        spin='-\|/'
  3. File rename batch powershell File rename batch powershell
    1
    
                  
    2
    # Expecify below the filetype (extension)
    3
    # Change the expression {0:D3} to alter the naming scheme
    4
    
                  
    5
    $i=1; Get-ChildItem *.jpg | %{Rename-Item $_ -NewName ('{0:D3}.jpg' -f $i++)}
  4. Bash navigation shortcuts Bash navigation shortcuts
    1
    List of quick navigation on long comands in the bash terminal
    2
    Reference: https://www.skorks.com/2009/09/bash-shortcuts-for-maximum-productivity/
    3
    
                  
    4
    Ctrl + a – Go to the start of the command line
    5
    Ctrl + e – Go to the end of the command line
  5. hebertluiz.github.io hebertluiz.github.io Public

    Personal Site

    HTML

  6. zabbix_teams_notifier zabbix_teams_notifier Public

    Simple zabbix and MS Teams notifier with webhook

    Python 1