Skip to content

Instantly share code, notes, and snippets.

@rudylattae
rudylattae / tox-win.ini
Created September 6, 2011 01:50
tox-win.ini for Konira on Windows
[tox]
envlist = py26,py27
[testenv]
commands = konira -t -d
[testenv:py26]
basepython=C:\env\python26\python.exe
[testenv:py27]
@rudylattae
rudylattae / stub-system-gadget.js
Created August 25, 2011 05:29
Stub System.Gadget
if (typeof System === 'undefined') {
System = {
Gadget: {
settingsUI: '',
onSettingsClosed: function() {},
Settings: {
read: function (key) { return key; },
readString: function (key) { return key; }
}
}
@rudylattae
rudylattae / Jaxy.js
Created August 6, 2011 08:09
Zyx.js -- a collection of microjs helpers
var Jaxy = function() {
this.xhr = new XMLHttpRequest;
};
Jaxy.prototype.get = function(options) {
if (typeof options.url === 'undefined') return;
var self = this;
var url = options.url || '';
var success = options.success || null;
var error = options.error || null;
@rudylattae
rudylattae / 1-setup-peon-dev-env-windows.rst
Created January 27, 2011 06:36
Setup dev environment for peon -- Windows

Setup dev environment for peon -- Windows

I'm trying to hack on Peon, so far I've not been able to successfuly run the tests.

Here are the steps I took to setup my dev environment to start hacking on peon. Just in case someone else needs them.

Note

@rudylattae
rudylattae / fiddle.html
Created December 24, 2010 09:25
Fun with Fiddle and head.js
<html>
Jst looking
</html>