Skip to content

Instantly share code, notes, and snippets.

View AndnixSH's full-sized avatar
💭
Mention notification is disabled. I am busy

AndnixSH

💭
Mention notification is disabled. I am busy
View GitHub Profile
@AndnixSH
AndnixSH / JumpRopeScript.cs
Created March 24, 2020 15:51
Baldi Basics 1.4.3 - Playtime's unused sounds
using System;
using TMPro;
using UnityEngine;
public class JumpRopeScript : MonoBehaviour
{
public JumpRopeScript()
{
}
@AndnixSH
AndnixSH / binaryseq.cs
Created March 20, 2021 15:04
binaryseq.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;
namespace Rextester
{
public class Program
{
public static void Main(string[] args)
@AndnixSH
AndnixSH / OrbScanner.cs
Created June 16, 2021 17:44
OrbScanner (AOBScan class for c# with half bytes + module finder)
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
namespace Rascal
{
@AndnixSH
AndnixSH / AutoHook.h
Created July 27, 2021 13:42 — forked from JohnCoates/AutoHook.h
Simple Objective-C Method Hooking
@protocol AutoHook <NSObject>
@required
+ (NSArray <NSString *> *)targetClasses;
@end
@AndnixSH
AndnixSH / Windows CE Product Keys
Created December 27, 2021 18:25 — forked from jamesy0ung/Windows CE Product Keys
Windows CE Product Keys
Windows CE 4:
XVQBX-JJGYD-YJXGH-4TCMB-G6VVQ
Windows CE 5:
XVQBX-JJGYD-YJXGH-4TCMB-G6VVQ
Windows Embedded CE 6:
PYHYP-WXB3B-B2CCM-V9DX9-VDY8T
Windows Embedded Compact 7:
@AndnixSH
AndnixSH / main.cpp
Created August 24, 2022 17:08 — forked from codenulls/main.cpp
A simple GTA:SA ASI mod to restore health of local player by pressing the R key on keyboard.
#include "plugin.h"
#include "common.h"
#include "CHud.h"
#include "CTimer.h"
using namespace plugin;
class RestoreHealthGTASA {
public:
RestoreHealthGTASA() {
@AndnixSH
AndnixSH / __patcher.py
Created December 5, 2022 08:58 — forked from SciresM/__patcher.py
quick and dirty pokemon masters patcher
from struct import unpack as up, pack as pk
import arm64, os, sys
TEXT_START_OFFSET = 0x507300
TEXT_END_OFFSET = 0x32FEBF0
RWDATA_START = 0x3A9F000
ENCTABLE_START = 0x3F2C238
ENCTABLE_END = 0x3F957B8
# This xorg configuration file will start a dummy X11 server.
# move it to /etc/X11/xorg.conf
# don't forget apt install xserver-xorg-video-dummy;
# based on https://xpra.org/Xdummy.html
Section "ServerFlags"
Option "DontVTSwitch" "true"
Option "AllowMouseOpenFail" "true"
Option "PciForceNone" "true"
Option "AutoEnableDevices" "false"
@AndnixSH
AndnixSH / xorg.conf
Last active October 16, 2024 10:12
Start desktop environment and enable GPU acceleration without monitor connected without dummy display plugs
# By default, desktop environment won't start unless you connect your monitor
# This config is for Nvidia only. It allows you to start desktop environment and enable GPU acceleration without monitor connected. Official Nvidia driver is required.
# NO DUMMY DISPLAY PLUGS REQUIRED
# Save the file to /etc/X11/xorg.conf
# Disable "Allow Flipping" in Nvidia settings to fix desktop flickering
# Tested on Linux Mint 21 with AnyDesk remote desktop
# GPU: NVIDIA GeForce GT 710
# nvidia-xconfig: X configuration file generated by nvidia-xconfig
@AndnixSH
AndnixSH / qnap_standby_debug.sh
Last active November 16, 2023 00:57
QNAP standby debug fix
# https://www.qnap.com/en/how-to/faq/article/how-do-i-find-out-which-process-prevents-the-hard-drives-from-standby-mode
# wget https://eu1.qnap.com/Storage/tsd/utility/standby_debug.sh;sh standby_debug.sh
binary=""
case "$(uname -m)" in
*x86_64*)
echo "Arch: x86_64"
binary=https://download.qnap.com/Storage/tsd/utility/Disk_Standby_Debug_x86_64/Disk_Standby_Debug
;;