Skip to content

Instantly share code, notes, and snippets.

View SantiiRepair's full-sized avatar
🙆‍♂️
damn i'm fixing it

Santiago Ramirez SantiiRepair

🙆‍♂️
damn i'm fixing it
View GitHub Profile
@SantiiRepair
SantiiRepair / license-badges.md
Created September 5, 2023 23:39 — forked from lukas-h/license-badges.md
Markdown License Badges for your Project

Markdown License badges

Collection of License badges for your Project's README file.
This list includes the most common open source and open data licenses.
Easily copy and paste the code under the badges into your Markdown files.

Notes

  • The badges do not fully replace the license informations for your projects, they are only emblems for the README, that the user can see the License at first glance.

Translations: (No guarantee that the translations are up-to-date)

@SantiiRepair
SantiiRepair / color.go
Last active September 15, 2024 05:38
Some ANSI colors in Go
package color
var (
// Reset
ColorOff = "\033[0m" // Text Reset
// Regular Colors
Black = "\033[0;30m" // Black
Red = "\033[0;31m" // Red
Green = "\033[0;32m" // Green
$vm = "VMNAME"
Remove-VMGpuPartitionAdapter -VMName $vm
Add-VMGpuPartitionAdapter -VMName $vm
Set-VMGpuPartitionAdapter -VMName $vm -MinPartitionVRAM 1
Set-VMGpuPartitionAdapter -VMName $vm -MaxPartitionVRAM 11
Set-VMGpuPartitionAdapter -VMName $vm -OptimalPartitionVRAM 10
Set-VMGpuPartitionAdapter -VMName $vm -MinPartitionEncode 1
Set-VMGpuPartitionAdapter -VMName $vm -MaxPartitionEncode 11
Set-VMGpuPartitionAdapter -VMName $vm -OptimalPartitionEncode 10
Set-VMGpuPartitionAdapter -VMName $vm -MinPartitionDecode 1
@SantiiRepair
SantiiRepair / cca2.json
Created February 1, 2025 14:35
CCA2 Country Codes
[
"GS",
"GD",
"CH",
"SL",
"HU",
"TW",
"WF",
"BB",
"PN",
@SantiiRepair
SantiiRepair / pull.cmd
Created February 22, 2025 05:15
APK extractor
@echo off
setlocal enabledelayedexpansion
if "%~1"=="" (
echo Please provide a package ID or partial package ID.
exit /b
)
set package_input=%~1
set output_dir=output
@SantiiRepair
SantiiRepair / merge.cmd
Created February 22, 2025 05:16
APK merger
@echo off
setlocal
if "%~1"=="" (
echo Please provide the path to the folder containing the APKs.
exit /b
)
set APK_FOLDER=%~1
set OUTPUT_APK_NAME=%~2