You don’t need those lights: Not paying your taxes is actually a threat of death, even if they don’t declare … More
Tag: Brian’s Code Extreme
Make your own code candy in C#.
Pseudo candy public void DoSomething(action myAction){try{myAction.invoke();} catch {//Do some special handling}} Usage var _a = “a;”DoSomething(new {o} ->{//Do something to … More
Linq the right way
We all know how working with a functional language makes coding so easy, and can make you a bit lazy. … More
What is the easiest way to detect an iPhone?
Request.UserAgent.Contains(“iPhone”) returns true if the client is using their iPhone. First time I saw that, I had a few hundred … More
Almost forgot about RDBMSX news
For those who don’t know, RDBMSX is the name I gave to a hobby project that I am working on. … More
Will be posting again soon.
I own several domains that I use to build and test technology against.My hub for some of this is RPGAmerica.com.As … More
Key items for using XBAP to WCF
Get your WCF service running perfectly before coding against it. An XBAP component that is running under partial security internet, … More
I am doing a presentation in January
I have volunteered to present at http://www.southbaynet.org/. I am still presenting there, but the last time I checked, the presenter … More
What is new in VS2008 and .NET 3.5
Boy is it hard to find these links.It seems that they are not refrenced well on any search engine, and … More
Linq again
Here is the solution to my earlier issue.DLinq queries seem to only execute against a foreach loop.Now I can be … More