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
#Spider Websites with Wget – 20 Practical Examples | |
Wget is extremely powerful, but like with most other command line programs, the plethora of options it supports can be intimidating to new users. Thus what we have here are a collection of wget commands that you can use to accomplish common tasks from downloading single files to mirroring entire websites. It will help if you can read through the wget manual but for the busy souls, these commands are ready to execute. | |
1. Download a single file from the Internet | |
wget http://example.com/file.iso | |
2. Download a file but save it locally under a different name | |
wget ‐‐output-document=filename.html example.com |
/* @flow */ | |
import * as I from "immutable"; | |
/** | |
* Define an immutable record intended for holding reducer state | |
* @param spec - the keys and their default values | |
* @return a state record factory function | |
*/ | |
export function defineRecord<T: Object>( |
04/26/2103. From a lecture by Professor John Ousterhout at Stanford, class CS142.
This is my most touchy-feely thought for the weekend. Here’s the basic idea: It’s really hard to build relationships that last for a long time. If you haven’t discovered this, you will discover this sooner or later. And it's hard both for personal relationships and for business relationships. And to me, it's pretty amazing that two people can stay married for 25 years without killing each other.
[Laughter]
> But honestly, most professional relationships don't last anywhere near that long. The best bands always seem to break up after 2 or 3 years. And business partnerships fall apart, and there's all these problems in these relationships that just don't last. So, why is that? Well, in my view, it’s relationships don't fail because there some single catastrophic event to destroy them, although often there is a single catastrophic event around the the end of the relation
.vagrant |
module Main | |
{- | |
Strictness always bothers me a little, since it forces you to do | |
things like fusion manually. This prohibits code reuse. I won't | |
elaborate on this too much since there is already a great blog | |
post about this: | |
http://augustss.blogspot.co.uk/2011/05/more-points-for-lazy-evaluation-in.html |
type zero = unit | |
type 'a succ = unit -> 'a | |
type one = zero succ | |
type 'a plus_1 = 'a succ | |
type 'a plus_2 = 'a plus_1 plus_1 | |
type 'a plus_4 = 'a plus_2 plus_2 | |
type 'a plus_8 = 'a plus_4 plus_4 |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
int addi(int a, int b) { | |
return a + b; | |
} | |
char *adds(char *a, char *b) { | |
char *res = malloc(strlen(a) + strlen(b) + 1); |
(defun call-process-on-buffer-to-string (command) | |
(with-output-to-string | |
(call-process-region (point-min) (point-max) shell-file-name nil standard-output nil shell-command-switch command))) | |
(defun flow-type () | |
(interactive) | |
(let* ((info (json-read-from-string | |
(call-process-on-buffer-to-string | |
(format "flow type-at-pos --json %d %d" (line-number-at-pos) (current-column))))) |
;;; as_keith_midi.xtm -- live performance | |
;; based on Andrew Sorensen "A Study in Keith" Impromptu performance | |
;; "A Study In Keith" is a work for solo piano (NI's Akoustik Piano) | |
;; by Andrew Sorensen inspired by Keith Jarrett's Sun Bear concerts. | |
;; Orginal code transposed to Extempore | |
;; http://extempore.moso.com.au | |
;; | |
;; Author: cv | |
;; Keywords: extempore, live-coding, impromptu, keith jarret |