this is a post or something
This file contains hidden or 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
import json | |
import urllib2 | |
import time | |
import sys | |
import lxml.html | |
from datetime import datetime, timedelta | |
# get viewers | |
j = json.load(urllib2.urlopen('https://api.twitch.tv/kraken/streams/speeddemosarchivesda')) |
This file contains hidden or 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
import math | |
import random | |
import functools | |
import sys | |
# an inefficient ga for the travelling salesman problem | |
# stuff to think about: | |
# chromosomes can't be repeated, so crossover and mutation have to be changed | |
# mutation: swap two elements | |
# crossover: use ordered crossover |
This file contains hidden or 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
import socket | |
sock = socket.socket(socket.AF_INET, socket.TCP_NODELAY) | |
sock.connect(('irc.synirc.net', 6667)) | |
sock.setblocking(0) | |
def irc_connect(): | |
buff = '' | |
while 1: | |
try: |
This file contains hidden or 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 bloomfilter | |
import ( | |
"crypto/md5" | |
"encoding/binary" | |
"bytes" | |
) | |
type BloomFilter struct { | |
buckets []bool |
This file contains hidden or 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 bloomcounter | |
import ( | |
"encoding/binary" | |
"bytes" | |
"crypto/md5" | |
) | |
type BloomCounter struct { | |
buckets []uint |
This file contains hidden or 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
import Queue as queue # like really | |
import urllib2 | |
import threading | |
class DoThing(object): | |
def __init__(self, url): | |
self.q = queue.Queue() | |
self.t = threading.Thread(target=self.go, args=(url,)) | |
self.t.start() |
This file contains hidden or 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
#!/bin/bash | |
version=1.0.1 | |
versionDate="2014-02-14" | |
function showHelp() { | |
echo "watchfile - monitor file(s)/command and perform action when changed | |
Possible ways of usage | |
---------------------------------------- |
This file contains hidden or 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
#include <iostream> | |
#include <map> | |
using namespace std; | |
int main() { | |
map<char, int> stuff; | |
stuff['a'] = 1; | |
stuff['b'] = 2; | |
stuff['c'] = 3; | |
This file contains hidden or 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
class Wren { | |
construct new() { | |
var a = 0 | |
_list = [1,2,3].map{|i| | |
a = a + 1 | |
return a | |
} | |
} | |
printList() { |