Skip to content

Instantly share code, notes, and snippets.

View letsgoawaydev's full-sized avatar
👍

LetsGoAway letsgoawaydev

👍
View GitHub Profile
@letsgoawaydev
letsgoawaydev / How To Fix Flipnote Studio Crashing on DSi.md
Last active July 1, 2023 09:20
How To Fix Flipnote Studio Crashing on DSi

gonna put this here for anyone if they look through search or something because i did and it also seems like multiple people are getting this issue

DSI FLIPNOTE STUDIO CRASHING WHILE BROWSING SUDOMEMO???

(you will need a pc or something with access to your dsi's sd card to fix this)


Step 1. Make sure the rom you have is from the same region as your DSI.

If you have save data on your DSI from another region of Flipnote Studio, it should be stored on your SD Card under romLocation/saves/Flipnote Studio (REGION).pub or romLocation/saves/Flipnote Studio (REGION).pu# <- (number). I strongly recommend you make a backup of your save file before continuing.

@letsgoawaydev
letsgoawaydev / WinKeys.txt
Last active September 22, 2024 13:45
Windows Product Keys
``````````````````````````````````````````
Windows Product Keys for Getting Past Setup
Windows XP - Windows 11
Home product keys are currently not added.
THESE WILL ONLY HELP YOU GET PAST SETUP AND WILL NOT
ACTIVATE WHEN YOU CONNECT TO THE INTERNET. THESE JUST
LET YOU INSTALL WINDOWS TO YOUR HARDDISK UNACTIVATED
``````````````````````````````````````````
@letsgoawaydev
letsgoawaydev / winAlert.hx
Created December 10, 2022 13:29
Haxe Native Windows Errors (requires lime for other platform fall back, other wise remove whats not needed)
/**
* Native Windows Alert
*
* using Vbscript Message Box
*
* alert types:
*
* `error`
*
* `question`
@letsgoawaydev
letsgoawaydev / onScreenKeyboard.js
Last active December 11, 2022 08:10
On-Screen Keyboard Code for Mobile Browsers (useful for game dev)
let inputBoxValue = "";
function onScreenKeyboard() {
let inputBox = document.createElement("input");
inputBox.id = "inputBox";
inputBox.style = "opacity: 1; border: none; outline: 0; width: 0%; height: 0%; position: absolute; top: 0px; caret-color: transparent; color: transparent;";
inputBox.type = "text";
document.body.appendChild(inputBox);
inputBox.focus();
inputBox.onblur = function () {
document.body.removeChild(inputBox);