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
| // ==UserScript== | |
| // @name DVSA Speed Booker (Modal Lock & High Speed) | |
| // @namespace http://tampermonkey.net/ | |
| // @version 3.4 | |
| // @description Single-click enforcement for modal and slot submission. | |
| // @author Gemini | |
| // @match https://driverpracticaltest.dvsa.gov.uk/application* | |
| // @run-at document-idle | |
| // @grant none | |
| // ==/UserScript== |
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
| #!/usr/bin/env python3 | |
| # Run me with sudo ./version.py > result | |
| import csv | |
| import sys | |
| import os | |
| import re | |
| class VersionAnalyzer: | |
| def __init__(self): | |
| self.out = csv.writer(sys.stdout) |
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
| /* | |
| * Copyright (C) 2018 Freie Universitat Berlin | |
| * Copyright (C) 2018 Inria | |
| * | |
| * This file is subject to the terms and conditions of the GNU Lesser | |
| * General Public License v2.1. See the file LICENSE in the top level | |
| * directory for more details. | |
| */ | |
| #include <stdio.h> |
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
| public CodeCityBuildingProvider() { | |
| CodePackage facet = new CodePackage(); | |
| CodePackage generator = new CodePackage(); | |
| CodePackage map = new CodePackage(); | |
| CodePackage structure = new CodePackage(); | |
| CodePackage scale = new CodePackage(); | |
| CodePackage terasology = new CodePackage(); | |
| CodeClass fac = new CodeClass(1, 18); | |
| facet.addCodeContent(fac); |
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
| 13:17:27.141 [Chunk-Generator-2] ERROR o.t.u.concurrency.TaskProcessor - Error in thread Chunk-Generator-2 | |
| java.util.ConcurrentModificationException: null | |
| at java.util.ArrayList.sort(Unknown Source) ~[na:1.8.0_40] | |
| at java.util.Collections.sort(Unknown Source) ~[na:1.8.0_40] | |
| at org.terasology.codecity.world.map.CodeMapFactory.generateMap(CodeMapFactory.java:42) ~[na:na] | |
| at org.terasology.codecity.world.map.DrawableCodePackage.getSubmap(DrawableCodePackage.java:42) ~[na:na] | |
| at org.terasology.codecity.world.generator.CodeCityBuildingProvider.processPosition(CodeCityBuildingProvider.java:98) ~[na:na] | |
| at org.terasology.codecity.world.generator.CodeCityBuildingProvider.process(CodeCityBuildingProvider.java:113) ~[na:na] | |
| at org.terasology.world.generation.RegionImpl.getFacet(RegionImpl.java:51) ~[bin/:na] | |
| at org.terasology.codecity.world.generator.CodeCityBuildingRasterizer.generateChunk(CodeCityBuildingRasterizer.java:42) ~[na:na] |