duplicates = multiple editions
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
;;- -*-scheme-*- | |
;;; rabbit compiler | |
;;- This is the source code to the RABBIT Scheme compiler, by Guy Steele, | |
;;- taken from the Indiana Scheme repository and annotated by me, Darius | |
;;- Bacon. I converted it from all-uppercase to all-lowercase and | |
;;- reindented it with Emacs for better readability. I've added the | |
;;- comments starting with either ;- or ;*. Other comments are by Steele. | |
;;- The ;- comments were things I'd figured out, while ;* denoted things | |
;;- for me to look into. (Sometimes I didn't bother to type in the answer |
Edward Snowden answered questions after a showing of CITIZENFOUR at the IETF93 meeting; this is a transcript of the video recording.
For more information, see the Internet Society article.
#!/bin/bash | |
# load resources | |
xrdb -merge .Xresources | |
#xsetroot -solid '#222'& | |
# map caps lock as extra escape | |
xmodmap -e 'clear Lock' -e 'keycode 0x42 = Escape'& | |
# start clipboard manager | |
parcellite& |
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
VAGRANTFILE_API_VERSION = "2" | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |c| | |
c.vm.box = "thoughtpolice/nixos-13.10" | |
c.vm.provider "virtualbox" do |vb| | |
vb.gui = false; vb.memory = 4096; vb.cpus = 2 | |
vb.customize ["modifyvm", :id, "--natdnshostresolver1", "on"] | |
end |
// Just before switching jobs: | |
// Add one of these. | |
// Preferably into the same commit where you do a large merge. | |
// | |
// Contributors: @r2d2rigo, @joeldevahl, @msinilo, @_Humus_, | |
// @YuriyODonnell, @rygorous and myself. Never let these guys | |
// change jobs! :) | |
#define struct union |
Locate the section for your github remote in the .git/config
file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = [email protected]:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/*
to this section. Obviously, change the github url to match your project's URL. It ends up looking like this:
# Author: Vlad Niculae <[email protected]> | |
# Makes use of memory_profiler from Fabian Pedregosa | |
# available at https://github.com/fabianp/memory_profiler | |
from IPython.core.magic import Magics, line_magic, magics_class | |
@magics_class | |
class MemMagics(Magics): | |
@line_magic |
#!/usr/bin/env python | |
# | |
# Python Timer Class - Context Manager for Timing Code Blocks | |
# Corey Goldberg - 2012 | |
# | |
from timeit import default_timer | |