Skip to content

Instantly share code, notes, and snippets.

View KiRist-code's full-sized avatar
💭
UwU

KiRist KiRist-code

💭
UwU
View GitHub Profile
@abiriadev
abiriadev / internet_overdoes.md
Last active March 25, 2023 17:24
translated lyrics of INTERNET OVERDOSE

INTERNET OVERDOSE

この混沌とした 令和のインターネットを
오늘도 이 혼돈 속 인터넷 세상에

照らす一筋の光
한줄기 빛나는 광선

電子の海を漂う オタクに笑顔を
전자의 대해를 헤엄치는 오타쿠들에게 미소를

@KiRist-code
KiRist-code / main.cpp
Created August 16, 2021 09:20
How to set SDL frame between wallpaper and wallpaper icon
/* if ur enviroment is Windows, import SDL2 and winapi
if ur enviroment is Linux or Unix, import SDL2 and X11/Xlib.h
*/
#if _WIN32 || _WIN64
BOOL CALLBACK EnumWindowsProc(HWND hwnd, LPARAM lParam) {
HWND p = FindWindowEx(hwnd, NULL, "SHELLDLL_DefView", NULL);
HWND* ret = (HWND*)lParam;
if (p) {
@Yuma-Tsushima07
Yuma-Tsushima07 / Jinja2-SSTI.md
Last active July 24, 2022 08:21
Jinja2- SSTI

Jinja2 SSTI

Jinja2 - Basic injection

{{4*4}}[[5*5]]
{{7*'7'}} would result in 7777777
{{config.items()}}

Jinja2 - Template format

🌞 Morning 19 commits ███▏░░░░░░░░░░░░░░░░░ 15.1%
🌆 Daytime 46 commits ███████▋░░░░░░░░░░░░░ 36.5%
🌃 Evening 58 commits █████████▋░░░░░░░░░░░ 46.0%
🌙 Night 3 commits ▌░░░░░░░░░░░░░░░░░░░░ 2.4%
@niklaskeerl
niklaskeerl / install_pwndbg.md
Last active September 6, 2025 17:22
Install pwndbg and gdb on arch linux

How to install pwndbg and gdb on arch linux

sudo pacman -S gdb
sudo pacman -S pwndbg
echo 'source /usr/share/pwndbg/gdbinit.py' >> ~/.gdbinit

If you are getting the following error "Cannot find Pwndbg virtualenv directory: /usr/share/pwndbg/.venv: please re-run setup.sh", do the following steps, otherwise ignore:

@Eniwder
Eniwder / discordRequestSample.js
Last active January 7, 2022 10:22
discord request sample in dev tool
var xhr = new XMLHttpRequest();
xhr.open("POST", "https://discordapp.com/api/v6/channels/{channelId}/messages", true);
xhr.setRequestHeader('Content-Type','application/json');
xhr.setRequestHeader('Authorization',authKey); // check message header
xhr.send(JSON.stringify({
content:'somthing message'
}));
// sample request
var xhr = new XMLHttpRequest();
@luncliff
luncliff / cmake-tutorial.md
Last active February 18, 2026 17:08
CMake 할때 쪼오오금 도움이 되는 문서

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

주의

  • 이 문서는 CMake를 주관적으로 서술합니다
  • 이 문서를 통해 CMake를 시작하기엔 적합하지 않습니다
    https://cgold.readthedocs.io/en/latest/ 3.1 챕터까지 따라해본 이후 기본사항들을 속성으로 익히는 것을 돕기위한 보조자료로써 작성되었습니다
@slowkow
slowkow / ssh-tutorial.md
Last active November 7, 2025 00:56
ssh to a server without typing your password

How to ssh to a remote server without typing your password

Save yourself a few keystrokes. Follow the steps below:

  1. Run this Bash script on your laptop:

    #!/usr/bin/env bash
    

The hostname of your remote server.