This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ 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... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, :_) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns scratch.core | |
(:use midje.sweet | |
[clojure.set :only [union intersection]] | |
)) | |
(unfinished booking-transaction bookings) | |
(defn empty-history [] | |
[ [] ]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns scratch.core | |
(:use midje.sweet | |
[clojure.set :only [union intersection difference]] | |
)) | |
(def east [1 0]) | |
(def north [0 1]) | |
(def west [-1 0]) | |
(def south [0 -1]) |