Category: Techy Thoughts

  • Roles Management Module

    Recently Ive been working on some systems that require several user types, Ill call them roles. Roles are essential to most applications because for one, youll want to have a hierarchy of users and what they can do in the system. Im sure most developers have already implemented this in some systems they develop. One…

  • Require Message in SVN

    Ive been looking for ways on how to make svn commits require a message just before they get committed. A problem is that some developers make a mistake by making empty commits making the reason of the commit unknown. I found this code via google and I wanted to share it. This has been tested…

  • Doctrine in Kohana

    I’ve been using kohana and its query builder for a while now – its good but in time I came to notice that I begin rewriting code over and over again so I tried to break out of the kohana-database shell and tried out existing ORM frameworks. If you’re curious about ORM check here – http://en.wikipedia.org/wiki/Object-relational_mapping.…