here I just write things that happen in my daily life, either developing or designing something.
My MacOS Setup for Development and Design
We developers are always testing, implementing new things and what allows us to do it all currently without wasting much time is how we setup our workflow. All the tools that I will list below have enabled me to deliver a better job in a reduced time compared to years ago.
Read more...Simple auth using Express and Node
Recently I’ve played a lot with Node and Express in web development, it’s simple and has everything we need to be able to develop, has module for basically everything and you can see that the community is growing every day: http://www.modulecounts.com.
Read more...How to reset Postgres id sequence in a Ruby on Rails app
Although it is not something so common to happen, sometimes we came across a table on the database where the id of the primary key column are not synchronized, for example, the last record saved is id=200, but when we try to create a new record, Postgres tries to create with a different id from the default order, which would be id=201, in this case.
Read more...