Posted: February 5th, 2010 | Author: stevie | Filed under: Delicious, Lifestream, Links | Tags: api, audio, bookmark, design, favicon, free, generator, graphics, icons, link, mp3, music, opensource, playdar, programming, resolver, software, streaming, tool, tools, web, webdesign | No Comments »
"Playdar provides a consistent API for accessing any song ever recorded."
Via.
Posted: January 26th, 2010 | Author: stevie | Filed under: Delicious, Lifestream, Links | Tags: app, atom, atompub, bookmark, design, django, favicon, feed, feeds, free, generator, googlecode, graphics, icons, link, programming, python, tool, tools, web, webdesign | No Comments »
implementation of Atom format and protocol for the Django web framework
Via.
Posted: January 25th, 2010 | Author: stevie | Filed under: Delicious, Lifestream, Links | Tags: bookmark, cryptography, design, development, encryption, favicon, free, generator, graphics, hash, hashing, hmac, icons, link, programming, security, sha1, tips, tool, tools, web, webdesign, webdev | No Comments »
"So, again, don’t hash secrets. HMAC them."
Via.
Posted: January 18th, 2010 | Author: stevie | Filed under: Delicious, Lifestream, Links | Tags: appengine, bookmark, design, favicon, free, generator, google, graphics, icons, link, programming, python, tool, tools, web, webdesign, websocket | No Comments »
Describes a method for using WebSockets with Google App Engine, using a 3rd party WebSocket server, which is necessary due to the 30 second per-requests limit imposed by App Engine.
Via.
Posted: January 13th, 2010 | Author: stevie | Filed under: Delicious, Lifestream, Links | Tags: appengine, bookmark, design, django, favicon, free, generator, google, googleio, graphics, icons, link, presentation, programming, python, tool, tools, tutorial, Video, web, webdesign | No Comments »
"Learn how to create great web applications quickly on Google App Engine using the Django web framework and the Python language."
Via.
Posted: November 11th, 2009 | Author: stevie | Filed under: Delicious, Lifestream, Links | Tags: bookmark, design, django, favicon, free, generator, graphics, icons, link, macosx, mamp, mysql, osx, programming, python, tool, tools, web, webdesign | No Comments »
Some helpful notes on installing MySQL-Python on Max OSX, as easy_install doesn't do the trick.
When using with MAMP, change the mysql_config.path to '/Applications/MAMP/Library/bin/mysql_config'.
Via.
Posted: October 6th, 2009 | Author: stevie | Filed under: Delicious, Lifestream, Links | Tags: bookmark, debug, debugging, design, development, favicon, free, generator, graphics, http, icons, link, post, postbin, programming, testing, tool, tools, web, webdesign, webhooks | No Comments »
"PostBin lets you debug web hooks by capturing and logging the asynchronous requests made when events happen. Make a PostBin and register the URL with a web hook provider. All POST requests to the URL are logged for you to see when you browse to that URL."
Via.
Posted: August 21st, 2009 | Author: stevie | Filed under: Delicious, Lifestream, Links | Tags: agile, bookmark, design, development, estimation, favicon, free, generator, graphics, icons, link, management, planning, productivity, programming, scrum, software, tool, tools, web, webdesign | No Comments »
"The idea behind Planning Poker is simple. Individual stories are presented for estimation. After a period of discussion, each participant chooses from his own deck the numbered card that represents his estimate of how much work is involved in the story under discussion. All estimates are kept private until each participant has chosen a card. At that time, all estimates are revealed and discussion can begin again."
Via.
Posted: August 18th, 2009 | Author: stevie | Filed under: Delicious, Lifestream, Links | Tags: bookmark, branch, design, development, favicon, free, generator, graphics, howto, icons, link, merge, programming, reference, subversion, svn, tips, tool, tools, tutorial, web, webdesign | No Comments »
"Another common use for svn merge is to roll back a change that has already been committed. Suppose you're working away happily on a working copy of /calc/trunk, and you discover that the change made way back in revision 303, which changed integer.c, is completely wrong. It never should have been committed. You can use svn merge to “undo” the change in your working copy, and then commit the local modification to the repository. All you need to do is to specify a reverse difference:
$ svn merge -r 303:302 http://svn.example.com/repos/calc/trunk
U integer.c
$ svn status
M integer.c
Via.
Posted: August 17th, 2009 | Author: stevie | Filed under: Delicious, Lifestream, Links | Tags: bookmark, design, development, diff, favicon, filemerge, free, generator, graphics, icons, link, mac, macosx, osx, programming, subversion, svn, tool, tools, web, webdesign | No Comments »
"Apple's Developer Tools for Mac OS X include FileMerge, a graphical tool to compare and merge files. FileMerge can be much handier to use, unfortunately, it doesn't integrate with Subversion easily. It can be opened from the command line with the opendiff command, but its interface differs from that of diff and diff3. It returns immediately (i.e. it forks and does not block) and it expects different arguments. Some wrapper scripts are thus required to call FileMerge from Subversion."
Via.