View all_owners.py
This file contains 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
import io | |
import subprocess | |
import whoowns | |
import argparse | |
def main(): | |
parser = argparse.ArgumentParser(description="Generates a CSV of all files in the repo and which codeowner is set.") | |
parser.add_argument("out") | |
args = parser.parse_args() |
View nu.json
This file contains 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
{ | |
"version": "0.32.0", | |
"description": "A modern shell written in Rust", | |
"homepage": "https://www.nushell.sh", | |
"license": "MIT", | |
"architecture": { | |
"64bit": { | |
"url": "https://github.com/nushell/nushell/releases/download/0.32.0/nu_0_32_0_windows.zip", | |
"hash": "c471cb4919ae15bc649c5661473edd0bb961eac32303a410eeeb7c18d562c070", | |
"extract_dir": "nu_0_32_0_windows\\nushell-0.32.0" |
View rink-currency-example.rs
This file contains 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
use rink_core::ast::Defs; | |
// In real usage this should get cached and have a user agent set. | |
let currency_json = reqwest::get("https://rinkcalc.app/data/currency.json") | |
.await? | |
.text() | |
.await?; | |
// JSON is in serde format for Defs. | |
let mut live_defs = serde_json::from_str::<Defs>(¤cy_json)?; |
View style.css
This file contains 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
/* Import Roboto as font for body text */ | |
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap'); | |
body { | |
background-color: var(--main-bg); | |
color: var(--text-color); | |
font-size: unset; | |
font-family: 'Roboto', sans-serif; |
View SynthWave 84.json
This file contains 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
{ | |
"name": "SynthWave 84", | |
"background": "#262335", | |
"foreground": "#ffffff", | |
"white": "#ffffff", | |
"brightWhite": "#ffffff", | |
"black": "#000000", | |
"brightBlack": "#888888", | |
"blue": "#03edf9", | |
"brightBlue": "#03edf9", |
View dotenv.ts
This file contains 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
import fs from "fs"; | |
export function config() { | |
const contents = fs.readFileSync(".env", { | |
flag: "r", | |
encoding: "utf-8", | |
}); | |
for (let line of contents.split("\n")) { | |
line = line.split("#")[0] || line; |
View mixin.py
This file contains 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
class Item: | |
def print(self): | |
print(self.getText()) | |
def getText(self): | |
return "foo" | |
class SpecialItem: | |
def print(self): | |
print("SpecialItem: " + self.getText()) |
View treeassist.log
This file contains 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
20.07.06 01:08:53 [INFO] 116 onEntityChangeBlock : SPIDER | |
20.07.06 01:08:54 [INFO] 27 onEntityChangeBlock : SPIDER | |
20.07.06 01:08:54 [INFO] 558 onEntityChangeBlock : SPIDER | |
20.07.06 01:08:56 [INFO] 205 onEntityChangeBlock : SHEEP | |
20.07.06 01:08:56 [INFO] 938 checking for material BEDROCK | |
20.07.06 01:08:56 [INFO] 938 checking for material WARPED_STEM | |
20.07.06 01:08:56 [INFO] 938 checking for material SHROOMLIGHT | |
20.07.06 01:08:56 [INFO] 938 checking for material BIRCH_LOG | |
20.07.06 01:08:56 [INFO] 938 checking for material JUNGLE_LOG | |
20.07.06 01:08:56 [INFO] 938 checking for material CRIMSON_STEM |
View crash-2020-06-14_15.16.35-client.txt
This file contains 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 ---- | |
// Why did you do that? | |
Time: 6/14/20 3:16 PM | |
Description: Registering texture | |
java.lang.NullPointerException: Registering texture | |
at net.minecraft.resources.SimpleReloadableResourceManager.func_199002_a(SimpleReloadableResourceManager.java:57) ~[?:?] {re:classloading} | |
at net.minecraft.client.renderer.texture.SimpleTexture$TextureData.func_217799_a(SourceFile:81) ~[?:?] {re:classloading} | |
at net.minecraft.client.renderer.texture.SimpleTexture.func_215246_b(SourceFile:57) ~[?:?] {re:classloading} |
View gist:777b6020060d22d63fd54acae4ba2c44
This file contains 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
[18:03:16] [Server thread/WARN]: Statemachine for transition com.minecolonies.api.entity.ai.statemachine.AITarget@7b7944e9 threw an exception: | |
java.lang.NullPointerException: null | |
at com.minecolonies.api.entity.ai.pathfinding.AbstractWalkToProxy.walkToBlock(AbstractWalkToProxy.java:85) ~[?:1.15.2-0.11.958] | |
at com.minecolonies.api.entity.ai.pathfinding.AbstractWalkToProxy.walkToBlock(AbstractWalkToProxy.java:72) ~[?:1.15.2-0.11.958] | |
at com.minecolonies.coremod.entity.ai.basic.AbstractEntityAIBasic.walkToBlock(AbstractEntityAIBasic.java:774) ~[?:1.15.2-0.11.958] | |
at com.minecolonies.coremod.entity.ai.basic.AbstractEntityAIBasic.walkToBlock(AbstractEntityAIBasic.java:733) ~[?:1.15.2-0.11.958] | |
at com.minecolonies.coremod.entity.ai.basic.AbstractEntityAIInteract.checkMiningLocation(AbstractEntityAIInteract.java:274) ~[?:1.15.2-0.11.958] | |
at com.minecolonies.coremod.entity.ai.basic.AbstractEntityAIInteract.mineBlock(AbstractEntityAIInteract.java:175) ~[?:1.15.2-0.11.958] | |
at com.minecolonies.coremod.entity.ai.b |
NewerOlder