Skip to content

Instantly share code, notes, and snippets.

View cponeill's full-sized avatar
🎹
Making Sounds..

Casey O'Neill cponeill

🎹
Making Sounds..
View GitHub Profile
# 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 / {
Verifying myself: My Bitcoin username is +cpo. https://onename.io/cpo

Keybase proof

I hereby claim:

  • I am cponeill on github.
  • I am cponeill (https://keybase.io/cponeill) on keybase.
  • I have a public key whose fingerprint is CE94 B514 704B 2502 1824 3FD0 11B9 8093 1E34 15E7

To claim this, I am signing this object:

<!DOCTYPE html>
<meta charset="utf-8">
<style>
.chart div {
font: 10px sans-serif;
background-color: steelblue;
text-align: right;
padding: 3px;
margin: 1px;
@cponeill
cponeill / index.html
Last active August 29, 2015 14:17
DataClips
<!DOCTYPE html>
<meta charset="utf-8">
<style>
body { font-family: sans-serif; }
</style>
<script src="http://d3js.org/d3.v3.min.js"></script>
<body>
<script>
// var resource = 'https://dataclips.heroku.com/vgyygvzqtezwpmwpcmmjlluamjlk.json';
// Replaced with local copy (CORS)
@cponeill
cponeill / data.tsv
Created March 20, 2015 15:19
Bar Chart Example
letter frequency
A .08167
B .01492
C .02782
D .04253
E .12702
F .02288
G .02015
H .06094
I .06966
@cponeill
cponeill / install_homebrew.rb
Created December 23, 2011 18:23 — forked from mxcl/install_homebrew.markdown
Installs Homebrew to /usr/local so you don't need sudo to `brew install`
#!/usr/bin/ruby
# This script installs to /usr/local only. To install elsewhere you can just
# untar https://github.com/mxcl/homebrew/tarball/master anywhere you like.
module Tty extend self
def blue; bold 34; end
def white; bold 39; end
def red; underline 31; end
def reset; escape 0; end
def bold n; escape "1;#{n}" end
@cponeill
cponeill / TopTwitter.html
Created January 21, 2012 01:15 — forked from plamere/TopTwitter.html
Top hotttest Twitter artists
<!DOCTYPE html>
<html>
<head>
<title>Top Twitter</title>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script>
<link type="text/css" href="styles.css" rel="stylesheet" />
</head>
<body>
<h1 id='title'> Top 100 artists with verified Twitter accounts</h1>
<ol id="results"> </ol>
@cponeill
cponeill / LICENSE.txt
Created February 15, 2012 17:21 — forked from aemkei/LICENSE.txt
Binary Tetris - 140byt.es
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
@cponeill
cponeill / tree.md
Created April 23, 2012 22:08 — forked from hrldcpr/tree.md
one-line tree in python

One-line Tree in Python

Using Python's built-in defaultdict we can easily define a tree data structure:

def tree(): return defaultdict(tree)

That's it!