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
// ==UserScript== | |
// @name Google Sports Calendar | |
// @version 1.0.0 | |
// @author gonza7aav | |
// @match https://www.google.com/* | |
// @grant none | |
// @run-at context-menu | |
// ==/UserScript== | |
(function() { |
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
#!/usr/bin/bash | |
# USAGE: ./exportAPK appname | |
# get the list of packages | filter by the appname | |
APK_PATH=$(adb shell pm list packages -f | grep -o /data/app/.*$1.*base\.apk) | |
# transfer the apk file to the running folder | |
adb pull '.'$APK_PATH $1'.apk' | |
# kill the adb server |
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
// ==UserScript== | |
// @name Steam Gifts Enhancer | |
// @description This will remove the giveaways already entered in Steam Gifts | |
// @version 1.0.2 | |
// @author gonza7aav | |
// @match https://www.steamgifts.com/ | |
// @match https://www.steamgifts.com/giveaways/ | |
// @match https://www.steamgifts.com/giveaways/search?* | |
// @grant none | |
// @run-at context-menu |
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
// ==UserScript== | |
// @name Steam Card Exchange Enhancer | |
// @description This will add the column 'Price per Badge' to Inventory Watchlist in Steam Card Exchange | |
// @version 2.0.5 | |
// @author gonza7aav | |
// @match https://www.steamcardexchange.net/index.php?userlist | |
// @grant none | |
// @run-at context-menu | |
// @icon https://www.steamcardexchange.net/include/design/img/favicon_blue_small.png | |
// ==/UserScript== |
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
"Encapsulation principle": { | |
"prefix": ["encapsulation", "getter", "setter", "private"], | |
"body": [ | |
"private ${1:type} ${2:variable};", | |
"", | |
"private void ${2/(.*)/set${1:/capitalize}/} (${1:type} _${2:variable}) {", | |
"\tthis.${2:variable} = _${2:variable};", | |
"}", | |
"", | |
"public ${1:type} ${2/(.*)/get${1:/capitalize}/} () {", |
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
/* | |
Netflix - List Exporter | |
This will download your list as a JSON file | |
*/ | |
/* | |
🚀 Usage | |
1. Go to Netflix | |
2. Go to your List | |
3. Open the browser console |