-
2121208·text·28.4 KB·2012-02-24 06:38 UTC
1st Session, 41st Parliament,
60-61 Elizabeth II, 2011-2012
house of commons of canada
BILL C-30
An Act to enact the Investigating and Preventing Criminal Electronic Communications Act and to am
-
2121206·text·45.0 KB·2012-02-24 06:27 UTC
-
2121199·text·1.3 KB·2012-02-24 05:35 UTC
from math import sqrt
def primes(n):
""" Use sieve of Eratosthenes to find all primes <= n """
R = {x for x in range(2,n+1)} # search space
k = 2 # first prime
while True:
-
2121193·text·4.3 KB·2012-02-24 04:42 UTC
diff --git a/mythplugins/mytharchive/mytharchive/archiveutil.cpp b/mythplugins/mytharchive/mytharchive/archiveutil.cpp
index f3af594..dc50c67 100644
--- a/mythplugins/mytharchive/mytharchive/archive
-
2121191·text·2.7 KB·2012-02-24 04:32 UTC
Starting recovery on Fri Feb 24 04:14:17 2012
framebuffer: fd 4 (1024 x 768)
CWM-based Recovery v5.5.0.4
recovery filesystem table
=========================
0 /tmp ramdisk (null) (null) 0
1
-
2121188·text·10.5 KB·2012-02-24 03:38 UTC
22:01:10: <esf> i think i've had enough of this channel and its freaking mob tribe mentality
22:01:12: <FSSO> and PIS is right to be fair
22:01:14: <FSSO> everyone does it
22:01:15: <Swartaz> Myt,
-
2121186·text·1.3 KB·2012-02-24 03:34 UTC
Index: molecularbasis.h
===================================================================
--- molecularbasis.h (revision 2736)
+++ molecularbasis.h (working copy)
@@ -127,14 +127,17 @@
else
-
2121185·text·2.8 KB·2012-02-24 03:30 UTC
float leftrightRot = MathHelper.PiOver2;
float updownRot = -MathHelper.Pi / 10.0f;
protected override void Update(GameTime gameTime)
{
Vector3 moveVector = new
-
2121176·text·3.0 KB·2012-02-24 02:59 UTC
float leftrightRot = MathHelper.PiOver2;
float updownRot = -MathHelper.Pi / 10.0f;
const float rotationSpeed = 6.0f;
const float moveSpeed = 30.0f;
protected override void U
-
2121175·text·2.9 KB·2012-02-24 02:59 UTC
float leftrightRot = MathHelper.PiOver2;
float updownRot = -MathHelper.Pi / 10.0f;
protected override void Update(GameTime gameTime)
{
Vector3 moveVector = new
-
2121171·text·188 B·2012-02-24 02:29 UTC
#!/bin/bash
listurls=(10.233.2.221)
for url in "${listurls[@]}"
do
if ! result=$(curl -m2 -sSf "$url" 2>&1 > /dev/null)
then
printf 'Result is %s\n' "$result"
fi
done
-
2121170·text·63.4 KB·2012-02-24 02:23 UTC
-
2121169·cpp·2.9 KB·2012-02-24 02:22 UTC
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAX 10
// Tipo base dos elementos da lista
typedef struct elementos {
char nome[50];
// Outros elementos
} t_elemento
-
2121168·text·334 B·2012-02-24 02:20 UTC
(01:34:26) Skasi: lol is ja dasselbe wie \o/
(01:34:47) Skasi: oder lo/ lol \ol
(01:36:04) Skasi: oi
(01:36:51) Skasi: oder die alienversion: lö/ \ö/ \öl
(01:38:11) Skasi: oder die teletubbyversio
-
2121166·text·13.4 KB·2012-02-24 02:16 UTC
(set-logic QF_AUFBV)
(declare-fun EDX_0 () (_ BitVec 32))
(declare-fun EBX_0 () (_ BitVec 32))
(define-sort MEM () (Array (_ BitVec 5) (_ BitVec 8)))
(declare-fun MEM_ACTIVATION () MEM)
(declar
-
2121165·cpp·2.8 KB·2012-02-24 02:16 UTC
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAX 10
// Tipo base dos elementos da lista
typedef struct elementos {
char nome[50];
// Outros elementos
} t_elemento
-
2121164·text·1.7 KB·2012-02-24 02:14 UTC
2 Months 2 Million
2X6
Adventures of Petey and Petey
Ansky and Blah
Ansky vs Durrrr
Apex Predator
App Attack
Applied Math
Baby Steps
Basecamp
Blah and the Fiend
Bone Doggin it
Boosdoener
-
2121162·text·240 B·2012-02-24 02:14 UTC
Checking for core dump ...
savecore: reboot after panic: dump forced via kernel debugger
savecore: system went down at ...
savecore: writing compressed core to ...
savecore: writing compressed ker
-
2121159·text·165 B·2012-02-24 02:11 UTC
#!/bin/bash
listurls=(10.233.2.221)
for url in "${listurls[@]}"
do
if result=$(curl -sSf "$url")
then
printf 'Result is %s\n' "$result"
fi
done
-
2121154·text·2.6 KB·2012-02-24 02:07 UTC
Vector3 moveVector = new Vector3(0, 0, 0);
KeyboardState keyState = Keyboard.GetState();
if (keyState.IsKeyDown(Keys.Escape))
this.Exit();
if