Skip to content

Instantly share code, notes, and snippets.

View giandoso's full-sized avatar
🤘
Bringing good ideas to life!

João Pedro Giandoso giandoso

🤘
Bringing good ideas to life!
View GitHub Profile
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
!c::Send, ^c
!v::Send, ^v
!x::Send, ^x
!a::Send, ^a
!z::Send, ^z
!y::Send, ^y
@giandoso
giandoso / YouTubeEnhancerConfig.json
Last active October 29, 2020 13:49
Enhancer for YoutTube extension quick setup
{
"version":"2.0.101",
"settings":{
"autofocusevents":"ads,annotations,cinema,size,boost,loop,speed,filters",
"autopausevideos":true,
"backgroundcolor":"#000000",
"backgroundopacity":85,
"blur":0,
"brightness":100,
"cinemamode":false,
@giandoso
giandoso / scroll_speed.md
Last active October 1, 2020 18:17
Melhora o scroll do mouse em VM 😁

1) Instalar o imwheel via bash

sudo apt-get install imwheel

2) Criar o .imwheelrc na raiz

gedit  ~/.imwheelrc 
@giandoso
giandoso / .bash_aliases
Last active July 9, 2022 10:23
Minhas aliases para bash 😁
# github aliases
alias gs='git status -sb'
alias ga='git add'
alias gaa='git add .'
alias gc='git checkout '
alias gcm='git commit -m'
alias gpush='git push origin master'
alias gpull='git pull origin master'
alias gamend='git commit -a --amend -m'
alias glog='git log --all --graph --decorate --oneline --abbrev-commit'