This file contains hidden or 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
<html> | |
<head> | |
<title>Test</title> | |
<style type="text/css"> | |
#header { | |
background: red; | |
} | |
</style> | |
</head> | |
<body> |
This file contains hidden or 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
*** I get this error whenever a player logs in. Something to do with Metrics? | |
2013-04-11 20:11:59 [SEVERE] Could not pass event PlayerJoinEvent to xMail v1.5.0 | |
org.bukkit.event.EventException | |
at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:427) | |
at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62) | |
at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:477) | |
at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:462) | |
at net.minecraft.server.v1_5_R2.PlayerList.c(PlayerList.java:204) | |
at net.minecraft.server.v1_5_R2.PlayerList.a(PlayerList.java:100) |
This file contains hidden or 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
MOTD: A Minecraft Server | |
Game Type: SMP | |
Game ID: MINECRAFT | |
Version: 1.4.6 | |
Server Mod: CraftBukkit on Bukkit 1.4.6-R0.2-SNAPSHOT | |
Map: world | |
Players: 4/20 | |
IP: 37.59.83.120 | |
Port: 25565 |
This file contains hidden or 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
import sys | |
COLOURS = { | |
"0": "000000", | |
"1": "0000aa", | |
"2": "00aa00", | |
"3": "00aaaa", | |
"4": "aa0000", | |
"5": "aa00aa", | |
"6": "aa5500", |
This file contains hidden or 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
kier@nero:~$ curl -o /tmp/cb.jar -v 'http://repo.bukkit.org/service/local/repositories/legacy/content/org/bukkit/bukkit/1.9-pre5-R1-SNAPSHOT/bukkit-1.9-pre5-R1-20111122.004050-46.jar' | |
* About to connect() to repo.bukkit.org port 80 (#0) | |
* Trying 68.64.47.148... | |
% Total % Received % Xferd Average Speed Time Time Time Current | |
Dload Upload Total Spent Left Speed | |
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0* connected | |
* Connected to repo.bukkit.org (68.64.47.148) port 80 (#0) | |
> GET /service/local/repositories/legacy/content/org/bukkit/bukkit/1.9-pre5-R1-SNAPSHOT/bukkit-1.9-pre5-R1-20111122.004050-46.jar HTTP/1.1 | |
> User-Agent: curl/7.27.0 | |
> Host: repo.bukkit.org |
This file contains hidden or 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 main | |
import ( | |
"fmt" | |
"io/ioutil" | |
"log" | |
"net/http" | |
) | |
const TheURL = "http://repo.bukkit.org/service/local/repositories/legacy/content/org/bukkit/bukkit/1.9-pre5-R1-SNAPSHOT/bukkit-1.9-pre5-R1-20111122.004050-46.jar" |
This file contains hidden or 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
#!/bin/sh | |
gpg --list-secret-keys | sed -n "3s|^.*/\([A-F0-9]\{8\}\).*$|\1|p" |
This file contains hidden or 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
[Sat Aug 18 22:02:17 2012] [error] [client 178.167.254.196] File does not exist: /var/www/favicon.ico | |
[Sat Aug 18 22:32:24 2012] [error] [client 66.249.66.228] File does not exist: /var/www/robots.txt | |
[Sat Aug 18 22:32:24 2012] [error] [client 66.249.66.228] PHP Warning: Division by zero in /home/git/repo/lib/plugins/HousePriceRise-Fall.php on line 49 | |
[Sat Aug 18 22:32:24 2012] [error] [client 66.249.66.228] PHP Warning: Division by zero in /home/git/repo/lib/plugins/HousePriceRise-Fall.php on line 49 | |
[Sat Aug 18 22:39:33 2012] [error] [client 78.86.253.138] PHP Notice: Undefined index: countyelectoral in /home/git/repo/lib/util.php on line 24, referer: http://postcodewars.co.uk/ | |
[Sat Aug 18 22:39:33 2012] [error] [client 78.86.253.138] PHP Notice: Undefined index: countyelectoral in /home/git/repo/lib/util.php on line 24, referer: http://postcodewars.co.uk/ | |
[Sat Aug 18 22:39:34 2012] [error] [client 78.86.253.138] PHP Notice: Undefined index: countyelectoral in /home/git/repo/lib/util.php on line 24, re |
This file contains hidden or 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
sed 's|<[^>]*> \.$|.|' input.nq > output.nt |
This file contains hidden or 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 main | |
import ( | |
"fmt" | |
"github.com/kierdavis/goutil" | |
"github.com/nsf/termbox-go" | |
"math/rand" | |
"os" | |
"time" | |
) |