Skip to content

Instantly share code, notes, and snippets.

View Withoutbytes's full-sized avatar

Jonathan Withoutbytes

View GitHub Profile
@lvous
lvous / D3D Aimbot
Created August 12, 2014 19:33
D3D Aimbot
//pure d3d aim 1.0
//simplified version
#include <Windows.h>
#include <d3d9.h>
#include <d3dx9.h>
#pragma comment(lib, "d3d9.lib")
#pragma comment(lib, "d3dx9.lib")
//#include "detours/detours.h" //detours 1.5
#include "detours3/detours.h" //detours 3.0 (google microsoft detours)
@willurd
willurd / web-servers.md
Last active October 26, 2025 20:00
Big list of http static server one-liners

Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.

Discussion on reddit.

Python 2.x

$ python -m SimpleHTTPServer 8000