Author Archives: admin

Working for unboxed

I start working for Unboxed Consulting at May 2010. Because we have got company blog I’m going to write more of my articles there, but this will be place where you can see the articles before official release date. Tweetvaso … Continue reading

Posted in Uncategorized | Leave a comment

Proper error messages on rails

In order to have proper validation error messages on the web page I want to specify what the message will look like. Problem is that if you set validation message in your Person model like this: validates_format_of :email, :with => … Continue reading

Posted in Uncategorized | Leave a comment

Hiring as a game

I saw an interview with Amy Jo Kim at Mixergy.com about game mechanics,recently. Today I saw Slideshare called Designing a Game Changer by Philip Fierlinger from Xero. At the and of the presentation is short notice that Xero is hiring. … Continue reading

Posted in Uncategorized | Tagged | 2 Comments

jQuery bug or just strange behavior ?

Today I discovered some strange behavior of jQuery library, when I added some new functionality to our old adminstration. So I’ve got Form element with some inputs and submit button. On inputs are binded click event. That mean that only … Continue reading

Posted in Uncategorized | Tagged , | Leave a comment

HTML5 storage

Html5 storage – I recently started write pomodoro aplication to practice my skills and try out new technologies.
One of new technology that I tried is HTML5 storage. Storage is actually database but I prefer the word storage. I show you some examples here how it works. Continue reading

Posted in Uncategorized | Tagged , , , | Leave a comment

Pair programming

I just finished pair programming with my friend Laco who live at Barcelona. We used Skype, Collabedit and gitHub for code synchronization. I’m really tired after six hours, but I’ve good feeling about this. I hope we will continue on … Continue reading

Posted in Uncategorized | Tagged , , | Leave a comment

Quick example of testing login form with mechanize and Test::Unit

I started testing with Ruby. So i first use Test::Unit and then i want to test some functionality on web. I read some examples at mechanize documentation, which is here or at your ruby/gems directory. So let’s look at the … Continue reading

Posted in Uncategorized | Tagged , , | Leave a comment

Multiline comments in Ruby

Do you want comment more than one row ? So use multiline comment like this : =begin your code =end Important rule, this code must be at the begining of row. PS: This code isn’t  exactly for comments, but you … Continue reading

Posted in Uncategorized | Tagged | Leave a comment

How to add second mysql server with installed WAMP

Because I started  learning Ruby on Rails I needed to run some database server for ruby. I like mysql.  I developing web aplications with WAMP (Windows + Apache + Mysql + PHP). So i tried to run Ruby on Rails … Continue reading

Posted in Uncategorized | Tagged , , , | Leave a comment