November 2011
5 posts
TJ Holowaychuk: Connect 1.8.0 - multipart support →
tjholowaychuk:
Connect 1.8.0 is a tiny but substantial release because it adds multipart/form-data support via Felix Geisendörfer’s fantastic multipart parser formidable, it’s great and chances are you’re already using it! The bodyParser() middleware now unifies multipart, json, and x-www-form-urlencoded…
Open Source (Almost) Everything →
dhotson:
Tom Preston-Werner talks about open sourcing all the things!
Need an image? Check out http://jpg.to
Jpg.to is a web service that returns an image of whatever you prefix the URL with.
For example:
Http://sweet.jpg.to
Returns
NICE!
Github
jackhq
twilson63
Should be a great service for blogs and slides, no more searching for basic images. I don’t have any other details, so use at your own risk. But, what a cool idea!
AceBug - Supports CoffeeScript and Vim
AceBug
The AceBug Plugin for Firefox and Firebug supports CoffeeScript and Vim.
# Once Installed
# Open the Console and press shift-enter to get a prompt
>> lang=cf
#> CoffeeScript is now enabled to debug on the client.
Nice!
MySQL - Cool Trix - REGEXP
MySQL REGEXP
using like in mysql works great for querying records that starts with, ends with or contains some data. But what if you want to find several records that could start with ABC or start with BCD. MySql has a neat little function in the where clause that allows you to provide a regular expression to filter your query result.
select * from widgets where name REGEXP 'foo|bar'
This...