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
# pip install robotpy | |
import os | |
from wpiutil.log import DataLogReader | |
import struct | |
from concurrent.futures import ProcessPoolExecutor | |
from multiprocessing import freeze_support | |
PATH = "/path/to/your/log/folder" |
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 pymongo import MongoClient | |
class MongoDB(): | |
def __init__(self, connectionString, database, collection): | |
self._client = MongoClient(connectionString) | |
self._db = self._client[database] | |
self._col = self._db[collection] | |
def __setitem__(self, key, value): |
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 ---- | |
// I bet Cylons wouldn't have this problem. | |
Time: 22/02/21 3:02 PM | |
Description: Unexpected error | |
java.lang.IllegalArgumentException: Cannot use model data for a world other than the current client world | |
at com.google.common.base.Preconditions.checkArgument(Preconditions.java:122) ~[guava-21.0.jar:?] {} | |
at net.minecraftforge.client.model.ModelDataManager.cleanCaches(ModelDataManager.java:57) ~[?:?] {re:classloading} | |
at net.minecraftforge.client.model.ModelDataManager.requestModelDataRefresh(ModelDataManager.java:71) ~[?:?] {re:classloading} |