Foredecker

3,877
reputation
380 views

Registered User

name Foredecker
member for 1 year
seen Dec 5 at 2:21
website
location Seattle Area
age 47
I'm a development manger on the Windows Core Operating System performance team.
Nov
24
awarded  Nice Answer
Nov
10
accepted Is there a general-purpose object pool for .NET?
Nov
4
answered Is there a general-purpose object pool for .NET?
Nov
4
answered Using handled exceptions as an intended trigger?
Oct
27
awarded  Nice Answer
Oct
16
comment Clock Speed Formula
Of course, there may be times when only one thing that looks like an application is running. But it will be rare that an app is the only thing running on a system that is important to the user. Most importantly, an app has no idea what is running - it is not practical to write an app to poll sometimes and not others.... how would it know when not to poll? If it is at all possible to code something to avoid polling, that's the best way to do it.
Oct
15
answered Clock Speed Formula
Oct
15
comment Clock Speed Formula
This isn't correct. The minimul sleep time can be 1ms (or even less). It depends on how fast the timer tick interrupt is running. This can vary at run time. See docs for timeBeginPeriod(). Also note that sleeping() is very VERY different from polling and looping. Sleep blocks and your thread will not use CPU cycles while asleep. Polling is a HUGE consumer of CPU cycles. Polling is is a classic performance design and implementation problem in many applications - avoid this if at all possible.
Oct
8
accepted Notify changes on an XML file
Oct
1
answered Notify changes on an XML file
Sep
29
answered There is in Windows file systems a pre computed hash for each file?
Sep
29
comment There is in Windows file systems a pre computed hash for each file?
Andrew is correct.
Sep
28
revised Select max age C#
add tag 'homework'
Sep
19
awarded  Yearling
Aug
31
answered How can I get the software information form the windows registry ?
Aug
27
accepted When querying with LINQ-to-XML, is it better/more efficient to leave element values as strings or convert them to the correct type?
Aug
20
comment Algorithm for determining minimum bounding rectangle for collection of lat/lon coordinates
Regular C++ has libraries as well. Also, how is coding this statically a good idea?
Aug
14
revised Learning embedded systems from the ground up
Add more info
Aug
13
answered Learning embedded systems from the ground up
Aug
9
awarded  Good Answer
Jul
27
accepted Is sleep() a good idea for the main loop of a job-scheduling app
Jul
26
revised When querying with LINQ-to-XML, is it better/more efficient to leave element values as strings or convert them to the correct type?
Respond to comment.
Jul
25
answered Should I continue learning C# with Windows Forms or WPF Applications?
Jul
25
comment Should I continue learning C# with Windows Forms or WPF Applications?
I don't agree- WPF and Winforms are very, very different. Developing for WPF is very different form developing for Winfroms.
Jul
25
answered When querying with LINQ-to-XML, is it better/more efficient to leave element values as strings or convert them to the correct type?
Jul
25
revised Reading data from a file
tag
Jul
25
comment Programmatically compute the start time of a process on Windows
This is the right answer.
Jul
25
comment Check who’s blocking you with twitter API
Think about it. If there was a way to do this, then you could get around their blocking - it would defeat the purpose of blocking. If someone is blocking you, then they don't want to hear from you.
Jul
25
answered How to convert XML file to a Database?
Jul
24
answered Is sleep() a good idea for the main loop of a job-scheduling app
Jul
24
answered In C, which is faster: if with returns, or else if with returns?
Jul
23
revised Find the most frequent numbers in an array using LINQ
added tag
Jul
7
awarded  Organizer
Jul
7
revised Given an array of numbers, except for one number all the others, occur twice. Give an algorithm to find that number which occurs only once in the array.
edited tags
Jul
4
accepted Evaluate software minimum requirements
Jul
3
revised Evaluate software minimum requirements
Added some detail
Jul
3
comment Changes Required To Meet Windows 7 Logo Requirements
That document is pretty clear. What is in it that you don't understand?
Jul
3
answered Evaluate software minimum requirements
Jul
3
answered Searching a collection of excel sheets w/C#
Jul
2
comment Application on windows startup
Hi Suriyan, I'm not sure what to tell you. There aren not enough details for me to debug your problem. Do you have a service runs that then starts your normal user mode application?
Jul
1
revised Producing more complex excel worksheets using c#
Added info, asnwered questions in comments.
Jun
30
answered Producing more complex excel worksheets using c#
Jun
28
comment C Runtime objects, dll boundaries
I did suggestion a solution :) Don't link to the CRT statically. link to MSVCRT.DLL. I'd be quite surprised if all CRT libraries on Linux, Unix or the MAC were guaranteed to work flawless. I think you've been lucky there as well.
Jun
27
comment What is the easiest way for two separate C# .Net apps to talk to each other on the same computer.
This is a poor solution as it requires polling. Named pipes, WCF, local sockets all enable produces and consumer to block - only running when needed.
Jun
27
answered What is the easiest way for two separate C# .Net apps to talk to each other on the same computer.
Jun
27
answered C Runtime objects, dll boundaries
Jun
25
comment What’s the best encoding for multiple languages?
your question is very unclear. Could you clarify?
Jun
23
comment Effective way to make a system tray application
That's not true. Especially with memory, it is harder to be frugal with manged languages and Java than it is with Native apps. I've seen many examples of this. For example, the little clock in Coobird's example is most likely much larger than it would be if it were written in native code. This is especially true since it is always active. Note! i'm not saying that managed or java apps are the wrong choice here - only that extra care is need to keep them from using too many resources.
Jun
23
answered Is deriving square from rectangle a violation of Liskov’s Substitution Principle?
Jun
23
answered Need a free Programmer’s Keylogger