June 2012
8 posts
Error Loading Data in MySQL →
hackingonstuff: Your Own Little node.js PaaS -... →
eladb:
PaaS (platform-as-a-service) services are blooming these days (Heroku, Nodejitsu, nodester, cloudcontrol and many more). All offer some awesome features. I set out to try and set up a very simple node.js PaaS for myself within an Amazon EC2 Ubuntu instance. It obviously lacks many of the…
The Naive Optimist: How I manage 40 people... →
ryanleecarson:
I recently asked what you’d like me to cover here on the blog. I got a great question from @tfav
@ryancarson I would love to hear about managing a remote team.
— Travis Favaron (@tfav) June 8, 2012
I’ve been running Treehouse since August 2010 from my home in the United Kingdom….
3 tags
JsBuddies: Every JQuery WebForm needs a buddy or...
Check out buddies.js, a couple clean well-tested library functions to populate and extract data from html forms in one method.
el = $("#foo") # the html above
# use the object attribute short_title and put it in the short-title form input
atts = {short_title : 'short-title'}
FormManager.populate ob, el, atts
See more: http://hssc.github.com/buddies-js/
There is a great working example on...
EasyBake 0.1.2 Released
EasyBake is a very simple command-line application that installs a Cakefile in the current directory your are in.
npm install easybake -g
mkdir myproject
cd myproject
easybake
Watch a video on how to use easybake
http://codestre.am/aaac575ec34e4a0b681d3f1e9
Super handy utility to quickly add some default cakefile tasks to your project.
Check out the code on github:...
Oh the places you'll go →
Dave Lee: GTD sucks for creative work. Here's an... →
heydave7:
A friend asked me this question about what system I use to manage my todo list:
Your todo list is probably like mine, a million items long and constantly growing… Do you use a system or systems to manage your todo list? I’ve been loosely following GTD, and currently using a text document to…
5 tags
csv2json - csv to json streaming node module
Announcing csv2json a csv to json streaming node module. Using event-stream, it is super simple to convert a function into a stream.
var = require('event-stream');
// through stream
es.map(function(data, callback) {
/* do stuff */
callback(null, data);
});
Using event-stream, I was able to create a csv to json streaming module with a very little amount of code. Check it out ->...