Skip to content

Instantly share code, notes, and snippets.

View mrc's full-sized avatar

Matt Curtis mrc

  • Melbourne
View GitHub Profile
@mrc
mrc / xxx
Created November 13, 2010 01:48
(defproject com.wombat.web/gaeproject "1.0.0-SNAPSHOT"
:description "gaeproject information retrieval"
:gae-app com.wombat.web.gaeproject.core/app
:dev-dependencies [[leiningen/lein-swank "1.2.0-SNAPSHOT"]
[uk.org.alienscience/leiningen-war "0.0.2"]]
:dependencies [[org.clojure/clojure "1.1.0"]
[org.clojure/clojure-contrib "1.1.0"]
[ring/ring "0.2.0"]
[com.google/appengine-api-1.0-sdk "1.3.3.1"]
[com.google/appengine-api-labs "1.3.3.1"]
' '.join([w for i,w in enumerate(sentence.split(),1) if i in (17,23)])
@mrc
mrc / waitForKeyElements.js
Created July 5, 2019 19:13 — forked from BrockA/waitForKeyElements.js
A utility function, for Greasemonkey scripts, that detects and handles AJAXed content.
/*--- waitForKeyElements(): A utility function, for Greasemonkey scripts,
that detects and handles AJAXed content.
Usage example:
waitForKeyElements (
"div.comments"
, commentCallbackFunction
);