- 13" Macbook Pro 3.3 GHz i7 (late 2016)
- Microsoft Surface Book (2016)
- Dell up3216q 32" monitor
| 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 |
| 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'); |
| 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" |
| 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 |
| // ==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== |
| 'use strict'; | |
| const https = require("https"); | |
| const uuid = require("uuid/v4"); | |
| const IotClient = require("azure-iothub").Client; | |
| const IotMessage = require("azure-iot-common").Message; | |
| // main function | |
| module.exports = function (context, eventHubMessage) { | |
| // log this for debugging |