-
Install 1Password CLI and jq.
brew install jq brew cask install 1password-cli
-
Sign in to 1Password for the first time:
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
#!/usr/bin/env bash | |
# Ask for the administrator password upfront | |
sudo -v | |
# Keep-alive: update existing `sudo` time stamp until `.osx` has finished | |
while true; do sudo -n true; sleep 60; kill -0 "$$" || exit; done 2>/dev/null & | |
############################################################################### | |
# General UI/UX # |
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
(flag:ad)(flag:ae)(flag:af)(flag:ag) | |
(flag:ai)(flag:al)(flag:am)(flag:an)(flag:ao) | |
(flag:aq)(flag:ar)(flag:as)(flag:at)(flag:au) | |
(flag:aw)(flag:az)(flag:ba)(flag:bb)(flag:bd) | |
(flag:be)(flag:bf)(flag:bg)(flag:bh)(flag:bi) | |
(flag:bj)(flag:bm)(flag:bn)(flag:bo)(flag:br) | |
(flag:bs)(flag:bt)(flag:bv)(flag:bw)(flag:by) | |
(flag:bz)(flag:ca)(flag:cc)(flag:cd)(flag:cf) | |
(flag:cg)(flag:ch)(flag:ci)(flag:ck)(flag:cl) | |
(flag:cu)(flag:cv)(flag:cx)(flag:cy)(flag:cz) |
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
SPEYSIDE | |
- Macallan 12 | |
LOWLAND | |
- Glenkinchie Distiller's Edition | |
HIGHLAND | |
- Glenmorangie Cellar 13 | |
SPEYSIDE (compare regular bottling vs. cask strength) |
As configured in my dotfiles.
start new:
tmux
start new with session name:
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
sub vcl_recv { | |
# Set the backend for the request if it should miss the cache. | |
set req.backend = backend; | |
# Send the request along to the cache lookup. | |
return(lookup); | |
} |
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
var loveit = function(){var e,el,interval=Math.random()*60000;e = new jQuery.Event("click");e.pageX=1;e.pageY=1;el = jQuery('.record_pile:last').nextAll('a').eq(2);turntable.lastMotionTime=new Date().getTime();el.hover().trigger(e);setTimeout(loveit, interval);};loveit(); |
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
var loveit = function(){ | |
var e,el,interval=Math.random()*60000; | |
e = new jQuery.Event("click"); | |
e.pageX=1; | |
e.pageY=1; | |
el = jQuery('.record_pile:last').nextAll('a').eq(2); | |
turntable.lastMotionTime=new Date().getTime(); | |
el.hover().trigger(e); | |
setTimeout(loveit, interval); | |
}; |