<?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:atom="http://www.w3.org/2005/Atom"
	xmlns:dc="http://purl.org/dc/elements/1.1/">
	 
    	<channel>
        	<title>Zip Zap Zorum - Stuff (RSS Feed)</title>
        	<description>Zip Zap Zorum - Stuff</description>
        	<link>http://www.zipzapzorum.com/stuff/</link>
        	<generator>Pixie installed  @ http://www.zipzapzorum.com/</generator>
        	<language>en</language>
        	<image>
      			<url>http://www.zipzapzorum.com/files/images/rss_feed_icon.gif</url>
      			<link>http://www.zipzapzorum.com/stuff/</link>
      			<title>Zip Zap Zorum - Stuff (RSS Feed)</title>
    		</image>

    		<atom:link href="http://www.zipzapzorum.com/stuff/rss/" rel="self" type="application/rss+xml" />

  		<item>
  			<title>Zip Zap Zorum Is Moving</title>
	  		<link>http://www.zipzapzorum.com/stuff/permalink/zip-zap-zorum-is-moving/</link>
	  		<comments>http://www.zipzapzorum.com/stuff/permalink/zip-zap-zorum-is-moving#comments/</comments>
	  		<pubDate>Wed, 20 Jan 2010 20:44:00 +0000</pubDate>
	  		<dc:creator>rvause</dc:creator>
			<category>zipzapzorum</category>
			<guid isPermaLink="true">http://www.zipzapzorum.com/stuff/permalink/zip-zap-zorum-is-moving/</guid>
			<description><![CDATA[
			<p>I need to move Zip Zap Zorum, as the domain name and title of the page seems to create a lot of questions. All the information and files contained here will be moved over to <a href="http://www.rickvause.com" title="rickvause.com">www.rickvause.com</a>, a more fitting domain/title for my stuff.</p>
			<p>Tagged: <a href="http://www.zipzapzorum.com/stuff/tag/zipzapzorum/" title="View all posts in zipzapzorum">zipzapzorum</a></p>
			]]></description>
			<wfw:commentRss>http://transformr.co.uk/hatom/http://www.zipzapzorum.com/stuff/permalink/zip-zap-zorum-is-moving/</wfw:commentRss>
  		</item>
  		<item>
  			<title>Getting a development webserver set up at home with Xubuntu</title>
	  		<link>http://www.zipzapzorum.com/stuff/permalink/getting-a-development-webserver-set-up-at-home-with-xubuntu/</link>
	  		<comments>http://www.zipzapzorum.com/stuff/permalink/getting-a-development-webserver-set-up-at-home-with-xubuntu#comments/</comments>
	  		<pubDate>Wed, 18 Nov 2009 22:15:00 +0000</pubDate>
	  		<dc:creator>rvause</dc:creator>
			<category>linux</category><category>apache</category><category>php</category><category>mysql</category><category>ubuntu</category><category>xubuntu</category><category>lamp</category><category>server</category>
			<guid isPermaLink="true">http://www.zipzapzorum.com/stuff/permalink/getting-a-development-webserver-set-up-at-home-with-xubuntu/</guid>
			<description><![CDATA[
			<p>I had an old DELL 4300 lying around at home and thought it was about time I put it to some use by setting it up as a LAMP server to work on little PHP projects from home. Since it is quite a low spec machine I decided to go with <a href="http://www.xubuntu.org/" title="www.xubuntu.org" target="_self">Xubuntu</a> on this one. The latest release is 9.10, but I use Ubuntu 9.04 on my laptop so thought I would go for the same version of Xubuntu for this one since I had the CD lying around within yards of the server-to-be anyway. I am not knocking Ubuntu 9.10, I upgraded my workstation at work to be running this version and it is great, although I haven't quite figured out the quirky behaviour surrounding the new UbuntuOne service, but that is another story.</p>
<p>First thing you will want to do is go to <a href="http://www.xubuntu.org/" title="www.xubuntu.org" target="_self">Xubuntu.org</a> and get a release of Xubuntu. The following should work regardless of whether you decide on 9.10 or 9.04.</p>
<p>Get your old machine out and wire it up to the network, a monitor and a keyboard. Follow the installation steps for Xubuntu and once it is started for the first time you can log in. Here you will probably find that there are updates to get for the distro so just follow the prompts until the system stops quizzing you.</p>
<p>A little churnering and a couple of restarts later you will be ready to get started installing the server software.</p>
<p>Hit Alt+F2, enter 'xterm' and hit 'Run'. A terminal window will open. From here enter:</p>
<p><em class="success">sudo apt-get install ssh</em></p>
<p>This will prompt you for your password and then install an SSH server on your machine. Brilliant! Make sure your server-to-be is set up with a static ip so you know how to find it easily. You can read a good guide <a href="http://www.howtogeek.com/howto/ubuntu/change-ubuntu-server-from-dhcp-to-a-static-ip-address/" title="Howtogeek">here</a>.</p>
<p>From here you can remove the keyboard and monitor from you server-to-be, hide it somewhere out of your better half's sight and go to your laptop or whatever you normally work on. I went to my laptop of course.</p>
<p>Connect to your server-to-be via SSH</p>
<p><em class="success">ssh username@host</em></p>
<p>Now from here you can start installing other server software, starting with Apache, MySQL, PHP:</p>
<p><em class="success">sudo tasksel install lamp-server</em></p>
<p>You will be prompted for your password then a blue screen will appear and begin downloading and installing. At some point you will be prompted to choose a new password for the root mysql user, don't forget this one.</p>
<p>That is it really. You are pretty much ready to go from here. Going to the servers IP address in your web browser should present you with a page saying 'It Works!' in large type.</p>
<p>Your document root is under /var/www . All you will find there is a file called index.html with the contents described above.</p>
<p>One other thing you may want that is not included in the default installation here is mod_rewrite. To activate this enter:</p>
<p><em class="success">sudo a2enmod rewrite</em></p>
<p>then restart Apache</p>
<p><em class="success">sudo /etc/init.d/apache2 restart</em></p>
<p>I use phpMyAdmin to work with MySQL databases. This tool has endless value and if you haven't already thought of it, I reccommend installing it:</p>
<p><em class="success">sudo apt-get install phpmyadmin</em></p>
<p>During installation you will be prompted for the MySQL root users password as well as being asked to set up a new password for phpmyadmin. </p>
<p>Next you will need to include the configuration for phpmyadmin to be used with Apache. Open /etc/apache2/apache2.conf in vi</p>
<p><em class="success">sudo vi /etc/apache2/apache2.conf</em></p>
<p>Add the following line to the end of the file:</p>
<p><em class="success">Include /etc/phpmyadmin/apache.conf</em></p>
<p>Save :w and quit :q. Now restart Apache once more:</p>
<p><em class="success">sudo /etc/init.d/apache2 restart</em></p>
<p>Browsing to yourserversip/phpmyadmin, you should be presented with the log in screen for phpMyAdmin.</p>
<p>You are up and running. Install you favourite version control system and you are away. Enjoy.</p>
<p>Remember, this is by no means a secure installation of a webserver and is only intended for use at home on your personal projects.</p>
			<p>Tagged: <a href="http://www.zipzapzorum.com/stuff/tag/linux/" title="View all posts in linux">linux</a>, <a href="http://www.zipzapzorum.com/stuff/tag/apache/" title="View all posts in apache">apache</a>, <a href="http://www.zipzapzorum.com/stuff/tag/php/" title="View all posts in php">php</a>, <a href="http://www.zipzapzorum.com/stuff/tag/mysql/" title="View all posts in mysql">mysql</a>, <a href="http://www.zipzapzorum.com/stuff/tag/ubuntu/" title="View all posts in ubuntu">ubuntu</a>, <a href="http://www.zipzapzorum.com/stuff/tag/xubuntu/" title="View all posts in xubuntu">xubuntu</a>, <a href="http://www.zipzapzorum.com/stuff/tag/lamp/" title="View all posts in lamp">lamp</a>, <a href="http://www.zipzapzorum.com/stuff/tag/server/" title="View all posts in server">server</a></p>
			]]></description>
			<wfw:commentRss>http://transformr.co.uk/hatom/http://www.zipzapzorum.com/stuff/permalink/getting-a-development-webserver-set-up-at-home-with-xubuntu/</wfw:commentRss>
  		</item>
  		<item>
  			<title>Sage Line 50 ODBC Schema</title>
	  		<link>http://www.zipzapzorum.com/stuff/permalink/sage-line-50-odbc-schema/</link>
	  		<comments>http://www.zipzapzorum.com/stuff/permalink/sage-line-50-odbc-schema#comments/</comments>
	  		<pubDate>Thu, 12 Nov 2009 20:18:00 +0000</pubDate>
	  		<dc:creator>rvause</dc:creator>
			<category>sage</category><category>line50</category><category>spreadsheet</category><category>database</category><category>odbc</category>
			<guid isPermaLink="true">http://www.zipzapzorum.com/stuff/permalink/sage-line-50-odbc-schema/</guid>
			<description><![CDATA[
			<p>I have been working on a client management system that is closely integrated with a Sage Line 50 database. As the project has developed I have found myself wanting and needing more and more information regarding the structure of the Sage Line 50 database as well as the relations between the tables within it.</p>
<p>After much time spent searching on Google and also contacting the authors of Sage Line 50 (who only suggested paying for use of their SDK) I found there is next to nothing out there on the web in the way of information on the Sage Line 50 database schema.</p>
<p>So I have produced <a href="http://www.zipzapzorum.com/files/other/Sage-Line-50-ODBC-Schema.ods" title="Sage-Line-50-ODBC-Schema.ods">this</a> spreadsheet to describe the Sage Line 50 ODBC Schema for my reference and understanding.</p>
<p>Currently there is one table per sheet describe with the first sheet listing ALL tables in the database. This is a work in progress and I will be adding more to it as I discover and understand more about the relationships between the individual tables. ie Which tables are join tables, what fields are used to relate to other tables etc.</p>
<p>If you are interested dowload it here: <a href="http://www.zipzapzorum.com/files/other/Sage-Line-50-ODBC-Schema.ods" title="Sage-Line-50-ODBC-Schema.ods">Sage-Line-50-ODBC-Schema.ods</a></p>
<p>If anybody happens to revise this spreadsheet with more information I would appreciate it if you could email me the revised spreadsheet then I can post it again here. If not, I'll just post my next revision when I have more information.</p>
			<p>Tagged: <a href="http://www.zipzapzorum.com/stuff/tag/sage/" title="View all posts in sage">sage</a>, <a href="http://www.zipzapzorum.com/stuff/tag/line50/" title="View all posts in line50">line50</a>, <a href="http://www.zipzapzorum.com/stuff/tag/spreadsheet/" title="View all posts in spreadsheet">spreadsheet</a>, <a href="http://www.zipzapzorum.com/stuff/tag/database/" title="View all posts in database">database</a>, <a href="http://www.zipzapzorum.com/stuff/tag/odbc/" title="View all posts in odbc">odbc</a></p>
			]]></description>
			<wfw:commentRss>http://transformr.co.uk/hatom/http://www.zipzapzorum.com/stuff/permalink/sage-line-50-odbc-schema/</wfw:commentRss>
  		</item>
  		<item>
  			<title>Google Search including Tweets</title>
	  		<link>http://www.zipzapzorum.com/stuff/permalink/google-search-including-tweets/</link>
	  		<comments>http://www.zipzapzorum.com/stuff/permalink/google-search-including-tweets#comments/</comments>
	  		<pubDate>Thu, 22 Oct 2009 21:06:00 +0100</pubDate>
	  		<dc:creator>rvause</dc:creator>
			<category>twitter</category><category>google</category><category>web</category>
			<guid isPermaLink="true">http://www.zipzapzorum.com/stuff/permalink/google-search-including-tweets/</guid>
			<description><![CDATA[
			<p>I've seen a lot of discussion on the web surrounding <a href="http://googleblog.blogspot.com/2009/10/rt-google-tweets-and-updates-and-search.html" title="RT @google: Tweets and updates and search, oh my!">this</a> post on Google's blog.</p>
<p>I do not doubt one bit that it will be beneficial to web users to index Tweets in and include results in searches but wouldn't there be a lot of noise? </p>
<p>Often when I use twitter and try to search for a topic of interest I find there are bunch of marketeers jump on board by including popular phrases in their tweets that are completely irrelevant. When I was stuck in traffic on the way to <a href="http://www.thisissomerset.co.uk/news/Glastonbury-s-traffic-jams-rainy-forecast/article-1109656-detail/article.html" title="Glastonbury's back - with traffic jams and a rainy forecast">Glastonbury festival</a> earlier this year I thought I might be able to find some insigh into what was going on by searching for other festival goers tweers but because of the noise that a popular topic brings, it provided little information as to what was going on with the traffic situation and entry into the festival.</p>
<p>To contradict what I just said about the noise on Google searches, however, will this product make for better searching of tweets? I near enough always find relevant results in my searches on Google search and maybe this is exactly what users of twitter need. A way to get a more relevant set of tweets for a search.</p>
<p>Another good article can be found <a href="http://www.tourismkeys.ca/blog/2009/10/microsoft-and-google-search-results-to-feature-twitter-tweets/" title="Microsoft and Google search results to feature Twitter Tweets">here</a>.</p>
			<p>Tagged: <a href="http://www.zipzapzorum.com/stuff/tag/twitter/" title="View all posts in twitter">twitter</a>, <a href="http://www.zipzapzorum.com/stuff/tag/google/" title="View all posts in google">google</a>, <a href="http://www.zipzapzorum.com/stuff/tag/web/" title="View all posts in web">web</a></p>
			]]></description>
			<wfw:commentRss>http://transformr.co.uk/hatom/http://www.zipzapzorum.com/stuff/permalink/google-search-including-tweets/</wfw:commentRss>
  		</item>
  		<item>
  			<title>Look Out for Google Wave Invite Scams</title>
	  		<link>http://www.zipzapzorum.com/stuff/permalink/lookout-for-google-wave-invite-scams/</link>
	  		<comments>http://www.zipzapzorum.com/stuff/permalink/lookout-for-google-wave-invite-scams#comments/</comments>
	  		<pubDate>Thu, 01 Oct 2009 23:25:00 +0100</pubDate>
	  		<dc:creator>rvause</dc:creator>
			<category>google</category><category>wave</category><category>internet</category><category>web</category><category>hype</category>
			<guid isPermaLink="true">http://www.zipzapzorum.com/stuff/permalink/lookout-for-google-wave-invite-scams/</guid>
			<description><![CDATA[
			<p>There is a lot of hype on the web surrounding Google Wave invitations at the moment. If you are hunting for an invitation to Google's exciting new service please keep it in mind that the web allows anonymity and certain web publishers may use web hype to exploit users.</p>
<p>Please <a href="http://www.examiner.com/x-24816-Denver-New-Technology-Examiner~y2009m10d1-That-Google-Wave-Invite-link-is-a-scam" title="Google Wave Invitation Scams" target="_blank">read here</a> and <a href="http://securitylabs.websense.com/content/Alerts/3486.aspx" target="_blank">here</a> about Google Wave invitation scams. You may be better off until Google open Google Wave up for sign up.</p>
			<p>Tagged: <a href="http://www.zipzapzorum.com/stuff/tag/google/" title="View all posts in google">google</a>, <a href="http://www.zipzapzorum.com/stuff/tag/wave/" title="View all posts in wave">wave</a>, <a href="http://www.zipzapzorum.com/stuff/tag/internet/" title="View all posts in internet">internet</a>, <a href="http://www.zipzapzorum.com/stuff/tag/web/" title="View all posts in web">web</a>, <a href="http://www.zipzapzorum.com/stuff/tag/hype/" title="View all posts in hype">hype</a></p>
			]]></description>
			<wfw:commentRss>http://transformr.co.uk/hatom/http://www.zipzapzorum.com/stuff/permalink/lookout-for-google-wave-invite-scams/</wfw:commentRss>
  		</item>
  		<item>
  			<title>Developing Flash for Free</title>
	  		<link>http://www.zipzapzorum.com/stuff/permalink/developing-flash-for-free/</link>
	  		<comments>http://www.zipzapzorum.com/stuff/permalink/developing-flash-for-free#comments/</comments>
	  		<pubDate>Tue, 29 Sep 2009 21:15:00 +0100</pubDate>
	  		<dc:creator>rvause</dc:creator>
			<category>development</category><category>flash</category><category>as3</category><category>actionscript</category><category>flex</category>
			<guid isPermaLink="true">http://www.zipzapzorum.com/stuff/permalink/developing-flash-for-free/</guid>
			<description><![CDATA[
			<p>Developing in Flash was something that has been bound to hit me for a few years now and I have avoided it and ignored it for a long time now. The main reason's being that I have never been able to get my head round animation and the use of a timeline and Flash, to me, is another proprietry plugin for your web browser that we could probably all do without the hassle of having to install.</p>
<p>But I am not developing Flash apps for the web so it is ok.</p>
<p>Adobe's new CS3 and CS4 packages comes a big price tag and a 30-day trial is just not long enough for me to learn everything I need to learn and do everything I need to do. Investment in the latest version of the Adobe's authoring suite was always going to be out of the question as I never plan to adopt Flash as my choice for web development. So I started considering other options aside from piracy.</p>
<p>Eventually after reading much, I understood that Actionscript 3, the language behind Flash movies and FLA and SWF files can be compiled into SWF applications ready for release using Adobe's free, open source <a href="http://opensource.adobe.com/wiki/display/flexsdk/Flex+SDK" title="opensource.adobe.com" target="_blank">Flex SDK</a>.</p>
<p>So with that in my hands I started to 'Google' terms like 'Actionscript 3 source editor' and came upon a real gem.</p>
<p><a href="http://www.flashdevelop.org" title="www.flashdevelop.org" target="_blank">FlashDevelop</a> is a free, open source editor for Actionscript 3 amongst many other possibilities including a new language called <a href="http://haxe.org/" title="haxe.org" target="_blank">haXe</a>.</p>
<p>I found FlashDevelop really easy to set up and use, it's auto-completion is BRILLIANT and indispensable for an Actionscript 3 beginner, helping me get through these beginning stages of Flash development with great ease.</p>
<p>All you need to get started is the Flex SDK, a stand alone Flash Player Debugger and FlashDevelop.</p>
<p>Unlike the Adobe's Flash authoring suite you write everything in Actionscript 3, no interaction from and the mouse and no timeline. I am sure this free, open source method of development has it's draw backs, the timeline and physical WYSIWYG stage are there for a reason, but for the purpose of creating simple Actionscript 3 applications quickly and on a low budget, FlashDevelop is brilliant.</p>
			<p>Tagged: <a href="http://www.zipzapzorum.com/stuff/tag/development/" title="View all posts in development">development</a>, <a href="http://www.zipzapzorum.com/stuff/tag/flash/" title="View all posts in flash">flash</a>, <a href="http://www.zipzapzorum.com/stuff/tag/as3/" title="View all posts in as3">as3</a>, <a href="http://www.zipzapzorum.com/stuff/tag/actionscript/" title="View all posts in actionscript">actionscript</a>, <a href="http://www.zipzapzorum.com/stuff/tag/flex/" title="View all posts in flex">flex</a></p>
			]]></description>
			<wfw:commentRss>http://transformr.co.uk/hatom/http://www.zipzapzorum.com/stuff/permalink/developing-flash-for-free/</wfw:commentRss>
  		</item>
  		<item>
  			<title>Loading content from another domain using jQuery&#039;s load function</title>
	  		<link>http://www.zipzapzorum.com/stuff/permalink/loading-content-from-another-domain-using-jquerys-load-function/</link>
	  		<comments>http://www.zipzapzorum.com/stuff/permalink/loading-content-from-another-domain-using-jquerys-load-function#comments/</comments>
	  		<pubDate>Fri, 18 Sep 2009 17:14:00 +0100</pubDate>
	  		<dc:creator>rvause</dc:creator>
			<category>javascript</category><category>jquery</category><category>php</category>
			<guid isPermaLink="true">http://www.zipzapzorum.com/stuff/permalink/loading-content-from-another-domain-using-jquerys-load-function/</guid>
			<description><![CDATA[
			<p>I was never aware before that you can not load content from external domains using jQuery's load function. I wanted to be able to load in a HTML stock ticker I had created into any website that I needed to display it on but could not.</p>
<p>Here is the solution I came up with:</p>
<p>I created a file "loadticker.php" and inside it put:</p>
<pre>echo file_get_contents("http://www.myscript.com/path/to/file.php"); </pre>
<p>I put this file on the domain of every website I wanted to load the content to and set each page where I wanted to display the content to load the local file, "loadticker.php".</p>
<p>More of a workaround than a solution.</p>
<p>On the pages where I was already using PHP and I was loading in the ticker I skipped loading the file and just simply added:</p>
<pre>echo file_get_contents("http://www.myscript.com/path/to/file.php"); </pre>
<p>Where I wanted to display the ticker.</p>
			<p>Tagged: <a href="http://www.zipzapzorum.com/stuff/tag/javascript/" title="View all posts in javascript">javascript</a>, <a href="http://www.zipzapzorum.com/stuff/tag/jquery/" title="View all posts in jquery">jquery</a>, <a href="http://www.zipzapzorum.com/stuff/tag/php/" title="View all posts in php">php</a></p>
			]]></description>
			<wfw:commentRss>http://transformr.co.uk/hatom/http://www.zipzapzorum.com/stuff/permalink/loading-content-from-another-domain-using-jquerys-load-function/</wfw:commentRss>
  		</item>
  		<item>
  			<title>Last.fm Recent Tracks Block for Pixie</title>
	  		<link>http://www.zipzapzorum.com/stuff/permalink/a-lastfm-recent-tracks-block-for-pixie/</link>
	  		<comments>http://www.zipzapzorum.com/stuff/permalink/a-lastfm-recent-tracks-block-for-pixie#comments/</comments>
	  		<pubDate>Tue, 18 Aug 2009 17:45:00 +0100</pubDate>
	  		<dc:creator>rvause</dc:creator>
			<category>php</category><category>pixie</category><category>rss</category><category>lastfm</category>
			<guid isPermaLink="true">http://www.zipzapzorum.com/stuff/permalink/a-lastfm-recent-tracks-block-for-pixie/</guid>
			<description><![CDATA[
			<p>Zip Zap Zorum is <a href="http://www.getpixie.co.uk/">Pixie Powered</a> and the world knows about <a href="http://www.last.fm/">Last.fm</a>.</p>

<p>I have been 'scrobbling' for years and wanted to add a recent tracks listing to my blog here. You see it on the right there?</p>

<p>If you want to add this block to your Pixie Powered site you can download the block here: <a href="../files/other/block_lastfm.zip">block_lastfm.zip</a></p>

<p>It supports a number of options for your recently played list: </p>

<ul>

<li>Number of tracks to display (1-10)</li>

<li>Artist - Track or Track - Artist display.</li>

<li>Caching of data to save querying RSS feed and building text constantly for busy websites.</li>

<li>Formatting of dates and times using PHP's date function.</li>

</ul>

<p>Enjoy.</p>
			<p>Tagged: <a href="http://www.zipzapzorum.com/stuff/tag/php/" title="View all posts in php">php</a>, <a href="http://www.zipzapzorum.com/stuff/tag/pixie/" title="View all posts in pixie">pixie</a>, <a href="http://www.zipzapzorum.com/stuff/tag/rss/" title="View all posts in rss">rss</a>, <a href="http://www.zipzapzorum.com/stuff/tag/lastfm/" title="View all posts in lastfm">lastfm</a></p>
			]]></description>
			<wfw:commentRss>http://transformr.co.uk/hatom/http://www.zipzapzorum.com/stuff/permalink/a-lastfm-recent-tracks-block-for-pixie/</wfw:commentRss>
  		</item>
  		<item>
  			<title>Preloading images without Javascript, using CSS instead</title>
	  		<link>http://www.zipzapzorum.com/stuff/permalink/preloading-images-without-javascript-using-css-instead/</link>
	  		<comments>http://www.zipzapzorum.com/stuff/permalink/preloading-images-without-javascript-using-css-instead#comments/</comments>
	  		<pubDate>Wed, 12 Aug 2009 13:06:00 +0100</pubDate>
	  		<dc:creator>rvause</dc:creator>
			<category>design</category><category>CSS</category><category>javascript</category>
			<guid isPermaLink="true">http://www.zipzapzorum.com/stuff/permalink/preloading-images-without-javascript-using-css-instead/</guid>
			<description><![CDATA[
			<p>If I can find a way of using CSS for something I would normally do with Javascript, I will always go with CSS. It also usually works out easier and cleaner in CSS.</p>

<p>When displaying my 2 stage CSS buttons on a page I was working on, the second stage took a few moments too long to load, so I decided I wanted to preload those images using CSS.</p>

<p>Here is my solution...</p>

<p>The CSS:</p>

<p><code>img.preload { display: none; width: 1px; height: 1px; }</code></p>

<p>The HTML:</p>

<p><code>&lt;img src="./path/to/image.jpg" alt="preloaded" class="preload" /&gt;</code></p>

<p>Just add the class preload to each image and you should be laughing.</p>
			<p>Tagged: <a href="http://www.zipzapzorum.com/stuff/tag/design/" title="View all posts in design">design</a>, <a href="http://www.zipzapzorum.com/stuff/tag/CSS/" title="View all posts in CSS">CSS</a>, <a href="http://www.zipzapzorum.com/stuff/tag/javascript/" title="View all posts in javascript">javascript</a></p>
			]]></description>
			<wfw:commentRss>http://transformr.co.uk/hatom/http://www.zipzapzorum.com/stuff/permalink/preloading-images-without-javascript-using-css-instead/</wfw:commentRss>
  		</item>
  		<item>
  			<title>SQLite Class for PHP</title>
	  		<link>http://www.zipzapzorum.com/stuff/permalink/sqlite-class-for-php/</link>
	  		<comments>http://www.zipzapzorum.com/stuff/permalink/sqlite-class-for-php#comments/</comments>
	  		<pubDate>Wed, 05 Aug 2009 12:26:00 +0100</pubDate>
	  		<dc:creator>rvause</dc:creator>
			<category>php</category><category>mysql</category><category>sqlite</category>
			<guid isPermaLink="true">http://www.zipzapzorum.com/stuff/permalink/sqlite-class-for-php/</guid>
			<description><![CDATA[
			<p>When I started working on projects in PHP/MySQL I found my self writing the same bits of code over and over again to connect, update, debug what was going on with my database.<br /> <br />  About a year ago now I came across <a href="http://www.micahcarrick.com/04-19-2005/php-mysql-database-class.html">this</a> class by Micah Carrick, shared.<br /> <br />  I started using it and since then have never looked back, it is simple, but extremely useful. Felt as if it was made for me.<br /> <br />  So yesterday when I started on a project that will involve usage to SQLite, I instantly started to miss the MySQL class I had been using all this time.<br /> <br />  So I decided it would be worth investing a little time in modifying Micah Carrick's class to support SQLite databases. That way I can work the same way I have been for a while now with MySQL in SQLite.<br /> <br />  Brilliant. An SQLite class for PHP just like Micah Carrick's MySQL class for PHP.<br /> <br />  <a href="http://www.zipzapzorum.com/uploads/sqliteclass-1.0.zip">Click here to Download it Zipped up.</a>  I am satisfied it is complete, but just in case, look out for updates here.</p>
			<p>Tagged: <a href="http://www.zipzapzorum.com/stuff/tag/php/" title="View all posts in php">php</a>, <a href="http://www.zipzapzorum.com/stuff/tag/mysql/" title="View all posts in mysql">mysql</a>, <a href="http://www.zipzapzorum.com/stuff/tag/sqlite/" title="View all posts in sqlite">sqlite</a></p>
			]]></description>
			<wfw:commentRss>http://transformr.co.uk/hatom/http://www.zipzapzorum.com/stuff/permalink/sqlite-class-for-php/</wfw:commentRss>
  		</item>
	</channel>
</rss>	

<!-- www.000webhost.com Analytics Code -->
<script type="text/javascript" src="http://analytics.hosting24.com/count.php"></script>
<noscript><a href="http://www.hosting24.com/"><img src="http://analytics.hosting24.com/count.php" alt="web hosting" /></a></noscript>
<!-- End Of Analytics Code -->
