Skip to content

Instantly share code, notes, and snippets.

View jgs03177's full-sized avatar
🤔
thinking

LEE Donghyeon jgs03177

🤔
thinking
  • South Korea
  • 19:50 (UTC +09:00)
View GitHub Profile
@jgs03177
jgs03177 / how_to_skip.txt
Last active April 2, 2024 12:48
지스트 (GIST) 폭력예방교육 빠르게 완료하기
https://pastebin.com/1e98k5zA
@luncliff
luncliff / cmake-tutorial.md
Last active September 15, 2024 03:36
CMake 할때 쪼오오금 도움이 되는 문서

CMake를 왜 쓰는거죠?
좋은 툴은 Visual Studio 뿐입니다. 그 이외에는 전부 사도(邪道)입니다 사도! - 작성자

주의

  • 이 문서는 CMake를 주관적으로 서술합니다
  • 이 문서를 통해 CMake를 시작하기엔 적합하지 않습니다
    https://cgold.readthedocs.io/en/latest/ 3.1 챕터까지 따라해본 이후 기본사항들을 속성으로 익히는 것을 돕기위한 보조자료로써 작성되었습니다
@Bilka2
Bilka2 / webhook.py
Last active September 20, 2024 07:47
Simple discord webhook with python
import requests # dependency
url = "<your url>" # webhook url, from here: https://i.imgur.com/f9XnAew.png
# for all params, see https://discordapp.com/developers/docs/resources/webhook#execute-webhook
data = {
"content" : "message content",
"username" : "custom username"
}
@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active September 21, 2024 08:06
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname