Skip to content

Instantly share code, notes, and snippets.

@Laxystem
Laxystem / gist:dcfe8630f0a02e8ff0437abfc3aec261
Created April 22, 2025 20:59
My to be watched list (phone broke and I can only watch from a public device so, public URL, lmao)
https://www.youtube.com/watch?v=FeFVhy5-Wrc
https://www.youtube.com/watch?v=yTk3UWrtBNc
https://www.youtube.com/watch?v=tX_bdzUxB4g
https://www.youtube.com/watch?v=bAgMdASfWCI
https://www.youtube.com/watch?v=28Br0g1zjuo
https://www.youtube.com/watch?v=hBJmxajjUsw
https://www.youtube.com/watch?v=t7pU-2I7jZA
package quest.laxla.cevsc
import fr.iglee42.createcasing.blockEntities.WoodenShaftBlockEntity
import net.minecraft.core.BlockPos
import net.minecraft.core.HolderLookup
import net.minecraft.core.component.DataComponentMap
import net.minecraft.nbt.CompoundTag
import net.minecraft.nbt.NbtOps
import net.minecraft.world.level.block.entity.BlockEntityType
import net.minecraft.world.level.block.state.BlockState
@Laxystem
Laxystem / email.txt
Created January 28, 2025 13:05
שיחה שלי עם ערן אבירם: למה אין פאת'פיינדר 2 בעברית
שיחת אימייל (קצת ערוכה) שלי (laxystem at tooot.im) עם ערן אבירם: למה אין פאת'פיינדר 2 בעברית?
----אני----
שלום! מצטערת להפריע, אבל לא ממש מצאתי מישהו קרוב יותר לנושא לשלוח אליו אימייל, נראה שהאתר של מאנקי טיים לא עובד, אז אני לא יודעת אם המייל שלי אליהם יעבור.
(את המייל שלך מצאתי איפשהו באתר טקטיקה)
אבל: אתה תרגמת את פאת'פיינדר 1 (בצורה מצוינת, יש להגיד), נכון? אתה יודע מה המצב כרגע לגבי התרגום של 2? כל מה שאפשר למצוא בחנויות זה את הגרסה המקורית ואת "פת'פיינדר עולמות פראיים", שאם הבנתי נכון הוא לא מוצר רשמי של פאיזו, וקצת מוזר לי שמוצר לא רשמי מקבל עדיפות על מוצר רשמי.
בתודה מראש, <השם שלי>
@Laxystem
Laxystem / Shader.kt
Last active January 18, 2025 15:05
Spock Shader API (Licensed under the MPL 2.0)
package quest.laxla.spock
/**
* Any kind of shader.
*
* @since 0.0.1-alpha.4
*/
public interface Shader {
/**
* The language this [Shader] is written in.
Nullability Java Kotlin
Not null Object! Any
Maybe-nullable Object Any![^1]
Nullable Object? Any?
Not null param T! T & Any
Nullable param T? T?
Operation Java Kotlin
@Laxystem
Laxystem / splashes.txt
Last active October 21, 2024 05:38
Splash texts for Gimli
Making friends, not history.
Licensed under the Mozilla Public License 2.0.
Free, forever, for everyone.
May look like Google, but actually a good guy.
Allergen warning: may contain critical levels of wholesomeness.
Chronically addicted to the word 'may'.
Under development since 2023... I think.
No person nor animal was harmed in the making of this UI.
They/Them/wait, who's that??.
Trans Rights!
@Laxystem
Laxystem / DeserializerDelegator.kt
Created June 4, 2024 17:37
Delegating StringFormat for KotlinX Serialization
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
package quest.laxla.khuzdul
import kotlinx.serialization.DeserializationStrategy
import kotlinx.serialization.ExperimentalSerializationApi
@Laxystem
Laxystem / proof.md
Created March 15, 2024 00:13
Keyoxide

aspe:keyoxide.org:GWZHGJBZ4V4MUF5BYUMPMIIL2Y

@Laxystem
Laxystem / VERSIONING.md
Last active October 10, 2023 13:28
MoCKoGE versioning draft

MoCKoGE Versioning

TL;DR

MoCKoGE heavily focuses on allowing code to be used on multiple versions

Semantic Versioning

Please read the SemVer 2.0.0 Specification before reading this document.

@Laxystem
Laxystem / README.md
Last active April 26, 2023 19:55
Publishing to Modrinth & Github Packages using a Github Workflow

Layla's Website

  1. Create an env in your GitHub settings. Call it gradle.
  2. Add a variable to the env named RELEASE_TYPE, and give it a value of alpha, beta, or release.
  3. Add a secret to the env named MODRINTH_TOKEN, and give it the value of your Modrinth Token.
  4. Paste publishing.yml in .github/workflows/publishing.yml
  5. Add the following to your build.gradle.kts:
plugins {
  `maven-publish`