Davy Landman

4,322
Reputation
438 views

Registered User

Name Davy Landman
Member for 1 year
Seen 9 hours ago
Website
Location Netherlands
Age 24
Hi, I'm a developer from the Netherlands.

At work I develop mainly in ASP.NET and Winforms using the C# language, while sometimes developing Win32 applications in Delphi.

When not working and coding the utilities the inner geek wants, I use a mix of C#, Delphi, BASM and Matlab.
1d
answered Does anyone have a good example of how to use Synapse’s Heartbeat function?
Nov
23
awarded  Popular Question
Oct
22
comment Has anyone tested IE 8 developer toolbar ? is it really good like firebug ?
Isn't that what Fiddler is for?
Oct
16
answered Deleting files on a remote machine
Oct
15
comment Guide to understanding gitk ?
I kinda like the cli more, but sometimes I invoke gitk just to see the branches and merges. I wouldn't recommend the gitk interface for new users.. Probably scare them off?
Oct
15
comment Tool for displaying binary decision tree
+1, although it can be more difficult to arrange graphviz in a left/right order.
Oct
15
answered Guide to understanding gitk ?
Oct
8
awarded  
Oct
7
answered How to force position of edges in graphviz?
Oct
4
revised Delphi Multi-Threading Message Loop
corrected stupid defect...
Oct
2
awarded  Tumbleweed
Sep
30
awarded  Enlightened
Sep
30
awarded  Nice Answer
Sep
25
accepted How tell the difference between a Debit Card and a Credit Card
Sep
25
answered How tell the difference between a Debit Card and a Credit Card
Sep
25
revised How to force position of edges in graphviz?
removed redundency
Sep
25
revised How to force position of edges in graphviz?
Better introduction, corrected spelling.
Sep
25
comment Disable L1 instruction cache
Already answered in stackoverflow.com/questions/1108485/…
Sep
25
asked How to force position of edges in graphviz?
Sep
25
revised How to force all nodes in the same column in graphviz?
edited title
Sep
25
comment How to force all nodes in the same column in graphviz?
I've removed the question about how to force the edges and will create a new question for that. Else it would be hard to judge which answer would be the correct answer.
Sep
25
revised How to force all nodes in the same column in graphviz?
removed the other questions. This way this question can be answered.
Sep
25
revised How to force all nodes in the same column in graphviz?
added 8 characters in body
Sep
25
asked How to force all nodes in the same column in graphviz?
Sep
17
awarded  Yearling
Sep
11
comment Respond to only the first WM_KEYDOWN notification?
@kjfletch those kind of micro optimizations are certainly not needed anymore.. Any simple compiler could optimize that..
Sep
6
comment Fastest way to write string on Windows?
I'm guessing he's writing 100 lines per second and that would slow your main program loop down...
Sep
3
comment Popup Dialog Hide after 10sec
try to reduce it to an example html + javascript you can include in your question. This will increase the chances of not getting your question closed.
Sep
2
comment Respond to only the first WM_KEYDOWN notification?
I actually think this reads better than the 0x4000000, so +1
Aug
26
answered bit twiddling: find next power of two
Aug
26
accepted How to get registry write permissions in C#
Aug
25
accepted Algorithm: Travelling through all array elements with limited move constraint
Aug
24
accepted Using C#, what is the most efficient method of converting a string containing binary data to an array of bytes
Aug
24
revised What is the best way to learn Ruby?
Fixed Why's Poignant link to working mirror
Aug
24
comment Getting Started with Ruby Development
Due to _why's quiting the community this site is no longer available, a reasonable alternative is codepad.org
Aug
24
revised Getting Started with Ruby Development
Fixed Why's Poignant link to working mirror, and fixed images
Aug
24
revised Getting Started with Ruby Development
Fixed Why's Poignant link to working mirror
Aug
19
answered How to use my local computer camera in android emulator?
Aug
14
comment Are fully qualified CSS styles efficient?
My rule is to always use the least specific selector possible. So you'd have about 3/4 times to override the styling with other css files by being more specific.
Aug
14
answered Are fully qualified CSS styles efficient?
Aug
13
comment nanoseconds to milliseconds - fast division by 1000000
I could however imagine a situation where this could be a performance bottleneck. If your measuring a certain high frequency input and you'll have to register the time yourself. If you'd be using the QueryPerformanceCounter, you could want to translate that to a correct value as fast as possible.
Aug
12
accepted Delphi 2009: How to communicate between Windows service & desktop application under Vista?
Aug
12
comment Delphi 2009: How to communicate between Windows service & desktop application under Vista?
Yes, I remembered wrong, it's not allowed to create network connection to outside resources, or you have to run as NetworkService. I deleted the first assertion. But still, named pipes are a better way to communicate with your service (have problem locating the vista compatibility article about IPC)
Aug
12
revised Delphi 2009: How to communicate between Windows service & desktop application under Vista?
deleted 118 characters in body
Aug
11
revised Delphi 2009: How to communicate between Windows service & desktop application under Vista?
edited tags
Aug
11
revised Delphi 2009: How to communicate between Windows service & desktop application under Vista?
added 145 characters in body
Aug
11
answered Delphi 2009: How to communicate between Windows service & desktop application under Vista?
Aug
10
comment Pass Bitmap object to unmanaged code
voted for close due to duplicate: stackoverflow.com/questions/661016/…
Jul
28
comment What do you do when your team leader doesn’t know something simple?
I once tried to get a code base to compile which had the = operator overloaded to do funky stuff instead of just copying it's reference... But that was c++, luckily that's not possible in C#..
Jul
17
comment Entity Framework: LINQ to Entities only supports casting Entity Data Model primitive types
I would suggest a IOrderedQueryable<K> as result of the Func, this will force at compile time a OrderBy is used, because for instance paging does not like non ordered queries.