Skip to content

Instantly share code, notes, and snippets.

View kexplo's full-sized avatar
🤔
k4o

Chanwoong Kim kexplo

🤔
k4o
View GitHub Profile
@kexplo
kexplo / BruteForcer.cpp
Created April 12, 2020 01:04 — forked from smcvey/BruteForcer.cpp
Animal Crossing New Horizons Turnip/Seed Bruteforcer
#include <stdio.h>
#include <stdlib.h>
namespace sead
{
class Random
{
public:
void init();
void init(uint32_t seed);
@kexplo
kexplo / TurnipPrices.cpp
Created April 9, 2020 02:30 — forked from Treeki/TurnipPrices.cpp
AC:NH turnip price calculator
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
// munged from https://github.com/simontime/Resead
namespace sead
{
class Random
{
@kexplo
kexplo / keybase.md
Created August 8, 2018 07:35
keybase.md

Keybase proof

I hereby claim:

  • I am kexplo on github.
  • I am kexplo (https://keybase.io/kexplo) on keybase.
  • I have a public key ASAA9HPYhuf0ofVPOb-Xe57anI4zFPF5IIcrlLSgcjHwbwo

To claim this, I am signing this object:

Building static libcurl and openssl on Windows

These instructions were tested on Windows 7 Professional w/ Visual Studio 2010

Building openssl

  1. Download the latest openssl from the website; at the time of this writing, it is 1.0.0d
  2. Extract it to your drive; I put it in c:\code\openssl-1.0.0d
  3. install ActiveState perl unless you already have a non-cygwin perl installed on windows
@kexplo
kexplo / exe2py.c
Created February 21, 2012 19:33 — forked from xor0x35/exe2py.c
#include <stdio.h>
#include <windows.h>
struct scriptinfo {
int tag;
int optimize;
int unbuffered;
int data_bytes;
char zippath[0];