Skip to content

Instantly share code, notes, and snippets.

View Reta110's full-sized avatar

Rafael Torrealba Reta110

View GitHub Profile
#Watch the remote braches to look the list that we are going to delete:
git branch -r | sed 's/origin\/\(.*\)/\1/g' | cut -c 3- | grep -E 'fix_*' //->fix_ is the word to filter
RESULT:
fix_01032022_2
fix_01042022
fix_01042022_1
fix_01042022_2
_.each($('#data-table').bootgrid().data('.rs.jquery.bootgrid').rows, function(row){
});
@Reta110
Reta110 / check if it is undefined.js
Created February 23, 2018 14:05
How to know if it is undefined - Javascript
if (typeof value === "undefined") {
// ...
}