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
// Utility Types | |
type Missing<A, B> = Omit<A, keyof B>; | |
type Extends<A, B extends A> = 1; | |
import { | |
Accessibility as TypesAccessibility, | |
BoundingBox as TypesBoundingBox, | |
BoxModel as TypesBoxModel, | |
Browser as TypesBrowser, | |
BrowserContext as TypesBrowserContext, |
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
$SHORTENED_DIRS = [PSCustomObject]@{ | |
'A:'='A';'B:'='B';'C:'='C';'D:'='D';'E:'='E';'F:'='F';'G:'='G';'H:'='H';'I:'='I';'J:'='J';'K:'='K';'L:'='L';'M:'='M'; | |
'N:'='N';'O:'='O';'P:'='P';'Q:'='Q';'R:'='R';'S:'='S';'T:'='T';'U:'='U';'V:'='V';'W:'='W';'X:'='X';'Y:'='Y';'Z:'='Z' | |
AppData='AppData' | |
Documents='Docs' | |
projects='proj' | |
Images='Imgs' | |
Downloads='Dwnlds' | |
Pictures='Pics' | |
Videos='Vids' |
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
/** | |
* Created by Aram Becker - 09/25/2019 | |
* You are free to use and modify this by any means, but it would be great | |
* if you would credit me. | |
* | |
* http://arambecker.de | |
**/ | |
function coupleSlider(slider, box, round) { | |
round = typeof round == "number" ? Math.pow(10, round) : 100; |
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
body { | |
background: #1e1e1e; | |
filter: invert(1) hue-rotate(180deg); | |
} | |
img { | |
filter: invert(1) hue-rotate(180deg); | |
} |
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
innerWheelSize=60/2; | |
wheelThickness=3; | |
spokeHeight=7; | |
spokeWidth=2; | |
boltInner=3/2; | |
boltDistance=3; | |
boltSlopeLength=5; | |
boltSides=6; |
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
# Shell script for automatically creating file collections | |
# initally written to reduce the number of games when downloading | |
# retropie rom collections | |
#!/bin/bash | |
version="0.3.1" | |
collection=() | |
collectionname="" | |
collsize=0 |