TL; DR
Option | Time taken to source zshrc |
---|---|
No Imports | 1152ms |
Import in a single line | 1158ms |
Import in multiple export statements |
1169ms |
* Title 1 | |
** Meeting notes | |
*** Meeting notes: Bob | |
**** 2020-08-01 | |
**** 2020-07-01 |
$ xdg-mime query default "text/html" | |
signal-desktop.desktop | |
$ xdg-mime default firefox.desktop "text/html" | |
$ xdg-mime query default "text/html" | |
firefox.desktop |
33.59 | B' U' L B R B L2 F' U B2 L' F U' F L' U B2 R U2 F | 1584613820382 | |
---|---|---|---|
42.49 | R' F U' F2 U R' F' L2 F' R2 U F' D2 F2 D' L2 D R' F R | 1584613891702 | |
33.01 | L B2 L' B' D' F' L D' R D2 F U2 F U R D2 L B2 R' D | 1584613955023 | |
19.82 | D F U2 L F U' B' R' D F U' L' U B' D2 R F' L2 U' R2 | 1584614000768 | |
27.21 | U' F2 D R' B' R' U' F' L U2 F R B' R2 F U' R2 F2 R2 F2 | 1584614054753 | |
25.79 | R2 F2 L2 B L B2 U2 B R F2 L F' U2 F L2 U2 R D2 L' F2 | 1584614106825 | |
27.56 | D L2 D L' D' R2 U B2 L2 F D B D2 F L U L F L D' | 1584614164675 | |
30.72 | R B D' R F2 U' L' D2 R' U B R' U' B2 D' F' D' B2 R2 B' | 1584614220796 | |
28.41 | F' U F2 L2 U2 L' F R B2 U B U' R' F2 R B L' U2 R' U' | 1584614290222 | |
29.63 | F2 L2 F' U R B2 U2 L' D F2 R2 U2 L' U R D2 B' L F2 L2 | 1584614345661 |
Option | Time taken to source zshrc |
---|---|
No Imports | 1152ms |
Import in a single line | 1158ms |
Import in multiple export statements |
1169ms |
javascript: | |
var url = location.href; | |
if (url.match(/https:\/\/github.com\//)) { | |
var baseRemoved = url.replace('https://github.com/', ''); | |
var components = baseRemoved.split('/'); | |
if (components.length >= 2) { | |
var account = components[0]; | |
var repo = components[1]; | |
var newURL = "https://circleci.com/gh/" + account + "/" + repo; | |
location.href = newURL; |
$ sudo apt-get install git curl xsel | |
$ sudo apt-get install silversearch-ag jq | |
$ sudo apt-get install zsh | |
$ mkdir -p ~/code ~/sandbox ~/personal | |
$ ssh-keygen -t rsa -b 4096 | |
$ cat ~/.ssh/id_rsa.pub | xsel --input --clipboard | |
# Add your new SSH public key to your GitHub account! |
#!/usr/bin/env bash | |
rm -f flags-output | |
rm -f dependencies | |
rm -f flat_json | |
rm -f output.dot | |
rm -f tmp | |
curl -H"Authorization: $LD_API_KEY" https://app.launchdarkly.com/api/v2/flags/default > flags-output |
Institutions are a strange mix of the mass and the individual. They abstract. They behave according to a set of rules that substitute both for individual judgements and for the emotional responses that occur whenever individuals interact. The act of creating an institution dehumanizes it, creates an arbirtrary barrier between individuals.
Yet institutions are human as well. They reflect the cumulative personalities of those within them, especially their leadership. They tend, unfortunately, to mirror less admirable human traits, developing and protecting self-interest and even ambition. Institutions almost never sacrifice. Since they live by rules, they lack spontaneity. They try to order chaos not in the way an artist or scientist does, through a defining vision that creates structure and discipline but by closing off and isolating themselves from that which does not fit. They become bereaucratic.
The best institutions avoid the worst aspects of bureaucracy in two ways. Some are not really institutions at
NOT OK: 2010--11 - 503 | |
NOT OK: 2011-12 - 503 | |
NOT OK: %26 - 000 | |
NOT OK: 29 - 503 | |
NOT OK: accounting - 503 | |
NOT OK: Accounting.pdf - 503 | |
NOT OK: AG60124 - 503 | |
NOT OK: Aided - 503 | |
NOT OK: and - 503 | |
NOT OK: AND - 503 |
package main | |
import ( | |
"fmt" | |
"golang.org/x/net/html" | |
"log" | |
"strings" | |
) | |
// return the first tag in subtree for which reqd returns true (DFS) |