Skip to content

Instantly share code, notes, and snippets.

View nhatchimai111's full-sized avatar
🎯
Focusing

Lazy Smurf nhatchimai111

🎯
Focusing
View GitHub Profile
@nhatchimai111
nhatchimai111 / install-node.sh
Created December 8, 2022 00:16 — forked from chrisidakwo/install-node.sh
Just another bash script to easily install node, npm and yarn on Ubuntu/Mac using nvm
#!/bin/sh
set -e
# Install node and npm via nvm - https://github.com/creationix/nvm
# Run this script like - bash script-name.sh
# Define versions
INSTALL_NODE_VER=10
INSTALL_NVM_VER=0.33.11
INSTALL_YARN_VER=1.7.0
@nhatchimai111
nhatchimai111 / AdbCommands
Created October 12, 2022 09:32 — forked from Pulimet/AdbCommands
Adb useful commands list
adb help // List all comands
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader
@nhatchimai111
nhatchimai111 / react-rendering.md
Created March 24, 2021 05:36 — forked from tuhuynh27/react-rendering.md
A (Mostly) Complete Guide to React Rendering Behavior

Translated from https://blog.isquaredsoftware.com/2020/05/blogged-answers-a-mostly-complete-guide-to-react-rendering-behavior/, author: Mark Erikson (from Redux team)

A (Mostly) Complete Guide to React Rendering Behavior

Bài viết cung cấp chi tiết về cách mà React render hoạt động, và việc sử dụng Context và Redux ảnh hưởng thế nào tới quá trình render của React.

"Render" là gì

Rendering is the process of React asking your components to describe what they want their section of the UI to look like, now, based on the current combination of props and state.

@nhatchimai111
nhatchimai111 / introrx.md
Created July 23, 2017 15:42 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
@nhatchimai111
nhatchimai111 / introrx.md
Created July 23, 2017 15:42 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing