Jan 26 2006

Cool MCE Case

Category: .media centerAmit Bahree @ 7:09 pm

Check out the soon-to-be-released Origen AE S210 which among many other features has bays for 12 HDD’s, and a 12″ touchscreen LCD! Not sure on the damage it will cause (£££), but if its reasonable, then I would need to find a business case when Vista ships to get my hands on one of these :) .

Share

Tags:


Jan 19 2006

Crash Different

Category: .lolAmit Bahree @ 11:28 pm

Got this via one of the Avanade communities (thanks Wes), and is just funny – does not matter if you are a geek or not – you need to see the Crash Difference video detailing out some experiences of using and owning and loving a Mac! :)

Share

Tags:


Jan 17 2006

Book Feedback?

Category: .booksAmit Bahree @ 5:49 pm

I have been eyeing the CLR via C#, Second Edition, I don’t have the first edition, can anyone comment on how good/bad would it be? Of course it will be published next month, and I suppose I can get more reviews then.

Share

Tags:


Jan 15 2006

House Hunting!

Category: .live and learnAmit Bahree @ 10:39 pm

We have just started to look for a house – why build someone else’s equity when you can build your own. I got to admit its a drag! And the fact we just started and people go on for months doing this, I don’t know how. It is just a big pain in the butt. My sympathies to all those going through the same thing. If you do know good areas in London where we can live please let me know? I need it to be close to Tube and preferably within Zone 2.

Share

Tags:


Jan 07 2006

Microsoft Journal (MSJ) Scam

Category: .securityAmit Bahree @ 12:22 am

Stephen Toub at Microsoft warns about a scam where people have been getting mailings (not emails) offering them MSJ – this a scam as MSJ is not published anymore! Don’t send them your hard earned money.   

Share

Tags:


Jan 06 2006

System Stability Chart in Longhorn

Category: .ms.futureAmit Bahree @ 10:10 pm

If you go to the Computer Management tool in Longhorn (Dec CTP), then you will something called the System Stability Chart, which shows you how stable the system has been including Software Installs/UnInstalls, Failures (including Apps, Drivers, Hardware, Windows), etc. Its pretty cool and should help narrow down cause of failures – quite helpful in a corporate environment. Here is a screen shot from one of my VMs.

Share

Tags:


Jan 05 2006

WAIK will screw up VS 05/TFS RTM

Category: .geekAmit Bahree @ 7:24 pm

Charles talks about how installing WAIK on a functioning VS 05 or TFS system will fail and screwing up the .NET 2.0 runtime bits; best to avoid doing that for now.

Share

Tags:


Jan 05 2006

Dependencies between Contract Inheritance and CallBack Inheritance in Indigo

Category: .wcfAmit Bahree @ 7:39 am

Contract inheritance (via CLR interface inheritance) is pretty cool allowing you to support versioning and contract aggregation in WCF, the catch though is if you have a Duplex interface then the callback interface must follow the same hierarchy. So if your primary interface say is IMyInterface which inheritances from ISomeInterfaceOne and ISomeInterfaceTwo, then the callback interface also needs to have the same chain or you will get an InvalidContractException. Here is an example from MSDN:

[ServiceContract(CallbackContract = IACallback)]
interface IA : IB {}
interface IACallback : IBCallback {}
[ServiceContract(CallbackContract = IBCallback)]
interface IB {}
interface IBCallback {}

Share

Tags:


Jan 03 2006

Writing High-Perf. Managed Apps?

Category: UncategorizedAmit Bahree @ 4:51 pm

If you are writing high-perf. managed applications, all the old-world advice from the days of good old COM is still valid. But you do need to think of a few other things such as how the CLR JIT would change things, or the Exception Handling, or Threading and syncing up, or possibly the GC and Allocation Profiles? While this MSDN article is old (now), it still is excellent Food for Thought when it comes to writing high-perf. apps.

Share

Tags:


Jan 01 2006

How to find if a thread is running using the ThreadState property?

Category: UncategorizedAmit Bahree @ 1:41 am

If you wanted to use the ThreadState property (which should only be used for debugging and not sync.), to find out if a thread is running. Since the Running state has a value of 0, you cannot do a bit test to discover this state. But you could do something like this to get the same result:

if ((state & (Unstarted | Stopped)) == 0) //yea, its Running!

Share


Get Adobe Flash player