- [ ] Collect Loose Papers and Materials: Pull out all miscellaneous pieces of paper, business cards, receipts, and so on that have crept into the crevices of your desk, clothing, and accessories. Put it all in your in-tray for processing.
- [ ] Get “IN” to Zero: Review any meeting notes and miscellaneous scribbles on notepaper or in your mobile devices. Decide and list any action items, projects, waiting-fors, calendar events, and someday/maybes, as appropriate. File any reference notes and materials. Get the “in” areas of e-mails, texts, and voice mails to
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
{pkgs, ...}: | |
{ | |
environment.systemPackages = with pkgs; [ | |
pass | |
isyncUnstable | |
msmtp | |
notmuch | |
pinentry_qt5 | |
]; |
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
// Bookmarklet Usage: | |
javascript:(function () { | |
var audio = new Audio('https://notificationsounds.com/notification-sounds/definite-555/download/ogg'); | |
var targetNode = document.getElementsByClassName("ng-toast__list")[0]; | |
var config = { | |
childList: true, | |
subtree: true | |
}; |
I hereby claim:
- I am jethrokuan on github.
- I am jethroksy (https://keybase.io/jethroksy) on keybase.
- I have a public key whose fingerprint is 9A69 81EE 6543 8CBF 592A C3D5 E25D BF2B EE01 EB11
To claim this, I am signing this object:
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
Latency Comparison Numbers | |
-------------------------- | |
L1 cache reference 0.5 ns | |
Branch mispredict 5 ns | |
L2 cache reference 7 ns 14x L1 cache | |
Mutex lock/unlock 25 ns | |
Main memory reference 100 ns 20x L2 cache, 200x L1 cache | |
Compress 1K bytes with Zippy 3,000 ns 3 us | |
Send 1K bytes over 1 Gbps network 10,000 ns 10 us | |
Read 4K randomly from SSD* 150,000 ns 150 us ~1GB/sec SSD |
I hereby claim:
- I am jethrokuan on github.
- I am jethroksy (https://keybase.io/jethroksy) on keybase.
- I have a public key ASBZCMhhv_7BDI6w28eRM6y_z8u_0S6xKGOFG2cbq02Akgo
To claim this, I am signing this object:
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
/** | |
* A simple theme for reveal.js presentations, derived from serif.css | |
* It's in the spirit of the Metropolis theme for beamer https://github.com/matze/mtheme | |
* | |
* This theme is Copyright (C) 2016 Vince Hodges, http://sourdoughlabs.com - it is MIT licensed. | |
*/ | |
@import url('https://fonts.googleapis.com/css?family=Fira+Sans'); | |
.reveal a { |
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
for file in ~/.config/fish/conf.d/*.fish | |
source $file | |
end |
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
(ns shim | |
(:gen-class)) | |
(defn -main [& argv] | |
(require 'my.app.entrypoint) | |
(apply (resolve 'my.app.entrypoint/-main) argv)) |