- Get FModel
- Dump assets
- Create folder structure
- Download DRG modding toolkit
- Use DRGPacker to pack up files
- Inject assets with
_P.pakmethod - Enjoy
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
| # Makes "believable" fake files to confuse common recovery software | |
| # Copy the files to target device to overwrite free space after generating | |
| # For best results wipe free space with zero fill before copying | |
| # --- | |
| # Requires you to prepare all headers to be used as "header.ext" such as "header.jpg" and put it inside a subfolder "headers" | |
| # Make a subfolder to put the generated files into called "output" | |
| # Then adjust the parameters to fit your needs | |
| # This script written by Jamie, modified slightly to add more randomness. Tested on MINGW64/Msys64 and Linux | |
| LEFTOVER_SIZE=5102993 |
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
| # Apparent temperature calculation ("Feels Like" temperature) | |
| # T: Temperature in Fahrenheit, H: Relative Humidity | |
| # -42.58 + (2.049 * T) + (10.14 * H) + (-0.2248 * T * H) + (-0.006838 * T^2) + (-0.05482 * H^2) + (0.001228 * T^2 * H) + (0.0008528 * T * H^2) + (-0.00000199 * T^2 * H^2) | |
| import math | |
| T = float(input("Enter temperature in Celsius: ")) | |
| H = float(input("Enter Relative Humidity: ")) | |
| # Convert the temperature from C to F for calculation |
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
| Structure of the speech.json: | |
| { | |
| "lang":"cn", | |
| "unit":["./etc/unit/percent.wav","./etc/unit/negative.wav","./etc/unit/degrees.wav","./etc/unit/celsius.wav","./etc/unit/fahrenheit.wav","./etc/unit/kelvin.wav"], | |
| "week":["./etc/week/sunday.wav","./etc/week/monday.wav","./etc/week/tuesday.wav","./etc/week/wednesday.wav","./etc/week/thursday.wav","./etc/week/friday.wav","./etc/week/saturday.wav"], | |
| "month": null, | |
| "specialDay": null, | |
| "hour": null, | |
| "number":["./num/0.wav","./num/1.wav","./num/2.wav","./num/3.wav","./num/4.wav","./num/5.wav","./num/6.wav","./num/7.wav","./num/8.wav","./num/9.wav","./num/10.wav","./num/100.wav","./num/1000.wav"], |
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
| sBPNEJVo9p8HuBwlskXNIbjNzPfnAOAw5AHowegJJA+TtwGKXzr/06pHR3XjsIXmQORg/sh12cMLk3R+YZClyOo3Q1jDRffFBwB1FLowA743AW5ubmnFgPbB6AoEFu5uz7gpEwDG9vaS9uop6jDUiOAkHMOSKegw4AzbBBPDiPAsZPbokvboAOaI8AHoJBjDiem78P8B+bgzA/fp0cpDd/SNRx/DjY4A+MHhAw+2xg++0onDD6/ZANcPr9Eo8CD4JPzWdQKwKsOx91KI8Cxk9umSAMj26YjwMOAEBKj4WuHpKekwyNQGBBTDgO54eBCJEN8A2jjZWP+LAAHoJIBIww== |
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
| <h1><p id="nthEverthing">nth-Everthing</p></h1> | |
| <p id="letters">Hover a red letter. Cool, hu?</p> | |
| <p id="pseudo">Pseudo elements are working</p> | |
| <p id="click">Please click here</p> | |
| <p id="flip">Every second letter is flipped</p> | |
| <p id="crazy">Flip Hover Flip</p> | |
| <p id="font">Zoom all the things!</p> | |
| <p id="word">FirstWord some words Green some words LastWord</p> | |
| <p id="firstLastWord">Hello from nth-everthing</p> |
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
| <h3 id="title">Click here to begin loading</h3> | |
| <a href="#" onclick="toggleView()">Toggle View</a> | |
| <canvas id="c" width="300" height="300"></canvas> |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
| <title>Swipe Keyboard</title> | |
| <style> | |
| body { |
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
| /* | |
| (c) by Thomas Konings | |
| Random Name Generator for Javascript | |
| */ | |
| function capFirst(string) { | |
| return string.charAt(0).toUpperCase() + string.slice(1); | |
| } | |
| function getRandomInt(min, max) { |
NewerOlder