<?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/"
	xmlns:series="http://unfoldingneurons.com/"
	>

<channel>
	<title>H1DD3N.R350URC3 &#187; Rant</title>
	<atom:link href="http://blog.hexagonstar.com/tag/rant/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.hexagonstar.com</link>
	<description>&#34;Chaotic Neutral&#34;</description>
	<lastBuildDate>Wed, 03 Mar 2010 04:56:04 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<image>
    <title>H1DD3N.R350URC3</title>
    <url>http://blog.hexagonstar.com/feed-logo.png</url>
    <link>http://blog.hexagonstar.com</link>
    <width>144</width>
    <height>36</height>
    <description>H1DD3N.R350URC3 - http://blog.hexagonstar.com</description>
    </image>		<item>
		<title>Apple&#8217;s Developer Membership Order System is broken!</title>
		<link>http://blog.hexagonstar.com/apples-developer-membership-order-system-is-broken/</link>
		<comments>http://blog.hexagonstar.com/apples-developer-membership-order-system-is-broken/#comments</comments>
		<pubDate>Sat, 03 Jan 2009 15:31:03 +0000</pubDate>
		<dc:creator>sascha</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Rant]]></category>

		<guid isPermaLink="false">http://blog.hexagonstar.com/?p=659</guid>
		<description><![CDATA[Apple, you really know how to piss off developers! First you want me to pay 99$ just to be able to actually test my iPhone apps on the device then your Shop Order Form does not allow me to set it to English if I&#8217;m not living in the US/UK and to top it all ]]></description>
			<content:encoded><![CDATA[<p>Apple, you really know how to piss off developers! First you want me to pay 99$ just to be able to actually test my iPhone apps on the device then your Shop Order Form does not allow me to set it to English if I&#8217;m not living in the US/UK and to top it all your Order system is broken and thanks to that I&#8217;m now stuck at a &#8220;Thank you for your enrollment!&#8221; page without ever having enrolled into anything nor having bought the membership. Worse, you don&#8217;t allow me to re-apply the product to the shopping basket so that I might actually be able to buy it!</p>
<p>That&#8217;s right, I cannot buy the dev membership now because Apple&#8217;s site is obviously broken and thinks I&#8217;ve already bought the membership. An advice: DON&#8217;T leave the address fill-out page or empty your shopping cart! You will not have a chance later to come back and reach the page that puts the product into your cart.</p>
<p>But enough rant for today! I think I go and write some ActionScript &#8230; which is much more fun &#8230; and it&#8217;s FREE!</p>
<img src="http://blog.hexagonstar.com/?ak_action=api_record_view&id=659&type=feed" alt="" /><br /><small>© 2009 <a href="http://blog.hexagonstar.com">H1DD3N.R350URC3</a>. | <a href="http://blog.hexagonstar.com/apples-developer-membership-order-system-is-broken/">Permalink</a> | <a href="http://blog.hexagonstar.com/apples-developer-membership-order-system-is-broken/#comments">2 comments</a> | Tags: <a href="http://blog.hexagonstar.com/tag/iphone/" rel="tag">iPhone</a>, <a href="http://blog.hexagonstar.com/tag/rant/" rel="tag">Rant</a> | Add to <a href="http://del.icio.us/post?url=http://blog.hexagonstar.com/apples-developer-membership-order-system-is-broken/&title=Apple&#8217;s Developer Membership Order System is broken!">del.icio.us</a></small>]]></content:encoded>
			<wfw:commentRss>http://blog.hexagonstar.com/apples-developer-membership-order-system-is-broken/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Confusion about &#8216;this&#8217;</title>
		<link>http://blog.hexagonstar.com/the-confusion-about-this/</link>
		<comments>http://blog.hexagonstar.com/the-confusion-about-this/#comments</comments>
		<pubDate>Fri, 05 Dec 2008 05:01:39 +0000</pubDate>
		<dc:creator>sascha</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[OOP]]></category>
		<category><![CDATA[Rant]]></category>

		<guid isPermaLink="false">http://blog.hexagonstar.com/?p=654</guid>
		<description><![CDATA[I often browse through code libraries written by others and can&#8217;t deny noticing that so many developers are making exaggerated use of the &#8216;this&#8217; keyword in their code. Today I came across CASAlib an otherwise very neat and certainly helpful library and after roaming through some of the code base it turns out that in ]]></description>
			<content:encoded><![CDATA[<p>I often browse through code libraries written by others and can&#8217;t deny noticing that so many developers are making exaggerated use of the &#8216;this&#8217; keyword in their code. Today I came across <a href="http://casalib.org/" target="_blank">CASAlib</a> an otherwise very neat and certainly helpful library and after roaming through some of the code base it turns out that in most classes they&#8217;ve put &#8216;this&#8217; in front of every single class property.</p>
<p>It seems that many newcomers to ActionScript still don&#8217;t understand the use of &#8216;this&#8217; and that it&#8217;s only really necessary in rare cases, for example if a method parameter has the same name like it&#8217;s relative class property or in a few scope-related situations. It&#8217;s also good to have &#8216;this&#8217; at hand if a dynamic property of a class needs to be accessed (this["foo"]) but other than that please do all a favor and throw out those unnecessary &#8216;this&#8217;! Ban it, lock it in your basement and don&#8217;t let it out unless there&#8217;s really a need for it!</p>
<img src="http://blog.hexagonstar.com/?ak_action=api_record_view&id=654&type=feed" alt="" /><br /><small>© 2008 <a href="http://blog.hexagonstar.com">H1DD3N.R350URC3</a>. | <a href="http://blog.hexagonstar.com/the-confusion-about-this/">Permalink</a> | <a href="http://blog.hexagonstar.com/the-confusion-about-this/#comments">23 comments</a> | Tags: <a href="http://blog.hexagonstar.com/tag/actionscript/" rel="tag">ActionScript</a>, <a href="http://blog.hexagonstar.com/tag/coding/" rel="tag">Coding</a>, <a href="http://blog.hexagonstar.com/tag/oop/" rel="tag">OOP</a>, <a href="http://blog.hexagonstar.com/tag/rant/" rel="tag">Rant</a> | Add to <a href="http://del.icio.us/post?url=http://blog.hexagonstar.com/the-confusion-about-this/&title=The Confusion about &#8216;this&#8217;">del.icio.us</a></small>]]></content:encoded>
			<wfw:commentRss>http://blog.hexagonstar.com/the-confusion-about-this/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>10 Days &#8230;</title>
		<link>http://blog.hexagonstar.com/10days/</link>
		<comments>http://blog.hexagonstar.com/10days/#comments</comments>
		<pubDate>Sun, 26 Oct 2008 04:40:53 +0000</pubDate>
		<dc:creator>sascha</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Hilarities]]></category>
		<category><![CDATA[Link]]></category>
		<category><![CDATA[Rant]]></category>

		<guid isPermaLink="false">http://blog.hexagonstar.com/?p=651</guid>
		<description><![CDATA[&#8230; until the president election! Do the world a favor and vote for the right guys. And by that I mean not for THEM! People with at least a tad of intelligence now that Barack dances better anyway.   
© 2008 H1DD3N.R350URC3. &#124; Permalink &#124; No comments yet &#124; Tags: Hilarities, Link, Rant &#124; Add ]]></description>
			<content:encoded><![CDATA[<p>&#8230; until the president election! Do the world a favor and vote for the right guys. And by that I mean not for <a href="http://www.palinaspresident.us/" target="_blank">THEM</a>! People with at least a tad of intelligence now that Barack <a href="http://www.minimovie.com/film-128460-McCain-Obama%20Dance-Off" target="_blank">dances</a> better anyway.  <img src='http://blog.hexagonstar.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<img src="http://blog.hexagonstar.com/?ak_action=api_record_view&id=651&type=feed" alt="" /><br /><small>© 2008 <a href="http://blog.hexagonstar.com">H1DD3N.R350URC3</a>. | <a href="http://blog.hexagonstar.com/10days/">Permalink</a> | <a href="http://blog.hexagonstar.com/10days/#comments">No comments yet</a> | Tags: <a href="http://blog.hexagonstar.com/tag/hilarities/" rel="tag">Hilarities</a>, <a href="http://blog.hexagonstar.com/tag/link/" rel="tag">Link</a>, <a href="http://blog.hexagonstar.com/tag/rant/" rel="tag">Rant</a> | Add to <a href="http://del.icio.us/post?url=http://blog.hexagonstar.com/10days/&title=10 Days &#8230;">del.icio.us</a></small>]]></content:encoded>
			<wfw:commentRss>http://blog.hexagonstar.com/10days/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Aw Snap! This site is not meant for you!</title>
		<link>http://blog.hexagonstar.com/aw-snap/</link>
		<comments>http://blog.hexagonstar.com/aw-snap/#comments</comments>
		<pubDate>Sat, 06 Sep 2008 05:22:12 +0000</pubDate>
		<dc:creator>sascha</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Link]]></category>
		<category><![CDATA[Rant]]></category>

		<guid isPermaLink="false">http://blog.hexagonstar.com/?p=637</guid>
		<description><![CDATA[Chrome, the new snazzy browser from Google is currently in everyone&#8217;s mouth and most people who had a look at it seem to be impressed so I decided to give it a go, after all it can&#8217;t be so bad, right?
Chrome installs right onto your system from the website and then takes over (or if ]]></description>
			<content:encoded><![CDATA[<p>Chrome, the new snazzy browser from Google is currently in everyone&#8217;s mouth and most people who had a look at it seem to be impressed so I decided to give it a go, after all it can&#8217;t be so bad, right?</p>
<p>Chrome installs right onto your system from the website and then takes over (or if you are cynical: steals) all the bookmarks, history, passwords etc. from Firefox (to make your life easier). It then opens with a slick and slender window that lacks all the tackiness of a plugin-convoluted Firefox. When opening a new tab it shows a neat history list with thumbnails of your most recent visited websites. Chrome starts up as fast as a finger snap! Maybe even faster! Can it get any better?</p>
<p>>> <a href="http://blog.hexagonstar.com/aw-snap/">Continue reading "Aw Snap! This site is not meant for you!"</a></p>
<br /><small>© 2008 <a href="http://blog.hexagonstar.com">H1DD3N.R350URC3</a>. | <a href="http://blog.hexagonstar.com/aw-snap/">Permalink</a> | <a href="http://blog.hexagonstar.com/aw-snap/#comments">9 comments</a> | Tags: <a href="http://blog.hexagonstar.com/tag/link/" rel="tag">Link</a>, <a href="http://blog.hexagonstar.com/tag/rant/" rel="tag">Rant</a> | Add to <a href="http://del.icio.us/post?url=http://blog.hexagonstar.com/aw-snap/&title=Aw Snap! This site is not meant for you!">del.icio.us</a></small>]]></content:encoded>
			<wfw:commentRss>http://blog.hexagonstar.com/aw-snap/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Container bug in Flex3 beta2</title>
		<link>http://blog.hexagonstar.com/container-bug-in-flex3-beta2/</link>
		<comments>http://blog.hexagonstar.com/container-bug-in-flex3-beta2/#comments</comments>
		<pubDate>Fri, 19 Oct 2007 06:32:30 +0000</pubDate>
		<dc:creator>sascha</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Rant]]></category>

		<guid isPermaLink="false">http://blog.hexagonstar.com/nasty-bug-in-flex3-beta2/</guid>
		<description><![CDATA[Makes me wonder why nobody else has yet written anything about this bug ... when using any container component like for example a Panel or TitleWindow with a different borderStyle than the default]]></description>
			<content:encoded><![CDATA[<p>Update: This bug has long been fixed by Adobe. Please ignore this post, Flex 3 is wonderful!</p>
<p>Makes me wonder why nobody else has yet written anything about this bug &#8230; when using any container component like for example a Panel or TitleWindow with a different borderStyle than the default, e.g. <em>borderStyle: solid</em> all your contents of that container reach into the the chrome of the Panel/Window/etc. pretty much messing up your layout. How could this escape the eyes of Adobe&#8217;s Flex devs? Here&#8217;s the <a href="http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=72&amp;catid=651&amp;threadid=1303903&amp;highlight_key=y&amp;keyword1=borderstyle" target="_blank">thread</a> at Adobe&#8217;s Flex forum. This is bad because it sort of prevents me from writing any Flex/AIR applications until this issue has been fixed, I&#8217;m using a custom theme for all my projects that use a solid borderStyle (similar to the one used in the <a href="http://examples.adobe.com/flex2/consulting/styleexplorer/Flex2StyleExplorer.html" target="_blank">Flex Style Explorer</a>). The marvels of open beta software pushed by corporations for mere publicity purpose!</p>
<img src="http://blog.hexagonstar.com/?ak_action=api_record_view&id=161&type=feed" alt="" /><br /><small>© 2007 <a href="http://blog.hexagonstar.com">H1DD3N.R350URC3</a>. | <a href="http://blog.hexagonstar.com/container-bug-in-flex3-beta2/">Permalink</a> | <a href="http://blog.hexagonstar.com/container-bug-in-flex3-beta2/#comments">8 comments</a> | Tags: <a href="http://blog.hexagonstar.com/tag/flex/" rel="tag">Flex</a>, <a href="http://blog.hexagonstar.com/tag/rant/" rel="tag">Rant</a> | Add to <a href="http://del.icio.us/post?url=http://blog.hexagonstar.com/container-bug-in-flex3-beta2/&title=Container bug in Flex3 beta2">del.icio.us</a></small>]]></content:encoded>
			<wfw:commentRss>http://blog.hexagonstar.com/container-bug-in-flex3-beta2/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Need more reason to NOT use Vista?</title>
		<link>http://blog.hexagonstar.com/need-more-reason-to-not-use-vista/</link>
		<comments>http://blog.hexagonstar.com/need-more-reason-to-not-use-vista/#comments</comments>
		<pubDate>Thu, 25 Jan 2007 03:41:07 +0000</pubDate>
		<dc:creator>sascha</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Rant]]></category>
		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://blog.hexagonstar.com/need-more-reason-to-not-use-vista/</guid>
		<description><![CDATA[&#8230; If you use a Logitech mouse you already got it! The company now officially made it clear on their support forums that there will be no support for Mouseware for Windows Vista. Instead they point their customers to use the generic mouse driver that ships with Vista. But have they told you that the ]]></description>
			<content:encoded><![CDATA[<p>&#8230; If you use a Logitech mouse you already got it! The company now officially made it clear on <a href="http://forums.logitech.com/logitech/board/message?board.id=hardware_mice&amp;message.id=3155" target="_blank">their support forums </a>that there will be no support for Mouseware for Windows Vista. Instead they point their customers to use the generic mouse driver that ships with Vista. But have they told you that the mouse movement is much slower with that one, even on highest speed? Or that the middle mouse button will not work? I like my MX310 and don&#8217;t plan to buy a new one just for Vista because this mouse fits like a glove. The same goes for my soundcard. M-Audio hasn&#8217;t made any official statement about a Vista driver so far.<br />
One might thank Microsoft for this mess because of their <a href="http://hiddenresource.corewatch.net/archives/75" target="_blank">ridicolous protection mechanisms</a> but then again companies like Wacom prove that developing Vista drivers for existing hardware isn&#8217;t impossible. Seems like Logitech jumped onto the &#8216;all new and shiny&#8217; banwagon by presenting their newest Vista supporting products instead of writing some drivers for their existing customers! Oh right! I forgot to tell them that some customers like me are left handers and don&#8217;t want to use an ergonimic right hander mouse!<br />
No Vista for me until this driver mess has seriously improved, and definitely no Logitech products for me for a while, thanks!</p>
<img src="http://blog.hexagonstar.com/?ak_action=api_record_view&id=125&type=feed" alt="" /><br /><small>© 2007 <a href="http://blog.hexagonstar.com">H1DD3N.R350URC3</a>. | <a href="http://blog.hexagonstar.com/need-more-reason-to-not-use-vista/">Permalink</a> | <a href="http://blog.hexagonstar.com/need-more-reason-to-not-use-vista/#comments">4 comments</a> | Tags: <a href="http://blog.hexagonstar.com/tag/rant/" rel="tag">Rant</a>, <a href="http://blog.hexagonstar.com/tag/vista/" rel="tag">Vista</a> | Add to <a href="http://del.icio.us/post?url=http://blog.hexagonstar.com/need-more-reason-to-not-use-vista/&title=Need more reason to NOT use Vista?">del.icio.us</a></small>]]></content:encoded>
			<wfw:commentRss>http://blog.hexagonstar.com/need-more-reason-to-not-use-vista/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Windows Vista the Protection Monster &#8230; and at which costs!</title>
		<link>http://blog.hexagonstar.com/windows-vista-the-protection-monster-and-at-which-costs/</link>
		<comments>http://blog.hexagonstar.com/windows-vista-the-protection-monster-and-at-which-costs/#comments</comments>
		<pubDate>Tue, 26 Dec 2006 03:30:36 +0000</pubDate>
		<dc:creator>sascha</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Rant]]></category>
		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://blog.hexagonstar.com/windows-vista-the-protection-monster-and-at-which-costs/</guid>
		<description><![CDATA[Still think Windows Vista is a great OS? It might look great but whats going on under it&#8217;s shiny surface? Peter Gutmann has written an extensive article about Vista&#8217;s underlying content protection systems. If you plan to use Vista, read it! And then think again!
Quote: &#8220;The only reason I can imagine why Microsoft would put ]]></description>
			<content:encoded><![CDATA[<p>Still think Windows Vista is a great OS? It might look great but whats going on under it&#8217;s shiny surface? <a href="http://www.cs.auckland.ac.nz/~pgut001/" target="_blank">Peter Gutmann</a> has written an <a href="http://www.cs.auckland.ac.nz/~pgut001/pubs/vista_cost.txt" target="_blank">extensive article about Vista&#8217;s underlying content protection systems.</a> If you plan to use Vista, read it! And then think again!</p>
<p>Quote: <em>&#8220;The only reason I can imagine why Microsoft would put its programmers, device vendors, third-party developers, and ultimately its customers, through this much pain is because once this copy protection is entrenched, Microsoft will completely own the distribution channel.&#8221;</em></p>
<img src="http://blog.hexagonstar.com/?ak_action=api_record_view&id=122&type=feed" alt="" /><br /><small>© 2006 <a href="http://blog.hexagonstar.com">H1DD3N.R350URC3</a>. | <a href="http://blog.hexagonstar.com/windows-vista-the-protection-monster-and-at-which-costs/">Permalink</a> | <a href="http://blog.hexagonstar.com/windows-vista-the-protection-monster-and-at-which-costs/#comments">5 comments</a> | Tags: <a href="http://blog.hexagonstar.com/tag/rant/" rel="tag">Rant</a>, <a href="http://blog.hexagonstar.com/tag/vista/" rel="tag">Vista</a> | Add to <a href="http://del.icio.us/post?url=http://blog.hexagonstar.com/windows-vista-the-protection-monster-and-at-which-costs/&title=Windows Vista the Protection Monster &#8230; and at which costs!">del.icio.us</a></small>]]></content:encoded>
			<wfw:commentRss>http://blog.hexagonstar.com/windows-vista-the-protection-monster-and-at-which-costs/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Using Vista is like walking on thin ice &#8230; Vista&#8217;s EULA product activation worries</title>
		<link>http://blog.hexagonstar.com/using-vista-is-like-walking-on-thin-ice-vistas-eula-product-activation-worries/</link>
		<comments>http://blog.hexagonstar.com/using-vista-is-like-walking-on-thin-ice-vistas-eula-product-activation-worries/#comments</comments>
		<pubDate>Wed, 22 Nov 2006 17:51:41 +0000</pubDate>
		<dc:creator>sascha</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Rant]]></category>
		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://blog.hexagonstar.com/using-vista-is-like-walking-on-thin-ice-vistas-eula-product-activation-worries/</guid>
		<description><![CDATA[&#8220;&#8230;Once you activate the product, then you would assume that you are golden to go ahead and use the product, right? Wrong.
You see, even after you activate the software it will, according to
the EULA, &#8220;from time to time validate the software, update or require
download of the validation feature of the software&#8221;. It will once again
&#8220;send ]]></description>
			<content:encoded><![CDATA[<p>&#8220;&#8230;Once you activate the product, then you would assume that you are golden to go ahead and use the product, right? Wrong.</p>
<p>You see, even after you activate the software it will, according to<br />
the EULA, &#8220;from time to time validate the software, update or require<br />
download of the validation feature of the software&#8221;. It will once again<br />
&#8220;send information about the&#8230;version and product key of the software,<br />
and the internet protocol address of the device&#8221;.</p>
<p>Here&#8217;s where it gets hairy again. If for some reason the software<br />
&#8220;phones home&#8221; back to Redmond, Washington, and gets or gives the wrong<br />
answer &#8211; irrespective of the reason &#8211; it will automatically disable<br />
itself. That&#8217;s like saying definitively, &#8220;I&#8217;m sorry Dave, I&#8217;m afraid I<br />
can&#8217;t do that&#8230;&#8221;</p>
<p>&#8230; So basically add some regular activation annoyances to your almost weekly Windows security updates to keep you from working on the PC!<br />
Read more here &#8230; <a href="http://www.theregister.co.uk/2006/11/22/vista_eula_worries/">Vista&#8217;s EULA product activation worries | The Register</a></p>
<p>Need more reasons to switch to Mac or Linux?!</p>
<img src="http://blog.hexagonstar.com/?ak_action=api_record_view&id=116&type=feed" alt="" /><br /><small>© 2006 <a href="http://blog.hexagonstar.com">H1DD3N.R350URC3</a>. | <a href="http://blog.hexagonstar.com/using-vista-is-like-walking-on-thin-ice-vistas-eula-product-activation-worries/">Permalink</a> | <a href="http://blog.hexagonstar.com/using-vista-is-like-walking-on-thin-ice-vistas-eula-product-activation-worries/#comments">2 comments</a> | Tags: <a href="http://blog.hexagonstar.com/tag/rant/" rel="tag">Rant</a>, <a href="http://blog.hexagonstar.com/tag/vista/" rel="tag">Vista</a> | Add to <a href="http://del.icio.us/post?url=http://blog.hexagonstar.com/using-vista-is-like-walking-on-thin-ice-vistas-eula-product-activation-worries/&title=Using Vista is like walking on thin ice &#8230; Vista&#8217;s EULA product activation worries">del.icio.us</a></small>]]></content:encoded>
			<wfw:commentRss>http://blog.hexagonstar.com/using-vista-is-like-walking-on-thin-ice-vistas-eula-product-activation-worries/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Vista and the missing compatible Software</title>
		<link>http://blog.hexagonstar.com/vista-and-the-missing-compatible-software/</link>
		<comments>http://blog.hexagonstar.com/vista-and-the-missing-compatible-software/#comments</comments>
		<pubDate>Fri, 17 Nov 2006 06:06:16 +0000</pubDate>
		<dc:creator>sascha</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Rant]]></category>
		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://blog.hexagonstar.com/vista-and-the-missing-compatible-software/</guid>
		<description><![CDATA[

I&#8217;ve made a partition with Windows Vista RC a while back to check out how well my used Software will run. First off I like Vista, I really do! It&#8217;s polished Aero Look is reason enough for me to switch from the vomit-colored Windows XP. But I soon realized that something important is currently missing ]]></description>
			<content:encoded><![CDATA[<p><div class="adcontent"><script type="text/javascript"><!--
google_ad_client = "pub-3003542222995339";
google_ad_slot = "00000000Ad";
google_ad_width = 250;
google_ad_height = 250;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</div>I&#8217;ve made a partition with Windows Vista RC a while back to check out how well my used Software will run. First off I like Vista, I really do! It&#8217;s polished Aero Look is reason enough for me to switch from the vomit-colored Windows XP. But I soon realized that something important is currently missing &#8230; compatible Software! That means compatible drivers in first line. Ok, it&#8217;s still about two months away until Vista will be in the shelves for anyone (with license volume release at the end of this month) but Vista has been how long on public beta? One year? Two years?<br />
Checking the Logitech website for a driver for my beloved MX310 mouse &#8230; nowhere to be found! Not even a working 32bit driver! Not even a word mentioned about a future driver release! How about sound? I check M-Audio&#8217;s website to get a driver for my Delta Audiophile; Their 32bit WinXP driver doesn&#8217;t install while their 64bit Beta driver installs but Vista gives me an error afterwards that it wont accept unsigned drivers! There&#8217;s a ton of other Peripherals that I&#8217;m using for which I&#8217;m sure no compatible drivers are available so I don&#8217;t even bother searching for them now.</p>
<p>How about applications? Flash runs fine, though it&#8217;s tool windows look a bit odd with thin borders/corners around it. Photoshop runs smooth as if it never did anything else while ImageReady&#8217;s tool palettes seem to be not style conform anymore. Illustrator then goes completely bonkers with Molasses style window-dragging and tool palettes that sometimes have round corners and sometimes not. At least Eclipse runs fine! Well, on 32bit that is! On 64bit it will spit out an error about an incompatible DLL.</p>
<p>That said my Vista Experience went a bit limiting so far! Dynamic Font Management is a foreign word for Microsoft too! It seems nothing has changed about how Fonts are handled! They are either installed or not. I guess I hang a little longer with <a href="http://hiddenresource.corewatch.net/archives/32">MainType</a>! Let&#8217;s hope other companies aren&#8217;t sleeping and have drivers ready until release, even if they don&#8217;t loose one word about it. It would suck otherwise!</p>
<img src="http://blog.hexagonstar.com/?ak_action=api_record_view&id=110&type=feed" alt="" /><br /><small>© 2006 <a href="http://blog.hexagonstar.com">H1DD3N.R350URC3</a>. | <a href="http://blog.hexagonstar.com/vista-and-the-missing-compatible-software/">Permalink</a> | <a href="http://blog.hexagonstar.com/vista-and-the-missing-compatible-software/#comments">38 comments</a> | Tags: <a href="http://blog.hexagonstar.com/tag/rant/" rel="tag">Rant</a>, <a href="http://blog.hexagonstar.com/tag/vista/" rel="tag">Vista</a> | Add to <a href="http://del.icio.us/post?url=http://blog.hexagonstar.com/vista-and-the-missing-compatible-software/&title=Vista and the missing compatible Software">del.icio.us</a></small>]]></content:encoded>
			<wfw:commentRss>http://blog.hexagonstar.com/vista-and-the-missing-compatible-software/feed/</wfw:commentRss>
		<slash:comments>38</slash:comments>
		</item>
		<item>
		<title>ePaper &#8211; When is it feasable?</title>
		<link>http://blog.hexagonstar.com/epaper-when-is-it-feasable/</link>
		<comments>http://blog.hexagonstar.com/epaper-when-is-it-feasable/#comments</comments>
		<pubDate>Tue, 26 Sep 2006 10:51:50 +0000</pubDate>
		<dc:creator>sascha</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Rant]]></category>

		<guid isPermaLink="false">http://blog.hexagonstar.com/epaper-when-is-it-feasable/</guid>
		<description><![CDATA[I&#8217;m really missing one great invention that has yet to come for global consumption &#8230; books made of electronic paper! I&#8217;m not talking about these LCD display-like books or these foil-like papers that are already used for some advertising purposes. What I&#8217;d love to see available is a pocket notebook made of finely woven ePaper ]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m really missing one great invention that has yet to come for global consumption &#8230; books made of electronic paper! I&#8217;m not talking about these LCD display-like books or these <a href="http://en.wikipedia.org/wiki/Epaper" target="_blank">foil-like papers</a> that are already used for some advertising purposes. What I&#8217;d love to see available is a pocket notebook made of finely woven ePaper that I can plug via USB to my PC and load documents on it, which then are displayed on the paper and can be read just like a normal paper book. I prefer reading long texts on paper rather than on the screen!<br />
I often find texts on the web, tutorials or other interesting information that I could read while on one of these long Tokyo subway rides or simply while hanging out in the living room but it would be too elaborate to print them out and fold them into my <a href="http://www.1101.com/techo/" target="_blank">Hobonichi Techo</a>.<br />
One could argue that I could need a notebook PC but that would be too much, all I&#8217;m asking for is a book for reading. Hey it would be cool if it also uses Solar cells so it doesn&#8217;t need to be recharged and while we are at it the pages could glow so it can be read in the dark too &#8230; oh well, one can dream, but this definitely doesn&#8217;t sound like a far away utopia!</p>
<img src="http://blog.hexagonstar.com/?ak_action=api_record_view&id=106&type=feed" alt="" /><br /><small>© 2006 <a href="http://blog.hexagonstar.com">H1DD3N.R350URC3</a>. | <a href="http://blog.hexagonstar.com/epaper-when-is-it-feasable/">Permalink</a> | <a href="http://blog.hexagonstar.com/epaper-when-is-it-feasable/#comments">No comments yet</a> | Tags: <a href="http://blog.hexagonstar.com/tag/rant/" rel="tag">Rant</a> | Add to <a href="http://del.icio.us/post?url=http://blog.hexagonstar.com/epaper-when-is-it-feasable/&title=ePaper &#8211; When is it feasable?">del.icio.us</a></small>]]></content:encoded>
			<wfw:commentRss>http://blog.hexagonstar.com/epaper-when-is-it-feasable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fixing other people&#8217;s code</title>
		<link>http://blog.hexagonstar.com/fixing-other-peoples-as1-code/</link>
		<comments>http://blog.hexagonstar.com/fixing-other-peoples-as1-code/#comments</comments>
		<pubDate>Fri, 22 Sep 2006 04:44:14 +0000</pubDate>
		<dc:creator>sascha</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[Rant]]></category>

		<guid isPermaLink="false">http://blog.hexagonstar.com/fixing-other-peoples-as1-code/</guid>
		<description><![CDATA[I just had to refuse the second job offer this year where I would have to fix somebody else&#8217;s written ActionScript 1 spagetti code! I don&#8217;t know what is the reason for agencies trying to give such jobs but it&#8217;s save to say that the troubles of digging through the messy and often timeline-spread code ]]></description>
			<content:encoded><![CDATA[<p>I just had to refuse the second job offer this year where I would have to fix somebody else&#8217;s written ActionScript 1 spagetti code! I don&#8217;t know what is the reason for agencies trying to give such jobs but it&#8217;s save to say that the troubles of digging through the messy and often timeline-spread code is enough to justify an estimate that sounds too high for the client.</p>
<p>The question comes up why they don&#8217;t just ask the person who originally wrote the code! That could have many reasons but if a client comes back to me and asks me to fix something in a years old project then I&#8217;ll do it for a measly payment simply because I know my source code. It&#8217;s a total different thing to fix somebody&#8217;s code, especially if it&#8217;s pre-AS2.<br />
I always feel uncomfortable rejecting jobs, even such ones so I would be interested how others handle this situation! Do you usually reject such jobs or do you accept them?</p>
<img src="http://blog.hexagonstar.com/?ak_action=api_record_view&id=105&type=feed" alt="" /><br /><small>© 2006 <a href="http://blog.hexagonstar.com">H1DD3N.R350URC3</a>. | <a href="http://blog.hexagonstar.com/fixing-other-peoples-as1-code/">Permalink</a> | <a href="http://blog.hexagonstar.com/fixing-other-peoples-as1-code/#comments">16 comments</a> | Tags: <a href="http://blog.hexagonstar.com/tag/coding/" rel="tag">Coding</a>, <a href="http://blog.hexagonstar.com/tag/rant/" rel="tag">Rant</a> | Add to <a href="http://del.icio.us/post?url=http://blog.hexagonstar.com/fixing-other-peoples-as1-code/&title=Fixing other people&#8217;s code">del.icio.us</a></small>]]></content:encoded>
			<wfw:commentRss>http://blog.hexagonstar.com/fixing-other-peoples-as1-code/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>The Crappiest Corporate Site of the Week</title>
		<link>http://blog.hexagonstar.com/the-crappiest-corporate-site-of-the-week/</link>
		<comments>http://blog.hexagonstar.com/the-crappiest-corporate-site-of-the-week/#comments</comments>
		<pubDate>Mon, 24 Jul 2006 12:06:23 +0000</pubDate>
		<dc:creator>sascha</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Rant]]></category>

		<guid isPermaLink="false">http://blog.hexagonstar.com/the-crappiest-corporate-site-of-the-week/</guid>
		<description><![CDATA[The &#8220;Crappiest Corporate Site of the Week&#8221; Award goes to Dell Japan for not being able to have a Shop website that runs on current Browsers! When I try to get  onto their XPS 700 Customization page I get a simple  Access Denied, telling me that I need to use  Internet Explorer ]]></description>
			<content:encoded><![CDATA[<p>The <strong>&#8220;Crappiest Corporate Site of the Week&#8221; Award</strong> goes to <strong>Dell Japan</strong> for not being able to have a Shop website that runs on current Browsers! When I try to get  onto their <a href="http://jpstore.dell.com/store/newstore/includes/Errorb.asp?url=/store/newstore/dhs/dhs_catalog_394.asp" target="_blank">XPS 700 Customization page</a> I get a simple  <strong>Access Denied</strong>, telling me that I need to use  Internet Explorer 4.0 or Netscape  4.6! The site doesn&#8217;t work on FireFox and not on MSIE 6 and neither on Netscape 8! Congratulations Dell! You suck  immensely!<br />
I&#8217;m actually wondering how do you sell your PCs in Japan!</p>
<img src="http://blog.hexagonstar.com/?ak_action=api_record_view&id=92&type=feed" alt="" /><br /><small>© 2006 <a href="http://blog.hexagonstar.com">H1DD3N.R350URC3</a>. | <a href="http://blog.hexagonstar.com/the-crappiest-corporate-site-of-the-week/">Permalink</a> | <a href="http://blog.hexagonstar.com/the-crappiest-corporate-site-of-the-week/#comments">2 comments</a> | Tags: <a href="http://blog.hexagonstar.com/tag/hardware/" rel="tag">Hardware</a>, <a href="http://blog.hexagonstar.com/tag/rant/" rel="tag">Rant</a> | Add to <a href="http://del.icio.us/post?url=http://blog.hexagonstar.com/the-crappiest-corporate-site-of-the-week/&title=The Crappiest Corporate Site of the Week">del.icio.us</a></small>]]></content:encoded>
			<wfw:commentRss>http://blog.hexagonstar.com/the-crappiest-corporate-site-of-the-week/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>So when do you think native graphics acceleration is due for Flash?</title>
		<link>http://blog.hexagonstar.com/so-when-do-you-think-native-graphics-acceleration-is-due-for-flash/</link>
		<comments>http://blog.hexagonstar.com/so-when-do-you-think-native-graphics-acceleration-is-due-for-flash/#comments</comments>
		<pubDate>Wed, 05 Jul 2006 07:15:16 +0000</pubDate>
		<dc:creator>sascha</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Rant]]></category>

		<guid isPermaLink="false">http://blog.hexagonstar.com/so-when-do-you-think-native-graphics-acceleration-is-due-for-flash/</guid>
		<description><![CDATA[ActionScript 3.0 and Flash Player 9.0 brought a big leap of speed and all kinds of changes and optimizations with it. But these mainly happen under the hood only. While Flash 8 came up with the bitmap level manipulation stuff, Flash 9 doesn&#8217;t come with any groundbreaking new features that are visible to the surface ]]></description>
			<content:encoded><![CDATA[<p>ActionScript 3.0 and Flash Player 9.0 brought a big leap of speed and all kinds of changes and optimizations with it. But these mainly happen under the hood only. While Flash 8 came up with the bitmap level manipulation stuff, Flash 9 doesn&#8217;t come with any groundbreaking new features that are visible to the surface (except for the speed improvement).</p>
<p><div class="adcontent"><script type="text/javascript"><!--
google_ad_client = "pub-3003542222995339";
google_ad_slot = "00000000Ad";
google_ad_width = 200;
google_ad_height = 200;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</div>Yesterday on a meeting I was asked if I could use a rotatable 3D mesh in Flash for the clients presentation project and I could only tell them that the lack of native 3D support is the big weakness of Flash. Eventually we will end up with a single frame animation to fake the rotation. However this was one example that there must be quite a demand for 3D support in Flash, not only for experimentation but even more for commercial use. In fact native 3D is already overdue since a while but I accept that implementing such a thing is not an easy challange.</p>
<p>So native graphics acceleration for Flash has to come one way or the other, not only because everybody wants it but also for Flash to stay competitive (think about WinFX). There is still Director one could argue. But somehow I get the feeling that Director will either continue it&#8217;s shadow existence or it will disappear sooner or later. 3D for Flash has to come, there is no way or excuse around it! Maybe the next version? Too early! Maybe Flash 10? Who knows! We might however see some sweet <a href="http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?catid=581&amp;threadid=1086327&amp;enterthread=y" target="_blank">audio improvements</a> in a near future!</p>
<img src="http://blog.hexagonstar.com/?ak_action=api_record_view&id=85&type=feed" alt="" /><br /><small>© 2006 <a href="http://blog.hexagonstar.com">H1DD3N.R350URC3</a>. | <a href="http://blog.hexagonstar.com/so-when-do-you-think-native-graphics-acceleration-is-due-for-flash/">Permalink</a> | <a href="http://blog.hexagonstar.com/so-when-do-you-think-native-graphics-acceleration-is-due-for-flash/#comments">9 comments</a> | Tags: <a href="http://blog.hexagonstar.com/tag/actionscript/" rel="tag">ActionScript</a>, <a href="http://blog.hexagonstar.com/tag/rant/" rel="tag">Rant</a> | Add to <a href="http://del.icio.us/post?url=http://blog.hexagonstar.com/so-when-do-you-think-native-graphics-acceleration-is-due-for-flash/&title=So when do you think native graphics acceleration is due for Flash?">del.icio.us</a></small>]]></content:encoded>
			<wfw:commentRss>http://blog.hexagonstar.com/so-when-do-you-think-native-graphics-acceleration-is-due-for-flash/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>MXNA doesn&#8217;t like me!</title>
		<link>http://blog.hexagonstar.com/mxna_doesnt_like_me/</link>
		<comments>http://blog.hexagonstar.com/mxna_doesnt_like_me/#comments</comments>
		<pubDate>Sat, 13 May 2006 15:14:19 +0000</pubDate>
		<dc:creator>sascha</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Rant]]></category>
		<category><![CDATA[RSS]]></category>

		<guid isPermaLink="false">http://blog.hexagonstar.com/mxna-doesnt-like-me/</guid>
		<description><![CDATA[I&#8217;m chased by bad luck since a while when it comes to getting this blog onto the Macromedia XML News Aggregator! First when I used Nucleus CMS it stopped fetching my feeds automatically after a while. Nobody, not me and not the admin at MXNA had any clue what was the cause. Now I&#8217;ve switched ]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m chased by bad luck since a while when it comes to getting this blog onto the <a href="http://weblogs.macromedia.com/mxna/" target="_blank">Macromedia XML News Aggregator</a>! First when I used Nucleus CMS it stopped fetching my feeds automatically after a while. Nobody, not me and not the admin at MXNA had any clue what was the cause. Now I&#8217;ve switched to Word Press in the hope that this would change but it now seems that I&#8217;m stuck forever with this problem. The feed URL for Word Press is very different and there seems to be no working redirection plugin for Word Press 2+. Also I cannot re-subscribe at MXNA with the same domain and any mail to the admin so far stood unanswered. Only workaround would be to change to another sub domain but I don&#8217;t want to go that far!</p>
<img src="http://blog.hexagonstar.com/?ak_action=api_record_view&id=78&type=feed" alt="" /><br /><small>© 2006 <a href="http://blog.hexagonstar.com">H1DD3N.R350URC3</a>. | <a href="http://blog.hexagonstar.com/mxna_doesnt_like_me/">Permalink</a> | <a href="http://blog.hexagonstar.com/mxna_doesnt_like_me/#comments">3 comments</a> | Tags: <a href="http://blog.hexagonstar.com/tag/blog/" rel="tag">Blog</a>, <a href="http://blog.hexagonstar.com/tag/rant/" rel="tag">Rant</a>, <a href="http://blog.hexagonstar.com/tag/rss/" rel="tag">RSS</a> | Add to <a href="http://del.icio.us/post?url=http://blog.hexagonstar.com/mxna_doesnt_like_me/&title=MXNA doesn&#8217;t like me!">del.icio.us</a></small>]]></content:encoded>
			<wfw:commentRss>http://blog.hexagonstar.com/mxna_doesnt_like_me/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>The Joys of Public Beta</title>
		<link>http://blog.hexagonstar.com/the_joys_of_public_beta/</link>
		<comments>http://blog.hexagonstar.com/the_joys_of_public_beta/#comments</comments>
		<pubDate>Wed, 10 May 2006 06:38:42 +0000</pubDate>
		<dc:creator>sascha</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Rant]]></category>

		<guid isPermaLink="false">http://blog.hexagonstar.com/the-joys-of-public-beta/</guid>
		<description><![CDATA[Flex 2 public beta3 was just released and already all formerly written Flex2 beta2 apps started to fail working in the newest Flash Player! Seems like Adobe is making critical changes to the framework faster than we can change our pants!
This somehow spoils it for me to write more stuff with Flex until the very ]]></description>
			<content:encoded><![CDATA[<p>Flex 2 public beta3 was just released and already all formerly written Flex2 beta2 apps started to fail working in the newest Flash Player! Seems like Adobe is making critical changes to the framework faster than we can change our pants!<br />
This somehow spoils it for me to write more stuff with Flex until the very final release is published because I&#8217;m pretty sure it will fail working in a soon cooming beta4!<br />
Yes, there&#8217;s a big and fat beta glued on it so it&#8217;s clear that changes are ahead and former stuff might fail but it&#8217;s all public and it&#8217;s obvious that Adobe isn&#8217;t only making it a public beta for testing but also for propaganda! My written <strong>SWNameGenerator </strong>doesn&#8217;t work anymore, giving me a nicely red flooded Eclipse editor full of errors!</p>
<img src="http://blog.hexagonstar.com/?ak_action=api_record_view&id=74&type=feed" alt="" /><br /><small>© 2006 <a href="http://blog.hexagonstar.com">H1DD3N.R350URC3</a>. | <a href="http://blog.hexagonstar.com/the_joys_of_public_beta/">Permalink</a> | <a href="http://blog.hexagonstar.com/the_joys_of_public_beta/#comments">1 comment</a> | Tags: <a href="http://blog.hexagonstar.com/tag/flex/" rel="tag">Flex</a>, <a href="http://blog.hexagonstar.com/tag/rant/" rel="tag">Rant</a> | Add to <a href="http://del.icio.us/post?url=http://blog.hexagonstar.com/the_joys_of_public_beta/&title=The Joys of Public Beta">del.icio.us</a></small>]]></content:encoded>
			<wfw:commentRss>http://blog.hexagonstar.com/the_joys_of_public_beta/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
