This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
include $(TOPDIR)/rules.mk | |
PKG_NAME:=avunadnsd | |
PKG_VERSION:=1 | |
PKG_RELEASE:=1 | |
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz | |
PKG_SOURCE_PROTO:=git | |
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) | |
PKG_SOURCE_URL:=https://github.com/inklit/AvunaDNSD.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
---- Minecraft Crash Report ---- | |
WARNING: coremods are present: | |
TransformerLoader (OpenComputers-MC1.8.9-1.5.22.6.jar) | |
SpongeCoremod (spongeforge-1.8.9-1890-4.2.0-BETA-1744.jar) | |
TweaksLoadingPlugin (CCTweaks-1.8.9-1.0.1-patched-02.jar) | |
Contact their authors BEFORE contacting forge | |
// Oops. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
---- Minecraft Crash Report ---- | |
WARNING: coremods are present: | |
TransformerLoader (OpenComputers-MC1.8.9-1.5.22.6.jar) | |
SpongeCoremod (spongeforge-1.8.9-1890-4.2.0-BETA-1744.jar) | |
TweaksLoadingPlugin (CCTweaks-1.8.9-1.0.1-patched-02.jar) | |
Contact their authors BEFORE contacting forge | |
// Hey, that tickles! Hehehe! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package me.acul.me; | |
import org.apache.commons.lang3.ArrayUtils; | |
import org.spongepowered.api.event.Listener; | |
import org.spongepowered.api.event.network.ClientConnectionEvent; | |
import org.spongepowered.api.plugin.Plugin; | |
import org.spongepowered.api.text.Text; | |
import java.util.Arrays; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/sbin/openrc-run | |
description="Prometheus" | |
: ${PROMETHEUS_CONF:=/etc/prometheus/prometheus.yml} | |
: ${PROMETHEUS_PIDFILE:=/var/run/prometheus.pid} | |
: ${PROMETHEUS_USER:=root} | |
depend() { | |
need net |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/sbin/openrc-run | |
description="node_exporter" | |
: ${NODE_PIDFILE:=/var/run/node_exporter.pid} | |
: ${NODE_USER:=root} | |
depend() { | |
need net | |
need localmount |