-
2101165·text·1.2 KB·2012-01-08 15:59 UTC
import urllib2, sys, os
def main(argv):
URL = ''
req = urllib2.Request(URL)
def listdirs(folder):
return [d for d in os.listdir(folder) if os.path.isdir(os.path.join(fol
-
2101160·text·1.8 KB·2012-01-08 15:51 UTC
Bob’s alarm clock rings at 8:30 Monday morning, just like every other weekday.
But Bob had a wild weekend, and reaches for the SNOOZE button.
And that’s when the action starts, and the Java-enabled
-
2101156·text·77 B·2012-01-08 15:48 UTC
#Configured by GUI
fxsks = 2
fxoks = 1
loadzone = hu
defaultzone = hu
-
2101155·text·79 B·2012-01-08 15:47 UTC
#Configured by GUI
fxsks = 2
fxoks = 1
loadzone = hu
defaultzone = hu
-
2101153·text·6.8 KB·2012-01-08 15:41 UTC
DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<hea
-
2101152·text·6.8 KB·2012-01-08 15:41 UTC
DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<hea
-
2101151·text·1.9 KB·2012-01-08 15:40 UTC
[trunkgroups]
-
2101150·text·252 B·2012-01-08 15:39 UTC
OnPlayerText(playerid, text[])
{
if(text[0] = '!')
{
for(new i; i < MAX_PLAYERS; i++) if(IsPlayerConnected(i) && gTeam[i] == gTeam[playerid]) SendClientMessage(i, 0xFFFF0000, text)
-
2101149·text·252 B·2012-01-08 15:39 UTC
OnPlayerText(playerid, text[])
{
if(text[0] = '!')
{
for(new i; i < MAX_PLAYERS; i++) if(IsPlayerConnected(i) && gTeam[i] == gTeam[playerid]) SendClientMessage(i, 0xFFFF0000, text)
-
2101148·text·252 B·2012-01-08 15:39 UTC
OnPlayerText(playerid, text[])
{
if(text[0] = '!')
{
for(new i; i < MAX_PLAYERS; i++) if(IsPlayerConnected(i) && gTeam[i] == gTeam[playerid]) SendClientMessage(i, 0xFFFF0000, text)
-
2101143·text·3.6 KB·2012-01-08 14:59 UTC
% Dirichlet process for samlping
clear all
datapath = './data/';
dataset = 'cerebellum';
resultpath = './results/';
figurepath = './figures/';
% load data
% first column is the count and
-
2101142·text·3.6 KB·2012-01-08 14:57 UTC
% Dirichlet process for samlping
clear all
datapath = './data/';
dataset = 'cerebellum';
resultpath = './results/';
figurepath = './figures/';
% load data
% first column is the count and
-
2101140·text·426 B·2012-01-08 14:34 UTC
Itachi_07
KidCommentator
tastycrazyasian
Joshchamp67
baboonsbum
stalking_shadow
TheIvyX
Josheey3
Tmanzee
Daybreakninja
Firebuilder3000
Freak_Me_Baby
Deasway
Minired101
DJSeptimus
belero
-
2101123·text·128 B·2012-01-08 14:00 UTC
#!/bin/bash
FILE=foo.txt
while read line
do
if [ "$line" = 456 ]; then
echo yoohoo; fi
done < $FILE
-
2101117·text·518 B·2012-01-08 13:38 UTC
1 13
1 1477
1 18
1 200
1 206
1 21
1 2142
1 23
1 30
1 32
1 34
1 340
1 341
1 35
1 351
1 36
1 3608
1 376
1 38
1 40
1 44
-
2101092·text·1.4 KB·2012-01-08 11:57 UTC
mysql> select date,category from sms_toto where date like '2012-01-08%' order by date desc;
+---------------------+----------+
| date | category |
+---------------------+----------+
-
2101074·text·526 B·2012-01-08 10:33 UTC
"questions": {
"q1": {
"question": "What is your name?",
"answers": [
"Sarah Siregar",
"Raj Kissu",
"Mi Len!!!!!"
-
2101072·python·931 B·2012-01-08 10:28 UTC
def is_palindrome(n):
text = str(n)
length = len(text)
if text[0] == text[-1]:
if length%2 == 0: #even length
for i in range(length/2):
if not tex
-
2101071·text·488 B·2012-01-08 10:28 UTC
"questions": {
"q1": {
"question": "What is your name?",
"answers": [
"Sarah Siregar",
"Raj Kissu",
"Mi Len!!!!!"
-
2101067·python·619 B·2012-01-08 10:09 UTC
def is_prime(n):
if n < 3:
return False #too small/negative
if n%2 == 0:
return False #even
for i in range(3, int(n**0.5)+1, 2):
if n%