Skip to content

Instantly share code, notes, and snippets.

View YukiSnowy's full-sized avatar

Pathomporn Niamraksa YukiSnowy

  • Thailand
  • 03:24 (UTC +07:00)
View GitHub Profile
@therathatter
therathatter / fps-limit.c
Created June 18, 2022 06:03
Pump It Up 60 FPS locker
#include <dlfcn.h>
#include <GL/glx.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <stdbool.h>
#include <stdint.h>
#include <unistd.h>
#include <sched.h>
@aeppert
aeppert / sym_test.cc
Created August 8, 2017 18:31
Enumerate and demangle symbols within an executable's own symbol table.
#include <stdio.h>
#include <stdlib.h>
#include <cxxabi.h>
#include <link.h>
#include <string>
#include <vector>
#include <iostream>
using namespace std;