Skip to content

Instantly share code, notes, and snippets.

View hvnsweeting's full-sized avatar

Viet Hung Nguyen hvnsweeting

View GitHub Profile
@hvnsweeting
hvnsweeting / bb.md
Last active December 19, 2023 10:23
Babashka over bash
@hvnsweeting
hvnsweeting / js_containers.md
Last active June 26, 2022 09:34
JavaScript containers - Array | Object | Dict

Array

Array là kiểu dữ liệu tương tự list của Python, dùng để chứa nhiều object, cú pháp tạo Array giống list Python:

>> let xs = [1,3, "hello"]
undefined
>> xs
Array(3) [ 1, 3, "hello" ]
>> xs.length
3 
@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active March 29, 2024 08:31
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname