<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>VB - yesterday, today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx</link><description>A couple of weeks ago, I was doing a couple of on-line chat sessions with our worldwide MVPs. This was the first time I was doing one of these sessions and going in I wasn&amp;#8217;t sure how effective or productive such sessions would be. It was incredible</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>re: VB - yesterday, today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#204633</link><pubDate>Mon, 02 Aug 2004 04:00:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:204633</guid><dc:creator>drebin</dc:creator><description>You know why this is so sad and frustrating to hear?&lt;br&gt;&lt;br&gt;I consider myself an open-minded developer and feel comfortable writing in several languages. I am SURROUNDED by developers at work who would continue using VB3 if our manager would let them. You know the kind, the &amp;quot;if it ain't broke, don't fix it&amp;quot; kind of people. Mind you, people that work in I.T. thinking like that - which just boggles my mind.. In a career where things change every 6 months.. they hate change!!&lt;br&gt;&lt;br&gt;Can you imagine in the year 2004, a duh-veloper setting up a BRAND NEW file download with a vendor using a flat-file format (as in, fixed width or delimited? When both sides are VB6? No XML.. In fact, I got one guy who goes on and on about how XML is a fad and that the tried-and-true mainframe formats &amp;quot;just work&amp;quot;.. yeah, after you write a &amp;quot;write-once-use-once&amp;quot; parser for this PARTICULAR download. ugh.&lt;br&gt;&lt;br&gt;&lt;br&gt;Anyhow, I pushed hard with my manager to adopt C#. Here are some points:&lt;br&gt;&lt;br&gt;PROS:&lt;br&gt;- If developers are thrown into something new, it will force them to learn the &amp;quot;right&amp;quot; way to do things - no falling into old habits.&lt;br&gt;- C# has very few &amp;quot;assumptions&amp;quot;, you have to spell everything out (curly braces, semi-colons, array bounds, etc)&lt;br&gt;- There seems to be a LOT more help and samples in C# (both with MS and on Usenet)&lt;br&gt;&lt;br&gt;CONS:&lt;br&gt;- All the opposites of the above obviously.&lt;br&gt;- There will be a learning curve (but there will ALREADY be a learning curve because VB.NET is different enough from VB6)&lt;br&gt;&lt;br&gt;So - alas, he didn't buy it. So now we have &amp;quot;point 'n click&amp;quot; developers (you know the kind, that started from excel formulas, then wrote a department Access database and are now VB developers) that are doing the same bad coding, because VB.NET lets them get away with it.&lt;br&gt;&lt;br&gt;In general, I have always been really turned off by VB because A) it was so loosely typed (use of variants - EVERYWHERE!!) and B) because of assumptions..&lt;br&gt;&lt;br&gt;For example - right now, off the top of your head.. when you declare an array in VB6, is it 1-based or 0-based? What about an enum, if you don't declare it?? Not sure? Neither am I - and I spent several hours debugging an app one day because I thought one thing (I assumed) and the program was doing something different.. (one or both of those used to be/is 1-based... I hope I'm thinking of the right thing?)&lt;br&gt;&lt;br&gt;Point is, &amp;quot;assumptions are the root of most all software bugs&amp;quot; is what I always say. And with C# - there is just no assuming anything. Yes, you have have to type a little bit more - but it's for the greater good. It's for the good of the developer that will be modifying your code 2 years from now.&lt;br&gt;&lt;br&gt;(sigh) This post made me so sad.. I wish VB would just go away, technically, it just propagates laziness and shortcutting.. which for software development.. that just shouldn't be tolerated.&lt;br&gt;&lt;br&gt;But I know VB is here to stay, I think I've accepted it now. :-)&lt;br&gt;&lt;br&gt;</description></item><item><title>re: VB - yesterday, today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#205933</link><pubDate>Mon, 02 Aug 2004 16:46:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:205933</guid><dc:creator>qwerty</dc:creator><description>To tell the truth, drebin, your post was sad and frustrating for me to hear. :-)  I feel that people trash VB.net simply because VB6- was a 2nd class language.  I agree that arrays in VB are a bit strange: dim foo(6) gives you a zero based array of length 7!  But every language has its quirks, you just deal with them.  Bad code can be written in any language.&lt;br&gt;&lt;br&gt;VB.net gives you all the benifits of .net, like 1st class threading, a good event model, good exception model, and a great set of base classes.&lt;br&gt;&lt;br&gt;My language of the heart is and probably always will be C++.  But when I don't need MC++'s power for easy IJW access to Win32 or direct access to the data, I choose VB.net.&lt;br&gt;&lt;br&gt;Personally I don't see any reason for c# to exist and am very happy that MS is not blindy pushing it.</description></item><item><title>re: VB - yesterday, today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#206157</link><pubDate>Mon, 02 Aug 2004 21:14:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:206157</guid><dc:creator>drebin</dc:creator><description>Best quote I've seen today: &amp;quot;Bad code can be written in any language&amp;quot; - nice!! :-)&lt;br&gt;&lt;br&gt;I agree, VB.NET is *MUCH* better than VB6, but there are many things I still don't like. VB.NET is still very wordy (with if/end if, instead of curly braces, etc) and it doesn't &amp;quot;encourage&amp;quot; a developer to become better, it encourages them to get away with as much as possible - so long as it still compiles.&lt;br&gt;&lt;br&gt;I guess I have more of a problem with the &amp;quot;typical&amp;quot; VB developer - it's almost a lifestyle choice or something.&lt;br&gt;&lt;br&gt;And for people that don't like C# - how can not LOVE the simplicity and clarity of semi-colons and curly braces!! There is just nothing to assume or explain - it's just so clear (for me).. :-)</description></item><item><title>re: VB - yesterday, today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#206600</link><pubDate>Tue, 03 Aug 2004 07:34:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:206600</guid><dc:creator>Kan</dc:creator><description>One word: Reflector</description></item><item><title>re: VB - yesterday, today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#207148</link><pubDate>Tue, 03 Aug 2004 16:17:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:207148</guid><dc:creator>Pete King</dc:creator><description>Isnt that the point, that you choose the .Net language that is right for you, as they are of equal power?&lt;br&gt;&lt;br&gt;Kind of makes VB.Net bashing pointless, dont you think?</description></item><item><title>Soma's Blog</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#207317</link><pubDate>Tue, 03 Aug 2004 23:49:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:207317</guid><dc:creator>JRoxe's WebLog</dc:creator><description /></item><item><title>re: VB - yesterday, today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#207353</link><pubDate>Tue, 03 Aug 2004 21:45:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:207353</guid><dc:creator>King Dave</dc:creator><description>Well, curly braces don't tell you what you are enclosing at first sight. If you are in the process of looking at someone else's code, End If and End With makes for better readability.</description></item><item><title>Soma on VB</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#207489</link><pubDate>Wed, 04 Aug 2004 03:56:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:207489</guid><dc:creator>Panopticon Central</dc:creator><description>Will the circle be unbroken...</description></item><item><title>re: VB - yesterday, today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#207560</link><pubDate>Wed, 04 Aug 2004 02:37:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:207560</guid><dc:creator>Chris Haas</dc:creator><description>i agree with qwerty's comments, VB.Net is being bashed because of its predecessor VB6. but i think the team did a great job of cleaning out the weird or stupid things that made VB developers write bad code. and with option strict/explicit its 100 times easier to find mistakes in code. my personal policy is to always have it on, i even use option explicit when i'm writing a quick VBS program. but these options aren't required, of course, so people can still do non-obvious things.&lt;br&gt;&lt;br&gt;of interesting note, while VB might be more verbose, which uses more lines of code? out of the box C# puts curly braces on their own lines adding an extra line per block. neither is bad, just unique to the language.</description></item><item><title>re: VB - yesterday, today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#207685</link><pubDate>Wed, 04 Aug 2004 06:58:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:207685</guid><dc:creator>RichB</dc:creator><description>&amp;gt; portions of the VS IDE written in VB&lt;br&gt;&lt;br&gt;None of the C# Express assemblies reference the VB runtime libraries - so I suspect C# Express doesn't contain the portions written in VB.&lt;br&gt;&lt;br&gt;What did surprise me was the vast number of assemblies that were managed. Many more than in VS.Net 2003.</description></item><item><title>re: VB - yesterday, today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#207777</link><pubDate>Wed, 04 Aug 2004 08:28:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:207777</guid><dc:creator>ArildE</dc:creator><description>I'm not sure converting all VB developers to C# will make the world a better place to program. C# does not define how to program, how to naming variables and functions or how to split your code up layers, objects etc. I think the problem is not the VB.Net language itself, but the lack of &amp;quot;strict programming policy&amp;quot;. drebin,  I believe the best way to control programmers (and yes, I'm a VB programmer myself (v1.0-&amp;gt;.Net) are to tell them that this is our coding standard (naming convention, not rules etc) and that you have to follow it! </description></item><item><title>re: VB - yesterday, today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#207860</link><pubDate>Wed, 04 Aug 2004 12:33:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:207860</guid><dc:creator>drebin</dc:creator><description>ArildE,&lt;br&gt;&lt;br&gt;That's all well and good in an academic setting - but in the real world, if you've seen the truly horrible.. I mean REALLY bad code that I have.. you'd see there is not hope.&lt;br&gt;&lt;br&gt;So for the bad VB developers (the &amp;quot;point-n-click developers&amp;quot; as they are called) - I was sort of hoping VB.NET would thin the herd. Maybe it would be too hard to learn, and then they would go do something else half-assed for a living.. but Microsoft made it too easy and they are migrating!! &lt;br&gt;&lt;br&gt;Mgmt asked me and a coworker to come up with some standards and conventions.. we ran them by everyone and published it to the all the developers.. we got a bunch of &amp;quot;yes's&amp;quot; - and to this day, no one follows it... It ends up coming across petty if you try to enforce it.&lt;br&gt;&lt;br&gt;I realize that there will always be bad developers - but VB just makes it soo easy.. it's a powerful language that almost encourages people to take shortcuts (which is good for MS, bad for companies).. like the Option Explicit/Strict thing.. In what other language do you not have to declare variables?!! Alright, there are a couple - but those are curly brace languages (so that makes it better somehow?).. Anyhow... :-)</description></item><item><title>re: VB - yesterday, today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#207918</link><pubDate>Wed, 04 Aug 2004 13:43:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:207918</guid><dc:creator>ArildE</dc:creator><description>Oh yeah. I have seen truly horrible VB code many times (including some of my own “ancient” code) and I have also introduced code standards that no one (except me) would use. I have also heard about R&amp;amp;D department managers that talk big about their code standards and in the same sentence (almost proudly) mention that they don’t use it.&lt;br&gt;I can see your point in switching to C# (or any other language for that matter), but without any guidance on how to make good code, a bad developer will more or less stay bad. In the big picture, bad code is made because of ignorance and/or attitude. Since producing readable, maintainable and bug free code is actually a part of a company’s face to the world, it should be taken more seriously by both management and developers. Why make e.g. a coding standard if its usage is “optional”? To push things to extremes, it should be: “Use it or you’re fired!” (I don’t mean that programmers should be “dictated” how to program, but some basic rules should be mandatory)&lt;br&gt;</description></item><item><title>re: VB - yesterday, today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#208033</link><pubDate>Wed, 04 Aug 2004 16:21:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:208033</guid><dc:creator>Weevie</dc:creator><description>To be honest if you have 'pont and click' developers in your team I'd wonder about your companie's recruitment policy.  All the developers I work with are professional VB developers who have been involved in enterprise aplication writing for at least a couple of years.  &lt;br&gt;&lt;br&gt;As for curly braces...oh...when will people understand.  I've seen a lot of ex-BCPL coders who transferred to C++ writing a hell of a lot of messy code.  The good C++ code-monkeys write good code, the good VB code monkeys write good code, the bad of both brands write nausea-inducing code...The good workman does not give all the credit to his/her tools!&lt;br&gt;&lt;br&gt;</description></item><item><title>re: VB - yesterday, today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#208034</link><pubDate>Wed, 04 Aug 2004 16:22:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:208034</guid><dc:creator>Weevie</dc:creator><description>Ooops type in 'company's' I'm not illiterate you know! ;o&amp;gt;</description></item><item><title>re: VB - yesterday, today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#208036</link><pubDate>Wed, 04 Aug 2004 16:23:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:208036</guid><dc:creator>Weevie</dc:creator><description>Ooops...again! :-O</description></item><item><title>re: VB - yesterday, today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#208086</link><pubDate>Wed, 04 Aug 2004 17:13:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:208086</guid><dc:creator>Ex-VB guy</dc:creator><description>I am a VB programmer.  I have fought the &amp;quot;My language is not inferior to yours&amp;quot; battle for a decade.  Four words for you - &amp;quot;On Error Resume Next&amp;quot;.  VB.Net allows this and probably will for perpetuity.  Constructs like this make it impossible for us to win this argument.  Try getting away with a dynamic GOTO in C# without using unsafe code...</description></item><item><title>re: VB - yesterday, today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#208126</link><pubDate>Wed, 04 Aug 2004 18:01:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:208126</guid><dc:creator>ArildE</dc:creator><description>Ex-VB guy (if you are a VB programmer, why is your name Ex-VB?) :),&lt;br&gt;&lt;br&gt;If a bad VB programmer switch to C# and can't find On Error Resume Next, are you so sure he will use Try-Catch instead? It's not impossible to create a program without using a single line of structured error handling.&lt;br&gt;&lt;br&gt;&lt;br&gt;</description></item><item><title>The language debate Genie strikes again</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#208395</link><pubDate>Thu, 05 Aug 2004 00:01:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:208395</guid><dc:creator>Mike Gale</dc:creator><description>I believe the world will (and should) go to a state where programming is like reading, writing and arithmetic.  Everyone does it.  There's a spectrum of competence.  Get over it. Live with it.&lt;br&gt;&lt;br&gt;It really concerns me when I see language bashing and a desire to exclude programmers.  VB.NET is good, C# is good, Java is good, J is good...  I like to see people who read several languages.&lt;br&gt;&lt;br&gt;All this obscures the point.  MS is committed to VB.NET.  That's great.  For those who use it, are comfortable with it (and are maybe learning to love it) there is less stress.  The features in 2.0 look great, time saving, power bringing.&lt;br&gt;&lt;br&gt;Now it's time to hope for the features of X# (combine OO, XML and relational features in the basic type system) and the amazing power you get APL/J with defining your operators.  (As long as we don't let the nay sayers destroy human progress I'm hoping I see these things in both C# and VB.NET in my lifetime!)</description></item><item><title>re: VB - yesterday, today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#208448</link><pubDate>Thu, 05 Aug 2004 01:05:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:208448</guid><dc:creator>drebin</dc:creator><description>Weevie,&lt;br&gt;&lt;br&gt;It's more complicated than that. Most people I used to work with were at the company for 20-30 years, most straight out of college. We've had FIVE rounds of layoffs and they got rid of all the expensive old-timers and kept only a couple competent/expensive developers.. the rest are there, just because it's cheap and they manage to eek out SOME work.. and apperently, that's good enough.&lt;br&gt;&lt;br&gt;I understand this is a negative environment for me to be in, but I have a lot of other things going on - and I have a lot of freedom where I am - which is what I need right now. So right now, it's a struggle for me to keep up with technology, but doing it in my free time, really..</description></item><item><title>re: VB - yesterday, today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#208807</link><pubDate>Thu, 05 Aug 2004 12:21:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:208807</guid><dc:creator>Weevie</dc:creator><description>Anyway...&lt;br&gt;&lt;br&gt;Good coders write good code and bad coders write bad code.&lt;br&gt;&lt;br&gt;And I'm sorry anybody who thinks that the question of whther you have End... or } as a code block delimiter has way missed the point of good coding &amp;lt;sigh&amp;gt;</description></item><item><title>re: VB - yesterday, today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#208808</link><pubDate>Thu, 05 Aug 2004 12:22:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:208808</guid><dc:creator>Weevie</dc:creator><description>(Damn I always think of things after I hit the submit! ;o&amp;gt;)&lt;br&gt;&lt;br&gt;...and if Steve Connell is using VB examples in his new edition of Code Complete then that's good enough for me! ;o&amp;gt;</description></item><item><title>Don't use Visual Basic .NET, use C# (Microsoft said)</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#209671</link><pubDate>Fri, 06 Aug 2004 10:15:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:209671</guid><dc:creator>Richard Clark</dc:creator><description /></item><item><title>VB - yesterday, today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#209675</link><pubDate>Fri, 06 Aug 2004 10:32:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:209675</guid><dc:creator>public abstract sergeb.Blog() {};</dc:creator><description /></item><item><title>VB - yesterday, today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#209676</link><pubDate>Fri, 06 Aug 2004 10:33:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:209676</guid><dc:creator>public abstract sergeb.Blog() {};</dc:creator><description /></item><item><title>re: VB - yesterday, today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#210229</link><pubDate>Fri, 06 Aug 2004 22:08:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:210229</guid><dc:creator>Richard Clark</dc:creator><description>We meet during Imagine Cup 2004 (French Judge). But as I said in my blog (&lt;a target="_new" href="http://blogs.developpeur.org/richardc/archive/2004/08/06/2229.aspx"&gt;http://blogs.developpeur.org/richardc/archive/2004/08/06/2229.aspx&lt;/a&gt;), all MS divisions didn't have the same opinion, and show that C# IS the first AND only .NET language.&lt;br&gt;&lt;br&gt;Take a look at DirectX 9.0c SDK, and you will know!!!!&lt;br&gt;&lt;br&gt;I'm sorry but it's reality !!!!</description></item><item><title>re: VB - yesterday, today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#210460</link><pubDate>Sat, 07 Aug 2004 07:57:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:210460</guid><dc:creator>Bill Trowbridge</dc:creator><description>In order to get some of the duh-velopers to use standards, set up a complete automated build system and use FxCop (probably with some custom rules) to report any non-standard uses.  In other words, move the whole organization to a more professional development environment where non-compliance is measureable.</description></item><item><title>Soma discusses the future of VB</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#211091</link><pubDate>Mon, 09 Aug 2004 09:26:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:211091</guid><dc:creator>Code/Tea/Etc...</dc:creator><description /></item><item><title>Soma discusses the future of VB</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#211094</link><pubDate>Mon, 09 Aug 2004 09:28:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:211094</guid><dc:creator>Code/Tea/Etc...</dc:creator><description /></item><item><title>re: VB - yesterday, today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#211106</link><pubDate>Mon, 09 Aug 2004 06:55:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:211106</guid><dc:creator>RMartinon</dc:creator><description>Well ... certainly seems like a hot topic.&lt;br&gt;&lt;br&gt;I'm afraid I can't relate with the people here who feel the need to degrade the chosen tools of others. I've seen successful projects both with VB and C#, and didn't notice any big difference in efficiency (but the VB guys' GUIs were somewhat better, due to legacy experience in that field ;p).&lt;br&gt;&lt;br&gt;I'm also having trouble believing you could be proficient with the .NET framework and not be able to understand and code in both languages after some time. I guess every coder keeps a little better productivity in the language tree he comes from, but to me .NET learning curve is 20% langage and 80% framework anyway.&lt;br&gt;&lt;br&gt;</description></item><item><title>re: VB - yesterday, today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#211130</link><pubDate>Mon, 09 Aug 2004 08:10:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:211130</guid><dc:creator>ROliva</dc:creator><description>You, who thinks VB is a old thing, seems to lost perspective. Think about Computing Science may be not a career in the future, since it's becoming a must in every career. So, there must be a simple, familiar language to choose in .NET. If we have dialects in our real world, where we commit mistakes but the other part recognizes our idea, why computer languages must be so strict for everyone? I got a good time developing in c++ with gnu compiler for dos, and I accept c++ is more powerfull than VB, but it's harder to learn and a lot less productive than VB.&lt;br&gt;&lt;br&gt;I think VB.NET is the best choice for the most of the cases in the near future. C# is a good choice either.. but as I always say, my father learnt programming with Basic and it worked. &lt;br&gt;&lt;br&gt;VB.NET is more democratic.. it lets you make mistakes! and learn from them!</description></item><item><title>re: VB - yesterday, today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#211601</link><pubDate>Tue, 10 Aug 2004 04:13:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:211601</guid><dc:creator>IamLamb</dc:creator><description>Drebin, it seems that most of your issues are related moreso to the management of the development environment than the actual technology. &lt;br&gt;&lt;br&gt;In my mind, there will always be the pro's and con's of any language, and people will always have preference for one over another. Some people prefer the verbosity of VB.NET over C#, some don't. Who cares?&lt;br&gt;&lt;br&gt;If standards are not adopted when introduced, that is not the fault of the language. That is the fault of the management and senior developers - those that influence the standards a developer follows (if any).&lt;br&gt;&lt;br&gt;Now to continue the general rhetoric, the chosen language is irrelevant. Programming is about being smarter than syntax. Anyone can program, a fact that is becoming more and more evident. Anyone can sit at a desk and bash something hard enough until it works. But few people can actually program smartly. That has nothing to do with the language.</description></item><item><title>re: VB - yesterday, today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#211880</link><pubDate>Tue, 10 Aug 2004 13:45:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:211880</guid><dc:creator>Alan Michas</dc:creator><description>I started using BASIC before the IBM PC was released in 1981 (since 1973 in fact) and it's fantastic to see how far the language has progressed over the last 30 years. VB must surely be the language of choice for all applications development. Whenever anyone mentions C, C++, C# or any of it's variants the arguments are always about elegant code, concise code etc. As an application developer I think that there is nothing more elegant than having blocks of code that are clearly and unambiguosly marked eg IF/END IF, FOR/NEXT, SELECT/END SELECT etc. I haven't used a GOTO statement in my code since the late 70's. How many C programmers can make that kind of statement. To the VB Team. Keep up the GREAT work you have been doing. Viva VB.NET</description></item><item><title>re: VB - yesterday, today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#211884</link><pubDate>Tue, 10 Aug 2004 13:51:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:211884</guid><dc:creator>Alan Michas</dc:creator><description>I started using BASIC before the IBM PC was released in 1981 (since 1973 in fact) and it's fantastic to see how far the language has progressed over the last 30 years. VB must surely be the language of choice for all applications development. Whenever anyone mentions C, C++, C# or any of it's variants the arguments are always about elegant code, concise code etc. As an application developer I think that there is nothing more elegant than having blocks of code that are clearly and unambiguosly marked eg IF/END IF, FOR/NEXT, SELECT/END SELECT etc. I haven't used a GOTO statement in my code since the late 70's. How many C programmers can make that kind of statement. To the VB Team. Keep up the GREAT work you have been doing. Viva VB.NET</description></item><item><title>re: VB - yesterday, today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#211885</link><pubDate>Tue, 10 Aug 2004 13:51:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:211885</guid><dc:creator>Alan Michas</dc:creator><description>I started using BASIC before the IBM PC was released in 1981 (since 1973 in fact) and it's fantastic to see how far the language has progressed over the last 30 years. VB must surely be the language of choice for all applications development. Whenever anyone mentions C, C++, C# or any of it's variants the arguments are always about elegant code, concise code etc. As an application developer I think that there is nothing more elegant than having blocks of code that are clearly and unambiguosly marked eg IF/END IF, FOR/NEXT, SELECT/END SELECT etc. I haven't used a GOTO statement in my code since the late 70's. How many C programmers can make that kind of statement. To the VB Team. Keep up the GREAT work you have been doing. Viva VB.NET</description></item><item><title>re: VB - yesterday, today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#211926</link><pubDate>Tue, 10 Aug 2004 14:38:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:211926</guid><dc:creator>Student Dave</dc:creator><description>IamLamb i think hit the nail on the head&lt;br&gt;&lt;br&gt;i look at C# samples, convert them into VB.net and they look so similar. ok you don;t have the curly braces, but it is doing the same thing. give or take a line. if a programmer puts the code into blocks and correct indents (which .net indents now for u) both languages are similar to understand&lt;br&gt;&lt;br&gt;in the end the program is as good as the programmers behind it. </description></item><item><title>The Future of VB - From A Man Who Knows</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#212244</link><pubDate>Tue, 10 Aug 2004 23:50:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:212244</guid><dc:creator>Rob Windsor's Weblog</dc:creator><description /></item><item><title>re: VB - yesterday, today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#212435</link><pubDate>Wed, 11 Aug 2004 02:36:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:212435</guid><dc:creator>drebin</dc:creator><description>And that is the problem - this language ALLOWS people to continue being bad developers (versus frustrating them enough to switch careers like they should do!!)&lt;br&gt;&lt;br&gt;I worked almost all day helping out a coworker (knows ONLY VB and some ASP) writing a whole app in VB.NET - he was using &amp;quot;line input&amp;quot; (versus System.IO.FileStream) and &amp;quot;goto's&amp;quot; everywhere and just all the silly backwards-compatible stuff they let VB.NET get away with..&lt;br&gt;&lt;br&gt;I guess just like after 9/11 - if you are harbouring terrorists - you'll be treated like a terrorist.. since VB continues to let bad programmers write bad code - VB is just as much to blame!!!</description></item><item><title>re: VB - yesterday, today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#212453</link><pubDate>Wed, 11 Aug 2004 03:19:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:212453</guid><dc:creator>KenLin</dc:creator><description>Opss~~~ another fire between C# and VB.NET&lt;br&gt;&lt;br&gt;When I was in Global MVP Summit 2004, I heard the same question on the argue about C# and VB.NET which has mention by Somasegar early in this blog. It was the first time I heard about this topic. I am from Hong Kong and I don't see any argue between C# and VB.NET. However, I do agree on one happening, almost all of the job requirement is C#, but not VB.NET in Hong Kong. I did explain to the employer or the interviewer that &amp;quot;We do .NET application the same with VB.NET or C#&amp;quot;. But.....they still think that C# is much better than VB.NET. I feel bad on this.</description></item><item><title>re: VB - yesterday, today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#212601</link><pubDate>Wed, 11 Aug 2004 11:16:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:212601</guid><dc:creator>Mr. VB</dc:creator><description>Microsoft drops C#&lt;br&gt;&lt;a target="_new" href="http://weblogs.asp.net/hpreishuber/archive/2004/07/05/173067.aspx"&gt;http://weblogs.asp.net/hpreishuber/archive/2004/07/05/173067.aspx&lt;/a&gt;</description></item><item><title>re: VB - yesterday, today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#213109</link><pubDate>Wed, 11 Aug 2004 23:58:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:213109</guid><dc:creator>Anthony D. Green</dc:creator><description>Some people just miss the point of .NET completely. It flies right over their heads. I overagree with some of the above. For me the VB.NET learning code was maybe 10% language and 90% .NET Framework.&lt;br&gt;I'm counting in the OOP concepts with that 10% or it would be like 5%.&lt;br&gt;&lt;br&gt;Anyone who can't translate 95% of a .NET app into their language of choice is not looking hard enough. I believe in the language neutrality of the .NET agenda so much I (A Hard-cord VB.NET Dev) signed up for a class on .NET Development entirely in C#.&lt;br&gt;&lt;br&gt;A lot of the crap in these debates is people bringing their C++ vs VB baggage with them. I cannot easily speak about the former without using language inappropriate for such a forum. Curly Braces, SemiColons and case-sensitivity. Truely a language written for the anti-social. (my Name is anthony d. green, oh wait, it's Anthony D. Green, or was it ANTHONY D. GREEN or was it my name or My NAME, after all, we all recognize how in all the languages on the planet a word has 2 distinct and separate meanings depending on the individual casing of each of its letters) Have you ever tried looking at some of that source in large quantities it just spins around and around and makes me sick to look it.&lt;br&gt;&lt;br&gt;I've seen stupid VB code, and really stupid dirty nasty C++ code because people use all that cute poetic pre-encrypted syntax C++ allows for. Now, go on MSDN, and look up the System.Reflection.Assembly class and view the code example for it written in C++, C#, and VB7. That's the difference between VB and C++. Now, download the DirectX SDK and check the code samples for the GetServiceProviders project (in VB and C#) called EnumSP in C++. Compare the sizes of the main files. 4KB in VB and C# vs 10KB in C++. But when ,in both the above, you look at the C# and VB.NET samples they aren't that different now are they?&lt;br&gt;&lt;br&gt;VB is naturally so close to english you can't really get anymore clear or concise, now can you? } could mean anything, and if the coder doesn't indent or got clever it could mean ++anything.&lt;br&gt;&lt;br&gt;I'm loosing my focus even thinking about the all powerful portable assembly 1400 lines of code for &amp;quot;Hello World&amp;quot; C++ language. Back on task. Coding conventions not being followed is the management's fault. Around here it's &amp;quot;Option Strict On and Option Explicit On or Unemployment. Pick one&amp;quot;. You should be complaining about how colleges make it easy for shitty managers to get away with things, not VB.&lt;br&gt;&lt;br&gt;VB's freestyle options are to let new blood break into coding a lot easier, in a language they may be accustomed to (if English is their first). VB taught me the importance of coding conventions and self-describing code. 'abstract' and 'sealed' may not immediately be understandable in the context of a program. MustInherit, and NotInheritable are pretty damned clear if you ask me. C# inherited those evil switch statements with the break; in every case. STUPID. VB inherited On Error Goto Next. Oh well, at least they have some error handling. Try Catch is about 3 logical steps from On Error Goto Handler: with a SelectCase err block in it. When you go professional you learn to be professional. Believe me, programming in C/C++/C# does not in any way whatsoever guarantee that someone reading your code 4 years later will be happy with you or understand your crap, and in fact because there aren't a lot of keyWORDs they'll probably be more confused than with VB. C# is VB.NET's sister language. Both are modernized offspring of old language families - BASIC (1964) and C (1972) both of them carrying some crap. The people who work in them, get over it, try getting over it some time instead of bashing each other when you could be productively doing your Job. C# and VB.NET have come so far from 40 years ago. .NET's language neutrality is so that we can put away these kinds of arguments. C# coders can actually make a program before quiting time, and VB coders can do more without hacking the language so much. Even better, how about we all agree to hate crappy programmers regardless of language without any assumptions or generalizations of coders because of their language. You see some good, functional, well written VB or C# code, you say, damn! that's some nice code. You see some really bad VB or C# code, you bitch about it for a while, say &amp;quot;this is how you can do better, please do better&amp;quot; and move on.</description></item><item><title>re: VB - yesterday, today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#213138</link><pubDate>Thu, 12 Aug 2004 01:13:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:213138</guid><dc:creator>Bill</dc:creator><description>&amp;lt;A couple of the people in that session had &amp;lt;some questions for me around our commitment &amp;lt;to VB in the .NET world.  I was a little &amp;lt;surprised by these questions.&lt;br&gt;&lt;br&gt;I think one look at MSDN Magazine will give you an idea of why people have questions. It calls itself &amp;quot;The Microsoft Journal for Developers&amp;quot; but I think it's real name should be the C# Journal.  </description></item><item><title>re: VB - yesterday, today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#213222</link><pubDate>Thu, 12 Aug 2004 04:04:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:213222</guid><dc:creator>N. Williams</dc:creator><description>You have go to walk before you run, folks.  &lt;br&gt;&lt;br&gt;I have transitioned to VB.Net and am very glad I did.  I am getting more used to looking at things from an object-oriented perspective and the .Net framework helped me get there.  &lt;br&gt;&lt;br&gt;I feel that this move into .Net will eventually lead to one language that combines the benefits of both.  I look at VB.Net and see more than a few similarities to C#.  You also can't miss that Microsoft is pushing OOP with every publication they put out these days.  All of this has started my progression to C# and I do like it a lot.  I also think that this is what Microsoft might want.  &lt;br&gt;&lt;br&gt;At least VB.Net pushes you toward better habits.  VB6 just didn't.  </description></item><item><title>re: VB - yesterday, today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#213247</link><pubDate>Thu, 12 Aug 2004 05:27:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:213247</guid><dc:creator>Alan Yeung</dc:creator><description>I learned Java and C++ from school and picked up VB (basically from the use of ASP) on my own. &lt;br&gt;&lt;br&gt;For .NET, I know both VB.NET and C# and read books for both languages. Whether it's VB.NET or C#, it's just a matter of syntax differences (except the fact that C# has memory management), both languages perform as well as each other. So, in my eyes, they're basically equivalent.&lt;br&gt;&lt;br&gt;At work, I use VB.NET for ASP.NET, VB sometimes bothers me with its loose types and its case insensitive nature... Undoubtedly, it's convenient but bad... Things like this (Ex: Return true in the case of &amp;quot;1&amp;quot; = 1) can freak me out especially when I didn't spot it... &lt;br&gt;&lt;br&gt;All in all, I don't see myself leaning towards a specific language for .NET, I just consider myself a .NET developer. Programming languages are just like religion, everybody has his or her own choice/taste.</description></item><item><title>re: VB - yesterday, today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#213477</link><pubDate>Thu, 12 Aug 2004 14:11:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:213477</guid><dc:creator>Jignesh Desai</dc:creator><description>In India its just the reverse then HongKong. Job requiremetns is VB.NET .... &lt;br&gt;&lt;br&gt;As the opinion of drebin,  doesn't &amp;quot;encourage&amp;quot; a developer to become better&lt;br&gt;&lt;br&gt;I think VB.NET is designed for quick development as programmers don't have to write much like you type if and rest will be completed.  when there is a deadline of projects, u very much prefer such a thing. &lt;br&gt;&lt;br&gt;case-sencetive languages do slower the speed. is my experience. &lt;br&gt;&lt;br&gt;Yes i agree to one thing that C# coding can make programmer become better, but vb.net guys are already better ... ;) just teasing u...&lt;br&gt;&lt;br&gt;I think C# is better choice of companies because its ECMA. i have't read much, but would like to know why only ecma spec. for C# , why not VB.NET ?&lt;br&gt;&lt;br&gt;&lt;br&gt;-Jignesh</description></item><item><title>re: VB - yesterday, today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#217678</link><pubDate>Fri, 20 Aug 2004 13:50:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:217678</guid><dc:creator>Carl B</dc:creator><description>You can write bad code in any language. You just have issues with a bad working environment/unqualified and lazy co-workers, which happens in EVERYTHING - not just VB coding like you seem to think. You will encounter that in just about every place you work. VB.Net is better than C# in many cases, and the same holds true as well.</description></item><item><title>.NET migration</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#220374</link><pubDate>Wed, 25 Aug 2004 21:15:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:220374</guid><dc:creator>Somasegar's WebLog</dc:creator><description /></item><item><title>re: Wonder of wonders</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#241332</link><pubDate>Tue, 12 Oct 2004 19:56:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:241332</guid><dc:creator>Betsy Aoki's WebLog</dc:creator><description /></item><item><title>Announcing: C# Edit and Continue support for Visual Studio 2005 </title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#242854</link><pubDate>Fri, 15 Oct 2004 19:29:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:242854</guid><dc:creator>Somasegar's WebLog</dc:creator><description /></item><item><title>Announcing: C# Edit and Continue support for Visual Studio 2005 </title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#242861</link><pubDate>Fri, 15 Oct 2004 19:35:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:242861</guid><dc:creator>Somasegar's WebLog</dc:creator><description /></item><item><title>Great Article</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#243273</link><pubDate>Sat, 16 Oct 2004 12:35:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:243273</guid><dc:creator>Crazy Stuff</dc:creator><description /></item><item><title>VB - Yesterday, Today and Tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#243477</link><pubDate>Sun, 17 Oct 2004 05:44:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:243477</guid><dc:creator>-:[web caboodle]:-</dc:creator><description /></item><item><title>Announcing: C# Edit and Continue support for Visual Studio 2005 </title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#243662</link><pubDate>Mon, 18 Oct 2004 01:00:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:243662</guid><dc:creator>VinceX.NET's WebLog</dc:creator><description /></item><item><title>re: Ca se confirme: MS pr</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#243823</link><pubDate>Mon, 18 Oct 2004 10:44:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:243823</guid><dc:creator>Richard Clark</dc:creator><description /></item><item><title>C# to Get Edit-and-Continue in VS 2005</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#246007</link><pubDate>Fri, 22 Oct 2004 01:41:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:246007</guid><dc:creator>Joe Stagner - Frustrated by Design !</dc:creator><description /></item><item><title>MBA</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#324266</link><pubDate>Sat, 18 Dec 2004 18:48:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:324266</guid><dc:creator>MBA</dc:creator><description>Helpful For MBA Fans.</description></item><item><title>MBA</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#324291</link><pubDate>Sat, 18 Dec 2004 18:48:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:324291</guid><dc:creator>MBA</dc:creator><description>Helpful For MBA Fans.</description></item><item><title>Choix du langage .NET</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#373425</link><pubDate>Tue, 15 Feb 2005 23:32:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:373425</guid><dc:creator>Le weekly DanWatts</dc:creator><description /></item><item><title>Some people just don't have a clue...</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#950152</link><pubDate>Sat, 04 Nov 2006 05:40:28 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:950152</guid><dc:creator>AddressOf.com</dc:creator><description>&lt;p&gt;...yet want to sound like they do. I would love to see the like of Jay Roxe (Microsoft) put in a room&lt;/p&gt;
</description></item><item><title>It is exciting when at least half the people in the room have a more interesting/compelling story than you do</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#7152569</link><pubDate>Fri, 18 Jan 2008 23:04:07 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7152569</guid><dc:creator>Sorting It All Out</dc:creator><description>&lt;p&gt;Yesterday was a fairly exciting day.... I had to fly down to San Francisco to get my visa for that trip&lt;/p&gt;
</description></item><item><title>It is exciting when at least half the people in the room have a more interesting/compelling story than you do</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#7152580</link><pubDate>Fri, 18 Jan 2008 23:05:05 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7152580</guid><dc:creator>Noticias externas</dc:creator><description>&lt;p&gt;Yesterday was a fairly exciting day.... I had to fly down to San Francisco to get my visa for that trip&lt;/p&gt;
</description></item><item><title>College Fun Facts &amp;raquo; Somasegar&amp;#8217;s WebLog : VB - yesterday today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#8364901</link><pubDate>Mon, 07 Apr 2008 13:03:57 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8364901</guid><dc:creator>College Fun Facts &amp;raquo; Somasegar&amp;#8217;s WebLog : VB - yesterday today and tomorrow!</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://collegefunfactsblog.info/somasegars-weblog-vb-yesterday-today-and-tomorrow/"&gt;http://collegefunfactsblog.info/somasegars-weblog-vb-yesterday-today-and-tomorrow/&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>Colleges &amp;raquo; Somasegar&amp;#8217;s WebLog : VB - yesterday today and tomorrow!</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#8386052</link><pubDate>Sun, 13 Apr 2008 02:51:47 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8386052</guid><dc:creator>Colleges &amp;raquo; Somasegar&amp;#8217;s WebLog : VB - yesterday today and tomorrow!</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://collegesboardblog.info/somasegars-weblog-vb-yesterday-today-and-tomorrow/"&gt;http://collegesboardblog.info/somasegars-weblog-vb-yesterday-today-and-tomorrow/&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>Good site</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#9391285</link><pubDate>Mon, 02 Feb 2009 22:50:22 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9391285</guid><dc:creator>Olgunka-aj</dc:creator><description>&lt;p&gt;&amp;lt;a href= &lt;a rel="nofollow" target="_new" href="http://index1.ibynici.com"&gt;http://index1.ibynici.com&lt;/a&gt; &amp;gt;metalist&amp;lt;/a&amp;gt; &amp;lt;a href= &lt;a rel="nofollow" target="_new" href="http://index2.ibynici.com"&gt;http://index2.ibynici.com&lt;/a&gt; &amp;gt;apartments uab&amp;lt;/a&amp;gt; &amp;lt;a href= &lt;a rel="nofollow" target="_new" href="http://index3.ibynici.com"&gt;http://index3.ibynici.com&lt;/a&gt; &amp;gt;insight trading&amp;lt;/a&amp;gt; &amp;lt;a href= &lt;a rel="nofollow" target="_new" href="http://index4.ibynici.com"&gt;http://index4.ibynici.com&lt;/a&gt; &amp;gt;printable to do list&amp;lt;/a&amp;gt; &amp;lt;a href= &lt;a rel="nofollow" target="_new" href="http://index5.ibynici.com"&gt;http://index5.ibynici.com&lt;/a&gt; &amp;gt;u of a softball schedule&amp;lt;/a&amp;gt; &lt;/p&gt;
</description></item><item><title>Good site</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#9396739</link><pubDate>Thu, 05 Feb 2009 00:32:32 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9396739</guid><dc:creator>elexx-nx</dc:creator><description>&lt;p&gt;&amp;lt;a href= &lt;a rel="nofollow" target="_new" href="http://index1.kuvalda-200.ru"&gt;http://index1.kuvalda-200.ru&lt;/a&gt; &amp;gt;����� � ������ ������&amp;lt;/a&amp;gt; &amp;lt;a href= &lt;a rel="nofollow" target="_new" href="http://index2.kuvalda-200.ru"&gt;http://index2.kuvalda-200.ru&lt;/a&gt; &amp;gt;�������� ���������� ������ �����&amp;lt;/a&amp;gt; &amp;lt;a href= &lt;a rel="nofollow" target="_new" href="http://index3.kuvalda-200.ru"&gt;http://index3.kuvalda-200.ru&lt;/a&gt; &amp;gt;���� ������������ ������ �����&amp;lt;/a&amp;gt; &amp;lt;a href= &lt;a rel="nofollow" target="_new" href="http://index4.kuvalda-200.ru"&gt;http://index4.kuvalda-200.ru&lt;/a&gt; &amp;gt;������� ���������������� ��������&amp;lt;/a&amp;gt; &amp;lt;a href= &lt;a rel="nofollow" target="_new" href="http://index5.kuvalda-200.ru"&gt;http://index5.kuvalda-200.ru&lt;/a&gt; &amp;gt;������� ���������� ����� ������&amp;lt;/a&amp;gt; &lt;/p&gt;
</description></item><item><title> Somasegar s WebLog VB yesterday today and tomorrow | Outdoor Ceiling Fans</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#9668649</link><pubDate>Sun, 31 May 2009 14:21:36 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9668649</guid><dc:creator> Somasegar s WebLog VB yesterday today and tomorrow | Outdoor Ceiling Fans</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://outdoorceilingfansite.info/story.php?id=4376"&gt;http://outdoorceilingfansite.info/story.php?id=4376&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> Somasegar s WebLog VB yesterday today and tomorrow | Outdoor Ceiling Fans</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#9670502</link><pubDate>Sun, 31 May 2009 19:57:45 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9670502</guid><dc:creator> Somasegar s WebLog VB yesterday today and tomorrow | Outdoor Ceiling Fans</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://outdoorceilingfansite.info/story.php?id=22012"&gt;http://outdoorceilingfansite.info/story.php?id=22012&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> Somasegar s WebLog VB yesterday today and tomorrow | Weak Bladder</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#9716835</link><pubDate>Tue, 09 Jun 2009 21:18:31 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9716835</guid><dc:creator> Somasegar s WebLog VB yesterday today and tomorrow | Weak Bladder</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://weakbladder.info/story.php?id=2388"&gt;http://weakbladder.info/story.php?id=2388&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> Somasegar s WebLog VB yesterday today and tomorrow | Insomnia Cure</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#9719326</link><pubDate>Wed, 10 Jun 2009 03:26:22 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9719326</guid><dc:creator> Somasegar s WebLog VB yesterday today and tomorrow | Insomnia Cure</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://insomniacuresite.info/story.php?id=3748"&gt;http://insomniacuresite.info/story.php?id=3748&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> Somasegar s WebLog VB yesterday today and tomorrow | Green Tea Fat Burner</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#9741014</link><pubDate>Sat, 13 Jun 2009 04:31:06 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9741014</guid><dc:creator> Somasegar s WebLog VB yesterday today and tomorrow | Green Tea Fat Burner</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://greenteafatburner.info/story.php?id=79"&gt;http://greenteafatburner.info/story.php?id=79&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> Somasegar s WebLog VB yesterday today and tomorrow | fix my credit</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#9763908</link><pubDate>Wed, 17 Jun 2009 04:37:31 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9763908</guid><dc:creator> Somasegar s WebLog VB yesterday today and tomorrow | fix my credit</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://fixmycrediteasily.info/story.php?id=3700"&gt;http://fixmycrediteasily.info/story.php?id=3700&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> Somasegar s WebLog VB yesterday today and tomorrow | patio set</title><link>http://blogs.msdn.com/somasegar/archive/2004/08/01/204540.aspx#9784819</link><pubDate>Fri, 19 Jun 2009 13:28:12 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9784819</guid><dc:creator> Somasegar s WebLog VB yesterday today and tomorrow | patio set</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://patiosetsite.info/story.php?id=604"&gt;http://patiosetsite.info/story.php?id=604&lt;/a&gt;&lt;/p&gt;
</description></item></channel></rss>