-
-
it's depressing to me how many people that i run into today that have an excrutiatingly limited knowledge about the command line in windows, and yet they are considered experts on the platform. that aside, i figured i would share a couple of very...
-
I came across an interesting acronym called MOST – Mission, Objectives, Strategies, and Tactics. Original source - http://www.strategy.nildram.co.uk/most.html MOST helps to clarify where the business intends to go ( Mission ), they key goals which will...
-
Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4 /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Table Normal"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-priority...
-
"fairness is a concept that was invented so that children and idiots could participate in arguments" -- Scott Adams
-
Pest control is a constant battle especially if you live in Florida. A few months ago, while tending the lawn I noticed several ants. I promptly called the pest control service. I learned later that the ants are known as crazy ants ( Paratrechina longicornis...
-
After months of tweaking and review, our coverage of IBM's BPM technology offering is now live. It joins our coverage of Appian , BEA (we're keeping an eye on this, of course, and will update it as soon as is practical), Lombardi , Software...
-
An XBox or MSDN Subscription to the 10 Most Active Contributors in the User Group Community each quarter. How? By doing what you are doing already, you stand to win: a) Valuable Prizes: An MSDN Subscription. And, if you already have one, you can choose...
-
I see customers expressing more interest in is SharePoint Search. Many clients are shocked to learn SharePoint has a powerful and very configurable search engine built in. Search can crawl anything from network shares to public web sites. Out of the box...
-
The .NET Framework allows developers to write managed code. The term managed refers to how memory is handled by a computer system. For example, C/C++ code is commonly known as unmanaged because developers must allocate and de-allocate memory. In contrast...
-
so i needed to count the lines of a bunch of different filetypes in a folder. i decided to try using linq for this. here's what i came up with. basically a single linq statement =P you can tune the regex to taste. i just said (i think, i'm not...
-
Stack q = new Stack(); q.Push(argument); while (q.Count > 0) { string d = q.Pop().ToString(); Console.WriteLine(d); foreach (string sd in Directory.GetDirectories(d)) q.Push(sd); }
-
At the Jax SQL Saturday I was asked to turn a .NET object into an xml file and then reverse the process. Step 1: Serialization with extension methods C# 3.0 comes with this cool feature called extension methods. This is syntactical sugar for static methods...
-
Two more questions from the floor at TechEd. Perhaps the most frequent question at TechEd is “What are the new features of C# 3.0?” Here is the short list: • Implicitly typed local variables • Extension methods • Lambda expressions • Object and collection...
-
http://www.danrigsby.com/blog/index.php/2008/05/29/rest-services-and-metadata-endpoints-in-wcf/ Dan Rigsby posted an approach to exposing REST services metadata using mexHttpBinding. This work is licensed under a Creative Commons license.