Skip to content

Instantly share code, notes, and snippets.

View kane-thornwyrd's full-sized avatar
🏠
Working from home

Jean-cédric T. kane-thornwyrd

🏠
Working from home
  • France
  • 09:39 (UTC +02:00)
View GitHub Profile
---- 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:
@kane-thornwyrd
kane-thornwyrd / echo.gd
Last active May 12, 2019 06:55
echoes for Godot 3.1 by Kane Thornwyrd under GPL v3.0
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
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
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)
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)
~/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.
#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);
}
@kane-thornwyrd
kane-thornwyrd / .zshrc
Last active July 2, 2018 07:20
ZSH + Antigen conf
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
# 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 ->
[
{
"input_stack": { "name": "cobblestone" },
"ticks": 40,
"output_fluids": {
"second": { "name": "bcop-gaseous_lava-searing", "quantity": 500 }
}
},
{
"input_stack": { "ore": "oreIron" },