Skip to content

Instantly share code, notes, and snippets.

View GiaNTizmO's full-sized avatar
😼
PS This cutie is my cat, so adorable 😻

Alikhan "Gamania" Khartumov GiaNTizmO

😼
PS This cutie is my cat, so adorable 😻
View GitHub Profile
@GiaNTizmO
GiaNTizmO / debugheader_remover.lua
Last active September 13, 2023 19:36
DotNetRuntimeDebugHeader AOT Debug Export Remover for VMProtect
-- VMProtect .NET AOT Debug header remover by Gamania
-- Version: 1.1 Date: 09.13.2023
function OnBeforeCompilation()
RemoveDotNetDBGHeader()
end
function RemoveDotNetDBGHeader()
local file = vmprotect.core():outputArchitecture() -- get output file
local exportHeader = file:exports():itemByName("DotNetRuntimeDebugHeader")
namespace ArgusPro.AI
{
public class YoloVec
{
public int X1 { get; set; }
public int Y1 { get; set; }
public int X2 { get; set; }
public int Y2 { get; set; }
public YoloVec(int x1, int y1, int x2, int y2)
@GiaNTizmO
GiaNTizmO / conf
Created January 28, 2022 20:37
IPBoard Nginx Configuration example
server {
listen 80;
server_name your.domain;
# static file configuration
error_log /var/log/sparkhack.error_log info;
location ~* .(gif|jpg|jpeg|png|ico|wmv|3gp|avi|mpg|mpeg|mp4|flv|mp3|mid|js|css|wml|swf)$ {
root /var/www/youdomain;
expires max;
add_header Pragma public;
add_header Cache-Control "public, must-revalidate, proxy-revalidate";