<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>James&#039; Dev Blog</title>
	<atom:link href="http://shizzlenizzle.biz/feed/" rel="self" type="application/rss+xml" />
	<link>http://shizzlenizzle.biz</link>
	<description>Scribbles of a guy with Root access to everywhere but his brain.</description>
	<lastBuildDate>Fri, 05 Mar 2010 12:37:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Time Lapses</title>
		<link>http://shizzlenizzle.biz/2010/03/time-lapses/</link>
		<comments>http://shizzlenizzle.biz/2010/03/time-lapses/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 12:37:42 +0000</pubDate>
		<dc:creator>Jamesy</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[arty farty]]></category>
		<category><![CDATA[lapse]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://shizzlenizzle.biz/?p=98</guid>
		<description><![CDATA[I&#8217;m rather a fan of doing time lapses. I recently did a quick test one of the moon the other night, and as I type this the SLR is merrily snapping away doing one out the front of my house &#8211; rather than the rear which is where my bedroom is.
Here&#8217;s the moon one:

]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m rather a fan of doing time lapses. I recently did a quick test one of the moon the other night, and as I type this the SLR is merrily snapping away doing one out the front of my house &#8211; rather than the rear which is where my bedroom is.</p>
<p>Here&#8217;s the moon one:</p>
<p><object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/cEDBY_k2OUk&#038;hl=en_GB&#038;fs=1&#038;rel=0&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;hd=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/cEDBY_k2OUk&#038;hl=en_GB&#038;fs=1&#038;rel=0&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;hd=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://shizzlenizzle.biz/2010/03/time-lapses/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Busy Busy</title>
		<link>http://shizzlenizzle.biz/2010/02/busy-busy/</link>
		<comments>http://shizzlenizzle.biz/2010/02/busy-busy/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 11:01:14 +0000</pubDate>
		<dc:creator>Jamesy</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[album]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[functions]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[photo]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[smtp]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://shizzlenizzle.biz/?p=95</guid>
		<description><![CDATA[Been rather a busy bee over the weekend. Having initially updated my Photo Gallery to be easier to navigate, and most importantly less pink it hit me just what a pain in the arse bending code written with rudimentary knowledge for one purpose and one purpose only is around your new ideas. Not only did [...]]]></description>
			<content:encoded><![CDATA[<p>Been rather a busy bee over the weekend. Having initially updated my <a href="http://photos.shizzlenizzle.biz/">Photo Gallery</a> to be easier to navigate, and most importantly less pink it hit me just what a pain in the arse bending code written with rudimentary knowledge for one purpose and one purpose only is around your new ideas. Not only did it take ages to transfer the mocked up style over it also proved what I had been worrying about for a while now &#8211; the ever expanding single drop down menu which would no doubt have ended up shooting in a very graceful jQuery like manner off the bottom of the screen.</p>
<p>So I&#8217;ve spent the past 2 days rewriting it &#8211; further customising the base script that generates my thumbnails and reads the directories. The functions now output arrays which in a simple for-each loop does all the work the big nasty block of echo statements. The old:</p>
<pre class="brush:php"> buildThumbs($gF, $tF, $tW, $tH);
 // call to another function to generate the thumbs

if (file_exists($gF."description.txt")) {
	$file = $gF."description.txt";
	$open = fopen($file, "r");
	$contents = fread($open, filesize($file));
	fclose($open);
	$header = str_replace("_", " ", $_GET['a']);
	$header = ucwords($header);
	echo "
<div id="\&quot;description\&quot;">";
 	echo "
<h2>".$header."</h2>

";
	echo "
<div id="\&quot;desc-text\&quot;">".$contents."</div>
</div>

";
}
elseif ($_GET["a"] != "") {
echo "
<div class="\&quot;warning\&quot;">Jamesy, please stop being a lazy twat and make a description.txt for here, thanks.</div>

";
}</pre>
<p>And the new:</p>
<pre class="brush:php">buildThumbs($gF, $aF, $tF, $tW, $tH);
		// call to another function to generate the thumbs
		$rawheader = $_GET['a'];
		$header = str_replace("_", " ", $_GET['a']);
		$header = ucwords($header);

		if (file_exists($gF.$aF."description.txt"))
		{
			$file = $gF.$aF."description.txt";
			$open = fopen($file, "r");
			$desc = fread($open, filesize($file));
			fclose($open);
		}
		else
		{
			$desc =  "James can you please make a description.txt like... now?";
		}</pre>
<p>Which in my mind is both easier to read and means that on the front end I no longer have to go through each function to update style elements &#8211; so win win for future proofing!</p>
<p>The biggest change though is the way that it handles the image structure. Before it was only capable of reading one folder full of albums and ouputting like that. I&#8217;ve written a new portion that scans a folder of Galleries and then gathers the albums from inside each one. This is best show on the gallery page, for example:  <a href="http://photos.shizzlenizzle.biz/the_coast">http://photos.shizzlenizzle.biz/the_coast</a> when you refresh it will read each album and select a random thumbnail.</p>
<p>So yup, Photo wise I am sorted now with efficient code and proper organisation <img src='http://shizzlenizzle.biz/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p>Else where I have finally got round to fixing Sendmail on this server. I&#8217;d been wondering why it was so quiet until I realised the mail server virtualmin had installed for itself just plain wasn&#8217;t working. Uninstall, put in Sendmail and everything works lovely &#8211; too well infact, my mailbox hasn&#8217;t know whats hit it.</p>
<p>Hopefully next weekend can be a bit more weekend-like!</p>
]]></content:encoded>
			<wfw:commentRss>http://shizzlenizzle.biz/2010/02/busy-busy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Epic [ly Wet] Night Adventure 2.</title>
		<link>http://shizzlenizzle.biz/2010/02/the-epic-ly-wet-night-adventure-2/</link>
		<comments>http://shizzlenizzle.biz/2010/02/the-epic-ly-wet-night-adventure-2/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 22:17:42 +0000</pubDate>
		<dc:creator>Jamesy</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[adventure]]></category>
		<category><![CDATA[night]]></category>
		<category><![CDATA[rain]]></category>
		<category><![CDATA[Yarmouth]]></category>

		<guid isPermaLink="false">http://shizzlenizzle.biz/?p=87</guid>
		<description><![CDATA[As promised, trip to Yarmouth and just as the title suggests it was absolutely pissing it down. Despite being freezing cold, in part due to the fact it is February and mostly due to the fact my trainers have stopped being waterproof for some reason and my feet were soaked I feel the night was [...]]]></description>
			<content:encoded><![CDATA[<p>As promised, trip to Yarmouth and just as the title suggests it was absolutely pissing it down. Despite being freezing cold, in part due to the fact it is February and mostly due to the fact my trainers have stopped being waterproof for some reason and my feet were soaked I feel the night was absolutely worth it.</p>
<p>As I said last night, I seem to have a knack for unwittingly taking the colour out of a Photograph &#8211; but tonight there was such rich colour that in many of them it just seemed perfect with only a few tweaks.</p>
<p>I have however on some made them black and white, just because I wanted a feeling of either nostalgia or to show the deep contrast between the light and dark in some scenes. So&#8230; lets count my own top 3!</p>
<p><a href="http://photos.shizzlenizzle.biz/photos/the_lonely_mile/the_lonely_mile.jpg"><img class="alignleft" title="The Lonely Mile" src="http://photos.shizzlenizzle.biz/photos/the_lonely_mile/the_lonely_mile.jpg" alt="The Lonely Mile" width="204" height="141" /></a></p>
<p>This the the one I ended up naming my gallery after. I just love the framing of the street lights that just stretch on seemingly infinitely into the distance along a pedestrianised highstreet. The twinkly netted lights above further help this and to cap it all off at the very end is a person just in shadow, surrounded by so much emptiness. So it is quite literally the lonely mile&#8230;</p>
<p><a href="http://photos.shizzlenizzle.biz/photos/the_lonely_mile/neon_corner.jpg"><img class="alignright" title="Neon Corner" src="http://photos.shizzlenizzle.biz/photos/the_lonely_mile/neon_corner.jpg" alt="Neon Corner" width="204" height="136" /></a></p>
<p>This is one I find just stands out. The colour of the neon is so vibrant with what is a very plain sky and quite harsh surroundings. The wet boardwalk reflects the red and makes almost a pool of blood on the floor. The sign says amusements and the light orange lighting gives it a warm feeling, but the colours stand out so much it really does show the gaudy nature of seaside amusements.</p>
<p><a href="http://photos.shizzlenizzle.biz/photos/the_lonely_mile/arcade_lights.jpg"><img class="alignleft" title="Arcade Lights" src="http://photos.shizzlenizzle.biz/photos/the_lonely_mile/arcade_lights.jpg" alt="Arcade Lights" width="204" height="136" /></a></p>
<p>And my overall favourite of the night, is quite plain in comparison to the others I&#8217;ve shot but nothing makes me feel like this one. It&#8217;s one that really speaks to me, because these style of lights is just timeless. I put it in black and white for that nostalgic feel (somewhat ruined by the CCTV in the background &#8211; once again prying into the lives of the public!). In any decade of which there are photos of the seaside towns these lights just appear in it. It&#8217;s the little details in life that make up the bigger picture and having always as a child gawped at them and gone &#8220;oooh pretty&#8221;&#8230; infact I still do that, they just feel like old friends, sure LEDs may be more efficient but they have no soul. Here&#8217;s to many happy blinks and to many more!</p>
]]></content:encoded>
			<wfw:commentRss>http://shizzlenizzle.biz/2010/02/the-epic-ly-wet-night-adventure-2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Night</title>
		<link>http://shizzlenizzle.biz/2010/02/the-night/</link>
		<comments>http://shizzlenizzle.biz/2010/02/the-night/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 00:22:02 +0000</pubDate>
		<dc:creator>Jamesy</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[city]]></category>
		<category><![CDATA[night]]></category>
		<category><![CDATA[Norwich]]></category>

		<guid isPermaLink="false">http://shizzlenizzle.biz/?p=82</guid>
		<description><![CDATA[The other night, and infact today &#8211; later on, I have been taking some photos in the night. It&#8217;s an interesting experience without the hussle and bussle of people who either get in the way or seem to find the fact you have a camera worthy of spending their time staring at you.
It&#8217;s also tricky [...]]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignleft" style="width: 174px"><a href="http://wackiewatty.wordpress.com/2010/02/17/uber-awesome-nighttime-adventure-part-1/"><img title="Market Place" src="http://wackiewatty.files.wordpress.com/2010/02/dscf4064.jpg" alt="" width="164" height="218" /></a><p class="wp-caption-text">My Good friend&#39;s photograph</p></div>
<p>The other night, and infact today &#8211; later on, I have been taking some photos in the night. It&#8217;s an interesting experience without the hussle and bussle of people who either get in the way or seem to find the fact you have a camera worthy of spending their time staring at you.</p>
<p>It&#8217;s also tricky as I spent the money I was going to use to by a tripod on a game, and an album&#8230; and a book and well eventually you end up back at the start. So my photos that look awesome on the little screen are deceptively sharp until I get home.</p>
<p>It&#8217;s interesting how my fellow photography cohorts and I style our photos once we get to the editing stage. My good friend Josh has edited his Photograph to be colourful and bright. I tend to be a lot more bleak in my style, choosing to focus on the loneliness of the place or the harshness of the environment. Which is probably why I enjoy the coast so much, as you can see over at my gallery.</p>
<p>Call it a reflection on my personality if you will, and you would probably be right that I tend to focus on the negative far too much. That being said I don&#8217;t think my photographs portray loneliness after the trip into the city centre the other night. I feel they show a sense of the strange and beautiful world of the urban night, while being gritty and dirty at the same time. My particular favourite is the rusted gate below which has a story to tell &#8211; though you may not want to hear it! You can view the rest here: <a href="http://photos.shizzlenizzle.biz/Norwich">http://photos.shizzlenizzle.biz/Norwich</a></p>
<div class="wp-caption aligncenter" style="width: 214px"><a href="http://photos.shizzlenizzle.biz/photos/Norwich/broken_entry.jpg"><img title="Broken Entry" src="http://photos.shizzlenizzle.biz/photos/Norwich/broken_entry.jpg" alt="" width="204" height="136" /></a><p class="wp-caption-text">A vandalised gate, an interesting photo or a deathwish for the mad photographer walking these dark alleys?</p></div>
<p style="text-align: center;">
]]></content:encoded>
			<wfw:commentRss>http://shizzlenizzle.biz/2010/02/the-night/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Uploads is back</title>
		<link>http://shizzlenizzle.biz/2010/02/uploads-is-back/</link>
		<comments>http://shizzlenizzle.biz/2010/02/uploads-is-back/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 22:01:50 +0000</pubDate>
		<dc:creator>Jamesy</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[finished]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[shizzle]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[uploads]]></category>

		<guid isPermaLink="false">http://shizzlenizzle.biz/?p=55</guid>
		<description><![CDATA[Yes, my cheverato installation is gone and I finally have something to show for myself instead of a filler page.
Currently it&#8217;s at version 0.5 which means use at your own risk &#8211; the account part at least since I know the uploading part works&#8230; or should.
So, lets run through the features!

Index: of course this is [...]]]></description>
			<content:encoded><![CDATA[<p>Yes, my cheverato installation is gone and I finally have something to show for myself instead of a filler page.</p>
<p>Currently it&#8217;s at version 0.5 which means use at your own risk &#8211; the account part at least since I know the uploading part works&#8230; or should.</p>
<p>So, lets run through the features!</p>

<a href='http://shizzlenizzle.biz/2010/02/uploads-is-back/index/' title='index'><img width="150" height="150" src="http://files.shizzlenizzle.biz/blog/media/2010/02/index-150x150.png" class="attachment-thumbnail" alt="" title="index" /></a>
<a href='http://shizzlenizzle.biz/2010/02/uploads-is-back/gallery/' title='gallery'><img width="150" height="150" src="http://files.shizzlenizzle.biz/blog/media/2010/02/gallery-150x150.png" class="attachment-thumbnail" alt="" title="gallery" /></a>
<a href='http://shizzlenizzle.biz/2010/02/uploads-is-back/imgview/' title='imgview'><img width="150" height="150" src="http://files.shizzlenizzle.biz/blog/media/2010/02/imgview-150x150.png" class="attachment-thumbnail" alt="" title="imgview" /></a>
<a href='http://shizzlenizzle.biz/2010/02/uploads-is-back/report/' title='report'><img width="150" height="145" src="http://files.shizzlenizzle.biz/blog/media/2010/02/report-150x145.png" class="attachment-thumbnail" alt="" title="report" /></a>
<a href='http://shizzlenizzle.biz/2010/02/uploads-is-back/admin/' title='admin'><img width="150" height="150" src="http://files.shizzlenizzle.biz/blog/media/2010/02/admin-150x150.png" class="attachment-thumbnail" alt="" title="admin" /></a>
<a href='http://shizzlenizzle.biz/2010/02/uploads-is-back/reported/' title='reported'><img width="150" height="150" src="http://files.shizzlenizzle.biz/blog/media/2010/02/reported-150x150.png" class="attachment-thumbnail" alt="" title="reported" /></a>
<a href='http://shizzlenizzle.biz/2010/02/uploads-is-back/reportdetail/' title='reportdetail'><img width="150" height="150" src="http://files.shizzlenizzle.biz/blog/media/2010/02/reportdetail-150x150.png" class="attachment-thumbnail" alt="" title="reportdetail" /></a>
<a href='http://shizzlenizzle.biz/2010/02/uploads-is-back/cleared/' title='cleared'><img width="150" height="90" src="http://files.shizzlenizzle.biz/blog/media/2010/02/cleared-150x90.png" class="attachment-thumbnail" alt="" title="cleared" /></a>

<ol>
<li>Index: of course this is where all the front end interface is. Simple upload box, slider of the last 25 images you&#8217;ve uploaded bish bash bosh.</li>
<li>Gallery: this displays every image in a nice thumbnail view. You can search the gallery and if you are an admin flagged images will be highlighted red.</li>
<li>Detailed View: this gives you the various links, and some information about the image as well as a larger preview which links directly to the image.</li>
<li>Flag Image: you can report images that are not so innocent using the [!] button on the blue header bar. You&#8217;ll be given this form and simple pick one of the options.</li>
<li>Admin Index: this is where various statistics are displayed, such as how much space you are taking up and how many users etc etc.</li>
<li>Reported Images: this is a list of all the images that have been reported. Not so elegant as the gallery but it&#8217;s just their as a tool so not that important.</li>
<li>Reported Detail: same as before just with two big buttons &#8220;Delete&#8221; and &#8220;Clear&#8221;</li>
<li>Cleared: looks like this image wasn&#8217;t too bad after all <img src='http://shizzlenizzle.biz/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </li>
</ol>
<p>So yeah, trying to keep a unified theme as well as a light footprint other than the bandwidth of the images themselves.</p>
<p>Link:  <a href="http://uploads.shizzlenizzle.biz/" target="_blank">http://uploads.shizzlenizzle.biz/</a></p>
<p><strong>Edit:</strong></p>
<p><strong></strong>Just spotted on my bandwidth statistics the impact of my day of mindlessly browsing through the gallery. Dear lord&#8230;</p>
<p><a href="http://uploads.shizzlenizzle.biz/images/1266359132_bandwidth.PNG"><img class="alignnone" title="Bandwidth" src="http://uploads.shizzlenizzle.biz/images/1266359132_bandwidth.PNG" alt="holy Hell..." width="521" height="221" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://shizzlenizzle.biz/2010/02/uploads-is-back/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vBulletin Server Monitor.</title>
		<link>http://shizzlenizzle.biz/2010/02/vbulletin-server-monitor/</link>
		<comments>http://shizzlenizzle.biz/2010/02/vbulletin-server-monitor/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 19:29:12 +0000</pubDate>
		<dc:creator>Jamesy</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[4]]></category>
		<category><![CDATA[Default]]></category>
		<category><![CDATA[playstuff]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[servers]]></category>

		<guid isPermaLink="false">http://shizzlenizzle.biz/?p=46</guid>
		<description><![CDATA[A quiet few days on here means I&#8217;ve been very busy&#8230; or lazy but with the current pressure of 6 forum skins, daily server watching and actually sleeping on the odd occasion I highly doubt the latter.
One thing that we lost during the upgrade to vBulletin 4.0 was a range of plugins and products for [...]]]></description>
			<content:encoded><![CDATA[<p>A quiet few days on here means I&#8217;ve been very busy&#8230; or lazy but with the current pressure of 6 forum skins, daily server watching and actually sleeping on the odd occasion I highly doubt the latter.</p>
<p>One thing that we lost during the upgrade to vBulletin 4.0 was a range of plugins and products for vB that were very useful to playstuff. We don&#8217;t tend to install things willy nilly just because we feel like it, only those that provide a specific purpose or suit our ethos which meant losing one, meant losing a significant proportion of our site&#8217;s functionality.</p>
<p>The biggest casualty being our game server status page, which displayed the current map, players, online/offline and other intricacies which made it clear what we were about. Take this post in the feedback sectionI like the look of your site playstuff.</p>
<blockquote><p>I read many interesting posts.<br />
I would however comment that it is ironic how hard it is to actually play stuff there &#8211; i couldn&#8217;t even find out if you had servers&#8230;.</p></blockquote>
<p>So this raised an important point, the previous addon we used was a phgstats/ vBulletin bridge: <a href="http://www.vbulletin.org/forum/showthread.php?t=118347">http://www.vbulletin.org/forum/showthread.php?t=118347</a> but this is for 3.5 and so we were very fortunate it survived right up to the very end, vB 3.8.4.</p>
<p>Being the pragmatic chap I am, I took it upon myself to take a crash course in vBulletin plugin making and ended up with a successful merge of <a href="http://gameq.sourceforge.net/" target="_blank">GAMEQ</a> and vBulletin which gives exactly the same functions as the old one.</p>
<p>When it&#8217;s in a usable state it will of course be freely released, here, maybe at vbulletin.org but the big boys there scare me somewhat. For now, here are some screenshots:</p>
<div class="wp-caption alignnone" style="width: 401px"><a href="http://files.shizzlenizzle.biz/blog/media/2010/02/ps-servers-1.png"><img class="  " title="ps-servers-1.png" src="http://files.shizzlenizzle.biz/blog/media/2010/02/ps-servers-1.png" alt="Admincp view of Playstuff Servers" width="391" height="121" /></a><p class="wp-caption-text">Admin view of Playstuff servers from an early build.</p></div>
<p>Here is a normal view:</p>
<div id="attachment_48" class="wp-caption alignnone" style="width: 310px"><a href="http://files.shizzlenizzle.biz/blog/media/2010/02/ps-stats-pretty.png"><img class="size-medium wp-image-48" title="ps-stats-pretty" src="http://files.shizzlenizzle.biz/blog/media/2010/02/ps-stats-pretty-300x133.png" alt="styled view of playstuff servers" width="300" height="133" /></a><p class="wp-caption-text">Pretty view of playstuff servers page. What the end user will see</p></div>
<p>And you can see it live here:</p>
<p><a href="http://playstuff.net/servers.php" target="_blank"> http://playstuff.net/servers.php</a></p>
<p>There&#8217;s a lot still to do, but while it works and looks good as it does now &#8211; I&#8217;m fine to leave it as is until I can catch up on the rest of the work I need to do&#8230; like schoolwork.</p>
]]></content:encoded>
			<wfw:commentRss>http://shizzlenizzle.biz/2010/02/vbulletin-server-monitor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Holding Pages</title>
		<link>http://shizzlenizzle.biz/2010/01/holding-pages/</link>
		<comments>http://shizzlenizzle.biz/2010/01/holding-pages/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 23:16:47 +0000</pubDate>
		<dc:creator>Jamesy</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[shizzle]]></category>
		<category><![CDATA[simple]]></category>

		<guid isPermaLink="false">http://shizzlenizzle.biz/?p=41</guid>
		<description><![CDATA[I&#8217;ve got quite a few subdomains I haven&#8217;t finished yet. One is my old image uploader running a modified Cheverato. When I reinstalled my server OS (as Gentoo and I don&#8217;t get along) I decided to recode it from scratch myself and thus, it has been left with a php error for about 4 months [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve got quite a few subdomains I haven&#8217;t finished yet. One is my old image uploader running a modified <a href="http://chevereto.com/f/" target="_blank">Cheverato</a>. When I reinstalled my server OS (as Gentoo and I don&#8217;t get along) I decided to recode it from scratch myself and thus, it has been left with a php error for about 4 months now.</p>
<p>I also figured it was time to get organised in the way I store files. My haphazard method of just making any random directory and uploading to it is just plain silly, so I made a new sub-server. Which brings me to the splash pages, I just wanted something simple but with more than just a plain background. Ended up writing this little function which takes a total value which I know to be 1024MB per virtualhost on here, and outputting the free space, the total and a percentage in an array which can be plugged into very simple CSS in order to create a graph.</p>
<pre class="brush:php">
function free_space_graph() {
	$path = getcwd();
	$free = exec("du -c -a $path");
	$total = 1048576;
	$percentage = $free * 100 / $total;
	$details = array("free" => $free, "total" => $total, "percentage" => $percentage);
		return $details;
}
</pre>
<p>The CSS is simply</p>
<pre class="brush:css">

#graph {
width:400px;
margin: 10px auto;
height:25px;
position:absolute;
bottom:6px;
left:56px;
background:url(/graph-bg.png);
overflow:hidden;
}

#percentage {
height:25px;
background:url(/progress-bar.png);
}

#graph-text {
color:#fff;
width:400px;
height:25px;

line-height:25px;
text-align:center;
position:absolute;
bottom:17px;
left:56px;
z-index:2;
}
</pre>
<p>Easily plugged into:</p>
<pre class="brush:php">
$percentage = free_space_graph();
$width = round($percentage['percentage'], 0);
$total = $percentage['total'] / 1024;
<div id="background">
<div id="graph-text">
    	Using: <?php echo $width; ?>% out of <?php echo $total; ?>MB
    </div>
<div id="graph">
<div id="percentage" style="width: <?php echo $width; ?>%;"></div>
</div>
</div>
</pre>
<p>So yeah, you can see it in action at: <a href="http://uploads.shizzlenizzle.biz/">http://uploads.shizzlenizzle.biz/</a> and <a href="http://files.shizzlenizzle.biz/">http://files.shizzlenizzle.biz/</a></p>
<p>*Note, the CSS is a bit specific to my pages but should be simple enough to work out. All you need is the main #graph div to be around the inner #percentage div.</p>
]]></content:encoded>
			<wfw:commentRss>http://shizzlenizzle.biz/2010/01/holding-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mouse Tracker</title>
		<link>http://shizzlenizzle.biz/2010/01/mouse-tracker/</link>
		<comments>http://shizzlenizzle.biz/2010/01/mouse-tracker/#comments</comments>
		<pubDate>Sat, 23 Jan 2010 00:04:23 +0000</pubDate>
		<dc:creator>Jamesy</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[arty]]></category>
		<category><![CDATA[neat]]></category>
		<category><![CDATA[toy]]></category>

		<guid isPermaLink="false">http://shizzlenizzle.biz/?p=36</guid>
		<description><![CDATA[Rather neat little application found via gizmodo. It draws a line based on your mouse movements and larger circles based on where your mouse stays still for a length of time. It&#8217;s quite interesting how you can instantly tell what are your most used apps just by looking at the mouse tracks, and by overlaying [...]]]></description>
			<content:encoded><![CDATA[<p>Rather neat little application found via gizmodo. It draws a line based on your mouse movements and larger circles based on where your mouse stays still for a length of time. It&#8217;s quite interesting how you can instantly tell what are your most used apps just by looking at the mouse tracks, and by overlaying it in Photoshop.</p>
<p><a href="http://dl.dropbox.com/u/3663961/mouse.PNG"><img class="alignnone" title="mouse.PNG" src="http://dl.dropbox.com/u/3663961/mouse.PNG" alt="Without overlay" width="461" height="259" /></a></p>
<p><a href="http://dl.dropbox.com/u/3663961/mouse-map.jpg"><img class="alignnone" title="mouse-map.jpg" src="http://dl.dropbox.com/u/3663961/mouse-map.jpg" alt="Overlayed onto my desktop" width="458" height="250" /> </a></p>
<p>Link to original: <a title="Mouse Tracker" href="http://www.flickr.com/photos/anatoliy_zenkov/4271592658/[" target="_self"> http://www.flickr.com/photos/anatoliy_zenkov/4271592658/</a></p>
<p><strong>Download Links:</strong></p>
<p>Mac &#8211; <a href="http://dl.dropbox.com/u/684632/mousepath.jar" target="_blank">http://dl.dropbox.com/u/684632/mousepath.jar </a></p>
<p>Windows &#8211;  <a href="http://dl.dropbox.com/u/684632/mousepath.exe.zip" target="_blank">http://dl.dropbox.com/u/684632/mousepath.exe.zip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://shizzlenizzle.biz/2010/01/mouse-tracker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Well&#8230; Weeks, not months.</title>
		<link>http://shizzlenizzle.biz/2010/01/well-weeks-not-months/</link>
		<comments>http://shizzlenizzle.biz/2010/01/well-weeks-not-months/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 22:05:19 +0000</pubDate>
		<dc:creator>Jamesy</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[thoughts]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://shizzlenizzle.biz/?p=22</guid>
		<description><![CDATA[Ooer, it would appear that the site has changed from the spaced out regions of some far flung nebulae, to a more sedate blindingly blue colour that&#8217;s simpler than the grey matter between this fella&#8217;s ears.
I think it&#8217;s a good new direction, I took quite a large deal of inspiration from the simplicity of a [...]]]></description>
			<content:encoded><![CDATA[<p>Ooer, it would appear that the site has changed from the spaced out regions of some far flung nebulae, to a more sedate blindingly blue colour that&#8217;s simpler than the grey matter between <a title="Simples" href="http://www.youtube.com/watch?v=eRRcudNiE9g" target="_blank">this fella&#8217;s </a>ears.</p>
<p>I think it&#8217;s a good new direction, I took quite a large deal of inspiration from the simplicity of a friend&#8217;s site: http://blog.artlukm.com/ and it&#8217;s always been an area I struggle with. Particularly when designing a website for myself, I am not sure what it is but it&#8217;s always easier to do it for someone else.</p>
<p>Another thing I was keen on was some fancy javascript tit-bits I&#8217;d seen elsewhere. Particularly for the movable sidebar boxes which I feel give a little bit of user interaction, the calendar style date also gives it a bit of flair while sticking to K.I.S.S. (<strong>K</strong>eep <strong>I</strong>t <strong>S</strong>imple<strong> S</strong>tupid) as it doesn&#8217;t use any images, just pure CSS/ XHTML.</p>
<p>Finally, a solution I thought was neat was the drop down panel for the social links. It&#8217;s always difficult to keep the amount of sub-information around the post as little as possible while retaining the same level of functionality. I am a big fan of icons in this scenario but sticking loads of icons everywhere wouldn&#8217;t have suited this style at all.</p>
<p>So that&#8217;s pretty much it, all thats left is the image uploading website, a few bits and pieces for Playstuff and as per the norm a mountain of homework stacked neatly* to my right.</p>
<p><span style="font-size: 10px;">* all over the floor</span></p>
]]></content:encoded>
			<wfw:commentRss>http://shizzlenizzle.biz/2010/01/well-weeks-not-months/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>To do.</title>
		<link>http://shizzlenizzle.biz/2010/01/to-do/</link>
		<comments>http://shizzlenizzle.biz/2010/01/to-do/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 23:14:29 +0000</pubDate>
		<dc:creator>Jamesy</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://shizzlenizzle.biz/?p=20</guid>
		<description><![CDATA[My mind seldom stops working, occasionally coming to the point where I struggle to focus on even one thought at a time (by which point I normally get a headache, feel sick and have to go make a cup of tea or something). I currently have a rather large work load that is set by [...]]]></description>
			<content:encoded><![CDATA[<p>My mind seldom stops working, occasionally coming to the point where I struggle to focus on even one thought at a time (by which point I normally get a headache, feel sick and have to go make a cup of tea or something). I currently have a rather large work load that is set by myself. Alongside a rather large workload set by college &#8211; if only you could get qualified doing what you loved the way you love, but I digress.</p>
<p>One of my pet projects taking up my time is improving my rudimentary knowledge of PHP by re-writing my image host from scratch, rather than adding database functionality to Cheverato. I suppose it would have been easier if the comments and variable names were not all in Spanish.</p>
<p>So far I&#8217;d put it at about version 0.0.1, seeing as it has basic user -&gt; database functionality and most of the front-end functions are working (image flagging, paginated gallery, registration and search with paginated results) but they are not implemented in an interface that is usable by the public. I&#8217;ve not formatted the data past just spewing out the raw Mysql data, nor have I implemented user access levels. But it&#8217;s getting there, chipping away at it piece at a time.</p>
<p>One thing I found interesting about when I started is that I approached it in much the same way as I would designing a wordpress theme, forum layout or any other stylistic work I do. Scribbling down a rough sketch and then plowing through it. Strangely this haphazard manner of planning didn&#8217;t cut it for a project that requires more than images and code, but a structure. Once I&#8217;d scribbled down a plan it became much easier to see what to script into it, and where it should go.</p>
<p>Another job which is important is the preparation of vB4 skins. At present playstuff has the Orange skin set up and collecting a lovely group of bug threads and issues &#8211; quite a few being something inherited from the stock theme which means us Administrators ending up having to fix a product that was paid for &#8211; thus my scathing review below this post. But it has, since its creation, had a blue skin in tandem with it (because mainly I like blue, and it&#8217;s nice to have a bit of choice). I&#8217;m holding that off until the maintenance updates later on this month.</p>
<p>I also have various finishing touches to another forum I had to convert its skins to vBulletin 4. Mainly profile fields on postbits and the like, less than exciting but needed.</p>
<p>My final task will be to redesign this website. Glassy is a theme that&#8217;s sat on my desktop for about 6 months and like anything you code six months ago, it looks awful when compared to what you know now. It&#8217;s pretty incomplete but it was the best thing at the time to put on here.</p>
<p>Will no doubt take me months.</p>
]]></content:encoded>
			<wfw:commentRss>http://shizzlenizzle.biz/2010/01/to-do/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
