Skip to content

Instantly share code, notes, and snippets.

View aerosoul94's full-sized avatar

aerosoul94

View GitHub Profile
@hww
hww / crc32.py
Last active August 19, 2022 12:33 — forked from aerosoul94/dc-disassemble.py
The Last of Us script disassembler
# Python
import os
import sys
def create_table(poly):
init=0
l=[0]*256
for i in range(256):
@Jinmo
Jinmo / jni_all.h
Created May 26, 2017 07:36
Useful when reversing JNI on IDA Pro
/*
* Copyright (c) 1996, 1998, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
@asford
asford / .gitignore
Last active April 5, 2023 11:58
pybind11 ostream example
# Created by https://www.gitignore.io/api/c++,cmake
### C++ ###
# Prerequisites
*.d
# Compiled Object files
*.slo
*.lo
@dosomder
dosomder / PatchMW2MaxclientsCL.cpp
Last active October 3, 2020 02:57
IW4M client patches for increasing of maxclients
// ==========================================================
// IW4M project
//
// Component: clientdll
// Sub-component: steam_api
// Purpose: Increase maxclient limit - client part.
//
// Initial author: zxz0O0
// Started: 2013-03-18
// ==========================================================
@dosomder
dosomder / PatchMW2MaxclientsSV.cpp
Last active October 3, 2020 02:57
IW4M server patches for increasing of maxclients
// ==========================================================
// IW4M project
//
// Component: clientdll
// Sub-component: steam_api
// Purpose: Increase maxclient limit - server part.
//
// Initial author: zxz0O0
// Started: 2013-03-18
// ==========================================================
@dosomder
dosomder / PatchMW2Maxclients.cpp
Last active October 3, 2020 02:57
IW4M Various common patches for increasing of maxclients
// ==========================================================
// IW4M project
//
// Component: clientdll
// Sub-component: steam_api
// Purpose: Increase maxclient limit.
//
// Initial author: zxz0O0
// Started: 2013-03-18
//