<?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>Jesus Presleys Life Spam &#187; web</title>
	<atom:link href="http://jesuspresley.net/category/web/feed/" rel="self" type="application/rss+xml" />
	<link>http://jesuspresley.net</link>
	<description>Music, the web and some eye candy. News on viral media, open source gadgets and artsy fartsy visuals</description>
	<lastBuildDate>Mon, 28 Feb 2011 12:57:21 +0000</lastBuildDate>
	<language>de</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Example usage of Twitter API with source code</title>
		<link>http://jesuspresley.net/example-usage-of-twitter-api-with-source-code/</link>
		<comments>http://jesuspresley.net/example-usage-of-twitter-api-with-source-code/#comments</comments>
		<pubDate>Sat, 28 Feb 2009 17:32:50 +0000</pubDate>
		<dc:creator>Jesus Presley</dc:creator>
				<category><![CDATA[opensource]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.jesuspresley.net/blog/?p=472</guid>
		<description><![CDATA[I have now, finally, succeeded to get into working with the twitter API - one of the most popular around. I am impressed by the possibilities and will try more. This is a little script that I startes following an introduction printed in German PHP Magazin.The layout needs some finetuning, but it works really well. [...]]]></description>
			<content:encoded><![CDATA[I have now, finally, succeeded to get into working with the <em>twitter API</em> - one of the most popular around.
I am impressed by the possibilities and will try more. This is a little script that I startes following an introduction printed in German <em><a href="http://it-republik.de/php/php-magazin-ausgaben/JavaScript-mit-jQuery-000285.html">PHP Magazin</a></em>.<br/>The layout needs some finetuning, but it works really well. I will keep you updated when I modify it.
<br/>This post might be interesting for you...<br/><br/>
<ul>
	<li>if you are an beginner or intermediate php developer looking for a base where to start coding your own twitter display.</li>
	<li>if you are already experienced in copy &#038; pasting php code into your wordpress blog, for example, expanding the functionality of your sidebar or your page template</li>
</ul><br/>
The Twitter API provides JSON technology and can be accessed by the cURL command. The PHP version you therefore need is 5.2 and above.<br/>
I you like to work with this code, copy and paste it into a page on your blog or other php enabled website.<br/><strong>Caution: </strong>You need to have the <a href="http://wordpress.org/extend/plugins/exec-php/">Exec-PHP</a> plugin installed in order for the code to be executed. The additional CSS definitions might scramble the display of your website layout, so consider to modify it if needed.<br/>
Does anyone know a workaround for this?<br/>To get the plain php code, click on "view plain" above the code display.
<br/><br/>
<ul>
	<li><a href="http://www.jesuspresley.net/blog/twt/">This is how it looks</a></li>
</ul><br/>
Notice: Twitter only allows 100 updates per hour, so the timeline display might be empty during heavy traffic.<br/>
Now have fun with the code:
<br/><br/>
<pre name="code" class="php">
&lt;?php
// functions
function gradientHexBGcolor($k=6){
return sprintf("%02X%02X%02X", 29+$k*18, 9+$k*20,9+$k*20);
}
function gradientHexFGcolor($k=6){
return sprintf("%02X%02X%02X", 260-$k*5, 260-$k*5,260-$k*5);
}

// Init Data
$fill = '';
$thisPage = $_SERVER['REQUEST_URI'];

//Enter your Twitter data here:
$twitName = "MyTwitterUsername";
$twitPass = "MyTwitterPassword";
$twitUserDataURL = "http://twitter.com/users/show/MyTwitterUsername.json";
$twitGetURL = "http://twitter.com/statuses/friends_timeline.json";

// Check if a hashtag was given?

if (!$_POST['hashtag']) {
		$fill = 'Enter hashtag here...';
		}
		else {
		$tag = $_POST['hashtag'];
		$twitGetURL = "http://search.twitter.com/search.json?q=%23".$tag;		
		}

// cURL 1: get Userdata:
// Init cURL
$curl = curl_init();
// set Userdata URL
curl_setopt($curl,CURLOPT_URL,$twitUserDataURL);
// prepare for return values
curl_setopt($curl,CURLOPT_RETURNTRANSFER,1);
// set authentification
curl_setopt($curl,CURLOPT_USERPWD,"$twitName:$twitPass");
// get + decode return values
$returnUser = json_decode(curl_exec($curl));
// close cURL
curl_close($curl);

// cURL 2: get timeline or tag search data:
// Init cURL
$curl = curl_init();
// set URL
curl_setopt($curl,CURLOPT_URL,$twitGetURL);
// prepare for return values
curl_setopt($curl,CURLOPT_RETURNTRANSFER,1);
// set authentification
curl_setopt($curl,CURLOPT_USERPWD,"$twitName:$twitPass");
// get + decode return values
$return = json_decode(curl_exec($curl));
// close cURL:
curl_close($curl);		

// define &#038; output css style definitions:
echo '&lt;style type="text/css"> 
 					div, .twitapi a, p, span, table, td, input, textarea, b, blockquote, th, form {font-family:Tahoma,Trebuchet MS,Arial,sans-serif;font-size:8pt;border:0;margin:0;padding:0;line-height:140%;}				
					div.twitapi {width:540px;background:#CDCDCD;padding:6px 0;}	
					.twitapi p, .twitapi br {display:none;}	
					.twitapi hr {border:0;border-top:1px dotted #FFF;}		 	
					.twitapi table {#position:relative;border:0;border-collapse:collapse;width:100%;}	
					.twitapi table td {width:50%;border:0;padding:0;overflow:hidden;}
 					pre {color:#000;text-decoration:none;border:0;margin:0;padding:0;} 		
					.twitapi a, .twitapi img,.twitapi span,.twitapi div {color:#FFF;text-decoration:none;border:0;margin:0;padding:0;} 
					div.outer {margin:6px 3%;padding:0;width:94%;}					
					div.wrap {#position:relative;display:table;height:48px;text-align:left;margin:6px 3%;padding:0;width:94%;}
					div.text {#position:absolute;#top:50%;display:table-cell;vertical-align: middle;padding:0;}	
					.twForm {color:#FFF;padding:0;}									
					.twForm span {display:block;height:24px;margin:0;padding:0;overflow:hidden;}	
 					.twForm input, button, textarea, select {width:100%;height:100%;border:0;padding:5px;color:#FFF;overflow:hidden;}
 					.twForm .button {text-align:right;}	
 					.twForm .button:hover {color:#'.gradientHexBGcolor(7).';}	 					
 					.twForm textarea {font-weight:bold;}					 				 				 													
					div.inner {#position:relative;#top:-50%;overflow:auto;margin:0 10px;}		
					a.img {display:inline;float:left;width:48px;height:48px;overflow:hidden;}
					a.img img {width:48px;height:48px;border:0;}
					
  		&lt;/style>';


// output twitter container &#038; headline &#038; buttons
echo '&lt;div class="twitapi">
		&lt;div class="wrap" style="background-color:#'.gradientHexBGcolor().';">
		&lt;table>&lt;tr>&lt;td>
			&lt;a class="img" href="'.$returnUser->profile_image_url.'">&lt;img src ="'. $returnUser->profile_image_url.'">&lt;/a>
				
				&lt;form class="twForm"  action="" method="POST">&lt;input name="line" value="" type="hidden">		 
					&lt;span>&lt;textarea readonly style="background-color:#'.gradientHexBGcolor(6).';">'.$twitName.'\'s timeline&lt;/textarea>&lt;/span>	
					&lt;span>														
					&lt;input class="button" style="background-color:#'.gradientHexBGcolor(2).';" value="Refresh now!" type="submit">
					&lt;/span>				
				&lt;/form>	
				&lt;/td>	
				&lt;td>					
				&lt;form class="twForm" action="'.$thisPage.'" method="POST">	
					&lt;span>	
					&lt;input class="text" style="background-color:#'.gradientHexBGcolor(8).';" name="hashtag" value="'.$tag.$fill.'" type="text">
					&lt;/span>
					&lt;span>								
					&lt;input class="button" style="background-color:#'.gradientHexBGcolor(4).';"value="Search now!" name="submit" type="submit">
					&lt;/span>				
				&lt;/form>	
				&lt;/td>					
				&lt;/tr>&lt;/table>								
		&lt;/div>
		&lt;hr>';
	

// output tweets
// output friends' timeline if no hashtag given, else tweets with hashtag
if (!$tag) {
			foreach($return as $key=>$tweet) {
			if ($key&lt;=10) {		
					$text = $tweet->text;
					// Add links to URLS
					$text = ereg_replace("[[:alpha:]]+://[^&lt;>[:space:]]+[[:alnum:]/]","&lt;a href=\"\\0\" rel=\"nofollow\">\\0&lt;/a>", $tweet->text);
					// Add links to Twitterprofiles with @	
					$text = preg_replace("#(^|[\n ])@([^ \"\t\n\r&lt;]*)#ise", "'\\1&lt;a href=\"http://www.twitter.com/\\2\" >@\\2&lt;/a>'", $text); 
					// Add links to hashtags #	
					$text = preg_replace("#(^|[\n ])\#([^ \"\t\n\r&lt;]*)#ise", "'\\1&lt;a href=\"http://hashtags.org/search?query=\\2\" >#\\2&lt;/a>'", $text); 	 		 
					echo '&lt;div class="wrap" style="background-color:#'.gradientHexBGcolor($key).';">
					&lt;a class="img" href="http://twitter.com/'. $tweet->user->screen_name.'">&lt;img src ="'. $tweet->user->profile_image_url.'">&lt;/a>		
					&lt;div class="text">	
						&lt;div class="inner" color="#'.gradientHexFGcolor($key).'">					
					&lt;a href="http://twitter.com/'. $tweet->user->screen_name.'">'. $tweet->user->screen_name.'&lt;/a>: 
					'.$text.' >>'. $tweet->source.'&lt;/div>&lt;/div>&lt;/div>';
					}
			}
		} 		
		else {
			foreach($return->results as $key=>$tweet) {	
			if ($key&lt;=10) {				
						$text = $tweet->text;
						// Add links to URLS
						$text = ereg_replace("[[:alpha:]]+://[^&lt;>[:space:]]+[[:alnum:]/]","&lt;a href=\"\\0\" rel=\"nofollow\">\\0&lt;/a>", $tweet->text);
						// Add links to Twitterprofiles with @	
						$text = preg_replace("#(^|[\n ])@([^ \"\t\n\r&lt;]*)#ise", "'\\1&lt;a href=\"http://www.twitter.com/\\2\" >@\\2&lt;/a>'", $text); 
						// Add links to hashtags #	
						$text = preg_replace("#(^|[\n ])\#([^ \"\t\n\r&lt;]*)#ise", "'\\1&lt;a href=\"http://hashtags.org/search?query=\\2\" >#\\2&lt;/a>'", $text); 	 		 
						echo '&lt;div class="wrap" style = "background-color:#'.gradientHexBGcolor($key).';">
						&lt;a class="img" href="http://twitter.com/'. $tweet->from_user.'">&lt;img src ="'. $tweet->profile_image_url.'">&lt;/a>				

						&lt;div class="text">	
						&lt;div class="inner" color="'.gradientHexFGcolor($key).'">&lt;a href="http://twitter.com/'. $tweet->from_user.'">'. $tweet->from_user.'&lt;/a>: 
						'.$text.' at '. date('M d,Y',strtotime($tweet->created_at)).'&lt;/div>&lt;/div>&lt;/div>';
						}
			}			
		}		


echo '&lt;/div>';
?>
</pre>]]></content:encoded>
			<wfw:commentRss>http://jesuspresley.net/example-usage-of-twitter-api-with-source-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wear ur World &#124; Tangible mobile projector toy</title>
		<link>http://jesuspresley.net/wear-ur-world-tangible-mobile-projector-toy/</link>
		<comments>http://jesuspresley.net/wear-ur-world-tangible-mobile-projector-toy/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 21:27:39 +0000</pubDate>
		<dc:creator>Jesus Presley</dc:creator>
				<category><![CDATA[science]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[gadget]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[mit]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[nerd]]></category>
		<category><![CDATA[projection]]></category>
		<category><![CDATA[toy]]></category>
		<category><![CDATA[usa]]></category>

		<guid isPermaLink="false">http://www.jesuspresley.net/blog/?p=323</guid>
		<description><![CDATA[I found this video at WIRED. MIT students build a prototype of a wearable computer that projects any information on any surface, anywhere you are. Although I am not a friend of omnipresent technology, I must admit these are faszinating applications for future technology. Read more at the Wear ur World project website Wired quotes [...]]]></description>
			<content:encoded><![CDATA[<p>I found this video at <a href="http://www.wired.com/video/wearable-computer-projects-interactive-display/10280440001">WIRED</a>. MIT students build a prototype of a wearable computer that projects any information on any surface, anywhere you are. </p>
<p>Although I am not a friend of omnipresent technology, I must admit these are faszinating applications for future technology. Read more at the <a href="http://ambient.media.mit.edu/projects.php?action=details&#038;id=68">Wear ur World project website</a></p>
<p><embed src="http://c.brightcove.com/services/viewer/federated_f9/1813626064?isVid=1&#038;publisherID=1564549380" bgcolor="#FFFFFF" flashVars="videoId=10280440001&#038;playerID=1813626064&#038;domain=embed&#038;" base="http://admin.brightcove.com" name="flashObj" width="404" height="436" seamlesstabbing="false" type="application/x-shockwave-flash" allowFullScreen="true" swLiveConnect="true" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></embed></p>
<p>Wired quotes <a href="http://web.media.mit.edu/~pattie/">Pattie Maes</a>, the project manager of Wear ur World:<br />
<blockquote>In the tactile world, we use our five senses to take in information about our environment and respond to it [...]. But a lot of the information that helps us understand and respond to the world doesn’t come from these senses. Instead, it comes from computers and the internet. Maes’ goal is to harness computers to feed us information in an organic fashion, like our existing senses.</p></blockquote>
<p>This might be right. But in my opinion, the <em>organic fashion</em> Mae is aiming at will rather leed to excessive Nerdism. Early adopters and grown-up-childs will refer to this technology as gadgets and will use it to impress their surrounding &#8211; just like <del datetime="2009-02-06T21:24:07+00:00">we</del> they do today with iPhones and Netbooks.</p>
<p>That&#8217;s OK with me. I just want the ePaper thingy because that&#8217;s real hot shit.<br />
via <a href="http://www.timoheuer.com/2009/02/06/der-digitale-sechste-sinn/">Timo Heuer</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://jesuspresley.net/wear-ur-world-tangible-mobile-projector-toy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Growth of OpenStreetMap coverage</title>
		<link>http://jesuspresley.net/growth-of-openstreetmap-coverage/</link>
		<comments>http://jesuspresley.net/growth-of-openstreetmap-coverage/#comments</comments>
		<pubDate>Sat, 10 Jan 2009 18:03:39 +0000</pubDate>
		<dc:creator>Jesus Presley</dc:creator>
				<category><![CDATA[community]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[googlemaps]]></category>
		<category><![CDATA[map]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[openstreetmap]]></category>

		<guid isPermaLink="false">http://www.jesuspresley.net/blog/?p=320</guid>
		<description><![CDATA[More then 20000 users have contributed to the growth of the project OpenStreetMaps. Using wiki principles the project collects information about streets, buildings, rivers, landscapes and everything that is usually displayed on maps. The agency Itoworld has created a video that animates the coverage of the gathered data. Really beautiful: So you say: What do [...]]]></description>
			<content:encoded><![CDATA[<p>More then 20000 users have contributed to the growth of the project <a href="http://www.openstreetmap.org/">OpenStreetMaps</a>. Using wiki principles the project collects information about streets, buildings, rivers, landscapes and everything that is usually displayed on maps. The agency <a href="http://www.itoworld.com/index">Itoworld</a> has created a video that animates the coverage of the gathered data. Really beautiful:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="540" height="304" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=2598878&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=ab0055&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="540" height="304" src="http://vimeo.com/moogaloop.swf?clip_id=2598878&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=ab0055&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>So you say: <em>What do I need another free map service for? Is Google Maps not enough?</em>.<br />
Check out this <a href="http://www.bodenseepeter.de/2008/08/24/10-argumente-fur-die-openstretmap/">comparison by Bodenseepeter</a> [in German, illustrated]. He analyzed the extend of the two map services usinng ten examples worldwide. For example Cape Town:</p>
<table>
<tr>
<td  width="270px">Left in Google Maps</td
<td width="270px">Right in OpenStreetMaps</td>
</tr>
<tr>
<td colspan="2"><a href="http://www.bodenseepeter.de/2008/08/24/10-argumente-fur-die-openstretmap/"><br />
<img src="http://www.bodenseepeter.de/wp-content/uploads/kapstadt.jpg" alt="null" width="540" /></a>
</td>
</tr>
</table>
<p>Wikipedia:</p>
<blockquote><p>OpenStreetMap (OSM) is a collaborative project to create a free editable map of the world. The maps are created using data from portable GPS devices, aerial photography and other free sources. Both rendered images and the vector dataset are available for download under a Creative Commons Attribution-ShareAlike 2.0 licence.</p></blockquote>
<p>via <a href="http://t3n.yeebase.com/aktuell/news/newspost/video-zeigt-das-enorme-wachstum-der-freien-weltkarte-openstreetmap/2365/">T3N magazine</a> Germany</p>
]]></content:encoded>
			<wfw:commentRss>http://jesuspresley.net/growth-of-openstreetmap-coverage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Britney &amp; Baracks Twitter accounts hacked</title>
		<link>http://jesuspresley.net/britney-baracks-twitter-accounts-hacked/</link>
		<comments>http://jesuspresley.net/britney-baracks-twitter-accounts-hacked/#comments</comments>
		<pubDate>Wed, 07 Jan 2009 10:54:40 +0000</pubDate>
		<dc:creator>Jesus Presley</dc:creator>
				<category><![CDATA[tech]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[hacker]]></category>
		<category><![CDATA[obama]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[spears]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.jesuspresley.net/blog/?p=319</guid>
		<description><![CDATA[So this is what communication mania is making out of us and web2.0 creatives: Complete idiots. Somehow we -consumers and deciders- are totally horny of being part of the bigbuzz communities we simply forgot about security. So this happened: A hacker gained access to several Twitter accounts by brut force &#8211; among them Barack Obamas [...]]]></description>
			<content:encoded><![CDATA[<p>So this is what communication mania is making out of us and web2.0 creatives:
<div style = "margin-left:24px;"><strong>Complete idiots</strong>.</div>
<p> Somehow we -consumers and deciders- are totally horny of being part of the bigbuzz communities we simply forgot about security.</p>
<p>So this happened:<br />
A hacker gained access to several Twitter accounts by brut force  &#8211; among them Barack Obamas and Britney Spears&#8217;. Twitter was already known for having security isuues do to unencrypted password transmission. Well, here&#8217;s a video that explains what he did:</p>
<p><object width="540" height="451"><param name="movie" value="http://www.youtube.com/v/IKNbggNJMVI&#038;hl=de&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/IKNbggNJMVI&#038;hl=de&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="540" height="451"></embed></object></p>
<blockquote><p>Official Twitter feeds belonging to Barack Obama&#8217;s campaign, Fox News and Britney Spears were hijacked to send out fake messages on Monday, two days after a password-stealing phishing attack targeted the microblogging service.</p>
<p>&#8220;A number of high-profile Twitter accounts were compromised this morning, and fake/spam updates were sent on their behalf,&#8221; the company acknowledged on its website Monday. &#8220;We have identified the cause and blocked it. We are working to restore compromised accounts.&#8221;</p></blockquote>
<p><a href="http://blog.wired.com/27bstroke6/2009/01/twits-get-phish.html"><br />
<img width = "540px" src="http://blog.wired.com/photos/uncategorized/2009/01/05/barack_obama_fake_twitter.jpg" alt="Picture from wired.com"></a></p>
<p>Read on at <a href="http://blog.wired.com/27bstroke6/2009/01/twits-get-phish.html">wired.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jesuspresley.net/britney-baracks-twitter-accounts-hacked/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>History of the internet &#8211; Another video</title>
		<link>http://jesuspresley.net/history-of-the-internet-another-video/</link>
		<comments>http://jesuspresley.net/history-of-the-internet-another-video/#comments</comments>
		<pubDate>Sun, 04 Jan 2009 21:42:18 +0000</pubDate>
		<dc:creator>Jesus Presley</dc:creator>
				<category><![CDATA[design]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[Add new tag]]></category>
		<category><![CDATA[graphic]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[icons]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.jesuspresley.net/blog/?p=318</guid>
		<description><![CDATA[Warning: This video is nerdy and technical. But you will learn something if you make it to minute 6:47. You will understand the most important relations in the evolution of web technologies &#8211; from the first remote connection 1957 to the world-changing TCP/IP protocol. It&#8217;s a diploma by Melih Bilgil. History of the internet is [...]]]></description>
			<content:encoded><![CDATA[<p>Warning: This video is nerdy and technical.<br />
But you will learn something if you make it to minute 6:47. You will understand the most important relations in the evolution of web technologies &#8211; from the first remote connection 1957 to the world-changing TCP/IP protocol. </p>
<p><object width="540" height="304"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=2696386&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=bd005e&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=2696386&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=bd005e&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="540" height="304"></embed></object><br/><br />
It&#8217;s a diploma by <a href="http://www.lonja.de/motion/mo_history_internet.html">Melih Bilgil</a>. </p>
<blockquote><p><em>History of the internet</em> is an animated documentary explaining the inventions from time-sharing to file-sharing, from arpanet to internet.<br />
The history is told with help of the PICOL icons, which are also a part of my diploma. The icons are soon available for free on picol.org</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://jesuspresley.net/history-of-the-internet-another-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wable Table might spill your TV dinner.</title>
		<link>http://jesuspresley.net/wable-table-might-spill-your-tv-dinner/</link>
		<comments>http://jesuspresley.net/wable-table-might-spill-your-tv-dinner/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 23:27:19 +0000</pubDate>
		<dc:creator>Jesus Presley</dc:creator>
				<category><![CDATA[art]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[physical]]></category>
		<category><![CDATA[statistics]]></category>
		<category><![CDATA[table]]></category>
		<category><![CDATA[visualization]]></category>
		<category><![CDATA[wable]]></category>

		<guid isPermaLink="false">http://www.jesuspresley.net/blog/?p=311</guid>
		<description><![CDATA[Information Aesthetics has already written about that thing in February, me clumsy lamard has discovered it just now. Me like that wable table, but me will not buy it. Afraid of my fastfood and longdrinks being spilled on my bearskin imitation. The personal feeds from webapplications like Plazes, Flickr, and Last.fm tell much about the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://infosthetics.com/archives/2008/02/physical_bar_graph_table_visualization.html">Information Aesthetics</a> has already written about that thing in February, me clumsy lamard has discovered it just now. Me like that <a href="http://www.physicalinteractionlab.com/projects/wable">wable table</a>, but me will not buy it. Afraid of my fastfood and longdrinks being spilled on my bearskin imitation.</p>
<p><object width="541" height="451"><param name="movie" value="http://www.youtube.com/v/e6G5YlICVRg&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/e6G5YlICVRg&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="541" height="451"></embed></object></p>
<blockquote><p>The personal feeds from webapplications like Plazes, Flickr, and Last.fm tell much about the activity of an individual on the internet. In this project we aim to explore how you can visualize the changes of your web identity over time and create a physical link between your virtual and real identity. The interface consists of both a physical table and a web application. This direct feedback from your web identity is customizable and can be connected to any RSS feed.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://jesuspresley.net/wable-table-might-spill-your-tv-dinner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sweetcron &#8211; Blogging 21st century style</title>
		<link>http://jesuspresley.net/sweetcron-blogging-21st-century-style/</link>
		<comments>http://jesuspresley.net/sweetcron-blogging-21st-century-style/#comments</comments>
		<pubDate>Mon, 25 Aug 2008 21:24:53 +0000</pubDate>
		<dc:creator>Jesus Presley</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[feeds]]></category>
		<category><![CDATA[friendfeed]]></category>
		<category><![CDATA[lifestream]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[sweetcron]]></category>
		<category><![CDATA[tumbl. flickr]]></category>

		<guid isPermaLink="false">http://www.jesuspresley.net/blog/?p=300</guid>
		<description><![CDATA[Sweetcron is a service that brings you the features of friendfeed and tumblr. Apart from the fact that it&#8217;s build for being hosted at your own web server. Kind of a wordpress for feeds. Check the developers site yongfook.com for a working demo blog. Update: Sweetcron Beta is out for evaluating: Sweetcron program files Seetcron [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.sweetcron.com/">Sweetcron</a> is a service that brings you the features of <a href="http://friendfeed.com/">friendfeed </a>and <a href="http://www.tumblr.com/">tumblr</a>. Apart from the fact that it&#8217;s build for being hosted at your own web server. Kind of a wordpress for feeds. Check the developers site <a href="http://www.yongfook.com">yongfook.com</a> for a working demo blog.</p>
<p>Update: Sweetcron Beta is out for evaluating:</p>
<ul>
<li><a href="http://code.google.com/p/sweetcron/downloads/list">Sweetcron program files</a></li>
<li><a href="http://code.google.com/p/sweetcron/w/list">Seetcron documenatation</a></li>
</ul>
<p><a href='http://www.yongfook.com'><img src="http://www.jesuspresley.net/blog/wp-content/uploads/2008/08/screenshot015250808.png" alt="" title="Sweetcron is free and open source lifestream software" class="alignnone size-full wp-image-302" /></a></p>
<p><object width="540" height="451"><param name="movie" value="http://www.youtube.com/v/VqFd6EDQimU&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/VqFd6EDQimU&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="540" height="451"></embed></object></p>
<p>It&#8217;s closed beta right now, but the developer, Yongfook, promises to launch it soon. It is going to be 100% open source and offers some more features:</p>
<ul>
<li>Automated Imports: Uploaded a photo to flickr? Bookmarked a new site? In a few minutes it will show up on your blog, thanks to the power of RSS feeds</li>
<li>Easily Customisable: Edit simple templates to change your Sweetcron look.</li>
<li>Self Hosted: You can keep alll the data safely on your own server and run Sweetcron on your own domain.</li>
<li>Fully extensible: Write your own php classes and slot them right in!</li>
</ul>
<p>Check the <a href="http://lifestreamblog.com/interview-with-yongfook-on-sweetcron-automated-lifestream-blog-software/">Interview with Yongfook</a> on Lifestreamblog.com</p>
<p>via <a href="http://t3n.yeebase.com/aktuell/news/newspost/sweetcron-beta-der-open-source-lifestream-plattform-veroeffentlicht/1893/">t3n</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jesuspresley.net/sweetcron-blogging-21st-century-style/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Two Soundcloud Tracks by TJ Kong</title>
		<link>http://jesuspresley.net/two-soundcloud-tracks-by-tj-kong/</link>
		<comments>http://jesuspresley.net/two-soundcloud-tracks-by-tj-kong/#comments</comments>
		<pubDate>Mon, 28 Jul 2008 22:48:07 +0000</pubDate>
		<dc:creator>Jesus Presley</dc:creator>
				<category><![CDATA[music]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[dj]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[share]]></category>
		<category><![CDATA[sound]]></category>
		<category><![CDATA[soundcloud]]></category>
		<category><![CDATA[track]]></category>

		<guid isPermaLink="false">http://www.jesuspresley.net/blog/?p=298</guid>
		<description><![CDATA[Que privilegio: I am on soundcloud.com now! This platform is a great way to share your music with the world. Not onlyfor downloading the files: In soundcloud, any member can comment directly to his favorite passages of a track. There are more common community functions inside. Drop me a line if you like to join: [...]]]></description>
			<content:encoded><![CDATA[<p>Que privilegio: I am on <a href="http://soundcloud.com/jesuspresley">soundcloud.com</a> now! This platform is a great way to share your music with the world. Not onlyfor downloading the files: In soundcloud, any member can comment directly to his favorite passages of a track. There are more common community functions inside.<br />
Drop me a line if you like to join: <em>I have two invites left</em>.</p>
<p>Check out this mouthwatering Remix by <a href="http://www.myspace.com/tjkong">TJ Kong</a>:<br />
Ben Mono &#8211; Jesus Was A B-boy [TJ Kong &#038; Nuno Dos Santos Remix]:</p>
<div style="font-size: 11px; color: #999; line-height: 0.7em; font-family: 'Lucida Grande', Helvetica, Arial, sans-serif;">  <object height="81" width="100%"><param name="movie" value="http://player.soundcloud.com/player.swf?track=ben-mono-jesus-was-a-b-boy-tj-kong-nuno-dos-santos-remix"></param><param name="wmode" value="transparent"></param><param name="allowscriptaccess" value="always"></param>  <embed allowscriptaccess="always" height="81" src="http://player.soundcloud.com/player.swf?track=ben-mono-jesus-was-a-b-boy-tj-kong-nuno-dos-santos-remix" type="application/x-shockwave-flash" width="100%" wmode="transparent"></embed></object>  </div>
<p>Sounds great? Here&#8217;s a TJ Kong Promo DJ set:</p>
<div style="font-size: 11px; color: #999; line-height: 0.7em; font-family: 'Lucida Grande', Helvetica, Arial, sans-serif;">  <object height="81" width="100%"><param name="movie" value="http://player.soundcloud.com/player.swf?track=tj-kong-promo-mix-may-2008"></param><param name="wmode" value="transparent"></param><param name="allowscriptaccess" value="always"></param>  <embed allowscriptaccess="always" height="81" src="http://player.soundcloud.com/player.swf?track=tj-kong-promo-mix-may-2008" type="application/x-shockwave-flash" width="100%" wmode="transparent"></embed></object>  </div>
<p><br/><br />
Read this statement of the Soundcloud scientists, Alexander Ljung &#038; Eric Wahlforss:</p>
<blockquote><p>
As you might expect, over the years we&#8217;ve grown tired of getting emails with YouSentIt links or FTP log-ins just to be able to check out our friends latest soon-to-be released tracks. Not to mention how annoying it is to try and email a reply with some comprehendible feedback. Music is just kind of tricky to deal with over email. So, we thought we&#8217;d change that. SoundCloud is our way of doing it.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://jesuspresley.net/two-soundcloud-tracks-by-tj-kong/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

