Skip to content

Instantly share code, notes, and snippets.

View ewilderj's full-sized avatar
🦕

Edd Wilder-James ewilderj

🦕
View GitHub Profile
https://keyoxide.org/10495B98E88EA70182A7CEBA0CE6525CF7825C28

Keybase proof

I hereby claim:

  • I am ewilderj on github.
  • I am edmund (https://keybase.io/edmund) on keybase.
  • I have a public key ASDr4ydeJD31yJWhkTlVWmLDN3CcBVE1wt4YoNOdLl1Cjwo

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am ewilderj on github.
  • I am edmund (https://keybase.io/edmund) on keybase.
  • I have a public key ASB-bD7-9YvCymKFOqle9l4JkBkoIejIPjL24imk1VZIRQo

To claim this, I am signing this object:

@ewilderj
ewilderj / day5.clj
Last active December 5, 2016 15:52
(ns eddpod.day5
(:require [clojure.string :as str] [digest]))
(def inp "cxdnnyjw")
(defn hsh [n] (digest/md5 (str inp n)))
(defn valid-hashes [] (filter #(str/starts-with? % "00000") (map hsh (range))))
(defn find-code []
@ewilderj
ewilderj / gist:ccb388d15f0130891161
Created October 23, 2015 00:55
onename verification
Verifying that +edmundwj is my blockchain ID. https://onename.com/edmundwj
### Keybase proof
I hereby claim:
* I am edumbill on github.
* I am edmund (https://keybase.io/edmund) on keybase.
* I have a public key whose fingerprint is 63A7 C2EB C4E9 D0B1 BE26 8D87 11D2 9BDD 350B EBD3
To claim this, I am signing this object:
@ewilderj
ewilderj / gist:1552777
Created January 3, 2012 00:22
Add dependency to DOAP
=== modified file doap/schema/doap.rdf
--- doap/schema/doap.rdf 2009-06-25 16:32:08 +0000
+++ doap/schema/doap.rdf 2010-07-30 14:41:53 +0000
@@ -390,6 +390,19 @@
<rdfs:domain rdf:resource="http://usefulinc.com/ns/doap#Project" />
</rdf:Property>
+<rdf:Property rdf:about="http://usefulinc.com/ns/doap#dependency">
+ <rdfs:isDefinedBy rdf:resource="http://usefulinc.com/ns/doap#" />
+ <rdfs:label xml:lang="en">dependency</rdfs:label>
@ewilderj
ewilderj / friends.py
Created December 9, 2010 18:19
Make a graph of your social network from those you follow
# a messy hack written by Edd Dumbill. http://twitter.com/edd
# You may need to rerun this script if you hit a Twitter Error because you
# use up API rate limiting. That's why we pickle the results, so we can resume
# where we left off.
# get the twitter module using 'easy_install twitter'
from twitter.api import Twitter, TwitterError
from twitter.oauth import OAuth