Skip to content

Instantly share code, notes, and snippets.

View jondeandres's full-sized avatar

Jon jondeandres

  • Uniphore (https://www.uniphore.com)
  • Barcelona
View GitHub Profile
@jondeandres
jondeandres / README.md
Created November 26, 2012 00:39 — forked from jhbabon/README.md
Playing with DCI in Ruby: Chaining Contexts

DCI: Chain of contexts example

Run each chain:

$ ruby full_chain.rb
$ ruby half_chain.rb
$ ruby no_chain.rb
#!/bin/bash
thin start -p 3000 -R test.ru
@jondeandres
jondeandres / lisp.c
Created April 15, 2014 01:28 — forked from sanxiyn/lisp.c
#include <assert.h>
#include <stdarg.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
enum type {
NIL,
import sys
import os
import xml.etree.ElementTree as ET
import logging
import re
from shutil import copyfile
from optparse import OptionParser
### This file came from the https://github.com/flow123d/flow123d repo they were nice enough to spend time to write this.
### It is copied here for other people to use on its own.