You are your tools…

I will always believe that: “A handyworker is as good as its selection of tools, and his skill shows its creativity and what he can do with those tools”. Although you can always incorporate more, or learn to use new tools and do more. Same thing happens with software craftsmanship. As part of our survival […]

Read More…

PANIC at the SVN server!

Do not play around with your commits, If you do here is a little trick I had to do today, (do not ask why, but I blame hunger…) svn merge -r [current_version]:[previous_version] [repository_url] Then you have patch to revert the changes on the repository… I will be more careful next time… el_avena off… […]

Read More…

Ipv4 Addresses on MySQL

Did You know that you can store ip addresses on mysql with no string handling? Well, I did not. INSERT INTO ip_table (’ipv4’) VALUES (INET_ATON("127.0.0.1")); SELECT INET_NTOA(’ipv4’) FROM ip_table; Well this does the trick, INET_ATON and INET_NTOA function transforms the ip address into his numeric value(Integer) and vice versa. el_avena Off… […]

Read More…