A ZSH theme optimized for people who use:
- Solarized
- Git
- Unicode-compatible fonts and terminals (I use iTerm2 + Menlo)
| numpy.genfromtxt(path, delimiter=',', names=True, dtype=None) | |
| fig = plt.figure(1) | |
| plt.xlabel('Month') | |
| plt.ylabel('Cost of Food') | |
| plt.title('Cost of Food from May 2013 to May 2014) | |
| # month is a tuple I created for this data, month[0] is number of month, month[1] is numpy array | |
| plt.plot_date([month[0] for month in data], [month[1][0][plan] for month in data], '-b', label=month[1][0][1]) |
| # The blog post that started it all: https://neocities.org/blog/the-fcc-is-now-rate-limited | |
| # | |
| # Current known FCC address ranges: | |
| # https://news.ycombinator.com/item?id=7716915 | |
| # | |
| # Confirm/locate FCC IP ranges with this: http://whois.arin.net/rest/net/NET-165-135-0-0-1/pft | |
| # | |
| # In your nginx.conf: | |
| location / { |
| import matplotlib.pyplot as plt | |
| import numpy as np | |
| input = open("stage2-input.bin", "rb").read() | |
| bin = map(int, list(''.join(map(lambda s: s[2:], map(bin, map(ord, list(input))))))) | |
| results = np.correlate(bin, bin, mode='full') | |
| results = results[results.size/2:] | |
| plt.plot(results[0:255]) |
| from uuid import uuid1 | |
| from time import time | |
| def main(): | |
| test = dict() | |
| limit = 10 ** 10 | |
| while limit: | |
| limit -= 1 | |
| x = {n:uuid1().hex for n in range(15)} | |
| if len(set(x.values())) != len(x.keys()): |
| REQUEST_SESSIONS = { | |
| "api": requests.Session(), | |
| "probe": requests.Session() | |
| } | |
| REQUEST_SESSIONS["api"].headers["User-Agent"] += " +http://git.io/cso_malucrawl" |
| from multiprocessing import Pool, cpu_count | |
| import time | |
| from random import randint | |
| def roll(dice=1, sides=6): | |
| try: | |
| return [randint(1, sides) for i in range(dice)] | |
| except: | |
| return [] |
| class Tree(object): | |
| def __init__(self, cargo, left=None, right=None): | |
| self.cargo = cargo | |
| self.left = left | |
| self.right = right | |
| def __str__(self): | |
| return str(self.cargo) | |
| #Traversing through the tree |
| from django.conf.urls import patterns, include, url | |
| from django.views.generic import ListView | |
| from blogengine.models import Category, Post | |
| from blogengine.views import PostsFeed | |
| urlpatterns = patterns('blogengine.views', | |
| # Home page | |
| url(r'', 'getPosts'), | |
| url(r'(?P<page>\d+)$', ListView.as_view(model=Post, paginate_by=2,)), |
| from django.conf.urls import patterns, include, url | |
| from django.views.generic import ListView | |
| from blogengine.models import Category, Post | |
| from blogengine.views import PostsFeed | |
| # Uncomment the next two lines to enable the admin: | |
| from django.contrib import admin | |
| admin.autodiscover() | |
| urlpatterns = patterns('', |