<?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>No Name &#187; wp</title>
	<atom:link href="http://blog.schoash.com/category/wp/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.schoash.com</link>
	<description></description>
	<lastBuildDate>Wed, 09 Jun 2010 10:15:01 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Generating a is.gd url using PHP</title>
		<link>http://blog.schoash.com/2009/11/13/generating-a-is-gd-url-using-php/</link>
		<comments>http://blog.schoash.com/2009/11/13/generating-a-is-gd-url-using-php/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 21:46:25 +0000</pubDate>
		<dc:creator>blog</dc:creator>
				<category><![CDATA[dev]]></category>
		<category><![CDATA[wp]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[is.gd]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://blog.schoash.com/?p=156</guid>
		<description><![CDATA[I was just adjusting a plugin on my blog, when I needed to shrink urls on the fly with is.gd.

function getShortUrl($url) {
$c = curl_init();
curl_setopt($c, CURLOPT_URL, 'http://is.gd/api.php?longurl=' . $url);
curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($c, CURLOPT_CONNECTTIMEOUT, 3);
$ret = curl_exec($c);
curl_close($c);
return $ret;
}

Have fun generating those links.
]]></description>
			<content:encoded><![CDATA[<p>I was just adjusting a plugin on my blog, when I needed to shrink urls on the fly with is.gd.<br />
<code><br />
function getShortUrl($url) {<br />
$c = curl_init();<br />
curl_setopt($c, CURLOPT_URL, 'http://is.gd/api.php?longurl=' . $url);<br />
curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);<br />
curl_setopt($c, CURLOPT_CONNECTTIMEOUT, 3);<br />
$ret = curl_exec($c);<br />
curl_close($c);<br />
return $ret;<br />
}<br />
</code></p>
<p>Have fun generating those links.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.schoash.com/2009/11/13/generating-a-is-gd-url-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHPIDS for wordpress</title>
		<link>http://blog.schoash.com/2007/08/25/phpids-for-wordpress/</link>
		<comments>http://blog.schoash.com/2007/08/25/phpids-for-wordpress/#comments</comments>
		<pubDate>Sat, 25 Aug 2007 08:53:43 +0000</pubDate>
		<dc:creator>blog</dc:creator>
				<category><![CDATA[net]]></category>
		<category><![CDATA[wp]]></category>

		<guid isPermaLink="false">http://wwwu.edu.uni-klu.ac.at/hbeyer/wp/2007/08/25/phpids-for-wordpress/</guid>
		<description><![CDATA[My first attempt to write a plugin for wordpress. It enables phpids for wordpress.  There is no way yet to configure it. If I have time I will implement this feature as well as a Filter autoupdater.
Installation is easy:

Copy the contents of the file to your wp-content/plugins folder
Enable the plugin in the admin menu
chmod [...]]]></description>
			<content:encoded><![CDATA[<p>My first attempt to write a plugin for wordpress. It enables <a href="http://php-ids.org" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/php-ids.org');">phpids</a> for wordpress.  There is no way yet to configure it. If I have time I will implement this feature as well as a Filter autoupdater.</p>
<p>Installation is easy:</p>
<ol>
<li>Copy the contents of the file to your wp-content/plugins folder</li>
<li>Enable the plugin in the admin menu</li>
<li>chmod 777 the file in wp-content/plugins/phpids/log.txt</li>
</ol>
<p><a href="http://wwwu.edu.uni-klu.ac.at/hbeyer/wp/uploads/wp-phpidstar.gz" onclick="javascript:urchinTracker ('/outbound/article/wwwu.edu.uni-klu.ac.at');">tar.gz download here</a></p>
<p><a href="http://wwwu.edu.uni-klu.ac.at/hbeyer/wp/uploads/wp_phpids.zip" onclick="javascript:urchinTracker ('/outbound/article/wwwu.edu.uni-klu.ac.at');">zip download here</a></p>
<p>NOTE: check for new Filter releases at <a href="https://svn.php-ids.org/svn/trunk/lib/IDS/default_filter.xml" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/svn.php-ids.org');">phpids</a> to update the filter.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-1468894674250362";
google_ad_channel = "0331791015";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "BC7134";
google_color_text = "000000";
google_color_url = "BC7134";

//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.schoash.com/2007/08/25/phpids-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
	</channel>
</rss>
