This file contains 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
import os | |
import struct | |
import progressbar | |
import tkinter as tk | |
from tkinter import filedialog | |
def choose_file(): | |
root = tk.Tk() | |
root.withdraw() | |
file_path = filedialog.askopenfilename(filetypes=[("CFG files", "!archive.cfg")]) |
This file contains 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
import os | |
import struct | |
import progressbar | |
import tkinter as tk | |
from tkinter import filedialog | |
ATTR_QUANTITY = 21 | |
AttrName = ["FORM", "TERRTITL", "TEXT", "XLSC", "HEAD", "XBGM", "SUNA", "COLS", "XBMP", "XTIN", "ZONE", "ZMAP", "AIMP", "RECT", "XWAT", "XRTP", "PLTX", "JUNC", ".", "RSEG", "BSP "] | |
AttrLength = [4, 8, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 4, 4] | |
AttrQuantity = [0] * ATTR_QUANTITY |
This file contains 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
import tkinter as tk | |
from tkinter import filedialog | |
import hashlib | |
import os | |
import sys | |
import ctypes | |
import subprocess | |
# Función para verificar si se tienen permisos de administrador | |
def is_admin(): |
This file contains 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
import sys | |
import requests | |
import time | |
import webbrowser | |
import os | |
import re | |
# Your GitHub Personal Access Token | |
token = 'INSERT-TOKEN' |
This file contains 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
@echo off | |
set /p rpt_ID=Ingresa el archivo dump de IDs | |
:: set /p rpt_RDRAM=Ingresa el archivo dump de RDRAM | |
"tools/xxd.exe" -e -g4 "%rpt_ID%" | "tools/xxd.exe" -r > database_IDs.bin | |
:: "tools/xxd.exe" -e -g4 "%rpt_RDRAM%" | "tools/xxd.exe" -r > database_RDRAM.bin | |
pause |
This file contains 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 <Adafruit_NeoPixel.h> | |
#include "BluetoothSerial.h" | |
//#include "soc/soc.h" | |
//#include "soc/rtc | |
#define FASTLED_FORCE_SOFTWARE_SPI | |
#if !defined(CONFIG_BT_ENABLED) || !defined(CONFIG_BLUEDROID_ENABLED) | |
#error Bluetooth is not enabled! Please run `make menuconfig` to and enable it | |
#endif |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
@echo off | |
set /p ID=Ingresa el ID (SAME control.xml!!)(Example: 0100444444440000) : | |
Tools\hacpack.exe -k "%userprofile%\.switch\prod.keys" -o "%temp%\NCA" --titleid %ID% --type nca --ncatype program --exefsdir "E:\Switch\NSO\SNESNSO\USA-EUR\exefs" --romfsdir "E:\Switch\NSO\SNESNSO\USA-EUR\romfs" --logodir "Files\logo" | |
Tools\hacpack.exe -k "%userprofile%\.switch\prod.keys" -o "%temp%\NCA" --titleid %ID% --type nca --ncatype control --romfsdir "Files\control" | |
forfiles /P "%temp%\NCA" /M * /C "cmd /c if @fsize GEQ 20000000 echo @path > "%temp%\largefiles.txt" | |
set /p largefiles=<"%temp%\largefiles.txt" | |
forfiles /P "%temp%\NCA" /M * /C "cmd /c if @fsize LEQ 500000 echo @path > "%temp%\smalledfiles.txt" |
This file contains 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
/*//Arduino_3DCube_Control | |
//Command must be at 38400 baud | |
0xAD //Abrir menu para puerto de Serie para Arduino | |
0xf2 //Abrir Comando para introducir animacion | |
0xED //Salir completamente del modo Arduino | |
//serial data show ARDUINO,display command data 65,Each time data 64 COUNT+0xF2 | |
*/ | |
#include <stdio.h> | |
#define LAYER_COUNT 8 |