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
| # 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" |
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
| 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 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
| #include "plugin.h" | |
| #include "common.h" | |
| #include "CHud.h" | |
| #include "CTimer.h" | |
| using namespace plugin; | |
| class RestoreHealthGTASA { | |
| public: | |
| RestoreHealthGTASA() { |
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
| 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: |
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
| @protocol AutoHook <NSObject> | |
| @required | |
| + (NSArray <NSString *> *)targetClasses; | |
| @end |
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
| 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 | |
| { |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text.RegularExpressions; | |
| namespace Rextester | |
| { | |
| public class Program | |
| { | |
| public static void Main(string[] args) |
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
| using System; | |
| using TMPro; | |
| using UnityEngine; | |
| public class JumpRopeScript : MonoBehaviour | |
| { | |
| public JumpRopeScript() | |
| { | |
| } |
NewerOlder