<?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; dev</title>
	<atom:link href="http://blog.schoash.com/category/dev/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.schoash.com</link>
	<description></description>
	<lastBuildDate>Thu, 07 Oct 2010 13:18:41 +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>Make svn run like a charm in Eclipse (ubuntu)</title>
		<link>http://blog.schoash.com/2007/09/24/make-svn-run-like-a-charm-in-eclipse/</link>
		<comments>http://blog.schoash.com/2007/09/24/make-svn-run-like-a-charm-in-eclipse/#comments</comments>
		<pubDate>Mon, 24 Sep 2007 03:45:52 +0000</pubDate>
		<dc:creator>blog</dc:creator>
				<category><![CDATA[dev]]></category>
		<category><![CDATA[os]]></category>

		<guid isPermaLink="false">http://wwwu.edu.uni-klu.ac.at/hbeyer/wp/2007/09/24/make-svn-run-like-a-charm-in-eclipse/</guid>
		<description><![CDATA[I had serious problems from the beginning when I started using Eclipse under Feisty for php development. The svn plugin somehow stopped working after a few commits/updates which made me kill eclipse and start it again.
Now I found a solution, just use JavaHL instead of  the predefined SVNKit. To make this happen just install
sudo [...]]]></description>
			<content:encoded><![CDATA[<p>I had serious problems from the beginning when I started using Eclipse under Feisty for php development. The svn plugin somehow stopped working after a few commits/updates which made me kill eclipse and start it again.</p>
<p>Now I found a solution, just use JavaHL instead of  the predefined SVNKit. To make this happen just install<br />
<code>sudo apt-get install libsvn-javahl</code></p>
<p>add this line to the eclipse.ini startup file<br />
<code>-vmargs Djava.library.path=/usr/lib/jni</code><br />
restart Eclipse and in the &#8220;Preferences&#8221; switch the SVN Interface to JavaHL.</p>
<p>I am using <a href="http://easyeclipse.org/" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/easyeclipse.org');">easyeclipse</a>, its very good for my needs and it comes with all the necessary plugins preinstalled.</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/09/24/make-svn-run-like-a-charm-in-eclipse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

