Skip to content

Instantly share code, notes, and snippets.

@jabley
jabley / gist:1226431
Created September 19, 2011 12:48 — forked from marick/gist:1226430
(ns scratch.core
(:use midje.sweet
[clojure.set :only [union intersection]]
:reload))
(unfinished newborns)
(defn survivable? [cell living-cells])
;; (fact "A cell is survivable if 2 or 3 of its neighbors are alive"
@jabley
jabley / partial_application.rb
Created September 19, 2011 06:08 — forked from headius/partial_application.rb
Partial application that works on all Ruby implementations
class Object
def _(name, *partial_args)
Proc.new do |*new_args|
send name, *partial_args.map {|arg| arg == :_ ? new_args.shift : arg}
end
end
end
# Practical examples:
[1,2,3].each &_(:puts, :_)
@jabley
jabley / gist:990596
Created May 25, 2011 08:42
CFNetwork User-Agents
CFNetwork/152.4
Delibar/111 CFNetwork/454.5 Darwin/10.2.0 (i386) (MacBook5%2C1)
DrudgeLite/2.0 CFNetwork/459 Darwin/10.0.0d3
Echofon0.98 CFNetwork/422.11 Darwin/9.6.0 (i386) (Compaq%20Presario%20CQ60%20Notebook%20PC)
GoodReader/2.4 CFNetwork/459 Darwin/10.0.0d3
IronWeb/OSX CFNetwork/454.5 Darwin/10.2.0 (i386) (MacBookPro5%2C3)
MBrowser/2.1 CFNetwork/459 Darwin/10.0.0d3
MobileRSSLite/2.3 CFNetwork/459 Darwin/10.0.0d3
MobileSafari/525.20 CFNetwork/339.3 Darwin/9.4.1
MobileSafari/525.20 CFNetwork/342.1 Darwin/9.4.1
@jabley
jabley / gist:988408
Created May 24, 2011 09:17
Installing PyHamcrest
$ sudo pip install pyhamcrest
Password:
Downloading/unpacking pyhamcrest
Downloading PyHamcrest-1.5.tar.gz
Running setup.py egg_info for package pyhamcrest
Installing collected packages: pyhamcrest
Running setup.py install for pyhamcrest
Successfully installed pyhamcrest
Cleaning up...
var buddy = {};
buddy.firstName=$('input[name="fname"]').val();
buddy.lastName=$('input[name="lname"]').val();
buddy.email=$('input[name="email"]').val();
var data = JSON.stringify(buddy);
$.ajax({
type: 'POST',
url: "/path/to/handler",
@jabley
jabley / gist:896713
Created March 31, 2011 16:36
Hibernate Stack Trace (constraint violation during batch update)
Could not execute JDBC batch update; SQL [insert into IdentityKey (accessCount, created, lastAccessed, profile_uid, quality, validUntil, authkey) values (?, ?, ?, ?, ?, ?, ?)]; constraint [null]; nested exception is org.hibernate.exception.ConstraintViolationException: Could not execute JDBC batch update
at org.springframework.orm.hibernate3.SessionFactoryUtils.convertHibernateAccessException(SessionFactoryUtils.java:637)
at org.springframework.orm.hibernate3.HibernateAccessor.convertHibernateAccessException(HibernateAccessor.java:412)
at org.springframework.orm.hibernate3.HibernateTemplate.doExecute(HibernateTemplate.java:411)
at org.springframework.orm.hibernate3.HibernateTemplate.executeWithNativeSession(HibernateTemplate.java:374)
at org.springframework.orm.hibernate3.HibernateTemplate.flush(HibernateTemplate.java:881)
at com.bemoko.live.platform.mwc.plugins.ContextPlugins.execute(ContextPlugins.java:446)
... 62 more
Caused by: org.hibernate.exception.ConstraintViolationException: Could not execute
@jabley
jabley / default.vcl
Created January 5, 2011 15:55
Varnish HTTP response
backend default {
set backend.host = "cdn.example.com";
set backend.port = "80";
}
## Called when a client request is received
#
sub vcl_recv {
set req.http.host = "cdn.example.com";
set req.http.port = "80";
@jabley
jabley / gist:748880
Created December 20, 2010 19:40 — forked from tfheen/gist:748877
server {
listen 443; ## listen for ipv4
listen [::]:443 default ssl ipv6only=on; ## listen for ipv6
ssl on;
ssl_certificate /etc/ssl/certs/www.varnish-cache.org-http.pem;
ssl_certificate_key /etc/ssl/private/www.varnish-cache.org-http.pem;
server_name www.varnish-cache.org;
access_log /var/log/nginx/localhost.access.log;
@jabley
jabley / clojure.local.err
Created November 9, 2010 20:12
Homebrew MySQL install
101109 20:11:36 mysqld_safe Starting mysqld daemon with databases from /usr/local/var/mysql
101109 20:11:36 [Warning] Setting lower_case_table_names=2 because file system for /usr/local/var/mysql/ is case insensitive
InnoDB: The first specified data file ./ibdata1 did not exist:
InnoDB: a new database to be created!
101109 20:11:36 InnoDB: Setting file ./ibdata1 size to 10 MB
InnoDB: Database physically writes the file full: wait...
101109 20:11:36 InnoDB: Log file ./ib_logfile0 did not exist: new to be created
InnoDB: Setting log file ./ib_logfile0 size to 5 MB
InnoDB: Database physically writes the file full: wait...
101109 20:11:36 InnoDB: Log file ./ib_logfile1 did not exist: new to be created