<?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>Gosdot &#187; hack</title>
	<atom:link href="http://gosdot.com/unity/category/hack/feed/" rel="self" type="application/rss+xml" />
	<link>http://gosdot.com/unity</link>
	<description>ux, data, design</description>
	<lastBuildDate>Sat, 22 May 2010 22:17:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Free International Email To SMS Gateways</title>
		<link>http://gosdot.com/unity/2008/11/28/free-international-email-to-sms-gateways/</link>
		<comments>http://gosdot.com/unity/2008/11/28/free-international-email-to-sms-gateways/#comments</comments>
		<pubDate>Sat, 29 Nov 2008 05:35:09 +0000</pubDate>
		<dc:creator>jon</dc:creator>
				<category><![CDATA[hack]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[micromessaging]]></category>

		<guid isPermaLink="false">http://gosdot.com/unity/2008/11/28/free-international-email-to-sms-gateways/</guid>
		<description><![CDATA[Did you know you can send free SMS messages in Africa? There&#8217;s a few ways. Of course, the mobile messaging service MXit is one that uses GPRS and 3G protocols to by pass the standard charges all together. But another more obscure method is explained by the people at Make Use Of&#8230;

Most of mobile carriers [...]]]></description>
			<content:encoded><![CDATA[<p>Did you know you can send free SMS messages in Africa? There&#8217;s a few ways. Of course, the mobile messaging service <a href="http://en.wikipedia.org/wiki/MXit" title="mxit south africa">MXit</a> is one that uses GPRS and 3G protocols to by pass the standard charges all together. But another more obscure method is explained by the people at <a href="http://www.makeuseof.com/tag/email-to-sms/">Make Use Of</a>&#8230;</p>
<blockquote>
<p>Most of mobile carriers offer free Email To SMS gateways which can be used to forward simple text emails to a mobile phones. And the good news, majority of those gateways are free and available to the general public.</p>
<p>You just need to know the number and the carrier of the recipient to start emailing them to mobile phone. Below we put together a table listing free email to SMS gateways for different carriers. You can use as quick reference both for US and international mobile numbers.</p>
</blockquote>
<p>Here&#8217;s the list of Email to SMS gateways from Africa and around the world:</p>
<ul>
<li>MTN (South Africa) [number]@sms.co.za</li>
<li>Vodacom (South Africa) [number]@voda.co.za</li>
<li>Setar Mobile email (Aruba) 297+[number]@mas.aw</li>
<li>Mero Mobile (Nepal) 977[number]@sms.spicenepal.com</li>
<li>Emtel (Mauritius) [number]@emtelworld.net</li>
<li>BPL Mobile (Mumbai, India) [number]@bplmobile.com</li>
<li>Airtel (Karnataka, India) [number]@airtelkk.com</li>
</ul>
<p>There are also a number of websites that allow you to send free SMS&#8217; via the web. Be cautious though. Sites like these are often suspected of selling your registered cell phone numbers to marketers and spammers: <a href="http://gizmosms.com/">GizmoSMS</a> , <a href="http://www.textmefree.com/">TextMeFree</a> , <a href="http://www.textmefree.com/detailed/258.html">VienSMS</a></p>
]]></content:encoded>
			<wfw:commentRss>http://gosdot.com/unity/2008/11/28/free-international-email-to-sms-gateways/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>MagpieRSS: Truncating Titles with fetch_rss()</title>
		<link>http://gosdot.com/unity/2008/09/22/magpierss-truncating-titles-with-fetch_rss/</link>
		<comments>http://gosdot.com/unity/2008/09/22/magpierss-truncating-titles-with-fetch_rss/#comments</comments>
		<pubDate>Mon, 22 Sep 2008 06:50:00 +0000</pubDate>
		<dc:creator>jon</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[magpie]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[snoopy]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://gosdot.com/unity/?p=318</guid>
		<description><![CDATA[Truncating RSS titles for the fetch_rss() option of MagpieRSS turned out to be trickier than I initially expected.  If you aren&#8217;t a hardcore php programmer and you&#8217;re just trying to fancy up your Wordpress blog, it can be a little obtuse as to how to achieve this.  After a few Google searches turned [...]]]></description>
			<content:encoded><![CDATA[<p>Truncating RSS titles for the <code>fetch_rss()</code> option of MagpieRSS turned out to be trickier than I initially expected.  If you aren&#8217;t a hardcore php programmer and you&#8217;re just trying to fancy up your Wordpress blog, it can be a little obtuse as to how to achieve this.  After a few Google searches turned up nothing I came up with this solution&#8230;</p>
<pre>
&lt;h3&gt;Title of Your RSS Feed&lt;/h3&gt;
&lt;?php
// assign the feed to a variable named 'feed'
$feed = 'http://url-of-your-rss-feed.com/feed/';
	if ($feed) {
		include_once(ABSPATH . WPINC . '/rss.php');
// define that 'feed' is also your url
$url = $feed;
$rss = fetch_rss($feed);
// string to return if feed fails
 	if ($rss == false){
$string .= "[No Feed To Retrieve]";
	return $string;
}
$maxitems = 10;
$items = array_slice($rss-&gt;items, 0, $maxitems);
	foreach ( $items as $item ) :
// define the string which is '$title'
// define the action 'substr' means sub-string or 'part of a string'
// define where the feed string starts - first letter is '0'
// define the length of the feed string - 55 characters
// define the trailing characters - "..."
$title = substr($item['title'],0,55)." ... ";
?&gt;
&lt;ul&gt;
&lt;li&gt;
// link to the rss item origin with the description as the title
&lt;a href='&lt;?php echo $item['link']; ?&gt;' title='&lt;?php echo $item['description']; ?&gt;'&gt;
// print the truncated RSS title
&lt;?php print $title; ?&gt;
&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;?php endforeach;
}
?&gt;
&lt;br /&gt;&lt;br /&gt;
</pre>
<p>This code will allow you to truncate and print the titles of an rss feed. No more worries about whether or not that aggregated feed from Twitter or another blog will break your design.</p>
]]></content:encoded>
			<wfw:commentRss>http://gosdot.com/unity/2008/09/22/magpierss-truncating-titles-with-fetch_rss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Inspiration Round Up</title>
		<link>http://gosdot.com/unity/2008/04/09/inspiration-round-up/</link>
		<comments>http://gosdot.com/unity/2008/04/09/inspiration-round-up/#comments</comments>
		<pubDate>Wed, 09 Apr 2008 19:34:00 +0000</pubDate>
		<dc:creator>jon</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://gosdot.com/unity/2008/04/09/inspiration-round-up/</guid>
		<description><![CDATA[Here&#8217;s a list of a few sites that have inspired me this week: 

1. Carsonified.comDesigners or Event Planners?  Who knows but everything they touch looks great.

2. Causeaffect.aigasf.orgActivism plus design, who can ask for anything more?

3. Photoshoplady.comWomen tutorial too.
 
4. Carbonmade.comWell designed, great prices, looks fantastic.

5. PSDtuts.comAnother great looking tutorial site.
]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a list of a few sites that have inspired me this week: </p>
<p><img src="http://farm3.static.flickr.com/2045/2402552184_13605f7a26_m.jpg"></p>
<p>1. <a href="http://carsonified.com/" title="carsonified">Carsonified.com</a><br />Designers or Event Planners?  Who knows but everything they touch looks great.</p>
<p><img src="http://farm4.static.flickr.com/3193/2401721929_7c11810120_m.jpg"></p>
<p>2. <a href="http://causeaffect.aigasf.org/blog">Causeaffect.aigasf.org</a><br />Activism plus design, who can ask for anything more?</p>
<p><img src="http://farm3.static.flickr.com/2136/2402552444_3f54423c50_m.jpg"></p>
<p>3. <a href="http://photoshoplady.com">Photoshoplady.com</a><br />Women tutorial too.</p>
<p><img src="http://farm3.static.flickr.com/2064/2402552396_dc416a3105_m.jpg"> </p>
<p>4. <a href="http://carbonmade.com/">Carbonmade.com</a><br />Well designed, great prices, looks fantastic.</p>
<p><img src="http://farm4.static.flickr.com/3180/2401722003_480029be44_m.jpg"></p>
<p>5. <a href="http://psdtuts.com/">PSDtuts.com</a><br />Another great looking tutorial site.</p>
]]></content:encoded>
			<wfw:commentRss>http://gosdot.com/unity/2008/04/09/inspiration-round-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
