- Pink Images: Size restriction issue. 1024 w/h max.
- White/Corrupted Images: Out of vram. Compress PNG images, resize smaller than 400x240 and use 8-bit coloring.
- White 3D Texturing: Shaders are incompatible. Do not use Default shaders. Use Sprites/Default shaders.
- Citra Memory errors (game crashing): Model Light & Reflection Probes, and Cast Shadows should be disabled.
- FBI Install, no game appears: Check to ensure your application ID is unique. (Ex: 0x48300 would be unique)
- Citra Memory Errors Immediately upon scene startup: You may have a sprite renderer using too large PNG image.
- Only Display1-10 instead of Lower LCD, Upper LCD: Go to Build Settings > N3DS > press the Switch Platform button.
- Camera set to Lower LCD, but canvas doesn't show: Change Target Display on the canvas to Lower LCD.
| <?php | |
| $WPSite = "https://WordPressSite.com"; // CHANGE THIS | |
| // Make CORS accessible | |
| header("Access-Control-Allow-Origin: *"); | |
| header("Content-Type: application/json; charset=UTF-8"); | |
| error_reporting(E_ALL); | |
| // Pull data via Curl | |
| function GetURLData($url) { |
| // This uses jQuery! Get it at https://code.jquery.com | |
| $(document).ready(function () { | |
| $.ajax({ | |
| url: 'https://Website.com/wp-feed-xml-2-json.php', | |
| type: 'GET', | |
| dataType: "json", | |
| success: DisplayAllOps | |
| }); | |
| }); |
| <head> | |
| <link rel="manifest" href="/manifest.json" /> | |
| </head> | |
| <body> | |
| <script> | |
| if ("serviceWorker" in navigator) { | |
| window.addEventListener("load", () => { | |
| navigator.serviceWorker.register("/pwabuilder-sw.js").then((reg) => { | |
| console.log("Service worker registered.", reg); |
- Install VS.Net 2019
- Install ML.NET Model Builder Extension: https://marketplace.visualstudio.com/items?itemName=MLNET.07
- Create a new C# application in VS.Net, right click on project > Add > Machine Learning.
- Select the Image Classification scenario. Supply some images.
Reference this doc: https://dotnet.microsoft.com/learn/ml-dotnet/get-started-tutorial/intro
and this doc: https://docs.microsoft.com/en-us/dotnet/machine-learning/tutorials/object-detection-onnx
| // Iterate through a string, explode by commas. | |
| text = argument0; | |
| char_string = 0; | |
| if string_pos(",", text) != 0 | |
| { | |
| var cc = string_count(",",text); | |
| for (i = 0; i <= cc; i += 1) { | |
| if (i < cc) { |
| @ECHO OFF | |
| REM This is for GIMX cable and ULTRAGRID video stream | |
| SET GIMX_PATH=C:\Program Files\GIMX | |
| SET ULTRAGRID_PATH=C:\Users\jake\Desktop\UltraGrid | |
| SET HOST_IP=192.168.0.0 | |
| SET GIMX_USBPORT=COM3 | |
| SET HDMI_INPUT=idk | |
| SET GIMX_CONF=X360Pad |
-
Get wayback machine proxy software - https://github.com/STRML/wayback-machine-machine
-
Configure proxy software, and setup proxy on your OS. Run proxy software.
-
If using Windows, get WGet software - https://eternallybored.org/misc/wget/
-
Open a command/terminal window in the directory you want to download the site to, use this command:
wget -r -np -e use_proxy=yes -e http_proxy=127.0.0.1:4080 -k http://www.mywaybackmachinewebsite.com
NOTE: If you want, visit the website first to make sure it's exactly what you want prior to download. WGet will download whatever your browser sees.
| DB: rule_values | |
| _FEATURES_ | |
| - Remove corpse retrieving | |
| - Remove experience loss upon death | |
| - Remove unmemorize spells upon death | |
| - Higher HP/MANA/STA regen | |
| - Soul bind anywhere | |
| - Reduce NPC running away at low HP | |
| - Higher hit chance |
| <?php | |
| require __DIR__ . '/vendor/autoload.php'; | |
| use Patreon\API; | |
| use Patreon\OAuth; | |
| // get client_id, client_secret, redirect_uri and creator_token from https://www.patreon.com/portal/registration/register-clients | |
| $client_id = ""; | |
| $client_secret = ""; | |
| $redirect_uri = ""; | |
| $creator_token = ""; |