MOVED TO REPO:
This file contains hidden or 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
let element = window; | |
Object.keys(window).forEach((key) => { | |
if (/^on/.test(key)) { | |
element.addEventListener(key.slice(2), (event) => { | |
if(event.type.includes("mouse") || event.type.includes("pointer") || event.type.includes("key")) return; | |
console.log(event); | |
}); | |
} | |
}); |
This file contains hidden or 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
{ | |
// Global | |
"window.restoreWindows": "folders", | |
"editor.wordWrap": "on", | |
"editor.formatOnSave": true, | |
"editor.formatOnPaste": true, | |
"editor.formatOnType": true, | |
"editor.tabSize": 2, | |
// Theming / setup |
This file contains hidden or 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/sh | |
# Script to copy files from GCS bucket to Bunny(.net) Storage. | |
# This script assumes you're logged into the `gcloud` cli, and | |
# that all the files are at the top-level of the bucket and/or zone. | |
# Usage: | |
# ./copy.sh <BUCKET> <ZONE> <PASSWORD> [FLAGS] | |
# Arguments: | |
# $1: GCS bucket ID |
This file contains hidden or 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/sh | |
# Script to copy files from GCS bucket to Bunny(.net) Storage. | |
# This script assumes you're logged into the `gcloud` cli, and | |
# that all the files are at the top-level of the bucket and/or zone. | |
# Usage: | |
# ./copy.sh <BUCKET> <ZONE> <PASSWORD> [FLAGS] | |
# Arguments: | |
# $1: S3 bucket ID |
This file contains hidden or 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
{ | |
"dependencies": { | |
"axios": "^1.4.0" | |
} | |
} |
This file contains hidden or 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
{ | |
"name": "Schildi Element Dark", | |
"is_dark": true, | |
"colors": { | |
"primary-color": "#0dbd8b" | |
} | |
} |
This file contains hidden or 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
{ | |
"name": "Default light theme", | |
"is_dark": false, | |
"colors": { | |
"accent-color": "#0DBD8B", | |
"primary-color": "#238CF5", | |
"warning-color": "#FF4B55", | |
"sidebar-color": "#27303A", | |
"roomlist-background-color": "#F3F8FD", |
This file contains hidden or 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
.organization.profile .ui.container:first-child { | |
margin: 38px auto; | |
} | |
.organization.profile p:empty { | |
display: none; | |
} | |
.organization.profile .org-avatar { | |
width: 130px; |
This file contains hidden or 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
/** General **/ | |
html { | |
margin-left: calc(100vw - 100%); | |
margin-right: 0; | |
scroll-behavior: smooth; | |
box-sizing: border-box; | |
background-color: rgb(255, 102, 102); | |
background: linear-gradient(-45deg, #F59E0B, #DB2777, #0995ad, #38BDF8); | |
background-size: 400% 400%; |