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| /* | |
| * 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 |
| // 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) { |
| -- | |
| -- 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'; |
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| |
| <project xmlns="http://maven.apache.org/POM/4.0.0" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <groupId>gd.wa</groupId> | |
| <artifactId>minimal-pom</artifactId> | |
| <version>1.0-SNAPSHOT</version> | |
| <packaging>jar</packaging> |
Things that a test can be annotated with:
| /** | |
| * = Recursive descent parser = | |
| * | |
| * MIT Style License | |
| * By Dmitry Soshnikov <[email protected]> | |
| * | |
| * In this short lecture we'll cover the basic (non-predictive, backtracking) | |
| * recursive descent parsing algorithm. | |
| * | |
| * Recursive descent is an LL parser: scan from left to right, doing |
| library(quantreg) | |
| library(dplyr) | |
| library(lubridate) | |
| library(stringr) | |
| library(readr) | |
| library(ggplot2) | |
| library(devtools) | |
| library(splines) | |