Consumer key: IQKbtAYlXLripLGPWd0HUA
Consumer secret: GgDYlkSvaPxGxC4X8liwpUoqKwwr3lCADbz8A7ADU
Consumer key: 3nVuSoBZnx6U4vzUxf5w
Consumer secret: Bcs59EFbbsdF6Sl9Ng71smgStWEGwXXKSjYvPVt7qys
Consumer key: CjulERsDeqhhjSme66ECg
#include <stdio.h> | |
#include <assert.h> | |
#include <stdint.h> | |
#include <stdlib.h> | |
#if defined(__i386__) | |
static __inline__ unsigned long long rdtsc(void) | |
{ | |
unsigned long long int x; |
import static java.lang.System.out; | |
public class PDU { | |
public static void main(String [] args) { | |
String smsc = args[0]; | |
String smsc_format = "92"; | |
if(smsc.substring(0,1).equals("+")) { | |
smsc_format = "91"; | |
smsc = smsc.substring(1); | |
} |
#include <stdio.h> | |
#include <inttypes.h> | |
static inline void | |
vidcpu() | |
{ uint32_t v0=0; | |
uint32_t v1=0; | |
asm volatile ("pushf\n" | |
"popl %0\n" |
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
__version__ = "0.1.3" # 2 for st2; 3 for st3 | |
__author__ = "Markus Chou ([email protected])" | |
__copyright__ = "(c) 2013 Markus Chou" | |
__license__ = "MIT License" | |
from html.parser import HTMLParser | |
from urllib.parse import quote |
#!/usr/bin/env pypy | |
import os | |
import subprocess | |
import sys | |
class Env(dict): | |
def __init__(self): | |
ALL_PLATFORMS=['darwin/amd64', 'linux/amd64', 'linux/386', 'linux/arm', 'freebsd/amd64', 'freebsd/386', 'windows/amd64', 'windows/386'] | |
envs = subprocess.check_output(['go', 'env']).strip() |
Consumer key: IQKbtAYlXLripLGPWd0HUA
Consumer secret: GgDYlkSvaPxGxC4X8liwpUoqKwwr3lCADbz8A7ADU
Consumer key: 3nVuSoBZnx6U4vzUxf5w
Consumer secret: Bcs59EFbbsdF6Sl9Ng71smgStWEGwXXKSjYvPVt7qys
Consumer key: CjulERsDeqhhjSme66ECg
#!/usr/bin/env python | |
import urllib2 | |
from os.path import exists, getsize | |
from urllib import unquote | |
import sys | |
def status(percent): | |
bar_size = 40 | |
percent = int(percent*100) |
#UPDATE:12-08-01 23:14 | |
#Android & Google Services START | |
209.85.143.132 a-oz-opensocial.googleusercontent.com | |
203.208.46.160 accounts.google.com | |
203.208.47.1 ajax.googleapis.com | |
203.208.46.160 android.clients.google.com | |
203.208.46.160 android.l.google.com | |
203.208.46.160 appengine.google.com | |
203.208.47.1 base0.googlehosted.com |
package main | |
import ( | |
"fmt" | |
) | |
type Iterator interface { | |
GetCurrent() int | |
MoveNext() bool | |
} |
#!/usr/bin/env python | |
def main(): | |
m = [] | |
for x in xrange(2,101): | |
for y in xrange(2,101): | |
c = x**y | |
if c not in m: | |
m.append(c) | |
print len(m) |