Skip to content

Instantly share code, notes, and snippets.

View stephanokrm's full-sized avatar
🏠
Working from home

Stephano Ramos stephanokrm

🏠
Working from home
  • Porto Alegre, RS - Brazil
View GitHub Profile
@stephanokrm
stephanokrm / no-cors-chrome.sh
Created July 8, 2020 19:41
Open Chrome from terminal without CORS
open -na Google\ Chrome --args --user-data-dir=/tmp/temporary-chrome-profile-dir --disable-web-security --disable-site-isolation-trial
@stephanokrm
stephanokrm / leveling.sh
Created May 10, 2019 10:59
Move Differences Between Branches to Another Folder
#!/usr/bin/env bash
for FILE in $(git diff --name-only desenvolvimento)
do
rsync -avzh --relative ${FILE} /absolute/path
done