Skip to content

Instantly share code, notes, and snippets.

View FrannDzs's full-sized avatar
📣
https://www.youtube.com/watch?v=Ub83tX9GhbQ

Nekrodamus FrannDzs

📣
https://www.youtube.com/watch?v=Ub83tX9GhbQ
  • 35.71855526583099, 51.32881289835783
View GitHub Profile
@FrannDzs
FrannDzs / log.txt
Last active October 31, 2021 23:13
[1.16.5]-Epic-Knights-Armor-and-Weapons-4.5v recipe errors
[31oct.2021 19:56:22.618] [Server thread/ERROR] [net.minecraft.item.crafting.RecipeManager/]: Parsing error loading recipe magistuarmory:steel_ingot_blasting
com.google.gson.JsonSyntaxException: Unknown condition type: magistuarmory:type_disabled
at net.minecraftforge.common.crafting.CraftingHelper.getCondition(CraftingHelper.java:225) ~[forge:?]
at net.minecraftforge.common.crafting.CraftingHelper.processConditions(CraftingHelper.java:214) ~[forge:?]
at net.minecraftforge.common.crafting.CraftingHelper.processConditions(CraftingHelper.java:203) ~[forge:?]
at net.minecraft.item.crafting.RecipeManager.func_212853_a_(RecipeManager.java:57) ~[?:?]
at net.minecraft.item.crafting.RecipeManager.func_212853_a_(RecipeManager.java:38) ~[?:?]
at net.minecraft.client.resources.ReloadListener.func_215269_a(SourceFile:13) ~[?:?]
at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:714) ~[?:?]
at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:478) ~[?:?]
@FrannDzs
FrannDzs / log.txt
Created October 31, 2021 23:13
[1.16.5]-Epic-Knights-Armor-and-Weapons-4.5v recipe error 2
[31oct.2021 19:56:22.100] [Server thread/ERROR] [net.minecraft.item.crafting.RecipeManager/]: Parsing error loading recipe magistuarmory:copper_ellipticalshield
com.google.gson.JsonSyntaxException: Missing type, expected to find a string
at net.minecraft.util.JSONUtils.func_151200_h(SourceFile:111) ~[?:?]
at net.minecraftforge.common.crafting.CraftingHelper.getCondition(CraftingHelper.java:222) ~[forge:?]
at net.minecraftforge.common.crafting.CraftingHelper.processConditions(CraftingHelper.java:214) ~[forge:?]
at net.minecraftforge.common.crafting.CraftingHelper.processConditions(CraftingHelper.java:203) ~[forge:?]
at net.minecraft.item.crafting.RecipeManager.func_212853_a_(RecipeManager.java:57) ~[?:?]
at net.minecraft.item.crafting.RecipeManager.func_212853_a_(RecipeManager.java:38) ~[?:?]
at net.minecraft.client.resources.ReloadListener.func_215269_a(SourceFile:13) ~[?:?]
at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:714) ~[?:?]
@FrannDzs
FrannDzs / crashlog.txt
Created March 22, 2022 22:58
SKYGFX CRASH
GTA SA 1.0.0.0 US
Unhandled exception at 0x649B2C97 in skygfx.asi (+0x2c97): 0xC0000005: Access violation reading location 0x00000014.
Register dump:
EAX: 0x00000000 EBX: 0x00000001 ECX: 0x00A9B0C8 EDX: 0x44211A3D
EDI: 0x0BF93538 ESI: 0x1BBB8180 EBP: 0x0177F42C EIP: 0x649B2C97
ESP: 0x0177F418 EFL: 0x00210202 CS: 0x00000023 SS: 0x0000002B
GS: 0x0000002B FS: 0x00000053 ES: 0x0000002B DS: 0x0000002B
Stack dump:
0x0177F418: 1BBB8180 45A15F5D 44211A3D C1415EE4 6BE8996A 00000000
; Script genferated by the Inno Setup Script Wizard.
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
[Setup]
AppName=Microsoft Visual Basic 6.0
AppVerName=Microsoft Visual Basic 6.0
AppPublisher=Microsoft Corporation
AppPublisherURL=http://www.microsoft.com
AppSupportURL=http://www.microsoft.com
AppUpdatesURL=http://www.microsoft.com
@FrannDzs
FrannDzs / youtube_format_code_itag_list.md
Created July 11, 2022 06:53 — forked from sidneys/youtube_format_code_itag_list.md
YouTube video stream format codes itags

YouTube video stream format codes

Comprehensive list of YouTube format code itags

itag Code Container Content Resolution Bitrate Range VR / 3D
5 flv audio/video 240p - - -
6 flv audio/video 270p - - -
17 3gp audio/video 144p - - -
18 mp4 audio/video 360p - - -
22 mp4 audio/video 720p - - -
@FrannDzs
FrannDzs / en_us.json
Last active August 8, 2022 23:45
Conquest Reforged 1.18.2 en_us.json
This file has been truncated, but you can view the full file.
{
"itemGroup.conquest.metal": "Metal",
"itemGroup.conquest.weapons_and_tools": "Weapons And Tools",
"itemGroup.conquest.windows_and_glass": "Windows And Glass",
"itemGroup.conquest.advanced_masonry": "Advanced Masonry",
"itemGroup.conquest.mosaics_tiles_and_floors": "Mosaics Tiles And Floors",
"itemGroup.conquest.lighting": "Lighting",
"itemGroup.conquest.stone": "Stone",
"itemGroup.conquest.crops_and_herbs": "Crops And Herbs",
"itemGroup.conquest.water_and_air": "Water And Air",
@FrannDzs
FrannDzs / IE-disable-compatibility-view.bat
Created October 8, 2022 22:26 — forked from michal-m/IE-disable-compatibility-view.bat
Disable Compatibility View in Internet Explorer
@ECHO off
SETLOCAL
:: let's get the IE version first
SET qry=REG QUERY "HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer" /v Version
SET fnd=FINDSTR /I /L /C:"REG_SZ"
FOR /f "Tokens=2*" %%u IN ('%qry%^|%fnd%') DO ( SET IEVerReg=%%v )
FOR /f "Tokens=1,2,3,4 Delims=." %%a IN ("%IEVerReg%") DO ( SET IEVerMaj=%%a&SET IEVerMin=%%b&SET IEVerBld=%%c&SET IEVerRev=%%d )
IF %IEVerMaj% EQU 9 IF %IEVerMin% GEQ 10 SET IEVerMaj=10
@FrannDzs
FrannDzs / .. MediaCreationTool.bat ..md
Created February 27, 2023 16:36 — forked from AveYo/.. MediaCreationTool.bat ..md
Universal MediaCreationTool wrapper for all MCT Windows 10 versions - MOVED TO github.com/AveYo/MediaCreationTool.bat