This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- 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") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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"; |