View twitch-chest-auto-click.js
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
// open a twitch channel with channel points | |
// open chat or popout chat | |
// open inspector (Opera: CTRL + SHIFT + C, Chrome: CTRL + SHIFT + I, Firefox: F12) | |
// open console in tab | |
// copy / paste code + ENTER | |
// only works if you view a live stream. (just open chat is not enough) | |
if (document.querySelector('.community-points-summary').style.backgroundColor === '') { | |
var chestPoints = 0; |
View email-encrypt-decrypt.phtml
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
<?php | |
$email = 'software@insanitymeetshh.net'; | |
$emailEncode = quoteJSvalue(encryptEmail($email, '-2')); | |
function quoteJSvalue($value) { | |
return strtr( | |
json_encode((string)$value, JSON_HEX_AMP|JSON_HEX_APOS|JSON_HEX_QUOT|JSON_HEX_TAG), | |
[ | |
'"' => '\'', |
View vscode-extensions.txt
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
IntelliSense for CSS class names in HTML / https://marketplace.visualstudio.com/items?itemName=Zignd.html-css-class-completion | |
PHP Intelephense / https://marketplace.visualstudio.com/items?itemName=bmewburn.vscode-intelephense-client | |
Twig / https://marketplace.visualstudio.com/items?itemName=whatwedo.twig | |
Vue Language Features (Volar) / https://marketplace.visualstudio.com/items?itemName=Vue.volar |
View vscode-user.json
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
{ | |
"workbench.colorTheme": "Default Dark+", | |
"files.autoSave": "onFocusChange", | |
"terminal.integrated.defaultProfile.windows": "Command Prompt" | |
} |
View gitconfig.ini
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
[alias] | |
al = "!git config --get-regexp ^alias\\." | |
br = branch | |
co = checkout | |
cod = checkout develop | |
com = checkout master | |
comn = checkout main | |
cop = checkout production | |
co1 = checkout 1.x | |
co2 = checkout 2.x |