User Kenny - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T12:58:38Zhttp://stackoverflow.com/feeds/user/3225http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1849918/pipe-communication-c/1850046#18500460Answer by Kenny for Pipe communication C++Kenny2009-12-04T22:22:07Z2009-12-04T22:22:07Z<p>Not exactly the question, but another option is CreateEvent() and a memory mapped file. </p>
http://stackoverflow.com/questions/1849930/good-application-for-automated-testing-of-net-guis-written-in-c/1850024#18500240Answer by Kenny for Good application for automated testing of .Net GUIs written in C#Kenny2009-12-04T22:18:31Z2009-12-04T22:18:31Z<p>I know Borland Silk, or whatever they call Borland now, has a good testing suite. It cost a bit of money and learning curve. But, a lot of QA types know it. </p>
http://stackoverflow.com/questions/1820607/how-to-spot-empty-parking-spaces/1820756#18207560Answer by Kenny for How to spot empty parking spaces?Kenny2009-11-30T16:13:10Z2009-11-30T16:13:10Z<p>Assuming that you are looking for parking meter spaces...</p>
<p>I would attempt to get the public data, if available, for the geo-locations of parking meters for a city/town. I would then have a GUI to refine and verify the locations on satellite map (google maps perhaps). You would also need access to live satelite images. Work on detection of background w/o car versus with a car in the spot. Hand test your algorithm until it is perfect.....get gray hairs and pull them out. :)</p>
http://stackoverflow.com/questions/1772781/question-on-speech-recognition-classes-in-net/1816192#18161920Answer by Kenny for Question on Speech Recognition classes in .NETKenny2009-11-29T17:50:40Z2009-11-29T17:50:40Z<p>How about route the calls to <a href="https://www.google.com/accounts/ServiceLogin?passive=true&service=grandcentral&ltmpl=bluebar&continue=https%3A//www.google.com/voice/account/signin/%3Fprev%3D%252F&gsessionid=t1BJALhvjQtZOyGtObSyOw" rel="nofollow">Google Voice</a>? I'm sure there are similar services. I have been amazed at its accuracy so far, plus you can click and listen to it if required. Google Voice will forward voice calls to SMS or email.</p>
<p>UPDATE: On reread, maybe since you are recording calls it won't work as I yous the voice message left. </p>
http://stackoverflow.com/questions/1816130/c-when-to-use-union-or-structs/1816149#18161491Answer by Kenny for C++ when to use Union or StructsKenny2009-11-29T17:37:33Z2009-11-29T17:37:33Z<p>A union should only be used if saving or resusing the memory space by overlapping items is important or useful. </p>
<p>UPDATED: gf's <a href="http://stackoverflow.com/questions/346536/difference-between-a-structure-and-a-union-in-c">comment link</a> is helpful and makes this a duplicate.</p>
http://stackoverflow.com/questions/1815893/passing-void-in-c/1816116#18161160Answer by Kenny for Passing void(*) in C++Kenny2009-11-29T17:27:23Z2009-11-29T17:33:40Z<p>You might want to look at method operaters -><em>, ::</em>, and their friends. I'll try to find a better link but start <a href="http://sexy.w-uh.com/articles/040617-C++%5Fmethod%5Fpointer.html" rel="nofollow">here</a>. </p>
<p>UPDATE: hopefully <a href="http://www.codeproject.com/KB/cpp/FastDelegate.aspx" rel="nofollow">this</a> is a better article for method pointers and operators. </p>
http://stackoverflow.com/questions/1816099/c-details-of-asyncwaithandle-waitone/1816111#18161112Answer by Kenny for C#-Details of AsyncWaitHandle.WaitOneKenny2009-11-29T17:22:42Z2009-11-29T17:22:42Z<p>The methods allow you to wait on a windows events. WaitOne is non-static and waits on the event handle for that object. WaitAll and WaitAny are static class-wide methods that wait an a group of event handlers. WaitAll waits for all events to signal and WaitAny for a single event in the group. </p>
http://stackoverflow.com/questions/1815366/how-to-push-data-over-the-internet/1815408#18154080Answer by Kenny for How to push data over the Internet?Kenny2009-11-29T12:34:30Z2009-11-29T12:55:42Z<p>I needed to do this earlier this year, but I can't find the code on this computer. Does this <a href="http://stackoverflow.com/questions/66363/get-external-ip-address-over-remoting-in-c/1319527#1319527">SO link</a> help?</p>
<p>UPDATE: I found <a href="http://nayyeri.net/detect-client-ip-in-wcf-3-5" rel="nofollow">the article</a> that I used when I needed to get this. Warning it uses 3.5 and I think WCF. Code copied from Keyvan Nayyeri's article here:</p>
<pre><code> OperationContext context = OperationContext.Current;
MessageProperties messageProperties = context.IncomingMessageProperties;
RemoteEndpointMessageProperty endpointProperty =
messageProperties[RemoteEndpointMessageProperty.Name]
as RemoteEndpointMessageProperty;
return string.Format("Hello {0}! Your IP address is {1} and your port is {2}",
value, endpointProperty.Address, endpointProperty.Port);
</code></pre>
http://stackoverflow.com/questions/1810529/memorable-32-bit-value-as-a-constant/1810937#18109371Answer by Kenny for Memorable 32-bit value as a constantKenny2009-11-27T23:07:29Z2009-11-27T23:07:29Z<p>I like 600df00d</p>
http://stackoverflow.com/questions/1793616/why-doesnt-getchar-recognise-return-as-eof-in-windows-console/1793640#17936400Answer by Kenny for Why doesn't getchar() recognise return as EOF in windows console?Kenny2009-11-24T23:20:04Z2009-11-24T23:20:04Z<p>getchar() returns a value from standard in (typically the keyboard). I don't remember what character EOF will map to, but you probably can't type it.</p>
http://stackoverflow.com/questions/1703436/basic-mef-workflow-usage/1718672#17186720Answer by Kenny for Basic MEF workflow/usageKenny2009-11-11T22:54:13Z2009-11-11T22:54:13Z<p>Will an IOC utility work for your needs? I've found <a href="http://code.google.com/p/autofac/" rel="nofollow">autofac</a> really straight forward. </p>
http://stackoverflow.com/questions/1689530/how-useful-is-cs-operator/1690579#16905791Answer by Kenny for How useful is C#'s ?? operator?Kenny2009-11-06T21:26:40Z2009-11-06T21:26:40Z<p>I've been using it with App.Config stuff</p>
<pre><code>string somethingsweet = ConfigurationManager.AppSettings["somesetting"] ?? "sugar";
</code></pre>
http://stackoverflow.com/questions/1683959/consume-a-wcf-service-from-a-console-app-as-part-of-a-sql-job/1684110#16841101Answer by Kenny for Consume a WCF service from a console app as part of a SQL job?Kenny2009-11-05T22:31:25Z2009-11-05T22:31:25Z<p>You might want to consider packaging your service A code into <a href="http://en.wikipedia.org/wiki/SQL%5FCLR" rel="nofollow">SQLCLR</a> and call it like another stored proc. </p>
http://stackoverflow.com/questions/1675813/faster-way-to-find-out-if-a-user-exists-on-a-system/1675868#16758680Answer by Kenny for Faster way to find out if a user exists on a system?Kenny2009-11-04T18:53:40Z2009-11-04T18:53:40Z<p>The following in a command prompt returns 1 if 'username' exists.</p>
<p>net user | find "username" /c</p>
http://stackoverflow.com/questions/1658530/load-numbers-from-text-file-in-c/1658545#16585450Answer by Kenny for Load numbers from text file in CKenny2009-11-01T22:11:14Z2009-11-01T22:11:14Z<p>or fopen and strtok :)</p>
http://stackoverflow.com/questions/1504988/wcf-webhttpbinding-testing-tool/1657038#16570380Answer by Kenny for WCF WebHttpBinding Testing ToolKenny2009-11-01T12:23:25Z2009-11-01T12:23:25Z<p>I've used <a href="http://www.fiddler2.com/fiddler2/" rel="nofollow">Fiddler</a> and a related <a href="http://stackoverflow.com/questions/414875/best-tool-framework-for-testing-a-restful-service">SO link</a>.</p>
http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/1655646#16556461Answer by Kenny for Learning to write a compilerKenny2009-10-31T21:10:48Z2009-10-31T21:10:48Z<p><a href="http://antlr.org/" rel="nofollow">ANLTR</a> isn't in here? Wow! Don't forget the <a href="http://pragprog.com/titles/tpantlr/the-definitive-antlr-reference" rel="nofollow">book</a>.</p>
http://stackoverflow.com/questions/1631081/computer-vision-extracting-info-about-a-shape-given-a-contour-e-g-pointy-roun/1654903#16549030Answer by Kenny for computer vision: extracting info about a shape given a contour (e.g. pointy, round...)Kenny2009-10-31T16:47:13Z2009-10-31T16:47:13Z<p>What I think you might be looking for is often called <a href="http://en.wikipedia.org/wiki/Blob%5Fdetection" rel="nofollow">Blob or Connectivity Analysi</a>s, which I believe was first developed at SRI (Stanford Research Institute). Image moments are one component of this area.</p>
http://stackoverflow.com/questions/1618316/naming-convention-in-c/1618330#16183300Answer by Kenny for Naming Convention in c#Kenny2009-10-24T15:46:33Z2009-10-24T15:46:33Z<p>Juval Lowy took a stab at this is in <a href="http://rads.stackoverflow.com/amzn/click/0596003471" rel="nofollow">Programming .NET Components</a>, see this <a href="http://stackoverflow.com/questions/1003338/juval-lowys-c-coding-standards-questions">SO link</a> too.</p>
http://stackoverflow.com/questions/1597078/deliberatly-trigger-a-compilation-error-in-visual-studio-2008/1597097#15970972Answer by Kenny for Deliberatly trigger a compilation error in Visual Studio 2008Kenny2009-10-20T20:28:17Z2009-10-20T20:28:17Z<p>how about the <a href="http://msdn.microsoft.com/en-us/library/c8tk0xsk%28VS.80%29.aspx" rel="nofollow">compiler directive</a> #error?</p>
http://stackoverflow.com/questions/1556271/what-is-the-best-way-to-build-a-marketplace/1556367#15563670Answer by Kenny for What is the best way to build a marketplace?Kenny2009-10-12T19:13:56Z2009-10-12T19:13:56Z<p>Buy a 7-11 franchise. Or just sell/list on Amazon, EBay, clickbank.com, etc....</p>
http://stackoverflow.com/questions/1551774/net-how-to-talk-to-a-database-in-a-portable-way/1554973#15549731Answer by Kenny for [.NET] How to talk to a database in a portable way?Kenny2009-10-12T14:42:28Z2009-10-12T14:42:28Z<p>Consider these SO links:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/587159/has-anyone-used-any-net-code-generation-frameworks-in-mono-subsonic-nettiers">http://stackoverflow.com/questions/587159/has-anyone-used-any-net-code-generation-frameworks-in-mono-subsonic-nettiers</a></li>
<li><a href="http://stackoverflow.com/questions/409290/anybody-using-nettiers">http://stackoverflow.com/questions/409290/anybody-using-nettiers</a></li>
</ul>
http://stackoverflow.com/questions/1144480/what-is-the-most-under-valued-part-of-net/1145246#11452469Answer by Kenny for What is the most under-valued part of .NET?Kenny2009-07-17T19:34:38Z2009-10-09T18:37:59Z<p><a href="http://en.wikipedia.org/wiki/Mono%5F%28software%29" rel="nofollow">Mono</a> on Mac OS X, Linux, ...</p>
http://stackoverflow.com/questions/1543080/create-and-save-xls-files-in-c/1544065#15440650Answer by Kenny for Create and save xls files in c#Kenny2009-10-09T14:19:06Z2009-10-09T14:19:06Z<p>This SO thread and <a href="http://stackoverflow.com/questions/871115/what-is-the-best-and-fastest-way-to-write-into-excel-file-using-c/871142#871142">answer link here</a> is a good approach.</p>
http://stackoverflow.com/questions/1483308/best-protocol-technology-for-real-time-server-less-chat-application/1536885#15368850Answer by Kenny for Best protocol\technology for real-time server-less chat applicationKenny2009-10-08T10:18:49Z2009-10-08T10:18:49Z<p>I'm not sure about serverless, since I hosted the OpenFire jabber server, but this <a href="http://code.google.com/p/jabber-net/" rel="nofollow">Jabber.NET</a> library worked well for me.</p>
http://stackoverflow.com/questions/1518506/how-to-install-and-use-emgu-cv-in-c/1519373#15193730Answer by Kenny for How to install and use Emgu CV in C#?Kenny2009-10-05T10:49:48Z2009-10-05T10:49:48Z<p>@Razzie is correct. I found it helpful include these DLLs in your OpenCV assembly project with a copy on build/change: cv110.dll, cvaux110.dll, cxcore110.dll, highgui110.dll, opencv_ffmpeg110.dll and ml110.dll.</p>
http://stackoverflow.com/questions/1418986/is-there-a-net-framework-similar-to-rubys-sinatra5Is there a .NET framework similar to Ruby's Sinatra?Kenny2009-09-13T22:10:27Z2009-10-03T03:50:16Z
<p>Does anyone know if there is a .NET library/API similar to Ruby's <a href="http://www.sinatrarb.com/intro.html" rel="nofollow">Sinatra</a>?</p>
<p>Just wondering since with the new Routing API in ASP.NET MVC, WCF and .NET 3.5, it seems like a possibility. </p>
http://stackoverflow.com/questions/1487517/fastest-dithering-halftoning-library-in-c/1508787#15087870Answer by Kenny for Fastest dithering / halftoning library in CKenny2009-10-02T10:34:05Z2009-10-02T10:34:05Z<p>I know it's not a C library, but this got me curious about what's available for .NET to do error-diffusion which I used some 20 years ago on a project. I found <a href="http://www.aforgenet.com/" rel="nofollow">this</a> and specifically this <a href="http://www.aforgenet.com/framework/docs/html/9511dfbb-d75e-c757-8ecc-b5b63965503e.htm" rel="nofollow">method</a>. </p>
<p>But to try be helpful :) I found this <a href="http://2038bug.com/ptrans/ptrans.html" rel="nofollow">C library</a>. </p>
http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/1506044#15060443Answer by Kenny for What non-programming books should programmers read?Kenny2009-10-01T19:45:59Z2009-10-01T19:45:59Z<p><img src="http://rgr-static1.tangentlabs.co.uk/media/9781586217617/blink-the-power-of-thinking-without-thinking.jpg" alt="alt text" /></p>
<p>As well as the mentioned Gadwell's Tipping Point, <a href="http://rads.stackoverflow.com/amzn/click/0316172324" rel="nofollow">Blink</a> is a good choice. </p>
http://stackoverflow.com/questions/1504357/network-ip-blocker-in-c/1504472#15044721Answer by Kenny for Network IP blocker in C#Kenny2009-10-01T15:00:26Z2009-10-01T15:00:26Z<p>In WCF I know this code works</p>
<pre><code> /// <summary>
/// Returns the client IP
/// </summary>
public static string ClientIP
{
get
{
// determine IP address takes < 1ms
OperationContext context = OperationContext.Current;
MessageProperties messageProperties = context.IncomingMessageProperties;
RemoteEndpointMessageProperty endpointProperty =
messageProperties[RemoteEndpointMessageProperty.Name] as RemoteEndpointMessageProperty;
return endpointProperty.Address;
}
}
</code></pre>
http://stackoverflow.com/questions/1850038/what-is-the-correct-c-interop-code-to-handle-this-structure-and-methodComment by Kenny on What is the correct C# interop code to handle this structure and method?Kenny2009-12-04T22:23:52Z2009-12-04T22:23:52Zif you haven't been there, check out <a href="http://pinvoke.net/" rel="nofollow">pinvoke.net</a>http://stackoverflow.com/questions/1849918/pipe-communication-c/1849958#1849958Comment by Kenny on Pipe communication C++Kenny2009-12-04T22:22:45Z2009-12-04T22:22:45Z+1 on ReadFileExhttp://stackoverflow.com/questions/1820607/how-to-spot-empty-parking-spaces/1820710#1820710Comment by Kenny on How to spot empty parking spaces?Kenny2009-11-30T16:09:49Z2009-11-30T16:09:49ZWhile a viable commercial solution, I don't think it suffices as a school project. http://stackoverflow.com/questions/1816099/c-details-of-asyncwaithandle-waitone/1816111#1816111Comment by Kenny on C#-Details of AsyncWaitHandle.WaitOneKenny2009-11-29T17:55:50Z2009-11-29T17:55:50ZIt can also be used for windows events (e.g. CreateEvent) see SafeWaitHandle property and <a href="http://msdn.microsoft.com/en-us/library/microsoft.win32.safehandles.safewaithandle.safewaithandle.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>.http://stackoverflow.com/questions/1784361/why-wouldnt-microsoft-want-to-hinder-mono-and-moonlight/1784566#1784566Comment by Kenny on Why wouldn't Microsoft want to hinder Mono and Moonlight?Kenny2009-11-28T18:48:35Z2009-11-28T18:48:35ZI agree but the software as an appliance that the Mono guys are pushing can...perhaps with vertically oriented tools for the job. <a href="http://www.go-mono.com/monovs/Studio.aspx" rel="nofollow">go-mono.com/monovs/Studio.aspx</a>http://stackoverflow.com/questions/414098/detect-if-code-is-running-as-a-service/422357#422357Comment by Kenny on Detect if code is running as a serviceKenny2009-11-28T18:40:21Z2009-11-28T18:40:21ZHere is a good start to learn about Windows Services
<a href="http://msdn.microsoft.com/en-us/library/y817hyb6(VS.80).aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>http://stackoverflow.com/questions/1812887/have-you-ever-decided-never-to-work-with-someone-based-on-a-vcs-blame/1812892#1812892Comment by Kenny on Have you ever decided never to work with someone based on a VCS blame?Kenny2009-11-28T16:50:38Z2009-11-28T16:50:38ZDman! You've been looking at my code.http://stackoverflow.com/questions/1798620/where-does-hello-world-come-from/1798630#1798630Comment by Kenny on Where does "Hello, World!" come from?Kenny2009-11-25T18:06:39Z2009-11-25T18:06:39Z<a href="http://www.youtube.com/watch?v=gRdfX7ut8gw" rel="nofollow">youtube.com/watch?v=gRdfX7ut8gw</a>http://stackoverflow.com/questions/1645204/how-do-i-send-receive-windows-messages-between-vb6-and-c/1645430#1645430Comment by Kenny on How do I send/receive windows messages between VB6 and c#?Kenny2009-11-24T20:34:58Z2009-11-24T20:34:58Z+1 COM and VB are like peas and carrots. http://stackoverflow.com/questions/1762756/get-first-file-in-directoryComment by Kenny on Get first file in directoryKenny2009-11-19T11:49:26Z2009-11-19T11:49:26Z1st by what sort method? Alphabetically?http://stackoverflow.com/questions/1738980/how-do-i-disable-the-c-message-box-beep/1738993#1738993Comment by Kenny on How do I disable the c# message box beep?Kenny2009-11-16T00:34:33Z2009-11-16T00:34:33Z+1 perhaps a little heavy handed, depending on the need.http://stackoverflow.com/questions/1734253/which-is-the-best-for-a-3-tier-architecture-linq-to-sql-or-nhibernate/1734301#1734301Comment by Kenny on Which is the best for a 3-tier architecture; Linq to SQL or Nhibernate?Kenny2009-11-14T14:19:29Z2009-11-14T14:19:29ZCan you point to an article or post the reasons you want to avoid LINQ-to-Entities?http://stackoverflow.com/questions/1707959/is-there-a-runtime-benefit-to-using-const-local-variables/1708005#1708005Comment by Kenny on Is there a runtime benefit to using const local variables?Kenny2009-11-10T13:48:54Z2009-11-10T13:48:54Zother than a insignificantly smaller stack, it's functionally the same. Interesting though.http://stackoverflow.com/questions/1652020/choosing-between-vs-2005-2008-2010-for-independent-learning/1652053#1652053Comment by Kenny on Choosing between VS 2005/2008/2010 for independent learning.Kenny2009-10-30T21:16:25Z2009-10-30T21:16:25Z+1 screws the devs if they are so sensitive about their bugs.http://stackoverflow.com/questions/501818/does-outsourcing-make-you-worry-about-the-security-of-your-job/502115#502115Comment by Kenny on Does outsourcing make you worry about the security of your job?Kenny2009-10-30T20:47:11Z2009-10-30T20:47:11Z+1 lately my thought as well or another lost cost-of-living place.