2,662 reputation
824
bio website jeroenlandheer.com
location Chile
age 39
visits member for 4 years, 5 months
seen 11 hours ago
stats profile views 247

I'm an software developer, who likes to make websites, Windows apps, and play around with databases. (SQL Server and Oracle).

I'm about 21 years on the job, MCPD and MCITP and still enjoy to code for a living.


Apr
23
awarded  Popular Question
Apr
16
comment Cannot find X.509 certificate using FindByThumbprint
Right-click the file, click open with, Binary Editor and see if there's a few extra bytes in that string... @.@ +1 for you Bryan :)
Mar
12
comment Azure: programmatically querying WADLogsTable for trace data
There's a '0' before the ticks because the ticks might get over the 0999999999900000000 mark at some point. A safer way is to use String.Format("{0:0000000000000000000}", ticks)... although that would be at November 16th... in 3169... I don't think I'll live by then :)
Mar
8
awarded  Constituent
Mar
8
answered Ctrl + Dot (ShowSmartTag) not working in VS2012
Mar
6
awarded  Caucus
Feb
25
awarded  Nice Answer
Feb
21
awarded  c#
Feb
19
comment Waiting for a new deployment to fully initialize before swap the staging/production slot (swap VIP)?
Nice one, it would be nice to add some sort of timeout though (e.g. 5-10 minutes), because if one of the roles fails to start you will be stuck in an endless loop.
Feb
5
awarded  Nice Answer
Jan
11
comment Migrating from traditional username/password authentication to WIF
The idea is that someone logs in with their account, get asked to connect an account from a different authentication provider (live, google, yahoo, whatever floats their boat) and once they do that they use their new account for the app and the old one is obsolete. Also, the idea is that someone can use this same technique to connect multiple authentication providers to the same account. (Like it doesn't matter what you use to logon with, we still know its the same user.) Scenarios for this are things like business accounts from ADFS connecting to an account from a different provider.
Jan
11
comment Migrating from traditional username/password authentication to WIF
These articles focus on mixing forms & wif on different resources, and that is not the case here.
Jan
11
asked Migrating from traditional username/password authentication to WIF
Dec
19
comment Why am I getting a runtime error when I try to convert from an ImageSource to a BitmapImage?
BitmapFrameDecode is inherited from BitmapFrame -> BitmapSource -> ImageSource... BitmapImage is inherited from BitmapSource, so the 2 classes aren't compatible and this explains your error message.
Dec
7
awarded  Yearling
Nov
21
comment Add View Model class dropdown not showing my class
How on earth did you figure this out? +1! :D
Nov
20
comment Can a WebServiceHost be changed to avoid the use of HttpListener?
ErrorCode == 5 (ERROR_ACCESS_DENIED): "netsh http urlacl" is how you grant yourself access to reserve addresses for the HTTP listener.
Nov
6
comment Using PowerShell credentials without being prompted for a password
@Sam: Nice one, didn't know about that little trick :)
Nov
2
comment How do I know if a C# method is thread safe?
I don't think this will compile, because static members cannot access instance members. (addOne can't access myVar.)
Aug
31
awarded  Necromancer