Blog

  • The No-Nonsense Guide to Deep work

    The No-Nonsense Guide to Deep work

    How to get more quality work done, in less time Photo by Paige Cody on Unsplash Let your mind become a lens, thanks to the converging rays of attention; let your soul be all intent on whatever it is that is established in your mind as a dominant, wholly absorbing idea. — Antonin-Dalmace Sertillanges When the nurseries closed due… Continue reading

  • 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

  • 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 that soon. You can see our work here. Continue reading

  • 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 code. require ‘mechanize’ require ‘test/unit’ class LoginTest < Test::Unit::TestCase def test_login #creating mechanize object agent… Continue reading