<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Channel 9 - Discussions by sysrpl</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Niners/sysrpl/Discussions/RSS"></atom:link>
	<image>
		<url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url>
		<title>Channel 9 - Discussions by sysrpl</title>
		<link>http://channel9.msdn.com/Niners/sysrpl/Discussions</link>
	</image>
	<description>Channel 9 keeps you up to date with the latest news and behind the scenes info from Microsoft that developers love to keep up with. From LINQ to SilverLight – Watch videos and hear about all the cool technologies coming and the people behind them.</description>
	<link>http://channel9.msdn.com/Niners/sysrpl/Discussions</link>
	<language>en</language>
	<pubDate>Sun, 26 May 2013 07:41:05 GMT</pubDate>
	<lastBuildDate>Sun, 26 May 2013 07:41:05 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<c9:totalResults>0</c9:totalResults>
	<c9:pageCount>0</c9:pageCount>
	<c9:pageSize>0</c9:pageSize>
	<item>
		<title>Coffeehouse - I published an XNA style game toolkit</title>
		<description><![CDATA[<p>@<a href="/Forums/Coffeehouse/I-published-an-XNA-style-game-toolkit#c4fccf5358bed4792a975a1c801337238">Ion Todirel</a>:</p><p>It targets free pascal only.</p><p>But don't let that stop you, as fp has added a lot of new language features like:</p><ul><li>implcit/explict conversions </li><li>Value types can have methods, operators, and everything a class can have (except virtual methods, interface implementation) </li><li>extension methods (again applies to value types as well as classes) </li><li>c&#43;&#43; style operators (&#43;&#43;,--,&#43;=.*=, ect) </li><li>operator overloading </li><li>inlining code </li><li>generics with constraints </li><li>much improved reflection (they call it rtti) </li><li>managed types (dynamic arrays, interfaces, dynamics) </li><li>and a lot more </li></ul><p>It also is native code which is great for interfacing with the open source software it is build on (sdl2, opengl, openssl, libxml). Direct memory pixel (use for sprite collision) or vertex buffer (vertex data is a pointer to a user defined data in memory) access is very easy.</p><p>Also it includes the Lazarus IDE which I briefly overview in this video, includes stepping into dlls C code where you can see what the other open source frameworks are doing:</p><p><a href="http://www.baregame.org/#topic_using_lazarus">http&#58;&#47;&#47;www.baregame.org&#47;&#35;topic_using_lazarus</a></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/I-published-an-XNA-style-game-toolkit/e5e04b6d07024a6d9b2ca1c80149f168#e5e04b6d07024a6d9b2ca1c80149f168</link>
		<pubDate>Fri, 24 May 2013 20:01:17 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/I-published-an-XNA-style-game-toolkit/e5e04b6d07024a6d9b2ca1c80149f168#e5e04b6d07024a6d9b2ca1c80149f168</guid>
		<dc:creator>sysrpl</dc:creator>
		<slash:comments>3</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/sysrpl/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - I published an XNA style game toolkit</title>
		<description><![CDATA[<p>To the regulars,</p><p><span>I've been working on project which recreates an XNA style game toolkit, except for every (soon!) platform.&nbsp; I thought maybe this long holiday weekend some people somewhere might look at it and give me feedback (watch the video):</span><br><br><a class="jive-link-external" href="http://www.baregame.org/">http://www.baregame.org/</a><br><br><span>The class library written around SDL 2.0 and optionally includes a compiler&#43;IDE as well as recent binaries of SDL 2.0 for 32/64 bit Windows an Linux.</span></p><p>And when I say modern I mean the library features a lot of C# ness to it (even though it's not C#) ...</p><p>e.g.</p><p><pre class="brush: text">TEventHandler&lt;T&gt; = procedure(Sender: TObject; var Args: T) of object;
IBitmap = interface(IClonable&lt;IBitmap&gt;)
TPointF = record public class operator Implicit(const Value: TPointI): TPointF;
TMatrix4x4 = record public class operator Multiply(const A: TMatrix4x4; const B: TVec3): TVec3; overload;</pre></p><p>namespace Bare.System:</p><p><a href="https://github.com/sysrpl/Bare.Game/blob/master/source/bare.game.pas">https://github.com/sysrpl/Bare.Game/blob/master/source/bare.game.pas</a></p><p><span>If you look at the site, please bear in mind i haven't had time to write up everything yet. Let me know what you think.</span></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/I-published-an-XNA-style-game-toolkit/aeb4ae76b6cb42049532a1c800d57d50#aeb4ae76b6cb42049532a1c800d57d50</link>
		<pubDate>Fri, 24 May 2013 12:57:17 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/I-published-an-XNA-style-game-toolkit/aeb4ae76b6cb42049532a1c800d57d50#aeb4ae76b6cb42049532a1c800d57d50</guid>
		<dc:creator>sysrpl</dc:creator>
		<slash:comments>3</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/sysrpl/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Can someone PLEASE tell me why Windows file operations are still messed up?</title>
		<description><![CDATA[<p>I don't have a virus scanner. I turn off Windows defender right after I install (along with windows firewall). I don't install much on my PCs, just textpad (I own a license), vcl, google chrome, and mingw on dev machines or utorrent (downloading mp4 movies) on my htpc.</p><p>I also re-install about a year or every other year. I've had these problems constantly on a lot of machines, and most of the people at my work who I've discussed this with have similar experiences.</p><p>I guess I could screen record some videos on a few different machines if people don't believe me.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Can-someone-PLEASE-tell-me-why-Windows-file-operations-are-still-messed-up/f04cdceef82a47fdbe39a1a6000f0966#f04cdceef82a47fdbe39a1a6000f0966</link>
		<pubDate>Sat, 20 Apr 2013 00:54:44 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Can-someone-PLEASE-tell-me-why-Windows-file-operations-are-still-messed-up/f04cdceef82a47fdbe39a1a6000f0966#f04cdceef82a47fdbe39a1a6000f0966</guid>
		<dc:creator>sysrpl</dc:creator>
		<slash:comments>33</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/sysrpl/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Can someone PLEASE tell me why Windows file operations are still messed up?</title>
		<description><![CDATA[<p>From Windows Vista onwards file operations in explorer have been constantly been dodgy for me ... for many years, on different hardware. And Windows 8 seems the worst yet.</p><p>Anecdotal&nbsp;examples:</p><p>I just tried to copy some files (4580 to be exact) from my documents another folder and Windows just sat there displaying a &quot;Caclulating File Copy Time&quot; dialog for 10 minutes. I eventually gave up, opened a cmd prompt and type &quot;copy * \path\to\put. Cmd did the copy in less than 20 seconds.</p><p>Yesterday I needed to delete about 500 files. Selecting all files in explorer then pressing Shift&#43;Delete (to bypass the recycle bin), Windows stood on a &quot;Preparing to Delete Files&quot; dialog for 20 seconds. I pressed cancel, opened a cmd prompt and typed &quot;delete *&quot;. It took 1 second to do the delete that way.</p><p>On my home media PC with Windows 8, every time I open my downloads folder (which has maybe 100 files), I have to wait 5-10 seconds while explorer considers showing me a list of files/folders (I have detail view on with filename, size, and date shown). If I navigate to a subfolder (a movie folder) and back up again, I have to wait another 5-10 seconds all over again. It's so damn annoying.</p><p>I think a lot of these slow problems are related to MS trying to make <a href="http://it.slashdot.org/story/07/03/27/038227/vista-slow-to-copy-delete-files" target="_blank">some digital files uncopyable</a> (DRM causes slow file copies, rename, or deletes), which given the problems I had working with explorer since Vista was released, seems like a very big mistake by MS.</p><p>What are your thoughts/experience with slow explorer operations on Vista onwards?</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Can-someone-PLEASE-tell-me-why-Windows-file-operations-are-still-messed-up/6f913df7e9df4408b60fa1a5011e26b7#6f913df7e9df4408b60fa1a5011e26b7</link>
		<pubDate>Fri, 19 Apr 2013 17:21:50 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Can-someone-PLEASE-tell-me-why-Windows-file-operations-are-still-messed-up/6f913df7e9df4408b60fa1a5011e26b7#6f913df7e9df4408b60fa1a5011e26b7</guid>
		<dc:creator>sysrpl</dc:creator>
		<slash:comments>33</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/sysrpl/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - There will be no directX 12?</title>
		<description><![CDATA[<p>@<a href="/Forums/Coffeehouse/There-will-be-no-directX-12#ce740a9d650864da6a888a199011922b5">evildictaitor</a>:</p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Post Permalink" href="/Forums/Coffeehouse/There-will-be-no-directX-12/e740a9d650864da6a888a199011922b5">11 hours&nbsp;ago</a>, <a href="/Niners/evildictaitor">evildictait​or</a> wrote</p><p>I must have missed that. Perhaps if you enumerated a couple of AAA games from 2012 or 2013 on any major platform (by which I mean PC, PS3, Wii, Xbox) that chose OpenGL that would help make your point that OpenGL is popular with games developers.</p><p></p></div></blockquote><p></p><p>The question wasn't about what title/hardware was used last year, but what is coming in the road ahead.</p><p>PS4 moved PSGL, a Sony version of OpenGL ES, away from riding on top of LibGMC and implements their new version of PSGL natively. Wii U's graphics interface is a fully compliant OpenGL 4.1 system.</p><p>All the OSX, iPhone/iPad, Android games use OpenGL. The primary graphics programming interface for the upcoming Ouya and Steambox consoles is OpenGL, same with Raspberry Pi.</p><p>Value hired the original SDL author last year, and a pretty spiffy and new SDL 2.0 had its ABI locked on Friday. SDL 2.0 brings in a unified OpenGL system and now loads the appropriate OpenGL library for whatever platform you are targeting, as well as providing much improved OpenGL&nbsp;extension querying and loading support. Valve is actively porting their source engine powered titles, both new and old, to this new system while working with hardware makers and the SDL 2.0 team to improve everything all around.</p><p>Most all browsers have some support for WebGL, and people have found WebGL support in new versions of Microsoft's IE.</p><p>Then there is the new commitment from hardware vendors to actually improve OpenGL performance for their chips, since a lot of mobile devices use their chips and almost universally rely on OpenGL for games. There are new display managers under development and already working for Linux devices (and also Linux desktops) which are compatible with these improved drivers. Projects have been combined with these new&nbsp;display managers and SDL for <a href="http://paritynews.com/software/item/783-xbmc-gets-ported-to-wayland" target="_blank">big screen applications</a> (XBMC, Steam Big Picture, OpenShot)</p><p>Finally, OpenGL actually provides <a href="https://www.google.com/search?q=valve&#43;opengl&#43;performance" target="_blank">much better performance in cases</a> over Direct3D.</p><p>&nbsp;</p><p>&nbsp;</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/There-will-be-no-directX-12/e5b2fb674e624dba9e56a19a004c8457#e5b2fb674e624dba9e56a19a004c8457</link>
		<pubDate>Mon, 08 Apr 2013 04:38:35 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/There-will-be-no-directX-12/e5b2fb674e624dba9e56a19a004c8457#e5b2fb674e624dba9e56a19a004c8457</guid>
		<dc:creator>sysrpl</dc:creator>
		<slash:comments>32</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/sysrpl/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - 1k Javascript Minecart Ride</title>
		<description><![CDATA[<p><a href="http://codebot.org/minecart/" target="_blank">Here you go!</a></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/1k-Javascript-Minecart-Ride/14657f1f740241a68c25a18e006d10fe#14657f1f740241a68c25a18e006d10fe</link>
		<pubDate>Wed, 27 Mar 2013 06:37:05 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/1k-Javascript-Minecart-Ride/14657f1f740241a68c25a18e006d10fe#14657f1f740241a68c25a18e006d10fe</guid>
		<dc:creator>sysrpl</dc:creator>
		<slash:comments>13</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/sysrpl/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Wow. Sweet @ss WebGL Demo</title>
		<description><![CDATA[<p><a href="http://www.zephyrosanemos.com/">Here is a write up of a very nice WebGL demo</a>&nbsp;I thought might interest some of you. Personally I am quite impressed what <span>Stavros (the orginal author)&nbsp;</span>has created, including his GUI interface/widgets and debugging toolkit.</p><p><a href="http://www.zephyrosanemos.com/windstorm/20130301/live-demo.html">Live Demo Here</a></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Wow-Sweet--WebGL-Demo/2b29f40fd5d44ceb95c2a17e005babb6#2b29f40fd5d44ceb95c2a17e005babb6</link>
		<pubDate>Mon, 11 Mar 2013 05:33:45 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Wow-Sweet--WebGL-Demo/2b29f40fd5d44ceb95c2a17e005babb6#2b29f40fd5d44ceb95c2a17e005babb6</guid>
		<dc:creator>sysrpl</dc:creator>
		<slash:comments>7</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/sysrpl/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Announcing Xamarin 2.0</title>
		<description><![CDATA[<p>@<a href="/Forums/Coffeehouse/Announcing-Xamarin-20#c9dc6e99ceab548bc88f6a16c014759b7">Harlequin</a>: I consider VS to be a free<span>&nbsp;tool given all the Spark programs MS offers; WebsiteSpark, DreamSpark, BizSpark, and YouthSpark.</span></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Announcing-Xamarin-20/d1d4c4b080844506b197a16d00f74bfb#d1d4c4b080844506b197a16d00f74bfb</link>
		<pubDate>Fri, 22 Feb 2013 15:00:22 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Announcing-Xamarin-20/d1d4c4b080844506b197a16d00f74bfb#d1d4c4b080844506b197a16d00f74bfb</guid>
		<dc:creator>sysrpl</dc:creator>
		<slash:comments>19</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/sysrpl/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Announcing Xamarin 2.0</title>
		<description><![CDATA[<p>Today&nbsp;<a href="http://blog.xamarin.com/announcing-xamarin-2.0/">Xamarin announced version 2.0</a> of their tools for using C# and Mono to develop iOS/Android apps on Windows/Mac/Linux with Visual Studio/Xamarin Studio.</p><p>Xamarin also announced new free and individual developer&nbsp;versions.</p><p>Part of the sales&nbsp;pitch&nbsp;Xamarin offered in the past is the easy of use and much simplified code reduction their C# libraries provide above and beyond Objective-C and Java. This new version much improves their tooling, according to Xamarin.</p><p>My question to everyone here is, have you tried using C# or the&nbsp;Xamarin products to develop mobile applications for iPhone or Android? If so, what was your experience, and if not what has kept you from trying and using&nbsp;Xamarin mobile development tools?</p><p>I'll answer first: No I haven't tried&nbsp;Xamarin studio previously because their lowest price was $999 and I have a strong bias against paid developer tools having had experienced Borland Delphi.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Announcing-Xamarin-20/31fd8e66c7684b95b4c8a16b0109ca00#31fd8e66c7684b95b4c8a16b0109ca00</link>
		<pubDate>Wed, 20 Feb 2013 16:07:42 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Announcing-Xamarin-20/31fd8e66c7684b95b4c8a16b0109ca00#31fd8e66c7684b95b4c8a16b0109ca00</guid>
		<dc:creator>sysrpl</dc:creator>
		<slash:comments>19</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/sysrpl/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Does anyone know how this can be done on Windows?</title>
		<description><![CDATA[<p><span>I want to write a program which allows users to play sound clips into their microphone (recording device) so that they can mix in clips with their voice while using VOIP software (Ventrillo or Skype for example) from their PC. When I say play sound clips into their microphone, I mean the user presses a button, and the sound clip is played that both the user and the people on the other end of the VOIP connection can hear. What API functions can be used to do this on Windows?</span></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Does-anyone-know-how-this-can-be-done-on-Windows/0a3ac35adfe447b78f2ea15801074396#0a3ac35adfe447b78f2ea15801074396</link>
		<pubDate>Fri, 01 Feb 2013 15:58:30 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Does-anyone-know-how-this-can-be-done-on-Windows/0a3ac35adfe447b78f2ea15801074396#0a3ac35adfe447b78f2ea15801074396</guid>
		<dc:creator>sysrpl</dc:creator>
		<slash:comments>4</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/sysrpl/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Silverlight, another nail in its coffin</title>
		<description><![CDATA[<p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Post Permalink" href="/Forums/Coffeehouse/Silverlight-another-nail-in-its-coffin/2c7473954dc9434b843ca11f0173f94b">1 hour&nbsp;ago</a>, <a href="/Niners/Ian2">Ian2</a> wrote</p><p>The new WinRT stuff is just Silverlight by another name, and closer to the metal to boot.&nbsp;</p><p>IMO it is just politics that it isn't called &quot;Silverlight.RT&quot; or some such.</p><p></p></div></blockquote><p></p><p>Except WinRT apps don't work in a variety of browsers they only work on Windows 8, they cannot run along with the desktop, require submission and approval from Microsoft to run, and M<span>icrosoft takes 30% of any money generated from your app.</span></p><p>And as far a &quot;closer to the metal&quot; goes, you're the first person I've heard describe Windows 8 Metro apps as &quot;closer to the metal&quot;.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Silverlight-another-nail-in-its-coffin/4234f3b69b8f4b9abc15a1200030f94e#4234f3b69b8f4b9abc15a1200030f94e</link>
		<pubDate>Fri, 07 Dec 2012 02:58:18 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Silverlight-another-nail-in-its-coffin/4234f3b69b8f4b9abc15a1200030f94e#4234f3b69b8f4b9abc15a1200030f94e</guid>
		<dc:creator>sysrpl</dc:creator>
		<slash:comments>20</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/sysrpl/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Silverlight, another nail in its coffin</title>
		<description><![CDATA[<p>In the past I invested time in learning how to develop with Silverlight. I stopped when it became clear &nbsp;MS was going to scrap it. They pulled The Gu away from it, Jesse the Silverlight Geek stopped working for Microsoft, and it seemed like Ballmer's &quot;Developer's, developer's, developer's&quot; rant was just more lip service. Microsoft develops something, promotes it to developers, then walks away and pushes the next something to replace the last something; leaving the many who invest time, effort, and money chasing Microsoft technology royally&nbsp;screwed.</p><p><a href="http://www.itwriting.com/blog/6924-microsoft-silverlight-shattered-into-a-million-broken-urls.html">Microsoft killed off Silverlight.net this week.</a>&nbsp;The Silverlight gallery is gone along with the Silverlight blogs, and 90% of the video training series as Microsoft prepares to kill off Siverlight.</p><p>From the comments:</p><p>The biggest mistake Microsoft made was to stop developing VB6. Everything after that has been a failure.</p><p>I agree that Microsoft stopping development of VB6 was a huge mistake.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Silverlight-another-nail-in-its-coffin/623e0c764db844f78ecda11f016450f0#623e0c764db844f78ecda11f016450f0</link>
		<pubDate>Thu, 06 Dec 2012 21:37:18 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Silverlight-another-nail-in-its-coffin/623e0c764db844f78ecda11f016450f0#623e0c764db844f78ecda11f016450f0</guid>
		<dc:creator>sysrpl</dc:creator>
		<slash:comments>20</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/sysrpl/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Hobby electronics programming</title>
		<description><![CDATA[<p>Has anyone here done any hobby work with electronics and micro controllers? I&nbsp;was wondering how hard it would be to program appliances like this <a href="http://www.youtube.com/watch?v=p6hPQ-1kyX4&amp;t=2m46s" target="_blank">ice cream maker</a>.</p><p>I figure the computer controlled part of that setup could be built using an arduino and one of the many cheap and small touch screen LCDs available today.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Hobby-electronics-programming/9283c16982d54a439128a11901266c66#9283c16982d54a439128a11901266c66</link>
		<pubDate>Fri, 30 Nov 2012 17:51:57 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Hobby-electronics-programming/9283c16982d54a439128a11901266c66#9283c16982d54a439128a11901266c66</guid>
		<dc:creator>sysrpl</dc:creator>
		<slash:comments>20</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/sysrpl/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Interest in Microsoft Surface 2nd to Last</title>
		<description><![CDATA[<p>Kids, the purveyors of what is cool and not-so-cool, <a href="http://blogs.computerworld.com/tablets/21375/us-kids-say-they-want-apples-ipad-christmas-nielsen-claims">ranked Microsoft Surface next to last</a> in tech device interest, just ahead of Apple TV and behind any other mobile phone.</p><p><img src="http://blogs.computerworld.com/sites/computerworld.com/files/u175/nielsen-holiday-devices-k6-12.png" alt=""></p><p>&nbsp;</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Interest-in-Microsoft-Surface-2nd-to-Last/57ec8ceda61e400abe60a11000f1b8ac#57ec8ceda61e400abe60a11000f1b8ac</link>
		<pubDate>Wed, 21 Nov 2012 14:40:04 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Interest-in-Microsoft-Surface-2nd-to-Last/57ec8ceda61e400abe60a11000f1b8ac#57ec8ceda61e400abe60a11000f1b8ac</guid>
		<dc:creator>sysrpl</dc:creator>
		<slash:comments>23</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/sysrpl/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Do you have romnesia?</title>
		<description><![CDATA[<p>@<a href="/Forums/Coffeehouse/Do-you-have-romnesia#c7e484c81e07e436c902da0f200268452">Bass</a>: To animate all you do is repeatedly call setTimeout, then adjust styles based on an easing. A while back wrote a little easing browser for my own user defined easings (across multiple languages/platforms). <a title="Red Block Example" href="http://doyouhaveromnesia.us/animate.htm" target="_blank">Test page here.</a></p><p><img src="http://imagebot.org/snapshops/more-easing-modes.jpg" alt=""></p><p><pre class="brush: html">&lt;!DOCTYPE HTML&gt;
&lt;html&gt;
&lt;body&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
// a few example easings

function linear(percent) { return percent; }
function easy(percent) { return percent * percent * (3.0 - 2.0 * percent); }

var negcospi = 1.61803398874989;

function snap(percent) {
    percent = percent * percent;
    percent = (percent * 1.4) - 0.2;
    return 0.5 - Math.cos(Math.PI * percent) / negcospi;
}

function time() {
  return new Date().getTime() / 1000;
}

// the animate routine

function animate(element, easing, duration, onanimate, ondone, start) {
  start = start == null ? time() : start;
  window.setTimeout(function() {
    var percent = (time() - start) / duration;
    var done = percent &gt;= 1.0;
    if (done) {
        onanimate(element, 1.0);
        if (ondone) {
            ondone(element);
        }
    } else {
        onanimate(element, easing(percent));
        animate(element, easing, duration, onanimate, ondone, start);
    }
  }, 5);
}

// our onanimate callback and a play function

function move(element, percent) {
  element.style.left = 2000 * percent &#43; &quot;px&quot;;
}

function play() {
  animate(document.getElementById(&quot;red&quot;), snap, 2.0, move);
}
&lt;/script&gt;
&lt;div id=&quot;red&quot; style=&quot;background: red; position: relative; width: 100px; height: 100px;&quot;&gt;&lt;/div&gt;
&lt;button onclick=&quot;play()&quot;&gt;Play&lt;/button&gt;
&lt;/body&gt;
&lt;/html&gt;</pre></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Do-you-have-romnesia/4b5c1d9ce01143f68da7a0f2003ca384#4b5c1d9ce01143f68da7a0f2003ca384</link>
		<pubDate>Mon, 22 Oct 2012 03:40:46 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Do-you-have-romnesia/4b5c1d9ce01143f68da7a0f2003ca384#4b5c1d9ce01143f68da7a0f2003ca384</guid>
		<dc:creator>sysrpl</dc:creator>
		<slash:comments>16</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/sysrpl/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Do you have romnesia?</title>
		<description><![CDATA[<p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Post Permalink" href="/Forums/Coffeehouse/Do-you-have-romnesia/ec58e0537aed4b1dad9aa0f1011dd758">1 hour&nbsp;ago</a>, <a href="/Niners/dahat">dahat</a> wrote</p><p><a class="ht" title="#Romnesia" href="https://twitter.com/search/%23Romnesia" rel="tag">#<strong>Romnesia</strong></a> brought to you by the same man who was against gay marriage and the individual mandate before he was for them</p><p></p></div></blockquote><p></p><p>So you are upset that Obama wasn't for marriage equality sooner, is that your complaint? How does supporting Republicans, who traditionally attack gays, advance that cause?</p><p></p><blockquote><div class="quoteText"><p></p><p>Obama&nbsp;said&nbsp;that raising the national debt by 4 trillion in 8 years was unpatriotic... but 5.5 trillion (so far) in less than 4</p><p></p></div></blockquote><p></p><p>I'm not sure where that attribution is sourced, but I thought you'd like to know that there was this market collapse brought on by the last Republican administration which wrecked our economy. I know a lot of morons worship the altar of free market economics, but that's not how the world works. People with money and power game the system to recursively extend their control, and the Republicans are the party that caters to the rich who want more money and power.</p><p></p><blockquote><div class="quoteText"><p></p><p>and bravely took a stand against military engagements without congressional oversight... until he became the first President to violate the War Powers Act.</p><p></p></div></blockquote><p></p><p>Yeah right. Hey I'm not a friend of Obama, but I think everyone agrees that Republicans are war hawks (chicken hawks). That is, they are more accepting of going to war, funding defense contractors, and are in greater favor of using our army/bombs/might to attack people across the globe.&nbsp;</p><p>You're saying you don't like&nbsp;military engagements, so ... vote Republican? This makes zero sense.</p><p></p><blockquote><div class="quoteText"><p></p><p>&quot;If you don't have any fresh ideas, then you use stale tactics to scare the voters. If you don't have a record to run on, then you paint your opponent as someone people should run from. You make a big election about small things.&quot; &nbsp;– Barack Obama</p><p></p></div></blockquote><p></p><p>Wow, talk about using the wrong context. What you quoted above was Obama describing the modus operandi of the Republicans&nbsp;who were criticizing him. You attempted to flip the meaning to the opposite. It's quite telling that you are so eager to disinform&nbsp;others.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Do-you-have-romnesia/a906b6390903437090fca0f10140501d#a906b6390903437090fca0f10140501d</link>
		<pubDate>Sun, 21 Oct 2012 19:26:13 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Do-you-have-romnesia/a906b6390903437090fca0f10140501d#a906b6390903437090fca0f10140501d</guid>
		<dc:creator>sysrpl</dc:creator>
		<slash:comments>16</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/sysrpl/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Do you have romnesia?</title>
		<description><![CDATA[<p>@<a href="/Forums/Coffeehouse/Do-you-have-romnesia#cfa6bd9410fb4451d8988a0f1004e3ec2">Dr Herbie</a>:The JSON file if anyone cares to edit it -&gt; <a href="http://doyouhaveromnesia.us/data.txt">http://doyouhaveromnesia.us/data.txt</a></p><p>&nbsp;</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Do-you-have-romnesia/0899406aed124b5bb592a0f10053361e#0899406aed124b5bb592a0f10053361e</link>
		<pubDate>Sun, 21 Oct 2012 05:02:57 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Do-you-have-romnesia/0899406aed124b5bb592a0f10053361e#0899406aed124b5bb592a0f10053361e</guid>
		<dc:creator>sysrpl</dc:creator>
		<slash:comments>16</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/sysrpl/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Do you have romnesia?</title>
		<description><![CDATA[<p>Here is a I quick web page I wrote (no jquery, just javascript):</p><p><a href="http://doyouhaveromnesia.us">http&#58;&#47;&#47;doyouhaveromnesia.us</a></p><p>&nbsp;</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Do-you-have-romnesia/6cf00cae21154f468e8aa0f10041b971#6cf00cae21154f468e8aa0f10041b971</link>
		<pubDate>Sun, 21 Oct 2012 03:59:17 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Do-you-have-romnesia/6cf00cae21154f468e8aa0f10041b971#6cf00cae21154f468e8aa0f10041b971</guid>
		<dc:creator>sysrpl</dc:creator>
		<slash:comments>16</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/sysrpl/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Jullian Assange Escape Plan</title>
		<description><![CDATA[<p>@<a href="/Forums/Coffeehouse/Jullian-Assange-Escape-Plan#c0b9e7368fb044eda80b5a0c900ef09e5">spivonious</a>:what exactly do you think assange is charged with, other than not reporting to the British authorities?</p><p>&nbsp;</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Jullian-Assange-Escape-Plan/6d853bf4ff584f6d8ddda0c900fb71e1#6d853bf4ff584f6d8ddda0c900fb71e1</link>
		<pubDate>Tue, 11 Sep 2012 15:15:28 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Jullian-Assange-Escape-Plan/6d853bf4ff584f6d8ddda0c900fb71e1#6d853bf4ff584f6d8ddda0c900fb71e1</guid>
		<dc:creator>sysrpl</dc:creator>
		<slash:comments>16</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/sysrpl/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Jullian Assange Escape Plan</title>
		<description><![CDATA[<p>This document describes a method for Julian Assange to escape from Britain, avoiding arrest and arriving safely undetected in Ecuador.</p><p>Materials and personal required:</p><p>1 security expert who can sweep the embassy for bugs<br>1 person of the same height and approximate weight as Julian Assange<br>1 highly skilled special effects makeup artist<br>1 car driver and car<br>1 diplomat and airplane prepped for an international flight<br><br>A brief description of the plan:</p><p>A person (the visitor) not looking at all like Julian Assange, but of his same height and approximate weight, regularly makes short daily &quot;in and out&quot; visits the Ecuadorian embassy in Britain. If the police routinely see the visitor entering and leaving the embassy everyday and allow him to come and go unmolested then one day the visitor stops showing up and Assange has escaped.</p><p>How it works:</p><p>All principles are given the details of the escape plan including, a special effects makeup artist, a visitor, a driver, a diplomat.</p><p>A security expert begins making regular trips to the Embassy to make sure it is free of ease dropping or spy equipment. Equipment which make have been secretly installed by the British authorities. Keeping the activities of individuals inside the Ecuadorian secret is important for any escape plan to work.</p><p>A person, the visitor, is to be interviewed selected based on secret confidence and his Julian Assange matching height and weight. A confidential make up artists meets with the visitor takes photos, does his studies, then visits the Ecuadorian embassy to do the same with Assange.</p><p>The visitor then begins to make regular, short daily visits to the Ecuadorian embassy, and unbeknownst to the police, acclimating them to his regular short visits. A week or so later the makeup artist begins making trips to the embassy where he stays overnight, again acclimating the police to his routine.</p><p>A duplicate pair of clothing purchased. One set is given to the visitor, the other is worn by the makeup artist underneath his clothing.</p><p>The day before the planned escape the makeup artist goes to the Embassy as usual. He begins the process of transforming Assange into the visitor. Care and time is taken to make certain Assange looks absolutely identical to the visitor.</p><p>Then next morning Assange changes into the duplicate set of clothing delivered by the makeup artist. The visitor arrives at the Embassy wearing the same outfit, looking identical to the transformed Assange. A final touch up to is made to Assange when he and the visitor are side by side, hidden in private inside the Embassy.</p><p>After a few minutes, per usual, the visitor leaves the embassy. But this time it is not the visitor, it is Assange disguised as the visitor.</p><p>Both the makeup artist and the real visitor remain hidden (out of sight of any windows) inside the embassy until Assange has arrived in Ecuador.</p><p>Assange in disguise walks down the street and is picked up by the driver. He is driven to a private airport with a plane and diplomat waiting. He boards the plane along with the diplomat, making the plane a diplomatic plane, and leaves Britain flying towards Ecuador.</p><p>How the plain might fail:</p><p>If the police stop and interview everyone entering and leaving, regardless of their visit frequency then this plan will not work. Assange will not be arrested, but it will be known to the principles that the plan cannot go forward and should be aborted.</p><p>If someone leaks the details of the plans to the British authorities then the plan will fail. The confidence of the principles and secrecy of the plan is paramount.</p><p>If the British employ spy techniques greater than those that can be resolved by the security expert, the plan may be revealed, possibly leading to the capture of Assange.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Jullian-Assange-Escape-Plan/ff75e58efe544e0ca65ba0c900dbb08e#ff75e58efe544e0ca65ba0c900dbb08e</link>
		<pubDate>Tue, 11 Sep 2012 13:19:51 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Jullian-Assange-Escape-Plan/ff75e58efe544e0ca65ba0c900dbb08e#ff75e58efe544e0ca65ba0c900dbb08e</guid>
		<dc:creator>sysrpl</dc:creator>
		<slash:comments>16</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/sysrpl/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Development tool chain setup</title>
		<description><![CDATA[<p><div>I've been unhappy for years with the state of computer development. Visual Studio with C# is nice, but it's still Microsoft technology and using it on alternate operating systems (<span class="J-JK9eJ-PJVNOc">OSX</span>, Linux) really isn't an option. I've also been undecided on taking up tablet/phone development since the original iPhone came was released.</div><div>&nbsp;</div><div>But ... the past few weeks I've been working in a with a new development tool chain and haven't been this happy in years.&nbsp;</div><div>&nbsp;</div><div>Screen shot:</div><div>&nbsp;</div><div><img src="http://imagebot.org/testing/lazarus.png" alt="Ubuntu Desktop Development"></div><div>&nbsp;</div><div>I am writing desktop applications in object pascal with Lazarus and mobile phone development (for Android) in Eclipse. I've built the&nbsp;<span class="J-JK9eJ-PJVNOc">FPC</span>&nbsp;compiler and Lazarus&nbsp;<span class="J-JK9eJ-PJVNOc">IDE</span>&nbsp;from sources, configured the&nbsp;<span class="J-JK9eJ-PJVNOc">IDE</span>&nbsp;to use a single window.</div><div>&nbsp;</div><div>I have written a simple, yet complete, cross platform pascal library for handling&nbsp;<span class="J-JK9eJ-PJVNOc">xml</span>, sockets,&nbsp;<span class="J-JK9eJ-PJVNOc">ssl</span>&#43;cryptography, image manipulation, and some custom components and designers to make work even easier. Now I can work effectively and compile desktop/console applications for Win32, Win64, Linux, and Darwin (<span class="J-JK9eJ-PJVNOc">OSX</span>). I can compile to all those platforms from Linux.</div><div>&nbsp;</div><div>I also wrote a component to allow for easy storage of different control layouts for different operating systems, such that if I compile a desktop application for&nbsp;<span class="J-JK9eJ-PJVNOc">Ubuntu</span>, I can open the original project on Windows and change the layout to look better on Windows without effecting the Linux layout. It's all very satisfying.</div><div>&nbsp;</div><div>And with Android development, well I am just using Eclipse which already run equally well on all desktop platforms. Then the Android&nbsp;<span class="J-JK9eJ-PJVNOc">SDK</span>&nbsp;lets me test out my java Android applications on a variety of devices.</div><div>&nbsp;</div><div>Anyways, I am just posting this information to encourage the rest of you who might be feeling a bit down by the current state of your development options. Thanks for listening.</div></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Development-tool-chain-setup/f9d965b27a924122a980a0b101128e34#f9d965b27a924122a980a0b101128e34</link>
		<pubDate>Sat, 18 Aug 2012 16:39:37 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Development-tool-chain-setup/f9d965b27a924122a980a0b101128e34#f9d965b27a924122a980a0b101128e34</guid>
		<dc:creator>sysrpl</dc:creator>
		<slash:comments>2</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/sysrpl/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Has anyone here used DevExpress  XAF? Looking for Opinions.</title>
		<description><![CDATA[<p>Has anyone here used DevExpress XAF? I've been using it for a while and I'm of the opinion that its implementation is quite flawed. I'm looking for maybe a different opinion to rescue my time/investment into it. The&nbsp;idea behind XAF is great and one that will probably be the way to go sometime in the future, but for right now, in its current state, and judging by past updates by&nbsp;DevExpress, it's not &quot;there&quot; yet and probably wont be &quot;there&quot; for a long while.</p><p>For those not familiar with XAF, I'll try to summarize what it is. XAF is a commercial business application framework sold/developed by&nbsp;DevExpress which integrates their suite of windows or web controls (you get to choice to build your app as a web app or windows forms app at any time). You write your application by typing out .NET ORM classes (they have a ton of keyboard macros to make this task ultra fast and correct), and XAF attempts to build an entire end to end application for you using modules such as&nbsp;security, reporting, charts, input validation, audit history and more ...</p><p>If it worked correctly the great things about it would be that a developer could write business classes and get a bunch of functionality right out of the shoe. Features such as user login, user profiles/back end user management, fairly fully featured ORM class level security, visual record filtering, google like record searching, grid sorting/grouping, pivot charts, validation of input and so on (and actually quite a lot more stuff) all provided to you, the developer, nearly automatically. And if it worked correctly the idea would be that all projects from everyone using XAF would share a well tested/performant codebase, and easy or nearly automatic drop in access to many business application features.</p><p>Unfortunately the problem with XAF is scalability (the web version struggles when you add 4 or more users), performance, complete lack of work flow, constantly outdated/poor documentation, and many other minor/major pains.&nbsp;</p><p>In my opinion the concept behind XAF is the next logical and obvious step for most all business programming, but&nbsp;DevExpress is not capable of the daunting task that is fixing all the problems they create.</p><p>&nbsp;</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Has-anyone-here-used-DevExpress-XAF-Looking-for-Opinions/ca52192910524e468ecea07c00ee9fb6#ca52192910524e468ecea07c00ee9fb6</link>
		<pubDate>Tue, 26 Jun 2012 14:28:48 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Has-anyone-here-used-DevExpress-XAF-Looking-for-Opinions/ca52192910524e468ecea07c00ee9fb6#ca52192910524e468ecea07c00ee9fb6</guid>
		<dc:creator>sysrpl</dc:creator>
		<slash:comments>87</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/sysrpl/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Microsoft insists: YOU WILL LOVE OUR ALL CAPS MENUS!!!!1!!!</title>
		<description><![CDATA[<p>Last month I <a title="post" href="http://channel9.msdn.com/Forums/Coffeehouse/Visual-Studio-Updates" target="_blank">created a post</a> referring to Microsoft's new design changes for the next Visual Studio. The reaction from most people here, and a sentiment I also share, was that the ALL CAPS menus had to go.</p><p>Well Microsoft has thought it over and decided styling Visual Studio to in some ways fit in better with the metro look is more important than our opinions. Read more here:</p><p><a title="Visual Studio Blog" href="http://blogs.msdn.com/b/visualstudio/archive/2012/06/05/a-design-with-all-caps.aspx">http://blogs.msdn.com/b/visualstudio/archive/2012/06/05/a-design-with-all-caps.aspx</a></p><p>My take: Visual Studio should be a friggin' IDE meant for programming ease and comfort. But I guess Microsoft sees it differently. They use updates to Visual Studio is to herd developers in the direction Microsoft wants them to follow i.e. Metro apps on the Microsoft app store.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Microsoft-insists-YOU-WILL-LOVE-OUR-ALL-CAPS-MENUS1/9e6c7bb276c14fa1a3c9a06800c2c56b#9e6c7bb276c14fa1a3c9a06800c2c56b</link>
		<pubDate>Wed, 06 Jun 2012 11:49:08 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Microsoft-insists-YOU-WILL-LOVE-OUR-ALL-CAPS-MENUS1/9e6c7bb276c14fa1a3c9a06800c2c56b#9e6c7bb276c14fa1a3c9a06800c2c56b</guid>
		<dc:creator>sysrpl</dc:creator>
		<slash:comments>41</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/sysrpl/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Question about Visual Studio Style</title>
		<description><![CDATA[<p>@<a href="/Forums/Coffeehouse/Question-about-Visual-Studio-Style#ccf918c6d5d7449b3912ea04c016841dc">Blue Ink</a>: Ah okay. So when they announced the background was changed to a lighter shade of grey, they are setting disabled icons are a lighter shade of grey, but enabled icons stay their current state of grey. Got it. Thanks!</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Question-about-Visual-Studio-Style/d84b40a711834c2b9251a04c0178730f#d84b40a711834c2b9251a04c0178730f</link>
		<pubDate>Wed, 09 May 2012 22:50:36 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Question-about-Visual-Studio-Style/d84b40a711834c2b9251a04c0178730f#d84b40a711834c2b9251a04c0178730f</guid>
		<dc:creator>sysrpl</dc:creator>
		<slash:comments>6</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/sysrpl/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Question about Visual Studio Style</title>
		<description><![CDATA[<p>If most button, menu, and node icons&nbsp;in the new Visual Studio studio are now grey as opposed to colored, then what color are disabled the icons?</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Question-about-Visual-Studio-Style/a117e5e66ac149d9bf3aa04c0161dd6c#a117e5e66ac149d9bf3aa04c0161dd6c</link>
		<pubDate>Wed, 09 May 2012 21:28:22 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Question-about-Visual-Studio-Style/a117e5e66ac149d9bf3aa04c0161dd6c#a117e5e66ac149d9bf3aa04c0161dd6c</guid>
		<dc:creator>sysrpl</dc:creator>
		<slash:comments>6</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/sysrpl/Discussions/RSS</wfw:commentRss>
	</item>
</channel>
</rss>