Skip to content

Instantly share code, notes, and snippets.

View Ferynix's full-sized avatar
🧀
Bored

Ferinix Ferynix

🧀
Bored
  • Fridge, Nuclear Test Site
  • 02:56 (UTC -04:00)
View GitHub Profile
@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active May 14, 2026 04:45
Complete Recent Discord Quest

Caution

As of April 7th 2026, Discord has expressed their intent to crack down on automating quest completion.

Some users have received the following system message:

image

There isn't much I can do to make the script undetected, so use it at your own risk, as you most likely WILL get flagged by doing so.

Complete Recent Discord Quest

@kuroppoi
kuroppoi / deepworld-item-ids.txt
Last active December 15, 2024 22:18
Deepworld Item IDs
Air = 0 = air
Empty = 1 = base/empty
Earth Backdrop = 2 = base/earth
Sandstone Backdrop = 3 = base/sandstone
Limestone Backdrop = 4 = base/limestone
Maw = 5 = base/maw
Culvert = 6 = base/pipe
Plugged Maw = 7 = base/maw-plugged
Plugged Culvert = 8 = base/pipe-plugged
Ocean = 9 = base/water
/** Subinterface of BlockEntityProvider that reduces type checking and conversion boilerplate related to tickers.<br>
* This interface should be implemented by the {@code Block}.<br>
* The {@code BlockEntity} must implement {@link BlockEntityHost.Hosted}.
* @param <T> class of the block entity hosted by this block
* @author Daomephsta
*/
public interface BlockEntityHost<T extends BlockEntity & BlockEntityHost.Hosted> extends BlockEntityProvider
{
@Override
public default <U extends BlockEntity> BlockEntityTicker<U> getTicker(
@gre
gre / easing.js
Last active March 22, 2026 21:46
Simple Easing Functions in Javascript - see https://github.com/gre/bezier-easing
/*
* This work is free. You can redistribute it and/or modify it under the
* terms of the Do What The Fuck You Want To Public License, Version 2,
* as published by Sam Hocevar. See the COPYING file for more details.
*/
/*
* Easing Functions - inspired from http://gizma.com/easing/
* only considering the t value for the range [0, 1] => [0, 1]
*/
EasingFunctions = {