<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" media="screen" href="/App_Themes/default/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:evnet="http://www.mscommunities.com/rssmodule/"><channel><title>Entries for jsampsonPC</title><atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/niners/jsampsonpc/rss/default.aspx" /><image><url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url><title>Entries for jsampsonPC</title><link>http://channel9.msdn.com/Niners/jsampsonpc/</link></image><description>Entries, comments and threads posted by jsampsonPC</description><link>http://channel9.msdn.com/Niners/jsampsonpc/</link><language>en-us</language><pubDate>Mon, 11 Aug 2008 22:35:20 GMT</pubDate><lastBuildDate>Mon, 11 Aug 2008 22:35:20 GMT</lastBuildDate><generator>EvNet (EvNet, Version=1.0.3608.3122, Culture=neutral, PublicKeyToken=null)</generator><item><title>Brilliant Code! Got Some? [Brilliant Code! Got Some?]</title><description>&lt;h2&gt;"Billiant" is sarcastic - the code here is less-than-brilliant...far less than brilliant.&lt;/h2&gt;&lt;br&gt;
&lt;br&gt;
I wrote the following up as a joke to a friend. Curious if you .NET guys have ever written your own jokes?&lt;br&gt;
&lt;br&gt;
The following code prints a link for each day of the current month: Day 1, Day 2, etc. The links direct you to another page that can do something with the query string...Enjoy.&lt;br&gt;
&lt;br&gt;
(Oh, and yes, this IS a joke - so no flaming ;))&lt;br&gt;
&lt;br&gt;
&amp;lt;?php&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; getDays();&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; function getDays() {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $day = array("1","2","3","4","5","6","7","8","9","10","11","12","13",&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; "14","15","16","17","18","19","20","21","22","23","24",&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; "25","26","27","28","29","30","31");&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $trueDays = array();&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $arrayLinks = array();&lt;br&gt;
&amp;nbsp;&amp;nbsp; &lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; for($i = 0; $i &amp;lt; count($day); $i++) {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; if ($i &amp;lt; date("t") &amp;amp;&amp;amp; $i &amp;gt; 0) {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; if (is_numeric($i)) {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $trueDays[] = ($day[$i] &amp;gt; 0) ? $day[$i] : 0 ;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; if (is_array($trueDays) &amp;amp;&amp;amp; 1 == 1) {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $dayString = implode(",",$trueDays);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; if (strlen($dayString) &amp;gt; 0) {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; foreach ($trueDays as $day) {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $arrayLinks[] = "&amp;lt;a href='getDays.php?day={$day}'&amp;gt;Day {$day}&amp;lt;/a&amp;gt;";&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;
&amp;nbsp;&amp;nbsp; &lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; print "&amp;lt;a href='getDays.php?day=1'&amp;gt;Day 1&amp;lt;/a&amp;gt;, " . implode(", ",$arrayLinks);&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;
&lt;br&gt;
?&amp;gt;&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/420916-Brilliant-Code-Got-Some/'&gt;Brilliant Code! Got Some?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/420916/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/420916-Brilliant-Code-Got-Some/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/420916-Brilliant-Code-Got-Some/</link><pubDate>Mon, 11 Aug 2008 19:41:48 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/420916-Brilliant-Code-Got-Some/</guid><evnet:views>986</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/420916/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>"Billiant" is sarcastic - the code here is less-than-brilliant...far less than brilliant.

I wrote the following up as a joke to a friend. Curious if you .NET guys have ever written your own jokes?

The following code prints a link for each day of the current month: Day 1, Day 2, etc. The links&amp;#8230;</evnet:previewtext><dc:creator>jsampsonPC</dc:creator><slash:comments>8</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/420916-Brilliant-Code-Got-Some/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/420916/Trackback.aspx</trackback:ping></item><item><title>I can haz my liveid, plz? [I can haz my liveid, plz?]</title><description>Ceiling kitteh is sad, because when this account (jsampsonpc) was inaccessible, I had to use my liveid. Now that I have this account back, I can't use my liveid, because it's associated to (jonathan sampson) account.&lt;br&gt;&lt;br&gt;Can haz delete FROM users WHERE user_name = "jonathansampson" :)&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/420727-I-can-haz-my-liveid-plz/'&gt;I can haz my liveid, plz?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/420727/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/420727-I-can-haz-my-liveid-plz/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/420727-I-can-haz-my-liveid-plz/</link><pubDate>Sun, 10 Aug 2008 21:11:41 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/420727-I-can-haz-my-liveid-plz/</guid><evnet:views>639</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/420727/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Ceiling kitteh is sad, because when this account (jsampsonpc) was inaccessible, I had to use my liveid. Now that I have this account back, I can't use my liveid, because it's associated to (jonathan sampson) account.Can haz delete FROM users WHERE user_name = "jonathansampson" :)in reply to I can haz my liveid, plz?</evnet:previewtext><dc:creator>jsampsonPC</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/420727-I-can-haz-my-liveid-plz/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/420727/Trackback.aspx</trackback:ping></item><item><title>Can Microsoft Advertise? [Can Microsoft Advertise?]</title><description>I'm curious if Microsoft can successfully market a product now. I don't mean to suggest that MS's marketing skills are horrible or anything, or maybe they are, I don't know.&lt;br&gt;&lt;br&gt;My main interest is if you can advertise the name "Microsoft" with any degree of success today, no matter how much money is thrown into a fancy poster and bikini-clad women. I mean, is the name just exhausted in the tech-world where the average lifetime of a successful organization is a matter of years?&lt;br&gt;&lt;br&gt;I look at Appe who just pops and "i" infront of whatever, and all of a sudden, "iChecks" start showing up. Yet they're pretty juvenile, only getting really popular in the last few years, unlike Microsoft.&lt;br&gt;&lt;br&gt;Maybe Bill should start a new company, get another name out there?&lt;br&gt;&lt;br&gt;I met a guy in Tennessee a year back or so who owns two companies, both are in competition with the other, and the public has no idea. He sits back and rakes in the cash, because he has multiple faces.&lt;br&gt;&lt;br&gt;Dunno how great of a business plan this is, but it seemed to have worked for him.&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/404562-Can-Microsoft-Advertise/'&gt;Can Microsoft Advertise?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/404562/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/404562-Can-Microsoft-Advertise/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/404562-Can-Microsoft-Advertise/</link><pubDate>Tue, 20 May 2008 20:36:07 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/404562-Can-Microsoft-Advertise/</guid><evnet:views>557</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/404562/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I'm curious if Microsoft can successfully market a product now. I don't mean to suggest that MS's marketing skills are horrible or anything, or maybe they are, I don't know.My main interest is if you can advertise the name "Microsoft" with any degree of success today, no matter how much money is thrown into a fancy poster and bikini-clad women. I mean, is the name just exhausted in the tech-world where the average lifetime of a successful organization is a matter of years?I look at Appe who just pops and "i" infront of whatever, and all of a sudden, "iChecks" start showing up. Yet they're&amp;#8230;</evnet:previewtext><dc:creator>jsampsonPC</dc:creator><slash:comments>1</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/404562-Can-Microsoft-Advertise/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/404562/Trackback.aspx</trackback:ping></item><item><title>Extracting an array of keywords from a post... [Extracting an array of keywords from a post...]</title><description>Anybody know of a method that will find keywords in a post quickly, and intelligently?&lt;br&gt;&lt;br&gt;I'm working on a form right now that will be used for people to submit messages, comments, questions, etc. When they submit a comment, rather than send the email to me, I want to first extract keywords from their text, search those against a database of articles, suggest the articles to them, and then submit the question only after they click "None of these help". So basically, I'm forcing them to use the resources already in place before wasting my time.&lt;br&gt;&lt;br&gt;Any suggestions on how I should find the REAL keywords in these posts? Obviously I'll strip out 'a', 'and', 'of', etc...but I'm still a little in the dark on the full operation.&lt;br&gt;&lt;br&gt;Thanks in advance.&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/402179-Extracting-an-array-of-keywords-from-a-post/'&gt;Extracting an array of keywords from a post...&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/402179/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/402179-Extracting-an-array-of-keywords-from-a-post/</comments><link>http://channel9.msdn.com/forums/TechOff/402179-Extracting-an-array-of-keywords-from-a-post/</link><pubDate>Thu, 08 May 2008 18:26:12 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/402179-Extracting-an-array-of-keywords-from-a-post/</guid><evnet:views>526</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/402179/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Anybody know of a method that will find keywords in a post quickly, and intelligently?&lt;br&gt;&lt;br&gt;I'm working on a form right now that will be used for people to submit messages, comments, questions, etc. When they submit a comment, rather than send the email to me, I want to first extract keywords from their text, search those against a database of articles, suggest the articles to them, and then submit the question only after they click "None of these help". So basically, I'm forcing them to use the resources already in place before wasting my time.&lt;br&gt;&lt;br&gt;</evnet:previewtext><dc:creator>jsampsonPC</dc:creator><slash:comments>5</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/402179-Extracting-an-array-of-keywords-from-a-post/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/402179/Trackback.aspx</trackback:ping></item><item><title>&amp;quot;Watch&amp;quot; doesn't work...but &amp;quot;Download&amp;quot; Does (Sort of) [&amp;quot;Watch&amp;quot; doesn't work...but &amp;quot;Download&amp;quot; Does (Sort of)]</title><description>I can't remember the last time I clicked "Watch" and got the front-page video to start playing in WMP. It always works inside the Silverlight app, but that thing won't go full screen, or detach from the browser, or anything - frustrates me.&lt;br&gt;&lt;br&gt;I clicked download, and it opened up a new tab, with WMP embeded in the full space provided...it's now been loading forever...&lt;br&gt;&lt;br&gt;Anybody else having simliar issues?&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/401981-quotWatchquot-doesnt-workbut-quotDownloadquot-Does-Sort-of/'&gt;&amp;quot;Watch&amp;quot; doesn't work...but &amp;quot;Download&amp;quot; Does (Sort of)&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/401981/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/401981-quotWatchquot-doesnt-workbut-quotDownloadquot-Does-Sort-of/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/401981-quotWatchquot-doesnt-workbut-quotDownloadquot-Does-Sort-of/</link><pubDate>Wed, 07 May 2008 19:39:47 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/401981-quotWatchquot-doesnt-workbut-quotDownloadquot-Does-Sort-of/</guid><evnet:views>686</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/401981/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I can't remember the last time I clicked "Watch" and got the front-page video to start playing in WMP. It always works inside the Silverlight app, but that thing won't go full screen, or detach from the browser, or anything - frustrates me.&lt;br&gt;&lt;br&gt;I clicked download, and it opened up a new tab, with WMP embeded in the full space provided...it's now been loading forever...&lt;br&gt;&lt;br&gt;Anybody else having simliar issues?&lt;br&gt;</evnet:previewtext><dc:creator>jsampsonPC</dc:creator><slash:comments>5</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/401981-quotWatchquot-doesnt-workbut-quotDownloadquot-Does-Sort-of/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/401981/Trackback.aspx</trackback:ping></item><item><title>Live Messenger, jackin' with my sound levels [Live Messenger, jackin' with my sound levels]</title><description>I use msn messenger on numerous computers in my house, but when I use it in the bedroom it always has some issue with the sound. It cause the audio to fade in and out. It will go from high, down to low, and then back to high. I thought it may have just been the video I was watching, so I ran over to YouTube, and had the same problem. I paused the video, turned off msn messenger, and went back to the video, and all was well.&lt;br&gt;&lt;br&gt;Anybody know what the friggin' heck is going on with this P.O.S?&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/401187-Live-Messenger-jackin-with-my-sound-levels/'&gt;Live Messenger, jackin' with my sound levels&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/401187/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/401187-Live-Messenger-jackin-with-my-sound-levels/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/401187-Live-Messenger-jackin-with-my-sound-levels/</link><pubDate>Fri, 02 May 2008 23:44:35 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/401187-Live-Messenger-jackin-with-my-sound-levels/</guid><evnet:views>938</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/401187/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I use msn messenger on numerous computers in my house, but when I use it in the bedroom it always has some issue with the sound. It cause the audio to fade in and out. It will go from high, down to low, and then back to high. I thought it may have just been the video I was watching, so I ran over to YouTube, and had the same problem. I paused the video, turned off msn messenger, and went back to the video, and all was well.&lt;br&gt;&lt;br&gt;Anybody know what the friggin' heck is going on with this P.O.S?&lt;br&gt;</evnet:previewtext><dc:creator>jsampsonPC</dc:creator><slash:comments>5</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/401187-Live-Messenger-jackin-with-my-sound-levels/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/401187/Trackback.aspx</trackback:ping></item><item><title>Programming Population Growth... [Programming Population Growth...]</title><description>I felt like writing a small application tonight to project populations over time. Problem is, the more I think about population dynamics, the more confounding this project becomes.&lt;br&gt;&lt;br&gt;I'm thinking, well if we have an average of 3 kids per two parents every 50 years, those kids will then do as their parents did and have an average of 3 kids per 50 years. But then at 70 years the parents are dead.&lt;br&gt;&lt;br&gt;This application wouldn't consider terminal illnesses or diseases. That would make things a bit more complicated I'm sure.&lt;br&gt;&lt;br&gt;Just curious how you guys would do this.&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/399691-Programming-Population-Growth/'&gt;Programming Population Growth...&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/399691/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/399691-Programming-Population-Growth/</comments><link>http://channel9.msdn.com/forums/TechOff/399691-Programming-Population-Growth/</link><pubDate>Sun, 27 Apr 2008 04:38:54 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/399691-Programming-Population-Growth/</guid><evnet:views>628</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/399691/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I felt like writing a small application tonight to project populations over time. Problem is, the more I think about population dynamics, the more confounding this project becomes.&lt;br&gt;&lt;br&gt;I'm thinking, well if we have an average of 3 kids per two parents every 50 years, those kids will then do as their parents did and have an average of 3 kids per 50 years. But then at 70 years the parents are dead.&lt;br&gt;&lt;br&gt;This application wouldn't consider terminal illnesses or diseases. That would make things a bit more complicated I'm sure.&lt;br&gt;&lt;br&gt;Just curious how you guys would do this.&lt;br&gt;</evnet:previewtext><dc:creator>jsampsonPC</dc:creator><slash:comments>2</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/399691-Programming-Population-Growth/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/399691/Trackback.aspx</trackback:ping></item><item><title>Robots Compete to save Dolls in Destress (Video) [Robots Compete to save Dolls in Destress (Video)]</title><description>&lt;object width="425" height="355"&gt;&lt;param name="movie" value="http://www.youtube.com/v/6vr-tiA00UA&amp;hl=en"&gt;&lt;/param&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/6vr-tiA00UA&amp;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/398392-Robots-Compete-to-save-Dolls-in-Destress-Video/'&gt;Robots Compete to save Dolls in Destress (Video)&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/398392/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/398392-Robots-Compete-to-save-Dolls-in-Destress-Video/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/398392-Robots-Compete-to-save-Dolls-in-Destress-Video/</link><pubDate>Mon, 21 Apr 2008 16:46:17 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/398392-Robots-Compete-to-save-Dolls-in-Destress-Video/</guid><evnet:views>238</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/398392/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>&lt;object width="425" height="355"&gt;&lt;param name="movie" value="http://www.youtube.com/v/6vr-tiA00UA&amp;hl=en"&gt;&lt;/param&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/6vr-tiA00UA&amp;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br&gt;</evnet:previewtext><dc:creator>jsampsonPC</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/398392-Robots-Compete-to-save-Dolls-in-Destress-Video/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/398392/Trackback.aspx</trackback:ping></item><item><title>Mass video file output app? [Mass video file output app?]</title><description>Anybody know of an application that can take an avi, and output wmv's, mov's, flv's, etc all at once?&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/262244-Mass-video-file-output-app/'&gt;Mass video file output app?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/262244/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/262244-Mass-video-file-output-app/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/262244-Mass-video-file-output-app/</link><pubDate>Tue, 15 Apr 2008 05:32:55 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/262244-Mass-video-file-output-app/</guid><evnet:views>654</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/262244/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Anybody know of an application that can take an avi, and output wmv's, mov's, flv's, etc all at once?&lt;br&gt;</evnet:previewtext><dc:creator>jsampsonPC</dc:creator><slash:comments>5</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/262244-Mass-video-file-output-app/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/262244/Trackback.aspx</trackback:ping></item><item><title>Psychology of Internet Memes &amp;amp; Sociology of Internet Populations [Psychology of Internet Memes &amp;amp; Sociology of Internet Populations]</title><description>I was laying in bed last night thinking about the Internet (wow...I am a geek), and all of these fads that come and go. Rick Rolling being one of the most recent. Before that we had, and still have today, odd videos being submitted to youtube, which are then re-done over and over by countless other people.&lt;br&gt;&lt;br&gt;"I like turtles" being another. The list goes on and on. But why do we do this? Why do we feel so compelled to follow somebody else so easily?&lt;br&gt;&lt;br&gt;Curious about your guys' thoughts on the psychology behind this and why the internet population is so easily manipulated to do strange things.&lt;br&gt;&lt;br&gt;A Few Examples&lt;br&gt;&lt;br&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://youtube.com/watch?v=CMNry4PE93Y"&gt;I like Turtles&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://youtube.com/watch?v=EwTZ2xpQwpA"&gt;Chocolate Rain&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://youtube.com/watch?v=eBGIQ7ZuuiU"&gt;Rick Rolling&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://youtube.com/watch?v=a1Y73sPHKxw"&gt;Dramatic Chipmunk&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://youtube.com/watch?v=HPPj6viIBmU"&gt;StarWars Kid&lt;/a&gt;&lt;br&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/262229-Psychology-of-Internet-Memes-amp-Sociology-of-Internet-Populations/'&gt;Psychology of Internet Memes &amp;amp; Sociology of Internet Populations&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/262229/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/262229-Psychology-of-Internet-Memes-amp-Sociology-of-Internet-Populations/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/262229-Psychology-of-Internet-Memes-amp-Sociology-of-Internet-Populations/</link><pubDate>Mon, 14 Apr 2008 15:23:51 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/262229-Psychology-of-Internet-Memes-amp-Sociology-of-Internet-Populations/</guid><evnet:views>1728</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/262229/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I was laying in bed last night thinking about the Internet (wow...I am a geek), and all of these fads that come and go. Rick Rolling being one of the most recent. Before that we had, and still have today, odd videos being submitted to youtube, which are then re-done over and over by countless other people.&lt;br&gt;&lt;br&gt;"I like turtles" being another. The list goes on and on. But why do we do this? Why do we feel so compelled to follow somebody else so easily?&lt;br&gt;&lt;br&gt;Curious about your guys' thoughts on the psychology behind this and why the internet population is so easily manipulated to do strange things.&lt;br&gt;&lt;br&gt;A Few Examples&lt;br&gt;&lt;br&gt;</evnet:previewtext><dc:creator>jsampsonPC</dc:creator><slash:comments>31</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/262229-Psychology-of-Internet-Memes-amp-Sociology-of-Internet-Populations/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/262229/Trackback.aspx</trackback:ping></item><item><title>Browser Refresh Wars (FF2,IE7,Safari-Win, and Opera9) [Browser Refresh Wars (FF2,IE7,Safari-Win, and Opera9)]</title><description>I've been working on a small project all day, and I noticed after an hour or so, my machine was running considerably slower. IE was responding fine, but FireFox was dragging its self around.&lt;br&gt;&lt;br&gt;I checked the memory usage, and FF2 was 300,000+!!! IE was a strong ~30,000, so I was a bit confused. Both browsers had the same page opened, but FF was freaking consuming ridiculous amounts of memory, so I decided to investigate.&lt;br&gt;&lt;br&gt;Looks like FF2 increases its memory usage everytime you refresh a page - even if the page is in cache. IE keeps its memory usage pretty stable.&lt;br&gt;&lt;br&gt;I decided to test 4 popular browsers with a single page and see how they do after 5 refreshes (most web-designer/developers do some serious refreshing all day long).&lt;br&gt;&lt;br&gt;
&lt;table cellpadding="10"&gt;
  &lt;tr&gt;
    &lt;td align="center"&gt;&lt;strong&gt;Browser&lt;/strong&gt;&lt;/td&gt;
    &lt;td align="center"&gt;&lt;strong&gt;Starting&lt;/strong&gt;&lt;/td&gt;
    &lt;td align="center"&gt;&lt;strong&gt;Refresh 1&lt;/strong&gt;&lt;/td&gt;
    &lt;td align="center"&gt;&lt;strong&gt;Refresh 2&lt;/strong&gt;&lt;/td&gt;
    &lt;td align="center"&gt;&lt;strong&gt;Refresh 3&lt;/strong&gt;&lt;/td&gt;
    &lt;td align="center"&gt;&lt;strong&gt;Refresh 4&lt;/strong&gt;&lt;/td&gt;
    &lt;td align="center"&gt;&lt;strong&gt;Refresh 5&lt;/strong&gt;&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;Firefox2&lt;/td&gt;
    &lt;td align="center"&gt;31,536k&lt;/td&gt;
    &lt;td align="center"&gt;38,432k&lt;/td&gt;
    &lt;td align="center"&gt;41,912k&lt;/td&gt;
    &lt;td align="center"&gt;47,068k&lt;/td&gt;
    &lt;td align="center"&gt;51,564k&lt;/td&gt;
    &lt;td align="center"&gt;56,700k&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;Internet Explorer 7&lt;/td&gt;
    &lt;td align="center"&gt;29,316k&lt;/td&gt;
    &lt;td align="center"&gt;30,244k&lt;/td&gt;
    &lt;td align="center"&gt;29,552k&lt;/td&gt;
    &lt;td align="center"&gt;30,356k&lt;/td&gt;
    &lt;td align="center"&gt;29,752k&lt;/td&gt;
    &lt;td align="center"&gt;30,212k&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;Safari for Windows&lt;/td&gt;
    &lt;td align="center"&gt;31,408k&lt;/td&gt;
    &lt;td align="center"&gt;34,036k&lt;/td&gt;
    &lt;td align="center"&gt;34,624k&lt;/td&gt;
    &lt;td align="center"&gt;34,880k&lt;/td&gt;
    &lt;td align="center"&gt;35,588k&lt;/td&gt;
    &lt;td align="center"&gt;36,132k&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;Opera 9&lt;/td&gt;
    &lt;td align="center"&gt;24,356k&lt;/td&gt;
    &lt;td align="center"&gt;28,788k&lt;/td&gt;
    &lt;td align="center"&gt;28,924k&lt;/td&gt;
    &lt;td align="center"&gt;29,020k&lt;/td&gt;
    &lt;td align="center"&gt;29,020k&lt;/td&gt;
    &lt;td align="center"&gt;29,116k&lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/262174-Browser-Refresh-Wars-FF2IE7Safari-Win-and-Opera9/'&gt;Browser Refresh Wars (FF2,IE7,Safari-Win, and Opera9)&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/262174/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/262174-Browser-Refresh-Wars-FF2IE7Safari-Win-and-Opera9/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/262174-Browser-Refresh-Wars-FF2IE7Safari-Win-and-Opera9/</link><pubDate>Thu, 10 Apr 2008 21:46:13 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/262174-Browser-Refresh-Wars-FF2IE7Safari-Win-and-Opera9/</guid><evnet:views>1230</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/262174/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I've been working on a small project all day, and I noticed after an hour or so, my machine was running considerably slower. IE was responding fine, but FireFox was dragging its self around.&lt;br&gt;&lt;br&gt;I checked the memory usage, and FF2 was 300,000+!!! IE was a strong ~30,000, so I was a bit confused. Both browsers had the same page opened, but FF was freaking consuming ridiculous amounts of memory, so I decided to investigate.&lt;br&gt;&lt;br&gt;Looks like FF2 increases its memory usage everytime you refresh a page - even if the page is in cache. IE keeps its memory usage pretty stable.&lt;br&gt;&lt;br&gt;</evnet:previewtext><dc:creator>jsampsonPC</dc:creator><slash:comments>6</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/262174-Browser-Refresh-Wars-FF2IE7Safari-Win-and-Opera9/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/262174/Trackback.aspx</trackback:ping></item><item><title>Awesome Portal Remix Song [Awesome Portal Remix Song]</title><description>Ever heard a song that you could play on repeat for hours and not get sick of?&lt;br&gt;&lt;br&gt;&lt;a href="http://www.tindeck.com/audio/filestore/c/cbyr-Victims_of_Science_-_The_Device_Has_Been_Modified.mp3"&gt;http://www.tindeck.com/audio/filestore/c/cbyr-Victims_of_Science_-_The_Device_Has_Been_Modified.mp3&lt;/a&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/262171-Awesome-Portal-Remix-Song/'&gt;Awesome Portal Remix Song&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/262171/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/262171-Awesome-Portal-Remix-Song/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/262171-Awesome-Portal-Remix-Song/</link><pubDate>Thu, 10 Apr 2008 19:33:20 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/262171-Awesome-Portal-Remix-Song/</guid><evnet:views>675</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/262171/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Ever heard a song that you could play on repeat for hours and not get sick of?&lt;br&gt;&lt;br&gt;&lt;a href="http://www.tindeck.com/audio/filestore/c/cbyr-Victims_of_Science_-_The_Device_Has_Been_Modified.mp3"&gt;http://www.tindeck.com/audio/filestore/c/cbyr-Victims_of_Science_-_The_Device_Has_Been_Modified.mp3&lt;/a&gt;</evnet:previewtext><dc:creator>jsampsonPC</dc:creator><slash:comments>3</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/262171-Awesome-Portal-Remix-Song/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/262171/Trackback.aspx</trackback:ping></item><item><title>My FIRST Bad Vista Experience [My FIRST Bad Vista Experience]</title><description>I was working on the computer one day (In Photoshop, I think), when (for some unknown reason), my desktop flickered, and all icons with the exception of my Recycling Bin vanished.&lt;br&gt;&lt;br&gt;I think, oh, maybe I need to "show desktop icons", but it was already checked. Just to be safe, I unchecked, and rechecked - still no icons.&lt;br&gt;&lt;br&gt;Did they get moved off the screen? I turned on "Auto arrange" - still no icons.&lt;br&gt;&lt;br&gt;WTF!? Where are my icons? Did they all get deleted? I navigate to my desktop in windows explorer, and whammo, they are ALL THERE.&lt;br&gt;&lt;br&gt;I've even used the old "reboot" trick - no help at all.&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;img src="http://www.sampsonresume.com/desktops/ghost-icons.jpg"&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/262115-My-FIRST-Bad-Vista-Experience/'&gt;My FIRST Bad Vista Experience&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/262115/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/262115-My-FIRST-Bad-Vista-Experience/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/262115-My-FIRST-Bad-Vista-Experience/</link><pubDate>Tue, 08 Apr 2008 15:35:53 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/262115-My-FIRST-Bad-Vista-Experience/</guid><evnet:views>1120</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/262115/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I was working on the computer one day (In Photoshop, I think), when (for some unknown reason), my desktop flickered, and all icons with the exception of my Recycling Bin vanished.&lt;br&gt;&lt;br&gt;I think, oh, maybe I need to "show desktop icons", but it was already checked. Just to be safe, I unchecked, and rechecked - still no icons.&lt;br&gt;&lt;br&gt;Did they get moved off the screen? I turned on "Auto arrange" - still no icons.&lt;br&gt;&lt;br&gt;WTF!? Where are my icons? Did they all get deleted? I navigate to my desktop in windows explorer, and whammo, they are ALL THERE.&lt;br&gt;&lt;br&gt;I've even used the old "reboot" trick - no help at all.&lt;br&gt;&lt;br&gt;&lt;br&gt;</evnet:previewtext><dc:creator>jsampsonPC</dc:creator><slash:comments>10</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/262115-My-FIRST-Bad-Vista-Experience/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/262115/Trackback.aspx</trackback:ping></item><item><title>Is &amp;quot;April Fools&amp;quot; any fun anymore? [Is &amp;quot;April Fools&amp;quot; any fun anymore?]</title><description>I mean, we all expect absurdity, don't we? And in the IT-world, where dream connections are made and broken everyday, we all expect to hear crap like "Microsoft purchased 38% shares in the iPhone!" or something silly...can anything be trusted on April 1st? Is the day any fun really?&lt;br&gt;&lt;br&gt;* I did convince my wife I had a son in another state living with his grandmother. Jacob Riley Sampson was the name I came up with on the spot - I even had a Phone Number for "Nanna &amp;amp; Jacob" to show and all.&lt;br&gt;&lt;br&gt;So maybe there are exceptions.&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/261993-Is-quotApril-Foolsquot-any-fun-anymore/'&gt;Is &amp;quot;April Fools&amp;quot; any fun anymore?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/261993/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/261993-Is-quotApril-Foolsquot-any-fun-anymore/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/261993-Is-quotApril-Foolsquot-any-fun-anymore/</link><pubDate>Tue, 01 Apr 2008 17:59:28 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/261993-Is-quotApril-Foolsquot-any-fun-anymore/</guid><evnet:views>674</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/261993/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I mean, we all expect absurdity, don't we? And in the IT-world, where dream connections are made and broken everyday, we all expect to hear crap like "Microsoft purchased 38% shares in the iPhone!" or something silly...can anything be trusted on April 1st? Is the day any fun really?&lt;br&gt;&lt;br&gt;* I did convince my wife I had a son in another state living with his grandmother. Jacob Riley Sampson was the name I came up with on the spot - I even had a Phone Number for "Nanna &amp;amp; Jacob" to show and all.&lt;br&gt;&lt;br&gt;So maybe there are exceptions.&lt;br&gt;</evnet:previewtext><dc:creator>jsampsonPC</dc:creator><slash:comments>3</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/261993-Is-quotApril-Foolsquot-any-fun-anymore/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/261993/Trackback.aspx</trackback:ping></item><item><title>Has Scoble Increased in Popularity, or Decreased? [Has Scoble Increased in Popularity, or Decreased?]</title><description>I, like many others probably, am subscribed to Scoble on Twitter, so I constantly get messages about his where-abouts, and stuff. I'm just curious as to what people thing regarding his attractfulness now...if it's increased, or degreased with time.&lt;br&gt;&lt;br&gt;I mean, he left MS to go to podtech, which if I'm not mistaken isn't as financially successful as he had hoped? And now he's with "FastCompany" or something?&lt;br&gt;&lt;br&gt;Does it seem like his candle is fading, or am I just drifting away from its luminescence?&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/261965-Has-Scoble-Increased-in-Popularity-or-Decreased/'&gt;Has Scoble Increased in Popularity, or Decreased?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/261965/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/261965-Has-Scoble-Increased-in-Popularity-or-Decreased/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/261965-Has-Scoble-Increased-in-Popularity-or-Decreased/</link><pubDate>Mon, 31 Mar 2008 18:45:41 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/261965-Has-Scoble-Increased-in-Popularity-or-Decreased/</guid><evnet:views>1797</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/261965/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I, like many others probably, am subscribed to Scoble on Twitter, so I constantly get messages about his where-abouts, and stuff. I'm just curious as to what people thing regarding his attractfulness now...if it's increased, or degreased with time.&lt;br&gt;&lt;br&gt;I mean, he left MS to go to podtech, which if I'm not mistaken isn't as financially successful as he had hoped? And now he's with "FastCompany" or something?&lt;br&gt;&lt;br&gt;Does it seem like his candle is fading, or am I just drifting away from its luminescence?&lt;br&gt;</evnet:previewtext><dc:creator>jsampsonPC</dc:creator><slash:comments>21</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/261965-Has-Scoble-Increased-in-Popularity-or-Decreased/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/261965/Trackback.aspx</trackback:ping></item><item><title>Storing text for online article database... [Storing text for online article database...]</title><description>Hey Niners,&lt;br&gt;&lt;br&gt;I'm working on an article database right now, and have introduced a bit of frustration into my day when I decided to offer the web-article as on-the-fly PDF's too.&lt;br&gt;&lt;br&gt;The article were all stored in the database as HTML. It's ugly, trust me. So I'm deciding what I want to do with them. The HTML is all wrong also, so I do have to go through and do some clean up regardless.&lt;br&gt;&lt;br&gt;But I recall being told in the past that articles should never contain ANY markup or css, but if that is the case, how would you write &lt;sup&gt;238&lt;/sup&gt;Pa without using the SUP tag?&lt;br&gt;&lt;br&gt;Just curious how you guys would design an article database beyond simply making a field for the title, author and text :)&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/261890-Storing-text-for-online-article-database/'&gt;Storing text for online article database...&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/261890/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/261890-Storing-text-for-online-article-database/</comments><link>http://channel9.msdn.com/forums/TechOff/261890-Storing-text-for-online-article-database/</link><pubDate>Thu, 27 Mar 2008 19:55:47 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/261890-Storing-text-for-online-article-database/</guid><evnet:views>1162</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/261890/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Hey Niners,&lt;br&gt;&lt;br&gt;I'm working on an article database right now, and have introduced a bit of frustration into my day when I decided to offer the web-article as on-the-fly PDF's too.&lt;br&gt;&lt;br&gt;The article were all stored in the database as HTML. It's ugly, trust me. So I'm deciding what I want to do with them. The HTML is all wrong also, so I do have to go through and do some clean up regardless.&lt;br&gt;&lt;br&gt;But I recall being told in the past that articles should never contain ANY markup or css, but if that is the case, how would you write &lt;sup&gt;238&lt;/sup&gt;Pa without using the SUP tag?&lt;br&gt;&lt;br&gt;</evnet:previewtext><dc:creator>jsampsonPC</dc:creator><slash:comments>10</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/261890-Storing-text-for-online-article-database/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/261890/Trackback.aspx</trackback:ping></item><item><title>Why close the &amp;quot;Ding Ding&amp;quot;? [Why close the &amp;quot;Ding Ding&amp;quot;?]</title><description>I just noticed &lt;a href="http://channel9.msdn.com/ShowPost.aspx?PostID=391069&gt;a thread on c9&lt;/a&gt; in which some niners were exploring ways to embed videos from outside sources (Something we've asked for time and time again), and it was locked...was there a rule broken or something? What is the reasoning behind this?&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/261737-Why-close-the-quotDing-Dingquot/'&gt;Why close the &amp;quot;Ding Ding&amp;quot;?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/261737/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/261737-Why-close-the-quotDing-Dingquot/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/261737-Why-close-the-quotDing-Dingquot/</link><pubDate>Thu, 20 Mar 2008 03:11:39 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/261737-Why-close-the-quotDing-Dingquot/</guid><evnet:views>778</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/261737/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I just noticed &lt;a href="/ShowPost.aspx?PostID=391069"&gt;a thread on c9&lt;/a&gt; in which some niners were exploring ways to embed videos from outside sources (Something we've asked for time and time again), and it was locked...was there a rule broken or something? What is the reasoning behind this?&lt;br&gt;</evnet:previewtext><dc:creator>jsampsonPC</dc:creator><slash:comments>9</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/261737-Why-close-the-quotDing-Dingquot/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/261737/Trackback.aspx</trackback:ping></item><item><title>&amp;quot;Searching 'Samson'......did you mean 'Sampson'?&amp;quot; [&amp;quot;Searching 'Samson'......did you mean 'Sampson'?&amp;quot;]</title><description>I'm about to start writing a small search engine within my site and I'm wanting to get more into assisting the user in finding the results they want.&lt;br&gt;&lt;br&gt;I have considered soundex() operations, but heard that they aren't always reliable, since longer more complex soundex() results may be truncated.&lt;br&gt;&lt;br&gt;I've also looked into Levenshtein Distance, but again have problems. Seems like to get a search-engine to find suggestions based upon their levenshtein-distance from the original search-term, you need to have a list of terms waiting to be compared to everybody's search term, and that could be nasty on the server forcing a levenshtein equation 1,000+ times everytime somebody submits a search.&lt;br&gt;&lt;br&gt;Even if you do the tiresome lookups, you'll get dozens of alternatives for each word - how do you decide which to suggest? Seems almost like I need to store search terms, and the number of their returned results in the database, and do levenshtein-comparisons against those, and sort the close ones by their number of last returned results...make sense?&lt;br&gt;&lt;br&gt;So I humble myself and come before you all today ;) anybody know how to do this in an efficient way?&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/261720-quotSearching-Samsondid-you-mean-Sampsonquot/'&gt;&amp;quot;Searching 'Samson'......did you mean 'Sampson'?&amp;quot;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/261720/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/261720-quotSearching-Samsondid-you-mean-Sampsonquot/</comments><link>http://channel9.msdn.com/forums/TechOff/261720-quotSearching-Samsondid-you-mean-Sampsonquot/</link><pubDate>Wed, 19 Mar 2008 14:49:24 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/261720-quotSearching-Samsondid-you-mean-Sampsonquot/</guid><evnet:views>838</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/261720/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I'm about to start writing a small search engine within my site and I'm wanting to get more into assisting the user in finding the results they want.I have considered soundex() operations, but heard that they aren't always reliable, since longer more complex soundex() results may be truncated.I've also looked into Levenshtein Distance, but again have problems. Seems like to get a search-engine to find suggestions based upon their levenshtein-distance from the original search-term, you need to have a list of terms waiting to be compared to everybody's search term, and that could be nasty on the&amp;#8230;</evnet:previewtext><dc:creator>jsampsonPC</dc:creator><slash:comments>4</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/261720-quotSearching-Samsondid-you-mean-Sampsonquot/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/261720/Trackback.aspx</trackback:ping></item><item><title>Re: Firefox 3 memory usage [Firefox 3 memory usage]</title><description>Oh Good Lord am I glad to hear that FF will begin using less memory. Just two days ago I was working in IE7, IE6 (In VirtualPC), Opera, Safari for Windows, and Firefox. Testing a webpage, you know :)&lt;br&gt;&lt;br&gt;IE7 was using about 14,000&lt;br&gt;Opera was at about 9,000&lt;br&gt;Safari was in at a whopping 87,000&lt;br&gt;And FireFox was just behind at around 80,000&lt;br&gt;&lt;br&gt;It was nasty, absolutely nasty. And firefox has had memory issues for a while now. I sure hope FF3 really does have drastic changes. I'll grant Safari in Win some credit, seeing how they aren't as mature as FF on windows, but regardless, much more is expected from them than this.&lt;br&gt;&lt;br&gt;Jonathan&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/261625-Firefox-3-memory-usage/'&gt;Firefox 3 memory usage&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/340383/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments></comments><link></link><pubDate>Thu, 13 Mar 2008 07:47:43 GMT</pubDate><guid isPermaLink="false"></guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/340383/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Oh Good Lord am I glad to hear that FF will begin using less memory. Just two days ago I was working in IE7, IE6 (In VirtualPC), Opera, Safari for Windows, and Firefox. Testing a webpage, you know :)IE7 was using about 14,000Opera was at about 9,000Safari was in at a whopping 87,000And FireFox was&amp;#8230;</evnet:previewtext><dc:creator>jsampsonPC</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://channel9.msdn.com/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/340383/Trackback.aspx</trackback:ping></item><item><title>VirtualMachine not seeing localhost, by name or ip... [VirtualMachine not seeing localhost, by name or ip...]</title><description>I just downloaded the IE6 virtual disk from Microsoft, and Virtual PC 2007. I've got XP Running now in a window, but it cannot see my machine by "localhost" or ip address. Anybody have this problem?&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/261607-VirtualMachine-not-seeing-localhost-by-name-or-ip/'&gt;VirtualMachine not seeing localhost, by name or ip...&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/261607/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/261607-VirtualMachine-not-seeing-localhost-by-name-or-ip/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/261607-VirtualMachine-not-seeing-localhost-by-name-or-ip/</link><pubDate>Tue, 11 Mar 2008 19:24:08 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/261607-VirtualMachine-not-seeing-localhost-by-name-or-ip/</guid><evnet:views>930</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/261607/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I just downloaded the IE6 virtual disk from Microsoft, and Virtual PC 2007. I've got XP Running now in a window, but it cannot see my machine by "localhost" or ip address. Anybody have this problem?&lt;br&gt;</evnet:previewtext><dc:creator>jsampsonPC</dc:creator><slash:comments>6</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/261607-VirtualMachine-not-seeing-localhost-by-name-or-ip/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/261607/Trackback.aspx</trackback:ping></item><item><title>When will C# Express support WPF? [When will C# Express support WPF?]</title><description>I would love to develop WPF applications and Silverlight applications at home, but the C# Express Edition doesn't currently support either of the two - does anybody know when it's coming? Or is there already a free tool that facilitates the development of WPF and Silverlight applications?&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/261563-When-will-C-Express-support-WPF/'&gt;When will C# Express support WPF?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/261563/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/261563-When-will-C-Express-support-WPF/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/261563-When-will-C-Express-support-WPF/</link><pubDate>Sun, 09 Mar 2008 22:52:52 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/261563-When-will-C-Express-support-WPF/</guid><evnet:views>1540</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/261563/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I would love to develop WPF applications and Silverlight applications at home, but the C# Express Edition doesn't currently support either of the two - does anybody know when it's coming? Or is there already a free tool that facilitates the development of WPF and Silverlight applications?&lt;br&gt;</evnet:previewtext><dc:creator>jsampsonPC</dc:creator><slash:comments>8</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/261563-When-will-C-Express-support-WPF/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/261563/Trackback.aspx</trackback:ping></item><item><title>Your top tech-moment of idiocy... [Your top tech-moment of idiocy...]</title><description>What's the dumbest tech-moment you've ever had? Here's mine:&lt;br&gt;&lt;br&gt;While in highschool I started getting into graphic design, and wanted to get into web-development. Problem was, I had absolutely no clue what web-development was, or how to go about getting started.&lt;br&gt;&lt;br&gt;I had a friend of mine who has a couple years developing pages when I had absolutely no experience what-so-ever. I asked him, "Darrell, will you make me a webpage for $20?" to which he responded, "Just learn the code and do it yourself."&lt;br&gt;&lt;br&gt;"The Code" he says? There's a code that is needed to make webpages? This was just a few weeks after getting my very first computer, so I was still and all-around computer-idiot.&lt;br&gt;&lt;br&gt;"Can you give me the code?" I asked, thinking there was a short series of keystrokes you type into MS-DOS, and *pop*, out comes a webpage. Yes, I seriously thought that.&lt;br&gt;&lt;br&gt;Along with that, I thought "HTML" stood for "Hotmail"*, and "SWF" Stood for "Star Wars File", since one of the earliest flash websites I visited was a Star Wars Website.&lt;br&gt;&lt;br&gt;So what was your pinnacle of stupidity in history?&lt;br&gt;&lt;br&gt;*when I finally started learning HTML, I told my friends I could write "Hotmail", and they should learn to do "Hotmail" with me&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/261421-Your-top-tech-moment-of-idiocy/'&gt;Your top tech-moment of idiocy...&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/261421/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/261421-Your-top-tech-moment-of-idiocy/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/261421-Your-top-tech-moment-of-idiocy/</link><pubDate>Mon, 03 Mar 2008 19:13:59 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/261421-Your-top-tech-moment-of-idiocy/</guid><evnet:views>4570</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/261421/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>What's the dumbest tech-moment you've ever had? Here's mine:&lt;br&gt;&lt;br&gt;While in highschool I started getting into graphic design, and wanted to get into web-development. Problem was, I had absolutely no clue what web-development was, or how to go about getting started.&lt;br&gt;&lt;br&gt;I had a friend of mine who has a couple years developing pages when I had absolutely no experience what-so-ever. I asked him, "Darrell, will you make me a webpage for $20?" to which he responded, "Just learn the code and do it yourself."&lt;br&gt;&lt;br&gt;</evnet:previewtext><dc:creator>jsampsonPC</dc:creator><slash:comments>66</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/261421-Your-top-tech-moment-of-idiocy/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/261421/Trackback.aspx</trackback:ping></item><item><title>Developing Silverlight w/o VS2008 [Developing Silverlight w/o VS2008]</title><description>I don't have VS2008 at my new job, but I would like to work with silverlight as an possible medium of presenting videos. Is there another way to develop silverlight without VS2008 that isn't a complete headache? I found out today I cannot use the Expression versions to develop Silverlight apps, so I'm kinda sitting on my hands right now...&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/261420-Developing-Silverlight-wo-VS2008/'&gt;Developing Silverlight w/o VS2008&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/261420/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/261420-Developing-Silverlight-wo-VS2008/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/261420-Developing-Silverlight-wo-VS2008/</link><pubDate>Mon, 03 Mar 2008 18:58:12 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/261420-Developing-Silverlight-wo-VS2008/</guid><evnet:views>840</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/261420/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I don't have VS2008 at my new job, but I would like to work with silverlight as an possible medium of presenting videos. Is there another way to develop silverlight without VS2008 that isn't a complete headache? I found out today I cannot use the Expression versions to develop Silverlight apps, so I'm kinda sitting on my hands right now...&lt;br&gt;</evnet:previewtext><dc:creator>jsampsonPC</dc:creator><slash:comments>3</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/261420-Developing-Silverlight-wo-VS2008/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/261420/Trackback.aspx</trackback:ping></item><item><title>Prado (PHP) framework and .NET (Any cross-users?) [Prado (PHP) framework and .NET (Any cross-users?)]</title><description>I'm doing some research on different PHP Frameworks, and I came across &lt;a href="http://www.xisc.com/"&gt;Prado &lt;/a&gt;today. I checked out Symfony, CodeIgniter and some others, but Prado stands out in that it resembles .NET pretty closely. Check out this example provided on their website:&lt;br&gt;&lt;br&gt;&lt;b&gt;Codebehind:&lt;/b&gt;&lt;br&gt;class LoginPage extends TPage {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; public function loginclicked($sender,$param)&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;  $username = $this-&amp;gt;Username-&amp;gt;Text;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;  $password = $this-&amp;gt;Password-&amp;gt;Text;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;  //do login stuff&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;}&lt;br&gt;&lt;br&gt;&lt;b&gt;Markup:&lt;/b&gt;&lt;br&gt;&amp;lt;com:TForm&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;fieldset&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;  &amp;lt;legend&amp;gt;Login&amp;lt;/legend&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;lt;label&amp;gt;Username:&amp;lt;/label&amp;gt;&amp;lt;br/&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;  &amp;lt;com:TTextBox ID="Username" /&amp;gt;&amp;lt;br/&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;  &amp;lt;label&amp;gt;Password:&amp;lt;/label&amp;gt;&amp;lt;br/&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;  &amp;lt;com:TTextBox ID="Password" TextMode="Password" /&amp;gt;&amp;lt;br/&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;  &amp;lt;com:TButton Text="Login" OnClick="loginclicked" /&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/fieldset&amp;gt;&lt;br&gt;&amp;lt;/com:TForm&amp;gt;&lt;br&gt;&lt;br&gt;Anybody ever used this framework? What are your experiences with it?&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/261277-Prado-PHP-framework-and-NET-Any-cross-users/'&gt;Prado (PHP) framework and .NET (Any cross-users?)&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/261277/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/261277-Prado-PHP-framework-and-NET-Any-cross-users/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/261277-Prado-PHP-framework-and-NET-Any-cross-users/</link><pubDate>Wed, 27 Feb 2008 16:45:55 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/261277-Prado-PHP-framework-and-NET-Any-cross-users/</guid><evnet:views>1579</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/261277/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I'm doing some research on different PHP Frameworks, and I came across &lt;a href="http://www.xisc.com/"&gt;Prado &lt;/a&gt;today. I checked out Symfony, CodeIgniter and some others, but Prado stands out in that it resembles .NET pretty closely. Check out this example provided on their website:&lt;br&gt;&lt;br&gt;&lt;b&gt;Codebehind:&lt;/b&gt;&lt;br&gt;class LoginPage extends TPage {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; public function loginclicked($sender,$param)&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;  $username = $this-&amp;gt;Username-&amp;gt;Text;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;  $password = $this-&amp;gt;Password-&amp;gt;Text;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;  //do login stuff&lt;br&gt;</evnet:previewtext><dc:creator>jsampsonPC</dc:creator><slash:comments>7</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/261277-Prado-PHP-framework-and-NET-Any-cross-users/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/261277/Trackback.aspx</trackback:ping></item><item><title>Tracing Vista in Untraceable, The Movie. [Tracing Vista in Untraceable, The Movie.]</title><description>I watched &lt;a href="http://www.sonypictures.com/movies/untraceable/index.html"&gt;Untraceable &lt;/a&gt;last night and counted four instances of the Windows Vista "The Wow Starts Now" webpage. It was getting a little funny.&lt;br&gt;&lt;br&gt;The movie is about a Cyber-crime FBI Agent, etc. She's a 1337 h4x0r, basically. At home, while she's off doing something in the bathroom, you see her computer right next to her window in the bedroom. All of a sudden, a new browser window opens to the Vista homepage, stays for a second, then closes. Nobody at the computer.&lt;br&gt;&lt;br&gt;When she's at work, she has the "The WOW Starts Now" webpage as her default homepage, so when she opens IE7 to catch some predators, it by default goes to the Vista homepage.&lt;br&gt;&lt;br&gt;I counted 4 instances of this. Additionally, Windows Vista was VERY prominant in the video. Whenever you see a computer, it's clearly vista. Large Criminal-catching monitors in the office plastered in Vista.&lt;br&gt;&lt;br&gt;At one point the FBI Agent is discussing tactics with a room full of other FBI Agents watching as She stands infront of a brightly illuminated screen of Aero and the default Vista wallpaper :)&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/260646-Tracing-Vista-in-Untraceable-The-Movie/'&gt;Tracing Vista in Untraceable, The Movie.&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/260646/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/260646-Tracing-Vista-in-Untraceable-The-Movie/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/260646-Tracing-Vista-in-Untraceable-The-Movie/</link><pubDate>Wed, 30 Jan 2008 15:25:02 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/260646-Tracing-Vista-in-Untraceable-The-Movie/</guid><evnet:views>2520</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/260646/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I watched &lt;a href="http://www.sonypictures.com/movies/untraceable/index.html"&gt;Untraceable &lt;/a&gt;last night and counted four instances of the Windows Vista "The Wow Starts Now" webpage. It was getting a little funny.&lt;br&gt;&lt;br&gt;The movie is about a Cyber-crime FBI Agent, etc. She's a 1337 h4x0r, basically. At home, while she's off doing something in the bathroom, you see her computer right next to her window in the bedroom. All of a sudden, a new browser window opens to the Vista homepage, stays for a second, then closes. Nobody at the computer.&lt;br&gt;&lt;br&gt;</evnet:previewtext><dc:creator>jsampsonPC</dc:creator><slash:comments>23</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/260646-Tracing-Vista-in-Untraceable-The-Movie/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/260646/Trackback.aspx</trackback:ping></item></channel></rss>