annotate paste/paste.31141 @ 9285:8320c9c4620f

<oerjan> learn Umlaut is German for "hum aloud", an important feature of the German language. It is indicated by putting two dots over the vowel of the syllable.
author HackBot
date Sat, 15 Oct 2016 00:04:47 +0000
parents e037173e0012
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
e037173e0012 Initial import.
HackBot
parents:
diff changeset
1 2006-11-26.txt:00:28:23: <oerjan> >>> for q, a in zip(questions, answers):
e037173e0012 Initial import.
HackBot
parents:
diff changeset
2 2007-02-26.txt:16:01:56: <oerjan> >>>True
e037173e0012 Initial import.
HackBot
parents:
diff changeset
3 2007-02-26.txt:16:11:59: <oerjan> >>>1+2
e037173e0012 Initial import.
HackBot
parents:
diff changeset
4 2007-02-26.txt:16:15:41: <oerjan> >>> 1+2
e037173e0012 Initial import.
HackBot
parents:
diff changeset
5 2007-02-26.txt:16:16:16: <oerjan> >>>test
e037173e0012 Initial import.
HackBot
parents:
diff changeset
6 2007-02-26.txt:16:18:05: <oerjan> >>>1+2
e037173e0012 Initial import.
HackBot
parents:
diff changeset
7 2007-02-26.txt:16:18:27: <oerjan> >>> "Pascal" < "Python"
e037173e0012 Initial import.
HackBot
parents:
diff changeset
8 2007-02-26.txt:16:18:39: <oerjan> >>>"Test"
e037173e0012 Initial import.
HackBot
parents:
diff changeset
9 2007-02-26.txt:16:20:35: <oerjan> >>>"C++" < "Everything"
e037173e0012 Initial import.
HackBot
parents:
diff changeset
10 2007-02-26.txt:18:48:33: <oerjan> >>> "C++" > "Calamari"
e037173e0012 Initial import.
HackBot
parents:
diff changeset
11 2007-03-18.txt:17:47:39: <oerjan> >i don't see any such restriction mentioned for the underlying function: http://msdn2.microsoft.com/en-us/library/ms712879.aspx
e037173e0012 Initial import.
HackBot
parents:
diff changeset
12 2007-04-15.txt:20:26:42: <oerjan> > 0 that is
e037173e0012 Initial import.
HackBot
parents:
diff changeset
13 2007-07-21.txt:00:47:39: <oerjan> >> would call the bind method of its left argument.
e037173e0012 Initial import.
HackBot
parents:
diff changeset
14 2007-07-23.txt:22:40:19: <oerjan> > 2
e037173e0012 Initial import.
HackBot
parents:
diff changeset
15 2007-07-25.txt:02:36:49: <oerjan> > (\(_:_) (_:_) -> True) [] undefined
e037173e0012 Initial import.
HackBot
parents:
diff changeset
16 2007-08-12.txt:01:01:22: <oerjan> > I know that for irrational a there are infinitely many integer p and q such
e037173e0012 Initial import.
HackBot
parents:
diff changeset
17 2007-08-12.txt:01:01:22: <oerjan> > that |a - p/q| < q^-2
e037173e0012 Initial import.
HackBot
parents:
diff changeset
18 2007-08-12.txt:01:01:22: <oerjan> > and that in general you cannot do better than the exponent -2.
e037173e0012 Initial import.
HackBot
parents:
diff changeset
19 2007-08-19.txt:21:34:20: <oerjan> >_O
e037173e0012 Initial import.
HackBot
parents:
diff changeset
20 2007-08-27.txt:20:27:56: <oerjan> >>> sch (cons 3 3)
e037173e0012 Initial import.
HackBot
parents:
diff changeset
21 2007-08-27.txt:20:43:24: <oerjan> >>> sch (+ 5 5)
e037173e0012 Initial import.
HackBot
parents:
diff changeset
22 2007-08-27.txt:20:43:41: <oerjan> >>> sch (if (< 0 1) 1 2)
e037173e0012 Initial import.
HackBot
parents:
diff changeset
23 2007-08-27.txt:20:45:54: <oerjan> >>> sch (define fib (lambda (n) (if (< n 2) 1 (+ (fib (- n 1) (- n 2))))))
e037173e0012 Initial import.
HackBot
parents:
diff changeset
24 2007-08-27.txt:20:46:08: <oerjan> >>> sch (fib 5)
e037173e0012 Initial import.
HackBot
parents:
diff changeset
25 2007-08-27.txt:20:46:52: <oerjan> >>> sch (define fib (lambda (n) (if (< n 2) 1 (+ (fib (- n 1)) (fib (- n 2)))))))
e037173e0012 Initial import.
HackBot
parents:
diff changeset
26 2007-08-27.txt:20:46:57: <oerjan> >>> sch (fib 5)
e037173e0012 Initial import.
HackBot
parents:
diff changeset
27 2007-08-27.txt:20:56:04: <oerjan> >>> sch ((k 1) 2)
e037173e0012 Initial import.
HackBot
parents:
diff changeset
28 2007-08-27.txt:20:57:58: <oerjan> >>> sch (((s (lambda (x) (lambda (y) (+ x y)))) (lambda (y) (+ y 1))) 1)
e037173e0012 Initial import.
HackBot
parents:
diff changeset
29 2007-08-27.txt:21:07:43: <oerjan> >>> sch (((s (lambda (x) (lambda (y) (+ x y)))) (lambda (y) (+ y 1))) 1)
e037173e0012 Initial import.
HackBot
parents:
diff changeset
30 2007-08-27.txt:21:09:25: <oerjan> >>> sch s
e037173e0012 Initial import.
HackBot
parents:
diff changeset
31 2007-08-27.txt:21:10:00: <oerjan> >>> sch (((s (lambda (x) (lambda (y) (+ x y)))) (lambda (y) (+ y 1))) 1)
e037173e0012 Initial import.
HackBot
parents:
diff changeset
32 2007-08-27.txt:21:10:59: <oerjan> >>> sch (define i (lambda (a) a))
e037173e0012 Initial import.
HackBot
parents:
diff changeset
33 2007-08-27.txt:21:12:57: <oerjan> >>> sch (((s i) i) ((s i) i))
e037173e0012 Initial import.
HackBot
parents:
diff changeset
34 2007-08-27.txt:21:15:44: <oerjan> >>> sch (quote quote)
e037173e0012 Initial import.
HackBot
parents:
diff changeset
35 2007-08-27.txt:21:29:08: <oerjan> > liftM2 (,) [1..5] [1..5]
e037173e0012 Initial import.
HackBot
parents:
diff changeset
36 2007-09-04.txt:18:21:52: <oerjan> > mapAccumR (flip divMod) 10000 [60,60]
e037173e0012 Initial import.
HackBot
parents:
diff changeset
37 2007-09-14.txt:00:24:14: <oerjan> > 4 .&. 5
e037173e0012 Initial import.
HackBot
parents:
diff changeset
38 2007-09-21.txt:19:19:03: <oerjan> >_<
e037173e0012 Initial import.
HackBot
parents:
diff changeset
39 2007-10-10.txt:17:47:12: <oerjan> > let x ? y = x+y; infixr 5 ? in 2 ? 3
e037173e0012 Initial import.
HackBot
parents:
diff changeset
40 2007-10-10.txt:21:14:29: <oerjan> > '