Feeds RSS Reader Released for iPhone and iPod Touch
July 30, 2008 — adminFeeds, a native iPhone and iPod Touch application was given the OK by Apple yesterday and is available in the App Store as of this writing. Feeds is the native version of Prime31′s iPhone web-based RSS feed reader called iFeeder (http://iFeeder.prime31.com from your iPhone or iPod Touch). You can view Feeds in the App Store here (opens iTunes) or on the web at http://feeds.prime31.com.
Feeds provides some unique ways of adding feeds to make life easier when on the iPhone. You can enter a base url (such as www.prime31.com for example) and Feeds will try to find any RSS feeds that are associated with that website. You can also do searches to find new feeds to read or browse by category through thousands of popular (and some not so popular feeds).
Feel free to leave any feedback or feature requests here.
SVN Command Line Cheat Sheet
March 24, 2008 — adminHere is a short list of handy SVN commands. This list is in no way exhaustive but it does contain the most used commends (by me at least).
#----------------- # start svn server #----------------- sudo -u www /sw/bin/svnserve -d -r /Users/al/svnrepo #------------------- # checkout a project #------------------- svn checkout svn://localhost/project1 #--------------- # basic commands #--------------- svn up # update svn add [file] # add svn ci -m "msg" # commit svn log #-------------------------- # file/directory management #-------------------------- svn copy foo bar svn mkdir foo svn mv foo bar svn rm foo #------ # other #------ svn status svn diff svn revert svn info svn list URL svn list svn://localhost/
MooTools 1.2 for The Non Programmer – Part 4
March 19, 2008 — adminThis will be the culmination of the four part series on MooTools for non programmers. In this installment we will take all that we learned in the previous parts and put it together to make a flash menu system.
MooTools 1.2 for The Non Programmer – Part 3
March 13, 2008 — adminThis week we are going to keep moving forward with our look at using MooTools to make our pages have some nice, fancy effects. The last few posts we looked at how easy it is with MooTools to animate different CSS properties. We are going to expand on that this post and for next weeks post all the effects will culminate in a gorgous menu.
(more...)MooTools 1.2 for The Non Programmer – Part 2
March 9, 2008 — admin
In the last MooTools tutorial we saw how easy it is to add event handlers and use the built in effects. This time we will
take it a bit further and work with some custom effects. Sometimes the built in effects dont always meet the requirements of a particular
site or we want a bit fancier javascipt effect for a particular situation. For these such cases, MooTools makes it super easy to put together
a custom effect.
MooTools 1.2 for The Non Programmer
February 26, 2008 — adminUsing MooTools can be a bit daunting for the non-programmer types out there (mainly designers and javascript newbies). I’m going to display a few examples of just how simple MooTools can be. Hopefully this will spark some interest for a few people so that you get motivated to do a bit of learning and see how powerful and usable MooTools can be.
