Skip to content

Instantly share code, notes, and snippets.

View jumarome's full-sized avatar

Juan Romero Santamaría jumarome

  • Guayaquil-Ecuador
View GitHub Profile
@jumarome
jumarome / 0_reuse_code.js
Created October 14, 2015 22:40
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@jumarome
jumarome / gist:986b8f3d0d38599c6dbc81415d92387e
Created June 7, 2017 14:50
Remove local branches that do not exist in remote
git fetch --prune
git branch -r | awk '{print $1}' | egrep -v -f /dev/fd/0 <(git branch -vv | grep origin) | awk '{print $1}' | xargs git branch -D
@jumarome
jumarome / gist:565972f58a40b2cb1507fd1bb17b1b99
Created February 7, 2018 20:37
Undo last commit preserving changes
git reset --soft HEAD~1
@jumarome
jumarome / Bootstrap 3 Breakpoints
Created January 27, 2019 00:32 — forked from bretterer/Bootstrap 3 Breakpoints
Bootstrap 3 Breakpoints
/* Tiny Devices: Phones */
@media (max-width: 767px) {
}
/* Small Devices: Tablets */
@media (min-width: 768px) and (max-width: 992px) {
}
/* Medium Devices: Desktops */
@jumarome
jumarome / script.sql
Last active April 5, 2021 19:56
Migracion DAP 2021
set @dap_wf_service_id = 140;
set @tce_id = 36582;
set @jumarome_id = 259618;
set @dap_service_type = 6;
set @warehouse_id = 620;
set @migration_description = 'bodega_dap';
set @support_user_id = 260408;