How to fix MySQL Performance
On this video, I share about how to fix our database performance to speed up our backend application.
On this video, I share about how to fix our database performance to speed up our backend application.
This post is a summary from https://learnprompting.org for me to speed up when I need to remember how to create a good prompt in the future.
You might have encountered situations where you must represent different states or statuses in your code. For instance, you may be working on a booking syste...
As a new manager, you might find the prospect of conducting your first performance review somewhat intimidating. It’s a delicate balance of offering praise, ...
When contributing to Ruby on Rails or reporting a bug, it’s important to provide a way to reproduce the issue. This helps other developers confirm, investiga...
In this blog post, I want to share my experience using NeuraCache, a fantastic app that has helped me retain more knowledge from my reading materials. NeuraC...
In this blog post, we’ll explore some tips for making your Engineering Town Hall meetings more engaging and informative. We’ll discuss the importance of shar...
Effective time management is more critical than ever in today’s fast-paced world. The Decision Matrix is one tool that can help you prioritize your tasks and...
This post will discuss how to run Jekyll in a Visual Studio Code (VSCode) Devcontainer, making it easier to set up your development environment and start blo...
It’s annoying when our Terminal keeps asking us for our SSH passphrase when pushing our Git commit to GitHub/etc. Here is a workaround that we can do to fix ...
In the early stage as a Start-Up, we do many experiments to prove our assumption to reach product market fit. Updating database schema could be a daily or we...
When we adding a Rails controller action, especially for #show. Usually it would be like this: def show post = Post.find(params[:id]) render json: post...