<?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>RawDev.net</title>
	<atom:link href="http://www.rawdev.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rawdev.net</link>
	<description>Developing Developement Developing Developers</description>
	<lastBuildDate>Sun, 07 Mar 2010 18:12:59 +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>CeBIT 2010, Wordpress 3.0</title>
		<link>http://www.rawdev.net/2010/03/07/cebit-2010-wordpress-3-0/</link>
		<comments>http://www.rawdev.net/2010/03/07/cebit-2010-wordpress-3-0/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 18:12:30 +0000</pubDate>
		<dc:creator>Hekos</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[WordPress 3.0]]></category>

		<guid isPermaLink="false">http://www.rawdev.net/?p=246</guid>
		<description><![CDATA[Yes, CeBIT 2010 is a event to remember with showcases of so many things coming up this year. I talked to a wordpress-deutschland.org representer (sorry didn&#8217;t catch your name) about the upcoming WordPress 3.0 and its multi-site feature.

And I got me one of the limited edition WordPress DE bags along with a nice sticker  , thank you ^^
Maybe [...]]]></description>
			<content:encoded><![CDATA[<p>Yes, CeBIT 2010 is a event to remember with showcases of so many things coming up this year. I talked to a wordpress-deutschland.org representer (sorry didn&#8217;t catch your name) about the upcoming WordPress 3.0 and its <a href="http://dougal.gunters.org/blog/2010/01/25/wordpress-3-0-multisite-terminology">multi-site feature</a>.</p>
<p style="text-align: center;"><a href="http://www.rawdev.net/wp-content/uploads/2010/03/26935_378021589902_736099902_4945844_7095955_n.jpg"><img class="size-medium wp-image-247   aligncenter" title="Wordpress Germany Bag" src="http://www.rawdev.net/wp-content/uploads/2010/03/26935_378021589902_736099902_4945844_7095955_n-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>And I got me one of the limited edition WordPress DE bags along with a nice sticker <img src='http://www.rawdev.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> , thank you ^^</p>
<p>Maybe a full review of the happenings in Hanover later, as 2300km of bus travel do take the life out of a man.</p>
<h6 class="zemanta-related-title">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.slideshare.net/janeforshort/whats-coming-in-wordpress-30">What&#8217;s Coming in WordPress 3.0</a> (slideshare.net)</li>
<li class="zemanta-article-ul-li"><a href="http://www.techstartups.com/2009/11/25/wordpress-3-0-wish-list/">WordPress 3.0 Wish List</a> (techstartups.com)</li>
<li class="zemanta-article-ul-li"><a href="http://gizmodo.com/5486971/cebit-remainders-8-reasons-we-didnt-go/gallery/">CeBIT Remainders: 8 Reasons We Didn&#8217;t Go [Remainders]</a> (gizmodo.com)</li>
</ul>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=de815efc-3aed-4bd8-b164-ac2dee5f301e" alt="" /><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://www.rawdev.net/2010/03/07/cebit-2010-wordpress-3-0/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Wordpress Redirect Registration Page</title>
		<link>http://www.rawdev.net/2010/02/20/wordpress-redirect-registration-page/</link>
		<comments>http://www.rawdev.net/2010/02/20/wordpress-redirect-registration-page/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 21:06:21 +0000</pubDate>
		<dc:creator>Hekos</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.rawdev.net/2010/02/20/wordpress-redirect-registration-page/</guid>
		<description><![CDATA[In one particural case, you don&#8217;t want to disable WP registration but just redirect the page  so some other script takes care of it. That happened to me while working on a WordPress and bbPress website. The solution is quite simple:
add_action(&#8216;login_form_register&#8217;, &#8216;redirectregister&#8217;);
function redirectregister(){wp_redirect(get_option(&#8217;siteurl&#8217;) . &#8216;/bb/register.php&#8217;);}
add this where wordpress will find it, in your functions [...]]]></description>
			<content:encoded><![CDATA[<p>In one particural case, you don&#8217;t want to disable WP registration but just redirect the page  so some other script takes care of it. That happened to me while working on a WordPress and bbPress website. The solution is quite simple:</p>
<p>add_action(&#8216;login_form_register&#8217;, &#8216;redirectregister&#8217;);<br />
function redirectregister(){wp_redirect(get_option(&#8217;siteurl&#8217;) . &#8216;/bb/register.php&#8217;);}</p>
<p>add this where wordpress will find it, in your functions file or just any plugin.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rawdev.net/2010/02/20/wordpress-redirect-registration-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ScreenSave not quite dead.</title>
		<link>http://www.rawdev.net/2009/12/15/screensave-not-quite-dead/</link>
		<comments>http://www.rawdev.net/2009/12/15/screensave-not-quite-dead/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 18:18:51 +0000</pubDate>
		<dc:creator>Hekos</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[ScreenSave]]></category>
		<category><![CDATA[Content Management]]></category>
		<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://www.rawdev.net/?p=238</guid>
		<description><![CDATA[Yes, it has been a while since I updated this plugin, but the questions keep coming in &#8212; I also noticed a post by a French archive site, thanks for doing a review ;D
http://lesh.fr.nf/joomla15_test/index.php?option=com_content&#38;view=article&#38;id=671:screensave-020-economiseur-decran-j15&#38;catid=6:divers&#38;Itemid=12
This plugin is not quite what most sites want ( or would need ) but can be useful for the same thing [...]]]></description>
			<content:encoded><![CDATA[<p>Yes, it has been a while since I updated this plugin, but the questions keep coming in &#8212; I also noticed a post by a French archive site, thanks for doing a review ;D</p>
<p><a href="http://lesh.fr.nf/joomla15_test/index.php?option=com_content&amp;view=article&amp;id=671:screensave-020-economiseur-decran-j15&amp;catid=6:divers&amp;Itemid=12">http://lesh.fr.nf/joomla15_test/index.php?option=com_content&amp;view=article&amp;id=671:screensave-020-economiseur-decran-j15&amp;catid=6:divers&amp;Itemid=12</a></p>
<p>This plugin is not quite what most sites want ( or would need ) but can be useful for the same thing it was made &#8211; public pc&#8217;s with a full-screen browser.</p>
<p>Plugin avaliable here: <a href="http://www.rawdev.net/category/joomla/screensave/">http://www.rawdev.net/category/joomla/screensave/</a></p>
<p>Comments, Ideas ?</p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=0cc371a0-6186-4894-914b-2ef4e2119ac6" alt="" /><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://www.rawdev.net/2009/12/15/screensave-not-quite-dead/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Small update for JoomKey</title>
		<link>http://www.rawdev.net/2009/09/03/small-update-for-joomkey/</link>
		<comments>http://www.rawdev.net/2009/09/03/small-update-for-joomkey/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 19:44:19 +0000</pubDate>
		<dc:creator>Hekos</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[JoomKey]]></category>
		<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://www.rawdev.net/?p=234</guid>
		<description><![CDATA[Just a small update for joomkey, a language file. As I am not using this module actively I don&#8217;t have the time or the will to move it forward more.  But some people are using it.
So todays update is a dutch language file, thanks Chris  
mod_joomkey.nl-NL
And once again for all the others:

This module displays a on screen keyboard that attaches itself [...]]]></description>
			<content:encoded><![CDATA[<p>Just a small update for joomkey, a language file. As I am not using this module actively I don&#8217;t have the time or the will to move it forward more.  But some people are using it.</p>
<p>So todays update is a dutch language file, thanks Chris <img src='http://www.rawdev.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://www.rawdev.net/wp-content/uploads/2009/09/mod_joomkey.nl-NL.js">mod_joomkey.nl-NL</a></p>
<p>And once again for all the others:</p>
<ul>
<li>This module displays a on screen keyboard that attaches itself to all html text fields and input fields.</li>
<li><em>To use it, you have to select one of those fields. </em></li>
<li>You can place this module in any visible position</li>
<li>It will use the local language<em>, you may need to make a file with your locale </em>(even if it is the same as standard English)</li>
<li>As it looks at Joomla&#8217;s locale, it will work with JoomFish or similar..</li>
<li><strong>It wont work inside frames/iframes </strong>(use the firefox extension instead)</li>
<li>You can make it do other stuff with the buttons (as in print whole words as in iphone&#8217;s .com button etc)</li>
</ul>
<p>As most who use this module probably do so with a kiosk in mind, I would recommend the Firefox keyboard extension I built.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rawdev.net/2009/09/03/small-update-for-joomkey/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jolicloud private alpha2b</title>
		<link>http://www.rawdev.net/2009/07/25/jolicloud-private-alpha2b/</link>
		<comments>http://www.rawdev.net/2009/07/25/jolicloud-private-alpha2b/#comments</comments>
		<pubDate>Sat, 25 Jul 2009 14:50:32 +0000</pubDate>
		<dc:creator>Hekos</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Last.fm]]></category>
		<category><![CDATA[Prism]]></category>

		<guid isPermaLink="false">http://www.rawdev.net/?p=228</guid>
		<description><![CDATA[



Image via CrunchBase



Finally got my turn to try out Jolicloud, a &#8220;cool new OS for your netbook&#8220;. I learned about it several weeks ago and it took quite a while for me to get a invite.
First off, I tried the live boot. I selected my native language etc. and while it was  booting, I stepped [...]]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img">
<div>
<dl class="wp-caption alignright">
<dt class="wp-caption-dt"><a href="http://www.crunchbase.com/company/jolicloud"><img title="Image representing Jolicloud as depicted in Cr..." src="http://www.rawdev.net/wp-content/uploads/2009/07/34605v1-max-250x250.jpg" alt="Image representing Jolicloud as depicted in Cr..." /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution">Image via <a href="http://www.crunchbase.com">CrunchBase</a></dd>
</dl>
</div>
</div>
<p><strong>Finally got my turn to try out <a href="http://www.jolicloud.com/">Jolicloud</a>, a &#8220;cool new OS for your <a class="zem_slink" title="Netbook" rel="wikipedia" href="http://en.wikipedia.org/wiki/Netbook">netbook</a>&#8220;. </strong>I learned about it several weeks ago and it took quite a while for me to get a invite.</p>
<p><span id="more-228"></span>First off, I tried the live boot. I selected my native language etc. and while it was  booting, I stepped away for a few. Upon my return I glanced on the screen and much to my surprise, it seemed as if the netbook just loaded my regular system, <a class="zem_slink" title="Ubuntu" rel="homepage" href="http://www.ubuntu.com/">Ubuntu</a> Netbook Remix.</p>
<p>No &#8211; wait. It was the new OS, but with only subtle differences separating the initial state from its parent OS. A quick glance trough the installed applications revealed only &#8220;<a class="zem_slink" title="Facebook" rel="homepage" href="http://facebook.com">facebook</a>&#8221; to be added initially &#8211;  a shortcut to a prism application.</p>
<p>Ok, time to try out the jolicloud applications. When I logged into the application with my user name -  picked when I got the invite, I choose &#8220;MSI WIND 100&#8243; as my notebook, as Medion Akoya e1210 was not on the list but afaik is just a re-brand of a WIND anyway.</p>
<p>The jolicloud application itself, as most of the applications it serves, is built upon <a class="zem_slink" title="Mozilla Prism" rel="wikipedia" href="http://en.wikipedia.org/wiki/Mozilla_Prism">Mozilla Prism</a>. A &#8220;web OS&#8221; <strong>built upon the web itself</strong> &#8211; perfectly integrated in the social media system.<br />
It synchronizes itself into your jolicloud profile &#8211; so couple that with a Dropbox and you have a notebook to carry around without having to think about the consequences of it being ( stolen or in any other way ) unrecoverable beyond losing a piece of hardware. No data or settings would be lost &#8211; or be easy to steal with some encryption.</p>
<p><strong>One click is all it takes to install</strong> any application &#8211; native or web/prism. With my favorites like Google&#8217;s Picasa, <a class="zem_slink" title="Skype" rel="homepage" href="http://www.skype.com">Skype</a>, Dropbox, <a class="zem_slink" title="Last.fm" rel="homepage" href="http://last.fm">Last.fm</a> and Google <a class="zem_slink" title="Google Chrome" rel="wikipedia" href="http://en.wikipedia.org/wiki/Google_Chrome">Chrome</a> already there &#8211; not to mention most of the biggest social media sites and web applications there as prism apps. Also there some Game and Education titles I have yet to see anywhere else. How to install the from the regular ubuntu stream &#8211; or adding more sources &#8211; is a mystery because<strong> no package manager</strong> is present. Besides that, system and application upgrades are fast &#8211; one click &#8211; operations.</p>
<p>Other changes might not be as apparent to the average user, but the kernel itself was &#8211; as I learned from one of the developers in #jolicloud &#8211; optimized for this specific use. Why this was needed and what this brings to the end user is &#8211; to me &#8211; unclear.</p>
<p>All in all, I can see a lot of this changes being up-streamed into <a class="zem_slink" title="Ubuntu Netbook Remix" rel="wikipedia" href="http://en.wikipedia.org/wiki/Ubuntu_Netbook_Remix">Ubuntu Netbook Remix</a>. The applications selection ( my personal favorite in jolicloud ) is something that could do Ubuntu (or Linux in general) a lot of good. Installing applications is easy in the Linux world but the hard part is actually finding a application to install. Did you know there are 5 excellent -<em> insert appication type</em> &#8211; to be installed on your system via the install system, but most actually just stick with the one that is already there and never even think there might be something out there that would suit them better ?</p>
<p>If you want to <a href="http://my.jolicloud.com/register">try it out</a> yourself, you have to register for a invitation.</p>
<h6 class="zemanta-related-title">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.ubergizmo.com/15/archives/2009/06/jolicloud_private_alpha_social_netbook_os_launched.html"> Jolicloud Private Alpha Social Netbook OS Launched </a> (ubergizmo.com)</li>
<li class="zemanta-article-ul-li"><a href="http://www.slumpedoverkeyboarddead.com/2009/07/18/checking-out-the-jolicloud-netbook-os/"> Checking out the Jolicloud Netbook OS </a> (slumpedoverkeyboarddead.com)</li>
<li class="zemanta-article-ul-li"><a href="http://www.engadget.com/2009/06/01/jolicloud-os-alpha-release-struts-its-stuff-on-video/"> Jolicloud OS alpha release struts its stuff&#8230; on video! </a> (engadget.com)</li>
<li class="zemanta-article-ul-li"><a href="http://deals.venturebeat.com/2009/07/08/nice-timing-netbook-os-startup-jolicloud-raises-42m/"> Nice timing: Netbook OS startup Jolicloud raises $4.2M </a> (deals.venturebeat.com)</li>
<li class="zemanta-article-ul-li"><a href="http://vator.tv/news/show/2009-07-08-jolicloud-lands-funding-and-takes-on-google"> Jolicloud lands funding and takes on Google </a> (vator.tv)</li>
<li class="zemanta-article-ul-li"><a href="http://www.killerstartups.com/Web-App-Tools/jolicloud-com-new-os-for-your-net-book"> JoliCloud.com &#8211; New OS For Your Net Book </a> (killerstartups.com)</li>
</ul>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=8f14b8e0-e947-4b0d-bebd-8273cacc7ed7" alt="" /><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://www.rawdev.net/2009/07/25/jolicloud-private-alpha2b/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>About IE8 Marketing</title>
		<link>http://www.rawdev.net/2009/06/19/about-ie8-marketin/</link>
		<comments>http://www.rawdev.net/2009/06/19/about-ie8-marketin/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 17:19:48 +0000</pubDate>
		<dc:creator>Hekos</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.rawdev.net/?p=212</guid>
		<description><![CDATA[Microsoft once again on the trail of mischief, as the old &#8220;get the facts&#8221; got hold of Internet Explorer 8.
http://www.microsoft.com/windows/internet-explorer/get-the-facts/browser-comparison.aspx
If you looked at that and got a head-spin, you are not the only one. First let me note the language the so called &#8220;facts&#8221; are presented in. One would expect more from the &#8220;worlds biggest [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft once again on the trail of mischief, as the old &#8220;get the facts&#8221; got hold of Internet Explorer 8.</p>
<p>http://www.microsoft.com/windows/internet-explorer/get-the-facts/browser-comparison.aspx</p>
<p>If you looked at that and got a head-spin, you are not the only one. First let me note the language the so called &#8220;facts&#8221; are presented in. One would expect more from the &#8220;worlds biggest software company&#8221;.  <a style="text-decoration: none;" href=" http://kilianvalkhof.com/ie8fun/">http://kilianvalkhof.com/ie8fun/</a> makes more sense.</p>
<p><strong>Now lets talk about the lenghts MS is going to promote IE8</strong></p>
<ul>
<li>First off, a connection of  videos <a href="http://www.microsoft.com/windows/internet-explorer/videos.aspx">http://www.microsoft.com/windows/internet-explorer/videos.aspx</a> that surely cost them plenty</li>
</ul>
<ul>
<li>Secondly, more videos promoted by several celebrities: (for free ? i think not)
<p>http://www.microsoft.com/windows/internet-explorer/nethistory/</li>
</ul>
<ul>
<li>Thirdly, they are trying a pure giveaway on a pay per download to charity<br />
<a style="text-decoration: none;" href="http://browserforthebetter.com">http://browserforthebetter.com</a></li>
</ul>
<blockquote><p>$1.15 per download to Feeding America® up to a maximum of $1,000,000</p></blockquote>
<p>They only want to get 860k downloads ?  Firefox 3 got 8mill in 24hours <a href="http://www.spreadfirefox.com/en-US/worldrecord/">http://www.spreadfirefox.com/en-US/worldrecord/</a> and Safary got 11 mill in 3 days <a href="http://www.apple.com/pr/library/2009/06/12safari.html">http://www.apple.com/pr/library/2009/06/12safari.html</a>.</p>
<ul>
<li>Hey, if they are giving away loads of money why not give it to the people, eh ? Or at least the lucky fella who will get the 10 grand promised by Microsoft today:</li>
</ul>
<div id="attachment_221" class="wp-caption aligncenter" style="width: 424px"><a href="http://www.microsoft.com/australia/ie8/competition/default.aspx"><img class="size-full wp-image-221" title="IE8 Competition" src="http://www.rawdev.net/wp-content/uploads/2009/06/Clipboard02.jpg" alt="IE8 Competition" width="414" height="112" /></a><p class="wp-caption-text">http://www.microsoft.com/australia/ie8/competition/default.aspx</p></div>
<blockquote><p>* Hekos expects a banner with &#8221; you just won 10,000$ &#8221;<br />
&lt;Hekos&gt; blinking and all<br />
&lt;Hekos&gt; you can only see it in IE8 cause FX has a working ad/popup blocker<br />
&lt;Hekos&gt; and you cant see it in &lt;ie8 cause it crashes your system<br />
<em>That&#8217;s for making me stay up late to debug IE again, M$.</em></p></blockquote>
<p>Hey MS what do you think about people just not caring about you ? Fact is, if they KNOW about other browsers, they are using them. If they are using them, they know you are full of sh1t. No add is going to help you. If you want people to upgrade, why not force the upgrade on them with a Update like you always do ?</p>
<p><a href="http://www.youtube.com/watch?v=o4MwTvtyrUQ"><!-- Smart Youtube --><span class="youtube"><object type="application/x-shockwave-flash" width="425" height="355" data="http://www.youtube.com/v/o4MwTvtyrUQ&amp;rel=1&amp;color1=d6d6d6&amp;color2=f0f0f0&amp;border=0&amp;fs=1&amp;hl=en&amp;autoplay=0&amp;showinfo=0&amp;iv_load_policy=3&amp;showsearch=0"><param name="movie" value="http://www.youtube.com/v/o4MwTvtyrUQ&amp;rel=1&amp;color1=d6d6d6&amp;color2=f0f0f0&amp;border=0&amp;fs=1&amp;hl=en&amp;autoplay=0&amp;showinfo=0&amp;iv_load_policy=3&amp;showsearch=0" /><param name="allowFullScreen" value="true" /><param name="wmode" value="transparent" /></object></span></a></p>
<p>Related Links:</p>
<p><a href="http://www.geektechnica.com/2009/06/busting-ie8s-mythbusting/">http://www.geektechnica.com/2009/06/busting-ie8s-mythbusting/</a></p>
<p><a href="http://www.webmonkey.com/blog/Taking_Microsoft_to_Task_Over_IE8__Myths_">http://www.webmonkey.com/blog/Taking_Microsoft_to_Task_Over_IE8__Myths_</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rawdev.net/2009/06/19/about-ie8-marketin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On June 16th at 9:00 a.m (CEDT) Opera will reinvent the Web.</title>
		<link>http://www.rawdev.net/2009/06/16/opera-reinventing-the-web/</link>
		<comments>http://www.rawdev.net/2009/06/16/opera-reinventing-the-web/#comments</comments>
		<pubDate>Tue, 16 Jun 2009 06:27:35 +0000</pubDate>
		<dc:creator>Hekos</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.rawdev.net/?p=202</guid>
		<description><![CDATA[
From http://www.opera.com/freedom/ HTML source code comments:
We start our little story with the invention of the modern day computer.
Over the years, the computers grew in numbers, and the next natural step in the evolution was to connect them together. To share things.
But as these little networks grew, some computers gained more power than the rest and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://upload.wikimedia.org/wikipedia/commons/thumb/5/53/Opera_O.png/300px-Opera_O.png"><img class=" alignright" title="Serif " src="http://upload.wikimedia.org/wikipedia/commons/thumb/5/53/Opera_O.png/300px-Opera_O.png" alt="Serif " width="180" height="203" /></a></p>
<p>From http://www.opera.com/freedom/ HTML source code comments:</p>
<blockquote><p>We start our little story with the invention of the modern day computer.<br />
Over the years, the computers grew in numbers, and the next natural step in the evolution was to connect them together. To share things.<br />
But as these little networks grew, some computers gained more power than the rest and called themselves servers.<br />
Today, millions of people are connected together in a great web &#8230;</p></blockquote>
<p>Wonder what they have for us ? Check it out in 30 min <img src='http://www.rawdev.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /><br />
<a title="Opera Freedom" href="http://www.opera.com/freedom/" target="_blank">http://www.opera.com/freedom/</a></p>
<p>Edit:</p>
<h4>Opera Unite: a Web server on the Web browser</h4>
<h4><a href="http://unite.opera.com/">http://unite.opera.com/</a></h4>
<blockquote><p>Take control of what you share online<br />
Opera Unite allows you to easily share your data: photos, music, notes and other files. You can even run chat rooms and host entire Web sites with Opera Unite. It puts the power of a Web server in your browser, giving you greater privacy and flexibility than other online services.</p>
<p>Share with other Web browsers<br />
What if you use Opera at home, and a different Web browser at work? Opera Unite services can be accessed from any modern browser, including mobile browsers! At home, just select what you want to share, and you can view it later using your work Web browser without any problems.</p>
<p>Integrated and extendable<br />
Simply enable Opera Unite when you start Opera 10 beta, and you are ready to go. Find and install services with one click from our <a href="http://unite.opera.com/services/">online catalog</a> or easily create your own by using Web standards like HTML, CSS, JavaScript, SVG and AJAX.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.rawdev.net/2009/06/16/opera-reinventing-the-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3D Realms Dead, Duke Nukem Forever RIP</title>
		<link>http://www.rawdev.net/2009/05/07/rip-duke-nukem-forever/</link>
		<comments>http://www.rawdev.net/2009/05/07/rip-duke-nukem-forever/#comments</comments>
		<pubDate>Thu, 07 May 2009 19:38:53 +0000</pubDate>
		<dc:creator>Hekos</dc:creator>
				<category><![CDATA[Games]]></category>

		<guid isPermaLink="false">http://www.rawdev.net/?p=197</guid>
		<description><![CDATA[



Image via Wikipedia



3D Realms Gone, Took Duke Nukem Forever with them: http://www.shacknews.com/featuredarticle.x?id=1127
Not that i like to repost, but if you are like me, this story would have come as a shock to you.  Now before I go to cry under my sheets I would like to reminisce all the fun I had with the Duke Nukem series [...]]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img">
<div>
<dl class="wp-caption alignright">
<dt class="wp-caption-dt"><a href="http://en.wikipedia.org/wiki/Image:3drealms.png"><img title="3D Realms" src="http://upload.wikimedia.org/wikipedia/en/0/03/3drealms.png" alt="3D Realms" /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution">Image via <a href="http://en.wikipedia.org/wiki/Image:3drealms.png">Wikipedia</a></dd>
</dl>
</div>
</div>
<p><a class="zem_slink" title="3D Realms" rel="wikipedia" href="http://en.wikipedia.org/wiki/3D_Realms">3D Realms</a> Gone, Took Duke Nukem Forever with them: <a href="http://www.shacknews.com/featuredarticle.x?id=1127">http://www.shacknews.com/featuredarticle.x?id=1127</a></p>
<p>Not that i like to repost, but if you are like me, this story would have come as a shock to you.  Now before I go to cry under my sheets I would like to reminisce all the fun I had with the Duke Nukem series all this years.</p>
<p>Yes, DN 3D is the most fun game I knew back in the days. The sidescrooler also gave me some hours of play but its the idea of the game that stuck.  A character that knows no limits and a crew of developers that gave the censors something to do. Finding a game to match up to DN 3D however, is hard. No wonder they took a full 12 years, sadly giving up at the end. I hope this game will be revived. Like i was hoping for it to come out for the past 12 years.</p>
<p>A man can dream.</p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=79d885e7-b990-43a7-949e-affb2e59cc78" alt="" /><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://www.rawdev.net/2009/05/07/rip-duke-nukem-forever/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>To Last.fm from the Exiled</title>
		<link>http://www.rawdev.net/2009/03/26/to-lastfm-from-the-exiled/</link>
		<comments>http://www.rawdev.net/2009/03/26/to-lastfm-from-the-exiled/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 12:30:59 +0000</pubDate>
		<dc:creator>Hekos</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Last.fm]]></category>

		<guid isPermaLink="false">http://www.rawdev.net/?p=191</guid>
		<description><![CDATA[



Image via CrunchBase



In all other countries [not United States, United Kingdom or Germany ], listening to Last.fm Radio will soon require a subscription of €3.00 per month. There will be a 30 track free trial, and we hope this will convince people to subscribe and keep listening to the radio.
src: http://blog.last.fm/2009/03/24/lastfm-radio-announcement
It happened. Another company turned [...]]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img">
<div>
<dl class="wp-caption alignright">
<dt class="wp-caption-dt"><a href="http://www.crunchbase.com/company/last-fm"><img title="Image representing Last.fm as depicted in Crun..." src="http://www.crunchbase.com/assets/images/resized/0000/2848/2848v1-max-450x450.png" alt="Image representing Last.fm as depicted in Crun..." /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution">Image via <a href="http://www.crunchbase.com">CrunchBase</a></dd>
</dl>
</div>
</div>
<blockquote><p>In all other countries [not United States, United Kingdom or Germany ], listening to Last.fm Radio will soon require a <a href="http://www.last.fm/subscribe">subscription</a> of €3.00 per month. There will be a 30 track free trial, and we hope this will convince people to subscribe and keep listening to the radio.</p>
<p>src: http://blog.last.fm/2009/03/24/lastfm-radio-announcement</p></blockquote>
<p>It happened. Another company turned away a massive portion of the world. Well, they are making them pay for NOT being where the advertisers are. More countries might be added to that list down the road but for some countries like my own, that is highly unlikely.</p>
<p>So everyone else gets about 2 hours of radio. Per account. I am not seeing people going trough the trouble of making multiple accounts to be able to listen to more but come on.. how about limiting people to listening to the charts ? Or to songs freely given to Last.fm for promotional purposes ? You cannot tell me that Last.fm pays for each and every song that is played on it. With a audience as big as this, I bet there are people who would pay for their music to be played more frequently and I wouldnt blame Last.fm for excepting that money.</p>
<p>One of the reasons I think that is already the case is the inability of someone to ban a certain artist or tag. http://www.last.fm/forum/21717/_/380227/4 And dont go saying it will ban a artist when you ban enough songs. It is simply imposible to get rid of Bri#### Spea## of the pop radio.</p>
<p>I am a subscriber. I love Last.fm (probably tuning in 90% of the time my workstation is on). There was no real reason for me to subscribe back when I did. I just wanted to give something back. I didn&#8217;t care and I don&#8217;t care for the little things i get extra for subscribing.<br />
And there is where I think the problem is. How about making people want to be subscribed ?</p>
<ul>
<li>Songs on demand</li>
<li>Official Premiers (you say you work directly with artists ?)</li>
<li>Tickets to concerts .. official ware from artits..</li>
</ul>
<p>etc&#8230; there is so much that could be done.</p>
<p>And fix the damn song exceleration/flickers after a long time of usage. (only noticed that on Vista trough.)</p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif" alt="" /><span class="zem-script more-related"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://www.rawdev.net/2009/03/26/to-lastfm-from-the-exiled/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3DCONNEXION SpaceNavigator</title>
		<link>http://www.rawdev.net/2009/03/12/3dconnexion-spacenavigator/</link>
		<comments>http://www.rawdev.net/2009/03/12/3dconnexion-spacenavigator/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 15:02:45 +0000</pubDate>
		<dc:creator>Hekos</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Win32]]></category>

		<guid isPermaLink="false">http://www.rawdev.net/?p=186</guid>
		<description><![CDATA[
A new toy to add to my collection, SpaceNavigator.
Put some extensive testing into it the past day, installed it on Ubuntu 8.10, MacOS and Windows Vista 64bit.
My initial reaction is, wow. It really shows they put a lot of effort into making it work where ever one might need it. Ubuntu needed a bit of [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.rawdev.net/wp-content/uploads/2009/03/sv400006-1.jpg"><img class="size-medium wp-image-187 alignright" title="spacenavigator" src="http://www.rawdev.net/wp-content/uploads/2009/03/sv400006-1-300x225.jpg" alt="spacenavigator" width="300" height="225" /></a></p>
<p>A new toy to add to my collection, <a class="zem_slink" title="3Dconnexion" rel="homepage" href="http://www.3dconnexion.com/">SpaceNavigator</a>.</p>
<p>Put some extensive testing into it the past day, installed it on <a class="zem_slink" title="Ubuntu" rel="homepage" href="http://www.ubuntu.com/">Ubuntu</a> 8.10, MacOS and Windows Vista 64bit.</p>
<p>My initial reaction is, wow. It really shows they put a lot of effort into making it work where ever one might need it. Ubuntu needed a bit of configuration, as 8.10 has this hotplug Xorg driver that gets in the way. Then just a regular install and it works with a updated <a class="zem_slink" title="Blender (magazine)" rel="wikipedia" href="http://en.wikipedia.org/wiki/Blender_%28magazine%29">Blender</a>.</p>
<p>The configuration tools are the same throughout platforms and usability is also identical. Trough the device depends on the applications use of it for OOTB functionality, it also has some individual program configurations.</p>
<p>The SpaceNavigator itself has absolute positioning, although it registers as a relative positioning device (that makes linux use it wrong without drivers). Phisically its a big heavy metal ring with plastic/rubber controol ends. The metal is there to keep it grouned while you use the up/down axis. Rotating it left/right works to about 5 degrees and about double that for all the other axes.</p>
<p>The thing I disslike about it is really something I fealt before with the <a class="zem_slink" title="Graphics tablet" rel="wikipedia" href="http://en.wikipedia.org/wiki/Graphics_tablet">graphics tablet</a> but didnt mention. The bright blue circual light. When I leave my pc standing for some time, monitor turns off and the room turns blue. (not as bad as with the pulsating bamtoo tablet but non the less brings alot of unneeded attention to itself)</p>
<p>The best use I found for it is <a class="zem_slink" title="Google Earth" rel="geolocation" href="http://maps.google.com/maps?ll=49.9363361111,-6.32302222222&amp;spn=0.1,0.1&amp;q=49.9363361111,-6.32302222222%20%28Google%20Earth%29&amp;t=h">Google Earth</a> and Blender. Worth the 60$ ?</p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif" alt="" /><span class="zem-script more-related"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://www.rawdev.net/2009/03/12/3dconnexion-spacenavigator/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
