April 2022

Things Productive People Do Differently

I recently interviewed over 200 ultra-productive people including seven billionaires, 13 Olympians, 20 straight-A students and over 200 successful entrepreneurs. I asked a simple, open-ended question, “What is your number one secret to productivity?” After analyzing all of their responses, I coded their answers into 15 unique ideas. 15 Surprising Things Productive People Do Differently Kevin

Things Productive People Do Differently Read More »

Effective Software Development with Agile SCRUM

This article outlines my experience with using Agile Scrum to develop enterprise level software. The steps listed below are compiled from across the internet. See the end of this article for sources. Development Team Metrics Agile metrics are an essential component of the development process and are critical to communicating development estimates as well as

Effective Software Development with Agile SCRUM Read More »

Useful MySQL Commands

Below is a list of very common MySQL/MariaDB commands that any developer should know by heart. Export MySQL Database mysqldump -u username -p database_name > dump.sql Import MySQL Database mysql -u username -p -h servername database-name < data.sql Login MySQL Database mysql -uusername -p Create MySQL Users CREATE USER ‘username’@’localhost’ IDENTIFIED BY ‘password’; GRANT ALL PRIVILEGES ON database . tablename

Useful MySQL Commands Read More »