Skip to content

Instantly share code, notes, and snippets.

View AndnixSH's full-sized avatar
💭
Busy

AndnixSH

💭
Busy
  • Android Modding
View GitHub Profile
@AndnixSH
AndnixSH / disk-speed-test-read-write-hdd-ssd-perfomance-linux.md
Created December 16, 2023 10:54 — forked from ntamvl/disk-speed-test-read-write-hdd-ssd-perfomance-linux.md
Disk Speed Test (Read/Write): HDD, SSD Performance in Linux

Disk Speed Test (Read/Write): HDD, SSD Performance in Linux

From this article you’ll learn how to measure an input/output performance of a file system on such devices as HDD, SSD, USB Flash Drive etc.

I’ll show how to test the read/write speed of a disk from the Linux command line using dd command.

I’ll also show how to install and use hdparm utility for measuring read speed of a disk on Linux Mint, Ubuntu, Debian, CentOS, RHEL.

Take the average result: To get the accurate read/write speed, you should repeat the below tests several times (usually 3-5) and take the average result.

@AndnixSH
AndnixSH / FlatTextBoxDesigner.vb
Created May 8, 2023 17:06 — forked from ahmedosama007/FlatTextBoxDesigner.vb
Flat TextBox control based on the System.Windows.Forms.TextBox that supports themes including custom border colors in normal and focused states
'Copyright (c) Smart PC Utilities, Ltd.
'All rights reserved.
#Region "References"
Imports System.Windows.Forms.Design
#End Region
Friend Class FlatTextBoxDesigner
#include <iostream>
const char *vehicleNames[] = {"Landstalker", "Bravura", "Buffalo", "Linerunner", "Perennial", "Sentinel", "Dumper", "Fire Truck", "Trashmaster", "Stretch", "Manana",
"Infernus", "Voodoo", "Pony", "Mule", "Cheetah", "Ambulance", "Leviathan", "Moonbeam", "Esperanto", "Taxi", "Washington", "Bobcat",
"Mr. Whoopee", "BF Injection", "Hunter", "Premier", "Enforcer", "Securicar", "Banshee", "Predator", "Bus", "Rhino", "Barracks", "Hotknife",
"Trailer 1", "Previon", "Coach", "Cabbie", "Stallion", "Rumpo", "RC Bandit", "Romero", "Packer", "Monster", "Admiral", "Squalo",
"Seasparrow", "Pizzaboy", "Tram", "Trailer 2", "Turismo", "Speeder", "Reefer", "Tropic", "Flatbed", "Yankee", "Caddy", "Solair",
"Berkley's RC Van", "Skimmer", "PCJ-600", "Faggio", "Freeway", "RC Baron", "RC Raider", "Glendale", "Oceanic", "Sanchez", "Sparrow", "Patriot",
"Quadbike", "Coastg
@AndnixSH
AndnixSH / Real Racing.cpp
Created April 8, 2023 15:10 — forked from Razzile/Real Racing.cpp
Real Racing Cheats. see code for description. By Razzile
/**************************************************************
**************************************************************
* Real Racing Mods
* Includes: Lots of money, lots of coins, high rank
* All tracks unlocked, All tiers unlocked
* Just comment out any hacks you don't want to compile
* *********************Created by razzile*********************
**************************************************************/
#include <substrate.h>
# 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 / __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
@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 / 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 / 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 / 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
{