Skip to content

Instantly share code, notes, and snippets.

@antruongnguyen
antruongnguyen / PowerUpTerminal.md
Created June 4, 2020 03:56
Power up the terminal using iTerm2 and Oh-my-zsh

Power Up Terminal

Requires

  • Supported OS: macOS, Linux
  • Shell: zsh
  • Softwares:
    • Git
    • iTerm2 https://www.iterm2.com/
    • Oh My Zsh https://ohmyz.sh/
@antruongnguyen
antruongnguyen / Code coverage.md
Created October 26, 2020 03:36 — forked from mems/Code coverage.md
Web frontend code coverage

Every line of code we write today will end up as someone’s legacy code.

Everything that you write is going to disappears some day

RUM Code coverage, chose a 1h timeframe (per day) where 1% traffic run that the test

JS coverage

FES javascript instrimentation visualization

@antruongnguyen
antruongnguyen / Simple HTTP Server.md
Created June 22, 2021 16:38
Create Simple HTTP Server on localhost using NodeJS, Python, or Docker

Create Simple HTTP Server on localhost

Use NodeJS

Use Python

  • Usage with Python v3 sudo python3 -m http.server 80 (need sudo for port 80 only)
@antruongnguyen
antruongnguyen / git-101-vi.md
Created July 16, 2024 06:22
Git 101 - Hướng dẫn sử dụng git bằng Tiếng Việt

Git 101 - Hướng dẫn sử dụng git bằng bằng dòng lệnh

Đây là bài viết dành cho người mới bắt đầu sừ dụng git, phù hợp cho học sinh, sinh viên, người mới ra trường, hoặc mới đi làm.

Yêu cầu:

  • Git đã được cài đặt trên máy.
  • Cửa sổ dòng lệnh (Terminal/CMD)

1. Git là gì?

Git là một hệ thống quản lý phiên bản phân tán (Distributed Version Control System - DVCS) được sử dụng để theo dõi sự thay đổi trong mã nguồn của phần mềm trong quá trình phát triển. Nó cho phép nhiều người làm việc trên cùng một dự án mà không gặp phải vấn đề xung đột mã nguồn.