Skip to content

Instantly share code, notes, and snippets.

View clankstar's full-sized avatar

Youri Kersten clankstar

  • Amsterdam, The Netherlands
  • 07:34 (UTC +02:00)
View GitHub Profile
# netdata configuration
#
# You can download the latest version of this file, using:
#
# wget -O /etc/netdata/netdata.conf http://localhost:19999/netdata.conf
# or
# curl -o /etc/netdata/netdata.conf http://localhost:19999/netdata.conf
#
# You can uncomment and change any of the options below.
# The value shown in the commented settings, is the default value.
-----BEGIN CERTIFICATE-----
MIIGVjCCBD6gAwIBAgICEAAwDQYJKoZIhvcNAQELBQAwgbUxCzAJBgNVBAYTAkdC
MQ0wCwYDVQQIDARZb3JrMR0wGwYDVQQKDBRIaXZlIE5ldHdvcmsgTGltaXRlZDEz
MDEGA1UECwwqSGl2ZSBOZXR3b3JrIExpbWl0ZWQgQ2VydGlmaWNhdGUgQXV0aG9y
aXR5MSUwIwYDVQQDDBxIaXZlIE5ldHdvcmsgTGltaXRlZCBSb290IENBMRwwGgYJ
KoZIhvcNAQkBFg1jYUBoaXZlbWMuY29tMB4XDTE2MTAyMTExNDQzNFoXDTI2MTAx
OTExNDQzNFowgb0xCzAJBgNVBAYTAkdCMQ0wCwYDVQQIDARZb3JrMR0wGwYDVQQK
DBRIaXZlIE5ldHdvcmsgTGltaXRlZDEzMDEGA1UECwwqSGl2ZSBOZXR3b3JrIExp
bWl0ZWQgQ2VydGlmaWNhdGUgQXV0aG9yaXR5MS0wKwYDVQQDDCRIaXZlIE5ldHdv
cmsgTGltaXRlZCBJbnRlcm1lZGlhdGUgQ0ExHDAaBgkqhkiG9w0BCQEWDWNhQGhp
### Keybase proof
I hereby claim:
* I am clankstar on github.
* I am clankstar (https://keybase.io/clankstar) on keybase.
* I have a public key whose fingerprint is FA48 0188 7049 6E28 F518 1D95 12BB 61CE AE3E 8645
To claim this, I am signing this object:
package com.hivemc.plugins.survivalgames.achievements;
public enum Achievement {
DOUBLEKILL("Double Kill", "Get two kills in 30 seconds."),
VICTORY("Victory", "Win a game."),
DEATHMATCH("Deathmatch", "Reach the deathmatch."),
SOCLOSE("So Close...", "Get killed in the deathmatch."),
FASTIRON("That was fast!", "Get a iron sword within 5 minutes of game start."),
FIRSTKILL("First Kill", "Get the first kill of the round."),
@clankstar
clankstar / gist:4018051
Created November 5, 2012 16:15
Bukkit renamer
public org.bukkit.inventory.ItemStack renameItem(org.bukkit.inventory.ItemStack is, String newName)
{
CraftItemStack cis = (CraftItemStack)is;
NBTTagCompound tag = cis.getHandle().getTag();
if (tag == null)
{
cis.getHandle().setTag(new NBTTagCompound());
tag = cis.getHandle().getTag();