Skip to content

Instantly share code, notes, and snippets.

View m0hadang's full-sized avatar

mohadang m0hadang

View GitHub Profile
@m0hadang
m0hadang / README.md
Last active January 29, 2025 01:06
Bookmark
@m0hadang
m0hadang / README.md
Last active October 23, 2024 16:55
vim(NVim, LazyVim, NvChad) shortcut

vim(NVim, LazyVim) ShortCut

NVim

  • intellisense : tab(can use in command(:) mode)
  • keymap site :

Lazy Vim Shortcut

  • select block : ctrl + space
  • shit buffer : shit + h,j,k,l
@m0hadang
m0hadang / README.md
Last active March 9, 2024 03:37
IOCP sample

IOCP sample

@m0hadang
m0hadang / Makefile
Last active March 9, 2024 03:37
Makefile sample
CXX = g++
DIR = src
BUILD_DIR = bin
SRCS = $(shell find src -name '*.cc')
INCLUDE = -Iinclude
LIBS = -std=c++14 -g
all:
mkdir -p bin
$(CXX) $(SRCS) example/$(main).cc -o $(BUILD_DIR)/$(main) $(LIBS) $(INCLUDE)
@m0hadang
m0hadang / README.md
Created February 17, 2024 13:47
upbit test

upbit test

@m0hadang
m0hadang / README.md
Last active March 9, 2024 03:38
sentry native refrence
@m0hadang
m0hadang / README.md
Last active March 9, 2024 03:38
get json(sentry native)

sentry native sample(get json)

@m0hadang
m0hadang / README.md
Last active February 17, 2024 13:41
rust-sample(main, test, lib)

rust-sample(main, test, lib)

@m0hadang
m0hadang / README.md
Last active February 17, 2024 13:42
cargo command cheat sheet

cargo command cheat sheet

cargo new hello-rust
cargo new prob1 --lib
cargo test
cargo run
cargo check
cargo fmt
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh