How to write a New Post in the Chirpy template
This tutorial will guide you how to write a post in the Chirpy template, and it’s worth reading even if you’ve used Jekyll before, as many features require specific variables to be set. Naming and...
This tutorial will guide you how to write a post in the Chirpy template, and it’s worth reading even if you’ve used Jekyll before, as many features require specific variables to be set. Naming and...
Whichjdk Introduce JDK, OpenJDK and some openjdk distributions. And some recommendations for using the right distributions Baeldung This blog publishes to-the-point guides and courses, with...
Examples Example 1: List All instances from Default Region aws ec2 describe-instances Example 2: List All instances with query With all informations aws ec2 describe-instances \ --region ...
Prepare Dockerfile, image, container and IP address Dockerfile FROM ubuntu:22.10 RUN apt update && apt install -y openssh-server nano RUN mkdir /var/run/sshd # Aa@123456 is root pa...
NodeJS Checking memory usage const makeReadable = (value: number): string => `${Math.round((value / 1024 / 1024) * 100) / 100} MB`; export const memoryUsage = (): string => { const use...
Linux Install or update the AWS CLI *Linux x86 (64-bit): curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" unzip awscliv2.zip sudo ./aws/install *Linux ARM cur...
Debian/Ubuntu Useful Commands Check OS version cat /etc/os-release Search text from terminal grep -rnwi '/path/file.js' -e 'keyword_not_case_sensitive' Show some logs, contents from line X t...
Tips Everyday Git in twenty commands or so git help everyday Show helpful guides that come with Git git help -g Search change by content git log -S'<a term in the source>' Show chan...
Example // main.ts import { NestFactory } from '@nestjs/core'; import { AppModule } from './app.module'; import { bootstrapLogger } from './bootstrap-logger'; ... const app = await NestFactory....
Cơ bản 1. Closure là gì? Closure là một dạng function nằm trong một function khác. Function bên trong có quyền truy cập vào scope (phạm vi) và các tham số của function bên ngoài ngay cả khi funct...