Some files for talk about Productivity Hacks.
View moving_checksum.R
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
library(dplyr) | |
library(ggplot2) | |
library(scales) | |
checksum <- function(bytes) { | |
Reduce(bitwXor, bytes) | |
} | |
# Generate message with: | |
# |
View install-wine.sh
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
#!/bin/bash | |
sudo dpkg --add-architecture i386 | |
curl -fsSL https://dl.winehq.org/wine-builds/Release.key | sudo apt-key add - | |
sudo apt-add-repository https://dl.winehq.org/wine-builds/ubuntu/ | |
sudo apt-add-repository https://dl.winehq.org/wine-builds/ubuntu/ | |
sudo apt-get update |
View rockabye-baby.sh
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
#!/bin/bash | |
# Dowload lullabies from Rockabye Baby! for offline use. | |
# | |
# https://www.youtube.com/channel/UC7LesmfW8QPP7mDYYLwW4Aw | |
cat <<EOF | xargs youtube-dl --extract-audio --audio-format mp3 -- | |
tl9eIKqplXg | |
-UUZRR8G8UI | |
aHq1MDvf4Wc |
View truffle.js
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
// Configuration for Truffle development console. | |
// | |
module.exports = { | |
networks: { | |
development: { | |
host: "localhost", | |
port: 9545, | |
network_id: "*", | |
gas: 4000000 | |
} |
View truffle.js
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
// Configuration for testrpc. | |
// | |
module.exports = { | |
networks: { | |
development: { | |
host: "localhost", | |
port: 8545, | |
network_id: "*", | |
gas: 4000000 | |
} |
View digg_reader_subscriptions.xml
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
<?xml version="1.0" encoding="UTF-8" ?> | |
<opml version="1.0"> | |
<head> | |
<title>Andrew B. Collier subscriptions in Digg Reader</title> | |
</head> | |
<body> | |
<outline text="Hyndsight" title="Hyndsight" type="rss" xmlUrl="http://feeds.feedburner.com/ProfessorRobJHyndman" htmlUrl="http://robjhyndman.com" /></body> | |
</opml> |
View Productivity Hacks - Buffon Needle.md
Some files for talk about Productivity Hacks.
Setup:
Launch a t2.2xlarge instance (8 cores) on AWS.
- Start a tmux session. Create two horizontal panes (Ctrl-b ").
sudo apt update && sudo apt install -y htop r-base
wget -O buffon-needle.R http://bit.ly/2HieqWc
View skeleton.stan
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
functions { # User-defined functions [Optional] | |
} | |
data { # Data (external) [Optional] | |
} | |
transformed data { # Preprocess data [Optional] | |
} | |
parameters { # Model parameters (must precede model) [Mandatory] | |
} | |
transformed parameters { # Preprocess parameters [Optional] |
View dated-backup.sh
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
#!/bin/bash | |
# Created a dated version of a file and persist on S3. | |
# | |
# Usage: | |
# | |
# dated-backup.sh file-to-backup.txt s3://name-of-bucket/ | |
FILE=$1 | |
BUCKET=$2 |
OlderNewer