Skip to main content

Posts

SQL Cheat Sheet

··9 mins
Preface # SQL stands for Structured Query Language. It’s a powerful and widely-used language specifically designed for managing data stored in relational databases.

Git Cheatsheet

··11 mins
In today’s collaborative development world (as of 2024), version control is crucial for managing code effectively. Git, a distributed version control system (DVCS), has become the industry standard for developers of all backgrounds.

The correct way to benchmark your web server

··3 mins
Keeping your web server running smoothly is crucial for a positive user experience. But how do you know it can handle the traffic you expect? Benchmarking is the answer! It allows you to simulate real-world load and measure your server’s performance. This post will guide you through using wrk, a powerful tool for benchmarking your web server.

React + Next.js with Docker

Following my previous post on Vuejs + Nuxt.js with Docker, I will show you how to dockerize a React + Next.js web application. React is a JavaScript library for building user interfaces. Next.js is a framework for building React applications. Docker is a containerization platform that can be used to package and deploy these applications.

Vue.js + Nuxt with Docker

·2 mins
Vue.js and Nuxt are powerful frameworks for building web applications. Docker is a containerization platform that can be used to package and deploy these applications. To dockerize a Nuxt application, a Dockerfile is created that specifies the steps required to build the image. This typically includes installing Nuxt and the application’s dependencies.