Preface SQL stands for Structured Query Language. It’s a powerful and widely-used language specifically designed for managing data stored in relational databases. There are several situations where using SQL directly might be preferable to using an Object-Relational Mapping tool (ORM)
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.
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.
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 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.
In the world of command-line interfaces, Midnight Commander (MC) stands out as a powerful and versatile file manager that brings efficiency and convenience to text-based terminals
Scrcpy is an open-source tool that allows users to mirror and control their Android devices from their computer
So hail to the package managers, we say, for keeping our software up-to-date each day!
Are you tired of losing track of your bookmarks across multiple browsers? Look no further than Buku, the powerful bookmark manager that imports bookmarks from all your browsers, works on console and has a web-based server.
git push --no-verify is a command used to push your local changes to a remote repository without running pre-commit hooks or pre-push hooks. Pre-commit hooks and pre-push hooks are scripts that run before a commit or a push, and they are used to perform automated tests, code quality checks, or other actions that help ensure the quality and correctness of your code. You can use husky or pre-commit if you need extra features or just production ready tools.