Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000
# features/support/session.rb | |
# Sign-in users directly, without going through the sign-in form each time. | |
# | |
# Including the Warden::Test::Helpers in the cucumber world, allows us | |
# to call login_as(user, opts = {}) and logout(*scopes) in cucumber steps. | |
# | |
# http://git.io/h1NRxQ | |
Before do |scenario| |
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000
-- | |
-- PostgreSQL database dump | |
-- | |
-- Dumped from database version 9.1.1 | |
-- Dumped by pg_dump version 9.1.1 | |
-- Started on 2011-11-02 16:53:36 EET | |
SET statement_timeout = 0; | |
SET client_encoding = 'UTF8'; |
// this allows culerity to wait until all ajax requests have finished | |
jQuery(function($) { | |
var original_ajax = $.ajax; | |
var count_down = function(callback) { | |
return function() { | |
try { | |
if(callback) { | |
callback.apply(this, arguments); | |
}; | |
} catch(e) { |
/* | |
* Mclarens Bar: Redis based Instant Messaging | |
* Nikhil Marathe - 22/04/2010 | |
* A simple example of an IM client implemented using | |
* Redis PUB/SUB commands so that all the communication | |
* is offloaded to Redis, and the node.js code only | |
* handles command interpretation,presentation and subscribing. | |
* | |
* Requires redis-node-client and a recent version of Redis |