<?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>XEWeb &#187; Company</title>
	<atom:link href="http://www.xeweb.net/category/company/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.xeweb.net</link>
	<description>XEWeb blog, PHP scripts and more...</description>
	<lastBuildDate>Thu, 03 Nov 2011 15:09:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Flintstone &#8211; A key/value database store using flat files for PHP</title>
		<link>http://www.xeweb.net/2011/07/14/flintstone-a-keyvalue-database-store-using-flat-files-for-php/</link>
		<comments>http://www.xeweb.net/2011/07/14/flintstone-a-keyvalue-database-store-using-flat-files-for-php/#comments</comments>
		<pubDate>Thu, 14 Jul 2011 11:04:53 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Company]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[nosql flintstone]]></category>

		<guid isPermaLink="false">http://www.xeweb.net/?p=133</guid>
		<description><![CDATA[XEWeb are proud to announce the release of Flintstone, a key/value database store using flat files for PHP. Some of the features include: Memory efficient File locking Caching Gzip compression Easy to use All it requires is PHP 5 and read/write file permissions. Take a look at example usage below: try &#123; &#160; &#160; &#160; [...]]]></description>
			<content:encoded><![CDATA[<p>XEWeb are proud to announce the release of <a href="http://www.xeweb.net/flintstone/">Flintstone</a>, a key/value database store using flat files for PHP.</p>
<p>Some of the features include:</p>
<ul>
<li>Memory efficient</li>
<li>File locking</li>
<li>Caching</li>
<li>Gzip compression</li>
<li>Easy to use</li>
</ul>
<p>All it requires is PHP 5 and read/write file permissions.</p>
<p>Take a look at example usage below:</p>
<div class="php geshi no php" style="font-family:monospace;">try <span style="color: #009900;">&#123;</span><br />
&nbsp;<br />
&nbsp; &nbsp; <span style="color: #666666; font-style: italic;">// Load flintstone</span><br />
&nbsp; &nbsp; <span style="color: #000088;">$db</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> Flintstone<span style="color: #009900;">&#40;</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&#39;dir&#39;</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&#39;/path/to/database/dir/&#39;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp;<br />
&nbsp; &nbsp; <span style="color: #666666; font-style: italic;">// Set keys</span><br />
&nbsp; &nbsp; <span style="color: #000088;">$db</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">load</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&#39;users&#39;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">set</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&#39;bob&#39;</span><span style="color: #339933;">,</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&#39;email&#39;</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&#39;bob@site.com&#39;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&#39;password&#39;</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&#39;123456&#39;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #000088;">$db</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">load</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&#39;users&#39;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">set</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&#39;joe&#39;</span><span style="color: #339933;">,</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&#39;email&#39;</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&#39;joe@site.com&#39;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&#39;password&#39;</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&#39;test&#39;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #000088;">$db</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">load</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&#39;settings&#39;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">set</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&#39;site_offline&#39;</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #000088;">$db</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">load</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&#39;settings&#39;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">set</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&#39;site_back&#39;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&#39;3 days&#39;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp;<br />
&nbsp; &nbsp; <span style="color: #666666; font-style: italic;">// Retrieve keys</span><br />
&nbsp; &nbsp; <span style="color: #000088;">$user</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$db</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">load</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&#39;users&#39;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">get</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&#39;bob&#39;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&#39;Bob, your email is &#39;</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$user</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&#39;email&#39;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp;<br />
&nbsp; &nbsp; <span style="color: #000088;">$offline</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$db</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">load</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&#39;settings&#39;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">get</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&#39;site_offline&#39;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$offline</span> <span style="color: #339933;">==</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&#39;Sorry, the website is offline&lt;br&gt;&#39;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&#39;We will be back in &#39;</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$db</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">load</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&#39;settings&#39;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">get</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&#39;site_back&#39;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; &nbsp;<br />
&nbsp; &nbsp; <span style="color: #666666; font-style: italic;">// Delete a key</span><br />
&nbsp; &nbsp; <span style="color: #000088;">$db</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">load</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&#39;users&#39;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">delete</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&#39;joe&#39;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp;<br />
&nbsp; &nbsp; <span style="color: #666666; font-style: italic;">// Flush database</span><br />
&nbsp; &nbsp; <span style="color: #000088;">$db</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">load</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&#39;users&#39;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">flush</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #009900;">&#125;</span><br />
catch <span style="color: #009900;">&#40;</span>Exception <span style="color: #000088;">$e</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&#39;Exception: &#39;</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$e</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getMessage</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #009900;">&#125;</span></div>
<p>For more information and to download visit <a href="http://www.xeweb.net/flintstone/">http://www.xeweb.net/flintstone/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.xeweb.net/2011/07/14/flintstone-a-keyvalue-database-store-using-flat-files-for-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Tweet the Tube &#8211; Live train updates on twitter</title>
		<link>http://www.xeweb.net/2010/01/22/tweet-the-tube-live-train-updates-on-twitter/</link>
		<comments>http://www.xeweb.net/2010/01/22/tweet-the-tube-live-train-updates-on-twitter/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 12:56:38 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Company]]></category>

		<guid isPermaLink="false">http://www.xeweb.net/?p=118</guid>
		<description><![CDATA[I find it frustrating getting into London these days as there are always problems on the tube that causes delays. To take action we have launched a new service dubbed &#8220;Tweet the Tube&#8221; which provides live updates whenever a tube service changes status, pulled straight from the Transport for London website and checked every 5 [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://twitter.com/tweetthetube"><img src="http://www.xeweb.net/wp-content/uploads/tweetthetube.jpg" alt="Tweet the Tube" width="200" height="200" class="alignleft size-full wp-image-116" /></a><br />
I find it frustrating getting into London these days as there are always problems on the tube that causes delays.</p>
<p>To take action we have launched a new service dubbed &#8220;Tweet the Tube&#8221; which provides live updates whenever a tube service changes status, pulled straight from the Transport for London website and checked every 5 minutes.</p>
<p>All you have to do is follow &#8220;tweetthetube&#8221; on twitter: <a href="http://twitter.com/tweetthetube">http://twitter.com/tweetthetube</a></p>
<p>Feel free to leave comments/suggestions on <a href="http://www.xeweb.net/tweet-the-tube/">this page</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xeweb.net/2010/01/22/tweet-the-tube-live-train-updates-on-twitter/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>GoLinks &#8211; PHP/MySQL Links Directory Script</title>
		<link>http://www.xeweb.net/2010/01/14/golinks-php-mysql-links-directory-script/</link>
		<comments>http://www.xeweb.net/2010/01/14/golinks-php-mysql-links-directory-script/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 13:07:47 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Company]]></category>

		<guid isPermaLink="false">http://www.xeweb.net/?p=111</guid>
		<description><![CDATA[Here at XEWeb we are cracking open a bottle of champagne as we announce the new version of GoLinks. GoLinks is a simple yet powerful and efficient links directory script with many features including unlimited categories, link submission, search engine friendly URL&#8217;s, multiple themes and language support with completely customizable templates. Take a look at [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.golinks-script.com/"><img src="http://www.xeweb.net/wp-content/uploads/golinkslogo.jpg" alt="GoLinks" width="150" height="21" class="alignleft size-full wp-image-113" /></a>Here at XEWeb we are cracking open a bottle of champagne as we announce the new version of <a href="http://www.golinks-script.com/">GoLinks</a>.</p>
<p>GoLinks is a simple yet powerful and efficient links directory script with many features including unlimited categories, link submission, search engine friendly URL&#8217;s, multiple themes and language support with completely customizable templates.</p>
<p>Take a look at <a href="http://www.golinks-script.com">http://www.golinks-script.com</a> to download, order and view a demo online.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xeweb.net/2010/01/14/golinks-php-mysql-links-directory-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

