Skip to content

Instantly share code, notes, and snippets.

View ahuntcirruspath's full-sized avatar

ahuntcirruspath

View GitHub Profile
@brainv
brainv / API.md
Last active August 29, 2015 14:07 — forked from iros/API.md

Title

<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>

  • URL

    <The URL Structure (path only, no root url)>

  • Method:

@generalov
generalov / Gruntfile.js
Created May 31, 2014 04:28
Gruntfile config to run python tornado application and node.js fronted with livereload
/* jslint node:true */
'use strict';
module.exports = function(grunt) {
grunt.registerTask('default', [
'serve'
]);
grunt.registerTask('serve', [
@kachayev
kachayev / tic-tac-toe.py
Created November 22, 2011 23:50
Tornado demo application: TCP server to tic-tac-toe multiplayer game
"""Simple TCP server for playing Tic-Tac-Toe game.
Use Player-to-Player game mode based on naming auth.
No thoughts about distribution or pub/sub mode
(for monitoring or something like this). Just
basic functionality.
"""
import time
import logging