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
additions/ | |
-> config/ | |
-> Discord-Integration.toml | |
-> ftbbackups.cfg | |
-> mods/ | |
-> bedtimeban | |
-> dcintegration | |
-> tellme | |
crash-reports/ | |
heapdumps/ |
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
---- Minecraft Crash Report ---- | |
// Lolis deobfuscated this stacktrace using MCP's stable-39 mappings. | |
// Oh - I know what I did wrong! | |
Time: 2024-01-28 03:46:54 GMT | |
Description: Ticking block entity | |
java.util.ConcurrentModificationException | |
at java.util.LinkedList$ListItr.checkForComodification(LinkedList.java:966) | |
at java.util.LinkedList$ListItr.next(LinkedList.java:888) |
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
---- Minecraft Crash Report ---- | |
// My bad. | |
Time: 2/28/23 2:32 AM | |
Description: Exception in server tick loop | |
java.lang.NullPointerException: Exception in server tick loop | |
at hellfirepvp.astralsorcery.common.crystal.CrystalCalculations.calculate(CrystalCalculations.java:36) ~[astralsorcery:1.16.4-1.14.1] {re:classloading} | |
at hellfirepvp.astralsorcery.common.crystal.CrystalCalculations.getThroughputMultiplier(CrystalCalculations.java:103) ~[astralsorcery:1.16.4-1.14.1] {re:classloading} | |
at hellfirepvp.astralsorcery.common.starlight.network.TransmissionChain.recBuildChain(TransmissionChain.java:108) ~[astralsorcery:1.16.4-1.14.1] {re:classloading} |
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
from datetime import datetime, timedelta | |
from dateutil import tz | |
from functools import reduce | |
import os | |
from pprint import pprint | |
import re | |
import sys | |
if sys.version_info < (3,7): | |
sys.exit('Python 3.7 guarantees ordered dicts, which this script relies on') |
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
+--------+------------+--------------+----------+ | |
| Dim ID | Chunk | Block pos | Entities | | |
+--------+------------+--------------+----------+ | |
| 0 | 0, -172 | 0, -2752 | 0 | | |
| 0 | 0, -173 | 0, -2768 | 0 | | |
| 0 | 0, -174 | 0, -2784 | 0 | | |
| 0 | 0, -175 | 0, -2800 | 0 | | |
| 0 | 0, -176 | 0, -2816 | 0 | | |
| 0 | 0, -178 | 0, -2848 | 0 | | |
| 0 | 0, -179 | 0, -2864 | 0 | |
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
+---------------------------------------------------+--------+------------------------------------------+----------------+---------+ | |
| World 'overworld' (dim: 0) | | |
| Loaded chunks: 2951 | | |
| All currently loaded entities: | | |
+---------------------------------------------------+--------+------------------------------------------+----------------+---------+ | |
| Name | Health | Location | Chunk | Region | | |
+---------------------------------------------------+--------+------------------------------------------+----------------+---------+ | |
| Alpine Buck | 20.00 | x = 2525.80, y = 82.00, z |
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
+----------------------------------------------------------+--------+------------------------------------------+----------------+---------+ | |
| World 'overworld' (dim: 0) | | |
| Loaded chunks: 9654 | | |
| All currently loaded entities: | | |
+----------------------------------------------------------+--------+------------------------------------------+----------------+---------+ | |
| Name | Health | Location | Chunk | Region | | |
+----------------------------------------------------------+--------+------------------------------------------+----------------+---------+ | |
| Alpine Buck |
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
//10.10.10.10.example.com/ 1 | |
//contoso.pkgs.visualstudio.com/_packaging/MyFeed/npm/:_authToken=heider 1 | |
//google.com/ 1 | |
//registry.blah.com/ 1 | |
//registry.blah.com/foo:_authToken=whatev 1 | |
//registry.blah.com/foo:_password= 1 | |
//registry.blah.com/foo:username=barbaz 1 | |
//registry.blah.edu/foo/bar/baz:_authToken=recurseNoLevel 1 | |
//registry.blah.eu/ 1 | |
//registry.blah.foo/ 1 |
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
print('I am thinking of a number between 1 and 20...') | |
import random | |
secret_number = random.randint(1, 20) | |
tries = 0 | |
winner = False | |
while tries < 6 and not winner: |
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
echo "*.json diff=json" >> ~/.gitattributes | |
git config --global core.attributesfile ~/.gitattributes | |
git config --global diff.json.textconv "jq '.' \$1" |
NewerOlder