Importing Huge MySQL Database
Importing large MySQL database dumps can be challenging, especially when dealing with AWS RDS snapshots and potential errors during the process. This guide e...
Importing large MySQL database dumps can be challenging, especially when dealing with AWS RDS snapshots and potential errors during the process. This guide e...
Converting Perplexity’s page into markdown text for reposting on a Jekyll website or any markdown-based blog can be streamlined using a mix of CSS styling an...
As Ruby developers, we often face challenges when developing and testing gems across multiple Ruby versions and dependencies. Today, I’m excited to introduce...
In Ruby on Rails ecosystem, encountering unknown or unexpected queries can be a perplexing challenge. This blog post delves into a practical approach to iden...
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.
For blog owners and web developers, understanding user interaction is key to optimizing the user experience. One way to gain insights into user behavior is t...
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...
When developing web applications using Ruby on Rails, you’ll often encounter situations where you need to either find a record in your database or create a n...
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...
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...