<?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>Just answer the F*#king question &#187; Uncategorized</title>
	<atom:link href="http://www.jatfq.com/archives/category/uncategorized/feed" rel="self" type="application/rss+xml" />
	<link>http://www.jatfq.com</link>
	<description></description>
	<lastBuildDate>Sun, 29 Jan 2012 15:45:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>New webcams</title>
		<link>http://www.jatfq.com/archives/159</link>
		<comments>http://www.jatfq.com/archives/159#comments</comments>
		<pubDate>Sat, 04 Dec 2010 20:07:01 +0000</pubDate>
		<dc:creator>Sime</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.jatfq.com/?p=159</guid>
		<description><![CDATA[For Charlottetown PEI Webcams &#8230;.]]></description>
			<content:encoded><![CDATA[<p>For <a href="http://cams.springheadmedia.com">Charlottetown PEI Webcams </a>&#8230;.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F159&amp;title=New+webcams" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F159&amp;title=New+webcams" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F159&amp;title=New+webcams" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F159&amp;title=New+webcams" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F159&amp;title=New+webcams', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F159" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F159" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F159&amp;title=New+webcams" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F159&amp;title=New+webcams" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.jatfq.com/archives/159/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Allow ZLIB compression in CURL and PHP</title>
		<link>http://www.jatfq.com/archives/149</link>
		<comments>http://www.jatfq.com/archives/149#comments</comments>
		<pubDate>Fri, 06 Aug 2010 13:05:27 +0000</pubDate>
		<dc:creator>Sime</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.jatfq.com/?p=149</guid>
		<description><![CDATA[function file_get_contents_utf8($URL) { $c = curl_init(); curl_setopt($c, CURLOPT_RETURNTRANSFER, 1); curl_setopt($c, CURLOPT_HEADER, 1); curl_setopt($c, CURLOPT_RETURNTRANSFER, 1); curl_setopt($c, CURLOPT_URL, $URL); curl_setopt($c, CURLOPT_HTTPHEADER, array("Accept-Encoding: gzip, deflate","Accept: */*")); $ret = curl_exec($c); curl_close($c); if(strpos($ret, "\r\n\r\n")){ $add = 4; }else{ $add = 0; } $m_body = substr($ret, strpos($ret, "\r\n\r\n")+$add ); $m_header = substr($ret, 0, -strlen($m_body)); if(strstr($m_header,"Content-Encoding: gzip")){ $contents = gzinflate(substr($m_body,10)); }else{ [...]]]></description>
			<content:encoded><![CDATA[<p><code>function file_get_contents_utf8($URL)<br />
    {<br />
        $c = curl_init();<br />
        curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);<br />
	 curl_setopt($c, CURLOPT_HEADER,         1);<br />
	 curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);<br />
        curl_setopt($c, CURLOPT_URL, $URL);<br />
	 curl_setopt($c, CURLOPT_HTTPHEADER, array("Accept-Encoding: gzip, deflate","Accept: */*"));<br />
        $ret = curl_exec($c);<br />
        curl_close($c);</p>
<p>	if(strpos($ret, "\r\n\r\n")){<br />
		$add = 4;<br />
	}else{<br />
		$add = 0;<br />
	}</p>
<p>	$m_body   = substr($ret, strpos($ret, "\r\n\r\n")+$add );<br />
	$m_header = substr($ret, 0, -strlen($m_body));</p>
<p>	if(strstr($m_header,"Content-Encoding: gzip")){<br />
		$contents =  gzinflate(substr($m_body,10));<br />
	}else{<br />
		$contents = $m_body;<br />
	}</p>
<p>        if ($contents) return $contents;<br />
            else return FALSE;<br />
    }</code></p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F149&amp;title=Allow+ZLIB+compression+in+CURL+and+PHP" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F149&amp;title=Allow+ZLIB+compression+in+CURL+and+PHP" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F149&amp;title=Allow+ZLIB+compression+in+CURL+and+PHP" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F149&amp;title=Allow+ZLIB+compression+in+CURL+and+PHP" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F149&amp;title=Allow+ZLIB+compression+in+CURL+and+PHP', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F149" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F149" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F149&amp;title=Allow+ZLIB+compression+in+CURL+and+PHP" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F149&amp;title=Allow+ZLIB+compression+in+CURL+and+PHP" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.jatfq.com/archives/149/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting apache fullstatus to work</title>
		<link>http://www.jatfq.com/archives/136</link>
		<comments>http://www.jatfq.com/archives/136#comments</comments>
		<pubDate>Mon, 12 Jul 2010 17:23:18 +0000</pubDate>
		<dc:creator>Sime</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.jatfq.com/archives/136</guid>
		<description><![CDATA[Make sure mod_status is enabled in your httpd / apache config, and add the following lines ExtendedStatus On SetHandler server-status Order deny,allow Deny from all Allow from localhost If you are getting permission errors, try setting UseCanonicalName Off]]></description>
			<content:encoded><![CDATA[<p>Make sure mod_status is enabled in your httpd / apache config, and add the following lines</p>
<p><code><br />
ExtendedStatus On<br />
<code><</code>Location /server-status><br />
SetHandler server-status<br />
Order deny,allow<br />
Deny from all<br />
Allow from localhost<br />
<code><</code>/Location></code></p>
<p>If you are getting permission errors, try setting</p>
<p><code>UseCanonicalName Off</code></p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F136&amp;title=Getting+apache+fullstatus+to+work" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F136&amp;title=Getting+apache+fullstatus+to+work" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F136&amp;title=Getting+apache+fullstatus+to+work" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F136&amp;title=Getting+apache+fullstatus+to+work" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F136&amp;title=Getting+apache+fullstatus+to+work', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F136" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F136" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F136&amp;title=Getting+apache+fullstatus+to+work" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F136&amp;title=Getting+apache+fullstatus+to+work" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.jatfq.com/archives/136/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Increase shared memory Linux</title>
		<link>http://www.jatfq.com/archives/121</link>
		<comments>http://www.jatfq.com/archives/121#comments</comments>
		<pubDate>Fri, 16 Apr 2010 11:59:11 +0000</pubDate>
		<dc:creator>Sime</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.jatfq.com/archives/121</guid>
		<description><![CDATA[echo $((1024 * 1024 * xxx)) > /proc/sys/kernel/shmmax Change xxx to MB required To read value ( in MB ) echo $((`cat /proc/sys/kernel/shmmax` / 1048576)) Add command to rc.local to enter at boot.]]></description>
			<content:encoded><![CDATA[<p><code>echo $((1024 * 1024 * xxx)) > /proc/sys/kernel/shmmax</code></p>
<p>Change xxx to MB required</p>
<p>To read value ( in MB )</p>
<p><code> echo $((`cat /proc/sys/kernel/shmmax` / 1048576))</code></p>
<p>Add command to rc.local to enter at boot.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F121&amp;title=Increase+shared+memory+Linux" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F121&amp;title=Increase+shared+memory+Linux" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F121&amp;title=Increase+shared+memory+Linux" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F121&amp;title=Increase+shared+memory+Linux" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F121&amp;title=Increase+shared+memory+Linux', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F121" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F121" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F121&amp;title=Increase+shared+memory+Linux" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F121&amp;title=Increase+shared+memory+Linux" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.jatfq.com/archives/121/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac SAY voices</title>
		<link>http://www.jatfq.com/archives/108</link>
		<comments>http://www.jatfq.com/archives/108#comments</comments>
		<pubDate>Fri, 27 Nov 2009 18:04:24 +0000</pubDate>
		<dc:creator>Sime</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.jatfq.com/archives/108</guid>
		<description><![CDATA[Female Voices Agnes Kathy Princess Vicki Victoria Male Voices Bruce Fred Junior Ralph Novelty Albert Bad News Bahh Bells Boing Bubbles Cellos Deranged &#8220;Good News&#8221; Hysterical &#8221; &#8220;Pipe Organ&#8221; Trinoids Whisper Zarvox]]></description>
			<content:encoded><![CDATA[<p><strong>Female Voices</strong><br />
Agnes<br />
Kathy<br />
Princess<br />
Vicki<br />
Victoria</p>
<p><strong>Male Voices</strong><br />
Bruce<br />
Fred<br />
Junior<br />
Ralph </p>
<p><strong>Novelty</strong><br />
Albert<br />
Bad News<br />
Bahh<br />
Bells<br />
Boing<br />
Bubbles<br />
Cellos<br />
Deranged<br />
&#8220;Good News&#8221;<br />
Hysterical &#8221;<br />
&#8220;Pipe Organ&#8221;<br />
Trinoids<br />
Whisper<br />
Zarvox</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F108&amp;title=Mac+SAY+voices" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F108&amp;title=Mac+SAY+voices" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F108&amp;title=Mac+SAY+voices" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F108&amp;title=Mac+SAY+voices" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F108&amp;title=Mac+SAY+voices', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F108" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F108" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F108&amp;title=Mac+SAY+voices" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.jatfq.com%2Farchives%2F108&amp;title=Mac+SAY+voices" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.jatfq.com/archives/108/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

