Skip to content

Instantly share code, notes, and snippets.

/*
* PCI tutorial
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
@AmesianX
AmesianX / Cooley_Tukey_FFT.c
Created October 18, 2018 19:02 — forked from gnail737/Cooley_Tukey_FFT.c
My FFT implementation
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#define FOREVER while(1){ (void)0; }
#define PI 3.141592654f
//this marco only usable by FFT_Compute() function assuming we already have var realComp, imagineComp defined
//four inputs: real is real component value, imagine is imaginary component value
//kn is muplication of time domain sample location n and frequency domain sample location k
// sum is total number of samples in current stage (stageNumber*2)
#define EXP_NEG_TWOPI_JAY_N_K_OVER_N(real, imagine, kn,sum) { realComp = real*cos(-2.0f*PI*kn/(float)sum)-imagine*sin(-2.0f*PI*kn/(float)sum); \
@AmesianX
AmesianX / dbg.py
Created November 2, 2018 02:31 — forked from shuffle2/dbg.py
powersaves-amiibo-frida stuffs
'''
Input MD5 : BB4E83D7A77AADD7F62728314EF09461
File Name : C:\Program Files (x86)\Powersaves For AMIIBO\Powersaves For AMIIBO.exe
0x108fd0 : schannel_recv -> log buffer on end
0x1090d0 : schannel_recv end
0x108d10 : schannel_send -> log buffer on start
0xce61 : deals with https "Token"
0xceab : deals with https "Vuid"
ar_windows_7_enterprise_with_sp1_x64_dvd_u_677643.iso Languages: Arabic SHA1: 5F7E81A84E64270764C3C649598370015E341C7B
ar_windows_7_enterprise_with_sp1_x86_dvd_u_677691.iso Languages: Arabic SHA1: 11BB8461C3D69D8FB35498E1CA0ED5A3B99A60D3
ar_windows_7_enterprise_x64_dvd_x15-70765.iso Languages: Arabic SHA1: 771C036295039F6F69EB4A243048C37EA24DF830
ar_windows_7_enterprise_x86_dvd_x15-70761.iso Languages: Arabic SHA1: 7812E8FE810CB8F23319A1A4A5E9A86B77D2D973
ar_windows_7_home_basic_with_sp1_x86_dvd_u_676462.iso Languages: Arabic SHA1: 18B9E305F71874C296817495FBC97F291D1141E8
ar_windows_7_home_basic_x86_dvd_x15-65636.iso Languages: Arabic SHA1: 8F855966C7CEF0AF8A2A7E1AC945A171389FB8B3
ar_windows_7_home_premium_with_sp1_x64_dvd_u_676551.iso Languages: Arabic SHA1: 8CC2AF16D33EE110DF4975DDB24BA27B44D0B9E1
ar_windows_7_home_premium_with_sp1_x86_dvd_u_676666.iso Languages: Arabic SHA1: CC6232A0FF99DA23D6F1E34ECFD76DBA1D138151
ar_windows_7_home_premium_x64_dvd_x15-65712.iso Languages: Arabic SHA1: A4C577BD1704556E18CF
@AmesianX
AmesianX / tls-demo.c
Created November 25, 2018 19:47 — forked from rossy/tls-demo.c
#include <windows.h>
#include <stdlib.h>
struct m_thread_info {
DWORD tid;
};
typedef struct m_thread_info *pthread_t;
static DWORD mpv_tls_index = FLS_OUT_OF_INDEXES;
@AmesianX
AmesianX / nginx.conf
Created December 22, 2018 14:18 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
@AmesianX
AmesianX / README.md
Created February 21, 2019 14:45 — forked from FrankSpierings/README.md
Linux Container Escapes and Hardening
@AmesianX
AmesianX / wait.js
Created March 19, 2019 20:39 — forked from corycook/wait.js
A simple promised wait utility.
function wait(ms) {
return new Promise((resolve) => setTimeout(resolve, ms));
}
@AmesianX
AmesianX / throttle.js
Created March 19, 2019 20:39 — forked from corycook/throttle.js
A simple throttle function.
function throttle(fn) {
let waiting = false;
return function() {
if (!waiting) {
waiting = true;
requestAnimationFrame(() => {
waiting = false;
fn.apply(this, arguments);
});
}
@AmesianX
AmesianX / debounce.js
Created March 19, 2019 20:39 — forked from corycook/debounce.js
A really simple debounce function.
function debounce(fn, ms) {
let id;
return function() {
clearTimeout(id);
id = setTimeout(() => fn.apply(this, arguments), ms);
}
}