Skip to content

Instantly share code, notes, and snippets.

View Taskeren's full-sized avatar
🤔
軟體不穩定^

Taskeren

🤔
軟體不穩定^
View GitHub Profile
@Taskeren
Taskeren / README.md
Created September 25, 2025 07:33
Void Ore Miner

Void Ore Miner

This is an additional customized multiblock machine for GregTech Community Pack Modern, to resolve the problem of lacking materials at later tiers (ZPM+).

LICENSE

Copyright 2025 Taskeren
@Taskeren
Taskeren / dynamite.graphqls
Last active August 1, 2023 14:35
Dynamite GraphQL Schema
#
# Copyright © 2023 Taskeren and Dyfused Committee.
# This file is licensed under LGPLv3.
#
# [ General ]
# These graphql schemas are data-mined from the game, NOT the official one, so
# there may be something that doesn't make sense.
# And my (author) English is not very good, so there may be some typo or misinformation.
#
# [ About Naming Standard ]
@Taskeren
Taskeren / dont-be-a-jerk-cn.md
Created July 22, 2022 20:03
不要当傻子开源协议

不要当傻子协议

这是 Don't Be A Jerk 协议的汉化版本,可能有出入,以中文内容为准。

不要当傻子:开源软件协议。

这是一个免费和开源的软件。

我是软件的作者,我可能是我们,但这没有关系。 你是软件的用户,你可能是你们,但这也没关系。

@Taskeren
Taskeren / speedrunning-faq.md
Created March 29, 2022 02:18 — forked from 0xabad1dea/speedrunning-faq.md
Speedrunning FAQ/Glossary

Speedrunning FAQ/Glossary

by 0xabad1dea September 2018

You may notice a decidedly Nintendo bias to the examples. I can't change who I am.

What is Speedrunning?

Speedrunning is:

  • Completing a video game
@Taskeren
Taskeren / versions.json
Created September 5, 2021 09:40
ElytraApi2-based Plugin Version List
{
"plugins": {
"ElytraApi2": {
"versions": [
{
"version": "1.1.0-rc.1",
"download": "https://github.com/ElytraServers/ElytraApi2/releases/download/v1.1-rc1/api2-1.1-rc1.jar"
},
{
"version": "1.1.1-rc.1",
@Taskeren
Taskeren / cf_worker_redirector.json
Last active October 19, 2021 12:27
Cloudflare Workers Redirector
{
"/source": "https://gist.github.com/Taskeren/4b5f0c09b9de0fc882c614a1881c2715",
"/sponsor": "https://afdian.net/@Taskeren",
"_category_mc": "Minecraft",
"/mc": "https://minecraft.net",
"/mc/forge": "https://files.minecraftforge.net",
"/mc/modpack": "https://www.curseforge.com/minecraft/modpacks/",
"/mc/modpack/stoneblock2": "https://www.curseforge.com/minecraft/modpacks/ftb-presents-stoneblock-2",
@Taskeren
Taskeren / WeightRandom.java
Created February 1, 2021 09:19
加权随机数 Weighted Random
package testified;
import com.google.common.collect.Lists;
import com.google.common.collect.Maps;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Random;