This file has been truncated, but you can view the full file.
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
[08:27:52 INFO]: Minecraft Launcher 1.3.1 (through bootstrap 5) started on windows... | |
[08:27:52 INFO]: Current time is Nov 16, 2013 8:27:52 AM | |
[08:27:52 INFO]: System.getProperty('os.name') == 'Windows Vista' | |
[08:27:52 INFO]: System.getProperty('os.version') == '6.0' | |
[08:27:52 INFO]: System.getProperty('os.arch') == 'x86' | |
[08:27:52 INFO]: System.getProperty('java.version') == '1.7.0_45' | |
[08:27:52 INFO]: System.getProperty('java.vendor') == 'Oracle Corporation' | |
[08:27:52 INFO]: System.getProperty('sun.arch.data.model') == '32' | |
[08:27:52 INFO]: Refreshing local version list... | |
[08:27:52 INFO]: Refreshing remote version list... |
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
{ | |
"template": { | |
"sign_block": "Sign (/blockdata)", | |
"sign_item": "Sign (/give)", | |
"subtitle": "Subtitle", | |
"title": "Title", | |
"tellraw": "Tellraw", | |
"book": "Book", | |
"execute_tellraw": "Execute" | |
}, |
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
{ | |
"__comment": "Fair warning, this format is highly likely to change even more in the future!", | |
"elements": [ | |
{ | |
"type": "cube", | |
"from": [ 0, 15, 0 ], | |
"to": [ 16, 16, 16 ], | |
"faceData": { | |
"down": { | |
"uv": [ 0, 0, 16, 16 ], |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Username to UUID</title> | |
<?php | |
function getUUID($users,$agent) { | |
$data = array(); | |
foreach ($users as $key => $value) { | |
array_push($data, $value); | |
} |
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
/blockdata [x] [y] [z] {Text1:"{\"text\":\"\",\"extra\":[{\"text\":\"Click Me\",\"clickEvent\":{\"action\":\"run_command\",\"value\":\"/say Hey\"}}]}"} | |
/give @a sign 1 0 {BlockEntityTag:{Text1:"{\"text\":\"\",\"extra\":[{\"text\":\"Click Me\",\"clickEvent\":{\"action\":\"run_command\",\"value\":\"/say Hey\"}}]}",id:"Sign"}} |
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
[11:14:22] Block data updated to: {id:"Sign",Text1:"{"text":"","extra":[{"text":"Click Me","clickEvent":{"action":"run_command","value":"Hey"}}]}",Text2:"""",Text3:"""",Text4:"""",z:648,y:57,x:-23,} |
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
var NoSavesS = new RegExp("%s(?!\\[)"); | |
var NoSavesE = new RegExp("%e(?!\\[)"); | |
var Saves = new RegExp("(%[s|e])\\[([a-zA-Z0-9]+)\\]","g"); |
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
#!/bin/sh | |
release=$(curl 'http://s3.amazonaws.com/Minecraft.Download/versions/versions.json' | grep .*release\": | awk "{print \$2}" | tr -d '\",\012\015'); | |
snapshot=$(curl 'http://s3.amazonaws.com/Minecraft.Download/versions/versions.json' | grep .*snapshot\": | awk "{print \$2}" | tr -d '\",\012\015'); | |
clear; | |
ver=$release; | |
if [ "$1" == "snapshot" ]; then | |
read -p "Press any key to clear the $snapshot bin"; | |
ver=$snapshot; | |
elif [ "$1" == "release" ]; then | |
read -p "Press any key to clear the $release bin"; |
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
<div class="row row-margin-top row-margin-bottom"> | |
<div class="col-md-2"> | |
<span lang="settings.header">Settings:</span> | |
</div> | |
<div class="col-md-2 col-xs-12"> | |
<button class="btn btn-block btn-default" id="import"><span lang="settings.import">Import</span> <i class="fa fa-cloud-upload"></i></button> | |
</div> | |
<div class="col-md-2 col-xs-12"> | |
<button class="btn btn-block btn-default" id="export"><span lang="settings.export">Export</span> <i class="fa fa-cloud-download"></i></button> | |
</div> |
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
if (classObject['type'] == 'am') { | |
waitlistTable += '<td>' + studentObject['wantedpm'] + '</td>'; | |
} else |
OlderNewer