This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// [© 2012 Bellite.io](http://bellite.io) | |
// Open Source as [CC BY-SA 3.0](http://creativecommons.org/licenses/by-sa/3.0/) | |
// vim: sw=2 ts=2 expandtab | |
(function(exports) { | |
"use strict"; | |
function objFromForm(form, dispatch) { | |
if (!form || form.nodeName!="FORM") return; | |
dispatch = dispatch || objFromForm.dispatch | |
var res={}, elem, fn |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// [© 2012 Bellite.io](http://bellite.io) | |
// Open Source as [CC BY-SA 3.0](http://creativecommons.org/licenses/by-sa/3.0/) | |
// vim: sw=2 ts=2 expandtab | |
"use strict"; | |
var | |
path = require('path'), fs = require('fs'), | |
http = require('http'), url = require('url'), | |
querystring = require('querystring') | |
exports.createMicroWebServer = createMicroWebServer; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import csv | |
import glob | |
import plistlib | |
clientProject = 'My Project' | |
for filename in glob.glob("*.bex"): | |
root = plistlib.readPlist(filename) | |
with open(filename+'.csv', 'wb') as out: | |
out = csv.writer(out) | |
out.writerow(['Date', 'Person', 'Client/Project', 'Minutes', 'Tags', 'Description', 'Billable', 'Invoiced', 'Invoice Reference']) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.boxy { | |
margin: 15px; | |
outline: 1px dashed red; | |
width: 200px; | |
height: 150px; | |
border: 1px solid white; | |
padding: 10px; | |
position: relative; | |
} | |
.boxy>div { |
NewerOlder