Coding

young coach controlling climber training on rocky wall

Coaching Your Development Team to Tackle Unfamiliar and Difficult Tasks

Reading Time: 3 minutesDiscover effective coaching strategies to guide your development team in embracing unfamiliar and challenging tasks. Learn the importance of fostering a growth mindset, providing support, and cultivating a safe environment for continuous learning. Empower your team to navigate complex projects confidently and drive your project’s success with these agile coaching techniques.

Coaching Your Development Team to Tackle Unfamiliar and Difficult Tasks Read More »

Useful MySQL Commands

Reading Time: < 1 minuteBelow 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 »

Speaking at Laracon EU

Reading Time: < 1 minuteI’m very excited to share that I will be speaking at Laracon EU 2021 from January 18th-22nd, 2021 and cannot wait to (virtually) see everyone at the event.  I will be discussing Choreography vs Orchestration in serverless microservices using Laravel. About Laracon EU Laracon EU hosts multiple annual conferences which are the main gathering of

Speaking at Laracon EU Read More »

MongoDB Mac Cheat Sheet

Reading Time: 3 minutesInstall 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 »