Tony Bellomo Dot Com RSS Feedhttp://www.tonybellomo.com/blogfeed.aspx?FeedType=RSSBlog Feed from TBDCen-usCopyright 2010tony.bellomo@gmail.comSat, 04 Sep 2010 11:32:28 -0700Feed CategoryTony Bellomo Dot Com http://www.tonybellomo.com/images/tonyhead.pngTony Bellomo Dot Com RSS Feedhttp://www.tonybellomo.com/blogfeed.aspx?FeedType=RSSFeedIDBlogID10212http://www.tonybellomo.com/fullblog.aspx?BlogID=10212Video Training - Get your learn on<p>You have to keep growing in the technical consulting business.&nbsp; I'm constantly reading books but sometimes I get burnt out on reading.&nbsp; Sometimes I like to hook up the laptop to the TV and watch some video training.&nbsp;I use a couple different web sites for video training.&nbsp; I think I've posted on VTC before but that was probably a while ago, so here we go -</p> <p>VTC - Virtual Training Course<br /> VTC has a huge library of topics on just about everything you can imagine.&nbsp; You can learn everything from Photoshop to SQL server.&nbsp; It's $30/month and worth every penny.<br /> <a href="http://www.vtc.com">http://www.vtc.com</a></p> <p>LearnDevNow -<br /> The focus of LearnDevNow if Microsoft development and it's amazingly robust.&nbsp; The videos are very professional, if a little dry.&nbsp; I highly recommend them.&nbsp; It's $99 for a year of access.<br /> <a href="http://www.learndevnow.com">http://www.learndevnow.com</a></p> <p>&nbsp;</p> <p>&nbsp;</p>Wed, 07 Jul 2010 08:31:01 -07002010-07-07T08:31:01-07:00GoodBlogID10209http://www.tonybellomo.com/fullblog.aspx?BlogID=10209I'm Back<p><span style="font-family: Arial; font-size: 9pt">I had to reformat my server several months ago.&nbsp; I took a meticulous backup (or so I thought) but realized I did not take a backup of my blog.&nbsp; Consequently I lost all of my blogs from this year.&nbsp; <o:p></o:p></span></p> <p><span style="font-family: Arial; font-size: 9pt">Today I was cleaning out my hard drive and found a backup from June.&nbsp; Ok, good enough.&nbsp; I'm back!&nbsp; <o:p></o:p></span></p> <p><span style="font-family: Arial; font-size: 9pt">As of today I'm going to try to start posting regularly again.<o:p></o:p></span></p>Mon, 30 Nov 2009 09:17:12 -07002009-11-30T09:17:12-07:00GoodBlogID10208http://www.tonybellomo.com/fullblog.aspx?BlogID=10208Async web services the easy way<p>Source:<a target="_blank" href="http://www.williablog.net/williablog/post/2008/12/01/BeginEnd-Async-WebService-Proxy-Methods-No-Longer-Generated.aspx">Begin/End Async WebService Proxy Methods</a></p> <p>Have you ever needed to kick off a long running process through a web service and immediately return control of the page to the user?&nbsp; I have a process which takes about 10 minutes to run and I don't want to just set the page timeout really really high and make the user sit there and watch IE grind.&nbsp; With the tweak to the project file described below, web service &quot;begin&quot; and &quot;end&quot; methods will be generated&nbsp;for&nbsp;the web service when you add it as a web reference to your project.&nbsp; If you had a HelloWorld() method you would now have access to a &quot;BeginHelloWorld()&quot; method which can fire off the web service and NOT wait for it to complete before returning control to the user.</p> <p>You can add WebReference_EnableLegacyEventingModel with a value of true to the first ProptertyGroup section in your csproj file.&nbsp; You will have to close visual studio before doing that and update your web references to generate the updated class with the begin/end methods.</p>Fri, 06 Mar 2009 16:50:58 -07002009-03-06T16:50:58-07:00GoodBlogID10207http://www.tonybellomo.com/fullblog.aspx?BlogID=10207Hosting a project on an XP UNC share... again<p><span>I just upgraded to Vista 64 bit from XP.&amp;nbsp; 6 gigabytes of memory and a velociraptor 300 gig drive make it wicked fast and responsive under the worst conditions.&amp;nbsp; </span></p> <p><span>But wait... Bios command limit reached!&amp;nbsp; What?... ok, I wrote a <a target="&quot;_blank&quot;" href="&quot;http://tonybellomo.com/FullBlog.aspx?BlogID=10176#&quot;">bl</a></span><span><a target="&quot;_blank&quot;" href="&quot;http://tonybellomo.com/FullBlog.aspx?BlogID=10176#&quot;">og</a>&nbsp;about this.&amp;nbsp; No problem...</span></p> <p><span>... Bios command limit reached... unable to monitor changes .... what?!?</span></p> <p>Hours of searching later I ran this from the run prompt and it started working again.&amp;nbsp; This issue has been around since 2005 and it's still here even in Vista 64 bit. &nbsp;What a sigh of relief to get my intellisense back!</p> <p>Oh, the command:<br /> Drive:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\caspol.exe -m -ag 1 -url &quot;file:////\\computername\sharename\*&quot; FullTrust -exclusive on</p> <p>&nbsp;</p>Tue, 03 Mar 2009 19:54:48 -07002009-03-03T19:54:48-07:00GoodBlogID10205http://www.tonybellomo.com/fullblog.aspx?BlogID=10205Browser war shifting?<p><a target="_blank" href="http://www.computerworld.com/action/article.do?command=viewArticleBasic&amp;taxonomyName=Networking+and+Internet&amp;articleId=9127875&amp;taxonomyId=16&amp;pageNumber=1">This article</a> at ComputerWorld says since the introduction of firefox to the market that IE's market share has fallen from 95% to 70%.&nbsp; While that is still quite the majority it means that as web developers we have to start taking &quot;standards compliant&quot; browsers seriously.&nbsp; With IE8, which microsoft asserts will be standards compliant by default, will hopefully usher in a new time of compatablity across all browers.&nbsp; I know that's an unlikely scenario but we can hope right:?</p> <p>In the past with most&nbsp;people using IE,&nbsp;I've&nbsp;pretty much ignored&nbsp;&quot;alternative&quot; browsers but with the&nbsp;recent shift&nbsp;I've&nbsp;started coding so my work is visible in firefox / safari / etc.&nbsp; I actually feel a bit of pride when I see my creations work across multiple platforms.&nbsp; I even tested my latest gadget on an iphone and it looks great.&nbsp; I have to give a lot of credit to jQuery of course because it handles a lot of browser-specific functionality automatically, but their victory is my victory and I'll take it.</p> <p>Does your app work in firefox?&nbsp; Yes -&nbsp; How about safari on a mac?&nbsp; Yes -&nbsp;</p> <p>These are the questions we're going to be asked, and &quot;yes&quot; is the right answer.&nbsp; A pool of 30% is a nice size group of potential customers to draw from, especially when&nbsp;the IE user pool is shrinking.</p>Wed, 25 Feb 2009 11:04:12 -07002009-02-25T11:04:12-07:00Good