Skip to content

Instantly share code, notes, and snippets.

View lmvdz's full-sized avatar

Lars van der Zande lmvdz

View GitHub Profile
@lmvdz
lmvdz / zvqn_default_fixed.json
Created June 24, 2021 13:34
Fixed up aggr workspace
{
"createdAt": 1624541168137,
"updatedAt": 1624541281057,
"name": "Default5",
"id": "zvqn",
"states": {
"spot-trades": {
"liquidations": {
"id": "liquidations",
"amount": 100000,
@lmvdz
lmvdz / gamepadviewer.css
Created November 26, 2020 01:11
gamepadviewer.css
/*Font Imports*/
@import url(https://fonts.googleapis.com/css?family=Press+Start+2P);
/*Keyframes*/
@-webkit-keyframes messagefade {
0% {
opacity: 1;
}
75% {
opacity: 1;
@lmvdz
lmvdz / BlockBenchModel.java
Last active October 3, 2022 22:06
How to convert blockbench modded model java into fabric model
package net.lmvdz.delirium.model;
import net.minecraft.client.model.Model;
import net.minecraft.client.model.ModelPart;
import net.minecraft.client.render.RenderLayer;
import net.minecraft.client.render.VertexConsumer;
import net.minecraft.client.util.math.MatrixStack;
import net.minecraft.util.Identifier;
import java.util.function.Function;