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
/* | |
* (C) Copyright 2002 | |
* Gary Jennejohn, DENX Software Engineering, <[email protected]> | |
* | |
* See file CREDITS for list of people who contributed to this | |
* project. | |
* | |
* This program is free software; you can redistribute it and/or |
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
sha1.c:303: error: insn does not satisfy its constraints: | |
(insn 13 12 14 2 sha1.c:289 (set (reg/f:SI 3 r3 [143]) | |
(reg/f:SI 13 sp)) 174 {*thumb1_movsi_insn_osize} (expr_list:REG_EQUIV (plus:SI (reg/f:SI 13 sp) | |
(const_int 0 [0x0])) | |
(nil))) | |
sha1.c:303: internal compiler error: in reload_cse_simplify_operands, at postreload.c:397 | |
Please submit a full bug report, | |
with preprocessed source if appropriate. | |
See <file:///usr/share/doc/gcc-4.4/README.Bugs> for instructions. | |
make[1]: *** [sha1.o] Error 1 |
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
#!/usr/bin/env python | |
# the number of permutations of a n length list is n! | |
from itertools import permutations, islice | |
# recipe from itertools library documentation. | |
def take(n, iterable): | |
"Return first n items of the iterable as a list" | |
return list(islice(iterable, n)) |
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
#!/usr/bin/env python | |
def f(n): | |
if n < 0: return 0 | |
if n == 0: return 1 | |
return f(n - 1) + f(n - 2) | |
for i in range(0, 10): |
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
#!/usr/bin/env python | |
from operator import mul | |
import sys | |
# from problem10.py | |
def sieve_primes(num): | |
numbers = [True] * num; |
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
def qsort(l): | |
if len(l) == 0: | |
return [] | |
if len(l) == 1: | |
return l | |
# pick a random pivot | |
pivot = l[random.randint(0, len(l)-1)] |
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
diff --git a/Makefile b/Makefile | |
index 60d91f7..6a5bdad 100644 | |
--- a/Makefile | |
+++ b/Makefile | |
@@ -1,7 +1,7 @@ | |
VERSION = 3 | |
PATCHLEVEL = 0 | |
SUBLEVEL = 0 | |
-EXTRAVERSION = -rc7 | |
+EXTRAVERSION = |
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
master + corr. - 0 | |
|\ | |
| \ | |
0 \ | |
| 0 - stable w/ correction => lsv90 | |
master - 0 | | |
| 0 - stable | |
0 / | |
| / | |
|/ |
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
$ git log | egrep -i 'author.*@ericsson.com' | sort -u | |
Author: Anders Franzen <[email protected]> | |
Author: Anders Franzen <[email protected]> | |
Author: Guenter Roeck <[email protected]> | |
Author: Hans Schillstrom <[email protected]> | |
Author: Håkon Løvdal <[email protected]> | |
Author: Jon Maloy <[email protected]> | |
Author: Jon Paul Maloy <[email protected]> | |
Author: Jonas Sjöquist <[email protected]> | |
Author: Kerstin Jonsson <[email protected]> |
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
/** | |
* | |
*/ | |
package se.redsox; | |
import org.jivesoftware.smack.Connection; | |
import org.jivesoftware.smack.ConnectionConfiguration; | |
import org.jivesoftware.smack.XMPPConnection; | |
import org.jivesoftware.smack.XMPPException; | |
import org.jivesoftware.smack.Roster; |
OlderNewer