This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
git stash list | |
echo "Enter stash number to rename" | |
read stash_number | |
echo "Enter new name" | |
read new_name | |
stash_name="stash@{${stash_number}}" | |
echo "$stash_name" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const wasTouched = () => { | |
myFrameworkOfChoice.dispatchEvent('USER_HAS_TOUCHED', true); | |
window.removeEventListener('touchstart', wasTouched, false); | |
window.addEventListener('mousedown', wasClicked, false); | |
}; | |
const wasClicked = () => { | |
myFrameworkOfChoice.dispatchEvent('USER_HAS_TOUCHED', false); | |
window.removeEventListener('mousedown', wasClicked, false); | |
window.addEventListener('touchstart', wasTouched, false); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git log --pretty=format:"%h - %an, %ar : %s" --author="Vinny Fonseca" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
['change', 'keyup', 'paste', 'input', 'propertychange', 'every_other_event_you_want'].forEach(eventType => { | |
[...document.querySelectorAll('SELECTOR')].forEach(element => { | |
element.addEventListener(eventType, (event) => { | |
console.log(event); | |
// Your callback here | |
}, false); | |
}); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const popup = function (url, title, w = 640, h = 320) { | |
let l = (screen.width / 2) - (w / 2); | |
let t = (screen.height / 2) - (h / 2); | |
return window.open(url, title, ` | |
toolbar=no, | |
location=no, | |
directories=no, | |
status=no, | |
menubar=no, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function scrollFBTo(y){ | |
FB.Canvas.getPageInfo(function(pageInfo) { | |
$({y: pageInfo.scrollTop}).animate({ | |
y: y | |
}, { | |
duration: 500, | |
step: function(offset) { | |
FB.Canvas.scrollTo(0, offset); | |
} | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
table[class="mob-show"], | |
tr[class="mob-show"], | |
td[class="mob-show"], | |
span[class="mob-show"], | |
a[class="mob-show"], | |
img[class="mob-show"] { | |
display: none !important; | |
font-size: 0 !important; | |
width: 0 !important; | |
height: 0 !important; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const rand = (min, max) => Math.floor(Math.random() * (max - min)) + min; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var appId = 'XXXXXXXXXXXXXXX'; | |
// Taken from the App's configuration page | |
window.fbAsyncInit = function() { | |
FB.init({ | |
appId: appId, | |
status: true, | |
cookie: true, | |
xfbml: true | |
}); |
NewerOlder