Skip to content

Instantly share code, notes, and snippets.

@muff-in
muff-in / resources.md
Last active July 25, 2025 15:56
A curated list of Assembly Language / Reversing / Malware Analysis / Game Hacking-resources
@niklaskeerl
niklaskeerl / install_pwndbg.md
Last active July 27, 2025 12:48
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:

@Overv
Overv / HelloTriangle.cc
Created April 24, 2016 18:54
Vulkan hello triangle
#include <iostream>
#include <fstream>
#include <vector>
#include <string>
#include <algorithm>
#include <chrono>
#include <functional>
#define GLFW_INCLUDE_VULKAN
#include <GLFW/glfw3.h>