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
$triangle-color-1: #067da8; | |
$triangle-color-2: #89c6de; | |
.overlay { | |
height: 100%; | |
left: 0; | |
position: absolute; | |
top: 0; | |
width: 110%; |
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
[user] | |
name = John Doe | |
email = john@doe.git | |
[init] | |
defaultBranch = main | |
[credential] | |
helper = manager | |
[core] | |
autocrlf = true | |
[alias] |
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" | |
} |
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 |
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), | |
[ | |
'"' => '\'', |
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; |