December 2007
3 posts
How To Be a Rockstar Freelancer →
This book will show you the ins and outs of freelancing, dealing with subjects like how to get your first projects, what to do when a client won’t pay and how to handle tricky clients. It is written as a general guide that will benefit contractors of all professions.
rest api design
(from reddit) I don’t know why so many people seem to have a hard time with RESTy design. I usually give the following advice: stop thinking about http and url. Design a conventional api. Then coarsely map it to HTTP, following such rules of thumb (Ecmascript to HTTP mapping): a => /a a[b] or a.b => /a/b c = a => GET /a a = b => PUT /a (with a representation of b as the request...