Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                

Sharing is Caring

Explore all my posts on web development, software engineering, and more!

Còn chút gì để nhớ

Bài cảm nhận tham gia cuộc thi "Trở lại học trò" của Nhà xuất bản Trẻ tổ chức nhân sự kiện ra mắt truyện dài "Lá nằm trong lá" 2011

Automatically Creating New Users in Supabase with SQL Triggers

Supabase's built-in authentication system handles user creation securely. However, you might want to automate the creation of additional user data (like profiles) upon signup. This can be achieved using PostgreSQL triggers within Supabase.

Catch Typos Early with crate-ci/typos

Typos can creep into any codebase, but they don't have to slow you down. crate-ci/typos is a handy tool that helps you identify and fix typos in your project.

Compare 1Password vs Bitwarden

I wanted to share a quick comparison of two password managers I recently tested. After giving both a fair shot, I've decided to switch back to 1Password—here's why:

Configure ESLint, commitlint, lint-staged and Prettier to improve your development

This short guide will provide you a consistent and reusable development workflow for your new or existing projects, especially in JavaScript. You can increase your code quality and reduce the time spent on debugging. I will show you how to configure VSCode to handle code formatting, linting and type checking now.

VSCode extensions for developers

Visual Studio Code is a lightweight but powerful source code editor which runs on your desktop and is available for Windows, macOS and Linux. It comes with built-in support for JavaScript, TypeScript and Node.js and has a rich ecosystem of extensions for other languages (such as C++, C#, Java, Python, PHP, Go) and runtimes (such as .NET and Unity)

ingress-nginx controller not work for fanout configuration

Firstly, I want to says: Reading CHANGE_LOG will help you reduce the pain.

Running a Docker container as non-root user

By default, Docker container will be run as root user, this can cause us pain. We could tell Docker to run as an ordinary user instead of root.

Disable firewall in EC2 instance from AWS Console

I have locked myself out of SSH with UFW in EC2 AWS. Then, I can't reconnect.

Host ASP.NET Core on Linux with Nginx

This is a helper document guide how to setup, config and deploy an .NET Core Web Engine Hosting on an Ubuntu Server.

Minimal Docker container

Create the smallest possible Docker container

XML to JSON - VSCode extension

Convert XML from clipboard or current document/selection to JSON

Property lookup on booleans

Performs a lot of dynamic lookups on the Boolean.prototype, as the ToBoolean operation let's true pass for obj (which might itself be concerning that this can be a boolean). Instead of the coercion, the code should properly check for valid objects via typeof and strict equality with null comparison.

pino-redis - first contribution

Few months ago, I created a small project called pino-redis, a "transport" for the pino logger, receives pino logs from stdin and transform them into Redis.

Hello World! app with Node.js and Koa

Install Node.js for your platform