Skip to content

Instantly share code, notes, and snippets.

View RealKC's full-sized avatar
😎
Making undecidable grammars

Dumitru Mițca RealKC

😎
Making undecidable grammars
View GitHub Profile
@whitequark
whitequark / meow.md
Last active May 6, 2025 11:17
reverse engineering tools

"%" means not tested by me personally.

Reference material

Disassemblers and decompilers

  • Binary Ninja: interactive native code disassembler, decompiler, and debugger
  • when building, replace the BN SDK it downloads with a path to BN API library
@angstyfrostyneko
angstyfrostyneko / clipit.ps1
Last active April 16, 2025 15:14
FFMPEG wrapper that compresses videos under target size
param (
[Parameter(Mandatory)][string]$video,
[float]$size = 10.0,
[string]$name = "$($size)MB $([System.IO.Path]::GetFileNameWithoutExtension($video))",
[ValidateSet("av1", "h264", "h265", "vp9")]
[string]$encoder = "h264",
[ValidateSet("amd", "nvidia", "intel", "none")]
[string]$gpu = "amd",
[ValidatePattern("\d+:\d+:\d+")]
[string]$start = "00:00:00",
@matthewzring
matthewzring / markdown-text-101.md
Last active May 12, 2025 17:30
A guide to Markdown on Discord.

Markdown Text 101

Want to inject some flavor into your everyday text chat? You're in luck! Discord uses Markdown, a simple plain text formatting system that'll help you make your sentences stand out. Here's how to do it! Just add a few characters before & after your desired text to change your text! I'll show you some examples...

What this guide covers:

@zeux
zeux / minid3d9.h
Created February 12, 2016 08:32
Minimal set of headers for D3D9
// This file is designed to be included in D3D9-dependent code instead of d3d9.h, while adding minimal amount of junk
#pragma once
#include <BaseTyps.h>
#include <BaseTsd.h>
// stdlib.h
#ifndef _INC_STDLIB
#define _INC_STDLIB
#endif