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 let you down. Sorry :( | |
Time: 10/29/19 10:24 AM | |
Description: There was a severe problem during mod loading that has caused the game to fail | |
net.minecraftforge.fml.common.LoaderExceptionModCrash: Caught exception from Kitsu's Forgecraft (forgecraft) | |
Caused by: java.lang.VerifyError: Bad access to protected data in getfield | |
Exception Details: | |
Location: |
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
extends Sprite | |
class_name Echo | |
const SHIFT_TRANS = Tween.TRANS_SINE | |
const SHIFT_EASE = Tween.EASE_OUT | |
export var sprite_path: NodePath | |
export var gradient: Gradient | |
onready var echo_timer:Timer = $echo_timer |
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
extends Camera2D | |
const LOOK_AHEAD_FACTOR:float = 0.45 | |
export var tilemap_path:NodePath | |
onready var tilemap = self.get_node(tilemap_path) | |
onready var camera_previous_position = self.get_camera_position() | |
var facing:int = 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
extends Area2D | |
var target_point = null | |
var speed_factor = 3 | |
var bias = 0.1 | |
func unhandled_input(event): | |
if event is InputEventScreenTouch and not target_point: | |
target_point = self.position + Vector2(position.x, position.y - 150) |
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
extends Node2D | |
var skin_width:float = 1 | |
export var buffer_size:int = 3 setget set_buffer_size | |
var buffer:Array = [] | |
func _ready() -> void: | |
set_buffer_size(buffer_size) |
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
~/projects/cozy-ui > master > yarn test | |
yarn run v1.12.3 | |
$ yarn test:jest | |
$ env BABEL_ENV=transpilation jest --verbose --coverage | |
PASS > react/AppIcon/test/Preloader.spec.js | |
Preloader | |
console.error node_modules/react/cjs/react.development.js:225 | |
Warning: React.createElement: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: undefined. You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports. | |
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
#include <Wire.h> | |
#include "RTClib.h" // https://github.com/adafruit/RTClib | |
// https://learn.adafruit.com/ds1307-real-time-clock-breakout-board-kit/overview | |
// https://github.com/adafruit/RTClib/blob/master/examples/ds1307/ds1307.ino | |
RTC_DS1307 RTC; | |
void setup() { | |
pinMode(13, OUTPUT); | |
} |
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
source ~/antigen.zsh | |
export DEFAULT_USER=kane-thornwyrd | |
export EDITOR=atom | |
export NVM_LAZY_LOAD=true | |
export EMOJI_CLI_KEYBIND="^e" | |
export NVM_AUTO_USE=true | |
which htop >/dev/null && alias top=htop | |
autoload -U colors && colors | |
setopt promptsubst |
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
# Your init script | |
# | |
# Atom will evaluate this file each time a new window is opened. It is run | |
# after packages are loaded/activated and after the previous editor state | |
# has been restored. | |
# | |
# An example hack to log to the console when each text editor is saved. | |
# | |
# atom.workspace.observeTextEditors (editor) -> | |
# editor.onDidSave -> |
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
[ | |
{ | |
"input_stack": { "name": "cobblestone" }, | |
"ticks": 40, | |
"output_fluids": { | |
"second": { "name": "bcop-gaseous_lava-searing", "quantity": 500 } | |
} | |
}, | |
{ | |
"input_stack": { "ore": "oreIron" }, |