Skip to content

Instantly share code, notes, and snippets.

View niklaswimmer's full-sized avatar
🏹
Memento Vivere

Niklas Wimmer niklaswimmer

🏹
Memento Vivere
  • 08:22 (UTC +02:00)
View GitHub Profile
@niklaswimmer
niklaswimmer / build.gradle.kts
Last active May 4, 2021 19:13
forge kotlin dsl
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
import net.minecraftforge.gradle.common.util.RunConfig
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
import java.time.Instant
import java.time.format.DateTimeFormatter
plugins {
kotlin("jvm") version "1.4.32"
id("net.minecraftforge.gradle") version "4.1.9"
@fnky
fnky / ANSI.md
Last active July 27, 2024 22:42
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1B
  • Decimal: 27