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
Recommended by my teachers: | |
'Casing a Promised Land' by Goodall | |
'Credibility' by Kouzes & Posner | |
'Leading Change' by O’Toole | |
'Inviting Transformation' by Sonja Foss and Karen Foss | |
'Difficult Conversations: How to Discuss What Matters Most' by Douglas Stone | |
'Gendered Lives' by Julia Wood and Natalie Fixmer-Oraiz | |
'Visual Communication for Cyber Security - Beyond Awareness' by Van Deursen | |
'The Handbook of Communication and Security' by Hamilton and Bean |
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
brew cask install xquartz | |
./configure --with-features=huge --enable-multibyte --enable-rubyinterp=yes --enable-python3interp=yes --with-python3-config-dir=$(python3-config --configdir) --enable-perlinterp=yes --enable-luainterp=yes --enable-gui=athena --enable-cscope --prefix=/usr/local/ --with-x --disable-darwin | |
export DISPLAY=:0.0 |
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
// ==UserScript== | |
// @name Pinterest Autoplay Remover | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description pauses autoplaying / looping videos | |
// @author @noopkat | |
// @match https://www.pinterest.com | |
// @grant none | |
// ==/UserScript== |
- How many keys do you want ie. do you need function keys / cursor arrow keys / numpad?
- Do you like loud clicky keys, bumpy tactile, or linear fast to hit keys?
- Do you want to be able to swap out switches for different ones or mix / match your switches?
- Do you need it to be portable?
- Do you want LED lighting?
- Do you want to program it with macros to be highly custom?
- Do you want USB-c?
- Windows or Mac?
- Do you want split / ergonomic / ortholinear?
- Do you want to use custom / creative keycap sets or keep it OEM?
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
on is_running(appName) | |
tell application "System Events" to (name of processes) contains appName | |
end is_running | |
set iTunesRunning to is_running("iTunes") | |
set noMusic to "no music is playing" | |
set song to noMusic | |
if iTunesRunning then | |
set song to run script "tell application \"iTunes\" to if player state is playing then \"now playing: \" & name of current track & \" by \" & artist of current track" |
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
nodemon --exec npm test |
I hereby claim:
- I am noopkat on github.
- I am noopkat (https://keybase.io/noopkat) on keybase.
- I have a public key whose fingerprint is F4D8 088B F58E 8AAF 9496 E1DE EE33 65D4 1D8D C876
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
const setup = () => { | |
const nearestColorScript = document.createElement('script'); | |
document.body.appendChild(nearestColorScript); | |
nearestColorScript.onload = onScriptLoad; | |
nearestColorScript.src = 'https://cdn.rawgit.com/dtao/nearest-color/a017c25b/nearestColor.js'; | |
} | |
const onScriptLoad = () => { | |
console.log('nearest color script loaded'); |
NewerOlder