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
gsettings set org.gnome.settings-daemon.plugins.power idle-brightness 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
Brutally Frank | |
The Razorbacks | |
Lee Rocker | |
The Paladins | |
Three Blue Teardrops | |
13 Cats | |
Swing Cats | |
The Head Cat | |
The Octanes | |
Kat Men |
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
git shortlog -s -n --all --no-merges |
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
750ml cashew milk | |
2.5 tbsp cacao powder | |
0.5 tsp vanilla | |
2 tbsp xylitol | |
[optional]: 1 tsp of cornstarch or potato starch (to add thickness) | |
blend |
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
750ml water | |
1 cup whole organic raw cashews | |
put in blender and mix until there're no cunks |
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
// <script> | |
class myXMLHttpRequest extends XMLHttpRequest { | |
constructor() { | |
super(); | |
this._open = this.open; | |
this.open = (method, target) => { | |
// TODO replace file: with http/https: here | |
console.warn(target); | |
var base = "https://gist.github.com/snshn/a3f09016986abb04da16b80382f6adc5"; | |
return this._open(method, new URL(target, base)); |
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
shnsplit -o flac -t "%p - %a - %n - %t" -f *.cue *.flac |
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
(function(w){ | |
if ('NativeXMLHttpRequest' in w) return; | |
// Preserve the native XMLHttpRequest class | |
w.NativeXMLHttpRequest = w.XMLHttpRequest; | |
class XMLHttpRequestEventTarget extends EventTarget { | |
constructor() { | |
super(); |
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
EN | DE | RU | |
---|---|---|---|
yes | ja | да | |
no | nein | нет | |
not | nicht | не | |
in | in | в | |
I | ich | я | |
you | dir | Вы | |
you | dich | тебя | |
in the | im | в |
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
/** | |
* Encode a UTF-16 string as a string of hexadecimal letters | |
*/ | |
function encodeIntoHex (string) { | |
var hex; | |
var hexString = ""; | |
for (var i = 0, ilen = string.length; i < ilen; i++) { | |
hex = string.charCodeAt(i).toString(16); | |
hexString += ("000" + hex).slice(-4); |
NewerOlder