Outlook/Exchange Search Performance…
sucks. I did a search for a message from John Doe sent within last month that contains word “foo”. Took about 5 minutes on a folder with about 9300 items. […]
sucks. I did a search for a message from John Doe sent within last month that contains word “foo”. Took about 5 minutes on a folder with about 9300 items. […]
C++11 adds a new non-const reference type called an rvalue reference, identified by T&&. Say what?! Another grammar ambiguity? Now x && y could be a variable declaration or an […]
Not really a programming topic, but… Had it for a while now – got it from work. Very lightweight and confortable phone. But I have Motorola Droid to compare, so… […]
So, it looks like we get two operating systems for the price of one. It has two styles of apps: one more suitable for a phone (a.k.a. “Metro” style) and […]
To simplify creating and managing users in ASP.NET Microsoft created a lot of infrastructure that takes care of this boilerplate task. Part of the infrastructure is aspnet_regsql.exe utility that is […]
Just finished a fight with JAX-WS. It turns out that if I have a method like this: @WebService(targetNamespace=…) @SOAPBinding(parameterStyle = SOAPBINDING.ParameterStyle.BARE /* don’t ask */) class MyWebService { @WebMethod MyClass […]
“Three large explosions from the sun over the past few days have prompted U.S. government scientists to caution users of satellite, telecommunications and electric equipment to prepare for possible disruptions” […]
Somone on Slashdot asked what are possible “Self-Hosted Gmail Alternatives?“. Unfortunately, it seems like in practice there are none. When I registered my domain, I used to run an e-mail […]
In C# code you can write something like decimal d = 1e-10m; However, decimal.Parse(“1e-10”) throws an exception: “System.FormatException: Input string was not in a correct format”. Not cool.
Popular belief (reinforced indirectly by MSDN) is that BackgroundWorker class will marshal the “progress” and “completed” events back to the calling thread. This turned out to be most certainly not […]