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
#!/bin/sh -e | |
rm -vrf ~/Library/Preferences/Ableton/ | |
rm -vrf ~/Library/Preferences/Ableton/ | |
rm -vrf ~/Library/Application Support/Ableton/ | |
rm -vrf ~/Library/Caches/Ableton/ | |
rm -vrf ~/Library/Preferences/com.ableton.live.* | |
rm -vrf ~/Library/Application Support/Propellerhead Software/ReWire/'Ableton Live Engine'* |
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
const url = "https://sourcehut.org/blog/2020-04-20-prioritizing-simplitity/"; | |
const readingTime = require('reading-time'); | |
const innertext = require('innertext'); | |
const https = require('https'); | |
https.get(url, function(res) { | |
console.log(res.statusCode); | |
res.setEncoding('utf8'); | |
res.on('data', function(data) { |
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 gi="git add -i" | |
alias gv="git commit -v" | |
g() { | |
case $1 in | |
ai) | |
git add -i | |
;; | |
a) | |
git commit -v --amend | |
;; |
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
<html> | |
<body> | |
<div style="display:flex;justify-content:space-around"> | |
<div> | |
<h1>11</h1> | |
<div style="display:flex"> | |
<div style="background-color:rgb(15,38,47);width:20px;height:20px"></div> | |
<div id="rgb_15_38_47">(15,38,47)</div> |
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
" Essentials | |
let mapleader = "," | |
syntax on | |
set nu ru et | |
set ts=2 sts=2 sw=2 | |
set cursorline | |
set hlsearch | |
set nocompatible | |
filetype off |
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
{ | |
"version": 1, | |
"notes": "", | |
"documentation": "stick to https://docs.qmk.fm (=\n", | |
"keymap": "crkbd_rev1_malik", | |
"keyboard": "crkbd/rev1", | |
"layout": "LAYOUT_split_3x5_3", | |
"layers": [ | |
[ | |
"KC_Q", "KC_W", "KC_E", "KC_R", "KC_T", |
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
package proxy | |
import ( | |
"io" | |
"net" | |
"sync" | |
log "github.com/Sirupsen/logrus" | |
) |
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
/* Thanks to https://css-tricks.com/snippets/css/media-queries-for-standard-devices */ | |
/* iPhones */ | |
/* ----------- iPhone 4 and 4S ----------- */ | |
/* Portrait and Landscape */ | |
@media only screen | |
and (min-device-width: 320px) | |
and (max-device-width: 480px) |
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
head | |
script(src="https://unpkg.com/vue/dist/vue.js") | |
script(src="https://unpkg.com/vue-router/dist/vue-router.js") | |
body | |
header.flex.space-evenly.rrv.color3.bg-color5(unselectable="on") | |
img(src="https://i.postimg.cc/PxVKkvJF/75-B7-E4-CB-4623-4-F71-9-CB1-538-E9-F9-C900-D.png") | |
div.flex.col.space-evenly | |
div.flex.flex-end | |
div.flex-grow-1 | |
div.flex-grow-1 |
NewerOlder