What I Use 2018

The updated 2018 list of my gadgets, computers and software I use on a daily basis. Computer: MacBook Pro I continue to use my Mid 2014 MacBook Pro 13″ with an attached 23″ monitor. It’s fast, has crazy long battery life, and works perfectly for doing coding or layout on my book. Smartphone: Samsung Galaxy S7 Edge Best […]

What I Use 2018 Read More »

MongoDB Mac Cheat Sheet

Install MongoDB with brew. To start mongodb: brew services start mongodb To stop mongodb if it’s already running: brew services stop mongodb Tools Robomongo / Robo 3T MongoDB Compass Commands MongoDB Statistics – To get stats about MongoDB server, type the command db.stats() Currently selected database, use the command db Databases list, use the command

MongoDB Mac Cheat Sheet Read More »

MySQL Best Practices

Database operations often tend to be the main bottleneck for most web applications today. As programmers need to do our part by structuring tables properly, writing optimized queries and better code. Table Names By convention, the “snake case” in lowercase (no PascalCase – we’re not using Microsoft SQL Server here!), plural name of the class will

MySQL Best Practices Read More »