So one thing I hate as a developer is re-configuring everything a hundred times every time I decide I want to launch a new side project or test app. So to make life easy I developed a bash script that does everything
Read More
In order to help land that coding job I’ve been dreaming of, and since I’m currently unemployed, I thought I’d use spare time where I’m not coding on something cool, or applying for dev jobs to work on my craft. Beginner Algorithm
Read More
This is a continuation of my STI / Single Table Inheritance article: “How to use multiple User types with the same model in Rails aka STI or Single Table Inheritance” To keep your tables less cluttered and better normalized, I do recommend
Read More
Lately, I’ve been building a complex CRM for music teachers to manage students, invoicing, etc… It’s gotten a bit complicated, and I myself have learned a lot from this side project. One important thing I’ve learned is STI, or Single Table Inheritance.
Read More
I have to say, I absolutely LOVE Laravel – everything about it. One of my favorite features is the ability to separate your app into local/production versions. I use a lot of packages for development, that I just don’t need on my
Read More
One great feature of Laravel is how easy it is to setup local and dev environments. Why would you want separate environments? Require separate packages for dev, and production. Less bloat / potential for errors on production. Turn off debug on production.
Read More