Functino

My daily struggle with webdevelopment

Andreas

Great Icon Sets

Every now and then I need some icons. Most of the time I use the famfamfam icon set It’s great and contains 700 icons. Lately I came across this list of 49 other icon sets:  http://www.noupe.com/icons/50-most-beautiful-icon-sets-created-in-2008.html
That’s a great resource if you need icons!

CakePHP’s setFlash() compared to Rails flash

CakePHP is a great framework. I love it. It’s simple and you can build applications really fast. Anyway, since I also tried Ruby on Rails there are ceratin things that annoy me. Little things. For example the “flash messages”.
What’s that? Here ’s the rails documentation and here’s the cake documentation. You can use the flash [...]

Tagify – a tagging interface

Ever since I first saw the interface of lastfm’s tagging-function I wanted to create a similar interface.  So what does it look like? There is a simple textbox in which you type your tags. Tags are separated by comma. If you type a comma it will automatically add a nice visual box with your new [...]

Setting a visible default value for text and password inputs as well as textareas – empty on click

It’s really a simple thing: Give a textfield or a password field a visible default value, if the user clicks on it remove it and let him type… . This “ui-pattern” is often used instead of a label tag. You find it on many sites where there’s little space. Login-Forms with a default value that [...]

How to deploy a rails application – installing and using mod_rails aka passenger

Ruby on Rails is great and it is really fun to develop with it. But when it comes to deployment it’s hard for a beginner. I tried different approaches, cgi, fastcgi and mod_rails.
I really love mod_rails (also known as passenger), it’s easy to install and to deploy your application: you just need to upload it. [...]