Kenny

3,950
Reputation
374 views

Registered User

Name Kenny
Member for 1 year
Seen 2 hours ago
Website
Location Needham, MA
Age 49
Everything in moderation, especially moderation.

I've started blogging at sourcetonuts.com. Yeah, it's about time I jumped on that bus, it's almost left town to twitter about leaving only me and the Canadians left. Damn them all!

My profile at linkedin.com.

And I always accept consulting work through imachines.com.

Kenny
10h
answered How to spot empty parking spaces?
10h
comment How to spot empty parking spaces?
While a viable commercial solution, I don't think it suffices as a school project.
1d
comment C#-Details of AsyncWaitHandle.WaitOne
It can also be used for windows events (e.g. CreateEvent) see SafeWaitHandle property and msdn.microsoft.com/en-us/library/….
1d
answered Question on Speech Recognition classes in .NET
1d
answered C++ when to use Union or Structs
1d
revised Passing void(*) in C++
added 157 characters in body
1d
answered Passing void(*) in C++
1d
answered C#-Details of AsyncWaitHandle.WaitOne
1d
revised How to push data over the Internet?
found example code; added 2 characters in body
1d
answered How to push data over the Internet?
2d
comment Why wouldn’t Microsoft want to hinder Mono and Moonlight?
I agree but the software as an appliance that the Mono guys are pushing can...perhaps with vertically oriented tools for the job. go-mono.com/monovs/Studio.aspx
2d
comment Detect if code is running as a service
Here is a good start to learn about Windows Services msdn.microsoft.com/en-us/library/…
2d
comment Have you ever decided never to work with someone based on a VCS blame?
Dman! You've been looking at my code.
Nov
27
answered Memorable 32-bit value as a constant
Nov
24
answered Why doesn’t getchar() recognise return as EOF in windows console?
Nov
24
comment How do I send/receive windows messages between VB6 and c#?
+1 COM and VB are like peas and carrots.
Nov
19
comment Get first file in directory
1st by what sort method? Alphabetically?
Nov
16
comment How do I disable the c# message box beep?
+1 perhaps a little heavy handed, depending on the need.
Nov
14
comment Which is the best for a 3-tier architecture; Linq to SQL or Nhibernate?
Can you point to an article or post the reasons you want to avoid LINQ-to-Entities?
Nov
11
answered Basic MEF workflow/usage
Nov
10
comment Is there a runtime benefit to using const local variables?
other than a insignificantly smaller stack, it's functionally the same. Interesting though.
Nov
6
answered How useful is C#’s ?? operator?
Nov
5
answered Consume a WCF service from a console app as part of a SQL job?
Nov
4
answered Faster way to find out if a user exists on a system?
Nov
1
answered Load numbers from text file in C
Nov
1
answered WCF WebHttpBinding Testing Tool
Oct
31
answered Learning to write a compiler
Oct
31
answered computer vision: extracting info about a shape given a contour (e.g. pointy, round…)
Oct
30
comment Choosing between VS 2005/2008/2010 for independent learning.
+1 screws the devs if they are so sensitive about their bugs.
Oct
30
comment Does outsourcing make you worry about the security of your job?
+1 lately my thought as well or another lost cost-of-living place.
Oct
28
comment C++ MFC vs .NET?
I agree old, moldy and outdated.... Sorry MFC fanboys.I never want to look back to MFC without big kicks and large screams.
Oct
26
comment Programmatically inspect .NET code
Unless, @monkeyget is looking at the source code. Then they'll probably want a parser.
Oct
24
answered Naming Convention in c#
Oct
20
comment What is a good emeddable language for an existing Java application?
+1 didn't know that...nice.
Oct
20
answered Deliberatly trigger a compilation error in Visual Studio 2008
Oct
20
comment Deliberatly trigger a compilation error in Visual Studio 2008
msdn.microsoft.com/en-us/library/…
Oct
20
comment Deliberatly trigger a compilation error in Visual Studio 2008
does #error work for you?
Oct
19
comment trying to understand xmpp
Well, not quite since SMTP is routed with a chain of servers and XMPP is federated server to server. +1
Oct
19
comment Learning by example - terminology (?, :, etc)
It would have been way more easy for begineers if the syntax was an else rather than :!
Oct
15
comment How to download and unzip a sitemap gz file in c#?
How about shelling out 7z?
Oct
15
comment A real use for `as` and `is`
Depends on the what the meaning of as is. ;)
Oct
15
revised Trigonometric functions on embedded system
added wikipedia links
Oct
15
comment Trigonometric functions on embedded system
+1 without cpu power or time, lookups are it.
Oct
15
comment memcpy() crashes randomly
the bug is not memcpy, we would need to see your code probably a bad pointer or buffer overrun into the stack or other memory.
Oct
13
comment Robotics and Computer Vision
+~ OpenCV is a good solution if the vision tracking was more complicated. And I agree, the photo-detector suggested elsewhere is the simple solution for this specific problem.
Oct
13
comment How to use performance counters to track application throughput
Not sure. I've been looking at similar and will use this article as a guide: codeproject.com/KB/aspnet/…
Oct
12
comment I’m an experienced C# developer, what things should I know to code effectively in c/c++?
The problem is that manual memory management is used and must be learned and understood. Good advice though.
Oct
12
answered What is the best way to build a marketplace?
Oct
12
comment C# Compiler Behavior Question?
@Dinah, I think David gives proper doubt with his '...Bug?'
Oct
12
comment C# Compiler Behavior Question?
Not sure if that's a bug, I would have thought the answer to be 3 as well, but d's value if evaluated at the postfix ++ is 1 one, so the answer is 2 then, or is the operator evaluated at the ?