From b231b20327abf9638a9af29b0416a731fa01992e Mon Sep 17 00:00:00 2001 From: Arona Jones Date: Sun, 26 Oct 2014 22:55:50 +0000 Subject: [PATCH] Google Analytics --- dashboard.html | 106 +++++++++++++++++++ forge.html | 249 +++++++++++++++++++++++++------------------ index.html | 255 +++++++++++++++++++++++++++++---------------- javascripts/api.js | 20 ++++ webdesign.html | 142 +++++++++++++++---------- 5 files changed, 527 insertions(+), 245 deletions(-) create mode 100644 dashboard.html create mode 100755 javascripts/api.js diff --git a/dashboard.html b/dashboard.html new file mode 100644 index 0000000..324dd34 --- /dev/null +++ b/dashboard.html @@ -0,0 +1,106 @@ + + + + + + + + + + + Arona Jones - Forge Modding + + + + + + + + + + + + + + + + + + + +
+ +
+

Public Repositories:

+ +
+
+ + + + + + \ No newline at end of file diff --git a/forge.html b/forge.html index 82a9a98..ed6aca6 100644 --- a/forge.html +++ b/forge.html @@ -1,122 +1,167 @@ - - - - - - - - Arona Jones - Forge Modding - - - + + + + + + + + + Arona Jones - Forge Modding - - + + + + + + + + - - - + + + - - + + +
+
+

List of useful Code Snippets for Forge Modding:

+
    +
  1. Get a (server!) World Obj from the dimension id: World world = DimensionManager.getWorld(worldId);
  2. +
  3. More to come soon!
  4. +
+

My Minecraft Mods:

+

I'm part of, and informally the leader of, a international (I'm not joking, no two members live in the same time zone, let alone the same country!) coding team called the BrassGoggledCoders, who make minecraft mods.

+

The Team:

+
+
Coders:
+
warlordjones (Me!)
+
decabaldecebal
+
domi1819
+
Texturers:
+
Snurly
+
frothiny
+
Others:
+
MechWarrior99
+
+
Screw you Farage
+
+

SteamCraft2

-
-
-
- Steamcraft 2 is the second iteration of Proloe's Steamcraft mod, which was discontinued back in Minecraft B1.8.1. Other than the name, and a few of the original Steamcraft features/ideas, the mod has an entirely new take on all things steampunk. Its aim is to extend Minecraft by adding post-apocalyptic, retro-futuristic blocks/items for your (and our) enjoyment. -
- -
-
-
-

+

+
+
+ Steamcraft 2 is the second iteration of Proloe's Steamcraft mod, which was discontinued back in Minecraft B1.8.1. Other than the name, and a few of the original Steamcraft features/ideas, the mod has an entirely new take on all things steampunk. Its aim is to extend Minecraft by adding post-apocalyptic, retro-futuristic blocks/items for your (and our) enjoyment. +
+ +
+
+
+ 20% +
+
+
+
+
+

Ender Gloves

-
-
-
- ---- -
- -
-
+
+
+
+ ---- +
+ +
+
+
+ 90%
- -
+
+
+
+ + - - - + + + \ No newline at end of file diff --git a/index.html b/index.html index 2b31cc7..df0e831 100644 --- a/index.html +++ b/index.html @@ -1,106 +1,181 @@ - - - - - - - - Arona Jones - - - - - + + + + + + + + + Arona Jones - - + + + + + + + + + + - - - + + + - - + + +
+ + +
+ +

Arona Jones
warlordjones

+
+
+

Welcome to the website of Arona Jones, usually known as warlordjones on the Internet, although my alternative pseudonames include Jacknif98, Big Mek Gobsmasha and Major Vincent Smith. I'm a regular 16 year old internet nerd (yes, I do wear glasses), hand-coding a website, learning by doing. I'v a passion for physics and computing, although I also enjoy History, Philosophy/RS and Art. +
+
I taught myself to code in HTML/CSS (still working on it - can you tell?) and Java. My advice? Learn the basics of code first, rather than trying to learn by doing. It helps to give you coding independence, and not always rely on tutorials. Trust me, I did it the wrong way around. +
+
I am an avid reader who greatly enjoys fantasy books such as Discworld, Sovereign of the Seven Isles and Edge Chronicles; classics like Nineteen Eighty-Four, A Swiss Family Robinson and A Journey to the Center of the Earth and sci-fi such as Larklight.

+
+
+ + +
+
+ + + + + + + + diff --git a/javascripts/api.js b/javascripts/api.js new file mode 100755 index 0000000..de8168f --- /dev/null +++ b/javascripts/api.js @@ -0,0 +1,20 @@ +var getJSON = function (url, successHandler, errorHandler) { + var xhr = typeof XMLHttpRequest != 'undefined' ? new XMLHttpRequest() : new ActiveXObject('Microsoft.XMLHTTP'); + xhr.open('get', url, true); + + xhr.onreadystatechange = function () { + var status; + var data; + + if (xhr.readyState == 4) { // `DONE` + status = xhr.status; + if (status == 200) { + data = JSON.parse(xhr.responseText); + successHandler && successHandler(data); + } else { + errorHandler && errorHandler(status); + } + } + }; + xhr.send(); +}; \ No newline at end of file diff --git a/webdesign.html b/webdesign.html index 2cf5fce..cd1c158 100644 --- a/webdesign.html +++ b/webdesign.html @@ -1,65 +1,101 @@ - - - - - - - - Arona Jones - - - - + + + + + + + + + Arona Jones - - + + + + + + + + + - - - + + + - - + + +
+

Websites I've Created:

+ +
+ + + + + + +