I hereby claim:
- I am teuffy on github.
- I am teuffy (https://keybase.io/teuffy) on keybase.
- I have a public key ASBrVDX68X9kEeozgtuFZG75R0a--Rwxk0Yvr61_OAzxewo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
See also List of materials about Software Design in Haskell
Junior | Middle | Senior | Architect | |
---|---|---|---|---|
Haskell level | Basic Haskell | Intermediate Haskell | Advanced Haskell | Language-agnostic |
Haskell knowledge scope | Learn you a Haskell | Get programming with Haskell | Haskell in Depth | Knows several languages from different categories |
Get programming with Haskell | Haskell in Depth | Functional Design and Architecture | ||
[Other books on Software Architecture in Haskell](https://github.com/graninas/software-design-in-haskell#Books-on-S |
Step 0: Download unetbootin and the latest nixos iso, put nixos iso onto unetbootin | |
Step 1: On OSX, Resize your OSX partition using disk utility (leave 25% - 75% as free space) | |
Step 2: Boot into NixOS from USB (hold down Alt-Option) | |
Step 3: Use fdisk to create 3 new partitions (nixosswap ~10GB, nixoshome ~75GB, nixosroot ~20GB) | |
Step 4: Init file systems / swaps | |
# mkfs.ext4 -L nixosroot /dev/sda4 | |
# mkswap -L nixosswap /dev/sda5 | |
# mkfs.ext4 -L nixoshome /dev/sda6 | |
Step 5: Mount | |
# mount /dev/sda4 /mnt |
library(ggplot2) | |
library(ggthemes) | |
library(plyr) | |
library(lubridate) | |
library(scales) | |
library(data.table) | |
options(scipen=999) | |
options(stringsAsFactors = FALSE) | |
rounds <- read.csv("2014-01-06-crunchbase_monthly_export_rounds.csv") |
#!/bin/sh | |
# Just copy and paste the lines below (all at once, it won't work line by line!) | |
# MAKE SURE YOU ARE HAPPY WITH WHAT IT DOES FIRST! THERE IS NO WARRANTY! | |
function abort { | |
echo "$1" | |
exit 1 | |
} | |
set -e |