User Kenny - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T12:58:38Z http://stackoverflow.com/feeds/user/3225 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1849918/pipe-communication-c/1850046#1850046 0 Answer by Kenny for Pipe communication C++ Kenny 2009-12-04T22:22:07Z 2009-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#1850024 0 Answer by Kenny for Good application for automated testing of .Net GUIs written in C# Kenny 2009-12-04T22:18:31Z 2009-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#1820756 0 Answer by Kenny for How to spot empty parking spaces? Kenny 2009-11-30T16:13:10Z 2009-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#1816192 0 Answer by Kenny for Question on Speech Recognition classes in .NET Kenny 2009-11-29T17:50:40Z 2009-11-29T17:50:40Z <p>How about route the calls to <a href="https://www.google.com/accounts/ServiceLogin?passive=true&amp;service=grandcentral&amp;ltmpl=bluebar&amp;continue=https%3A//www.google.com/voice/account/signin/%3Fprev%3D%252F&amp;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#1816149 1 Answer by Kenny for C++ when to use Union or Structs Kenny 2009-11-29T17:37:33Z 2009-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#1816116 0 Answer by Kenny for Passing void(*) in C++ Kenny 2009-11-29T17:27:23Z 2009-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#1816111 2 Answer by Kenny for C#-Details of AsyncWaitHandle.WaitOne Kenny 2009-11-29T17:22:42Z 2009-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#1815408 0 Answer by Kenny for How to push data over the Internet? Kenny 2009-11-29T12:34:30Z 2009-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#1810937 1 Answer by Kenny for Memorable 32-bit value as a constant Kenny 2009-11-27T23:07:29Z 2009-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#1793640 0 Answer by Kenny for Why doesn't getchar() recognise return as EOF in windows console? Kenny 2009-11-24T23:20:04Z 2009-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#1718672 0 Answer by Kenny for Basic MEF workflow/usage Kenny 2009-11-11T22:54:13Z 2009-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#1690579 1 Answer by Kenny for How useful is C#'s ?? operator? Kenny 2009-11-06T21:26:40Z 2009-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#1684110 1 Answer by Kenny for Consume a WCF service from a console app as part of a SQL job? Kenny 2009-11-05T22:31:25Z 2009-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#1675868 0 Answer by Kenny for Faster way to find out if a user exists on a system? Kenny 2009-11-04T18:53:40Z 2009-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#1658545 0 Answer by Kenny for Load numbers from text file in C Kenny 2009-11-01T22:11:14Z 2009-11-01T22:11:14Z <p>or fopen and strtok :)</p> http://stackoverflow.com/questions/1504988/wcf-webhttpbinding-testing-tool/1657038#1657038 0 Answer by Kenny for WCF WebHttpBinding Testing Tool Kenny 2009-11-01T12:23:25Z 2009-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#1655646 1 Answer by Kenny for Learning to write a compiler Kenny 2009-10-31T21:10:48Z 2009-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#1654903 0 Answer by Kenny for computer vision: extracting info about a shape given a contour (e.g. pointy, round...) Kenny 2009-10-31T16:47:13Z 2009-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#1618330 0 Answer by Kenny for Naming Convention in c# Kenny 2009-10-24T15:46:33Z 2009-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#1597097 2 Answer by Kenny for Deliberatly trigger a compilation error in Visual Studio 2008 Kenny 2009-10-20T20:28:17Z 2009-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#1556367 0 Answer by Kenny for What is the best way to build a marketplace? Kenny 2009-10-12T19:13:56Z 2009-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#1554973 1 Answer by Kenny for [.NET] How to talk to a database in a portable way? Kenny 2009-10-12T14:42:28Z 2009-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#1145246 9 Answer by Kenny for What is the most under-valued part of .NET? Kenny 2009-07-17T19:34:38Z 2009-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#1544065 0 Answer by Kenny for Create and save xls files in c# Kenny 2009-10-09T14:19:06Z 2009-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#1536885 0 Answer by Kenny for Best protocol\technology for real-time server-less chat application Kenny 2009-10-08T10:18:49Z 2009-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#1519373 0 Answer by Kenny for How to install and use Emgu CV in C#? Kenny 2009-10-05T10:49:48Z 2009-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-sinatra 5 Is there a .NET framework similar to Ruby's Sinatra? Kenny 2009-09-13T22:10:27Z 2009-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#1508787 0 Answer by Kenny for Fastest dithering / halftoning library in C Kenny 2009-10-02T10:34:05Z 2009-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#1506044 3 Answer by Kenny for What non-programming books should programmers read? Kenny 2009-10-01T19:45:59Z 2009-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#1504472 1 Answer by Kenny for Network IP blocker in C# Kenny 2009-10-01T15:00:26Z 2009-10-01T15:00:26Z <p>In WCF I know this code works</p> <pre><code> /// &lt;summary&gt; /// Returns the client IP /// &lt;/summary&gt; public static string ClientIP { get { // determine IP address takes &lt; 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-method Comment by Kenny on What is the correct C# interop code to handle this structure and method? Kenny 2009-12-04T22:23:52Z 2009-12-04T22:23:52Z if 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#1849958 Comment by Kenny on Pipe communication C++ Kenny 2009-12-04T22:22:45Z 2009-12-04T22:22:45Z +1 on ReadFileEx http://stackoverflow.com/questions/1820607/how-to-spot-empty-parking-spaces/1820710#1820710 Comment by Kenny on How to spot empty parking spaces? Kenny 2009-11-30T16:09:49Z 2009-11-30T16:09:49Z While 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#1816111 Comment by Kenny on C#-Details of AsyncWaitHandle.WaitOne Kenny 2009-11-29T17:55:50Z 2009-11-29T17:55:50Z It 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/&hellip;</a>. http://stackoverflow.com/questions/1784361/why-wouldnt-microsoft-want-to-hinder-mono-and-moonlight/1784566#1784566 Comment by Kenny on Why wouldn't Microsoft want to hinder Mono and Moonlight? Kenny 2009-11-28T18:48:35Z 2009-11-28T18:48:35Z I 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#422357 Comment by Kenny on Detect if code is running as a service Kenny 2009-11-28T18:40:21Z 2009-11-28T18:40:21Z Here 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/&hellip;</a> http://stackoverflow.com/questions/1812887/have-you-ever-decided-never-to-work-with-someone-based-on-a-vcs-blame/1812892#1812892 Comment by Kenny on Have you ever decided never to work with someone based on a VCS blame? Kenny 2009-11-28T16:50:38Z 2009-11-28T16:50:38Z Dman! You've been looking at my code. http://stackoverflow.com/questions/1798620/where-does-hello-world-come-from/1798630#1798630 Comment by Kenny on Where does "Hello, World!" come from? Kenny 2009-11-25T18:06:39Z 2009-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#1645430 Comment by Kenny on How do I send/receive windows messages between VB6 and c#? Kenny 2009-11-24T20:34:58Z 2009-11-24T20:34:58Z +1 COM and VB are like peas and carrots. http://stackoverflow.com/questions/1762756/get-first-file-in-directory Comment by Kenny on Get first file in directory Kenny 2009-11-19T11:49:26Z 2009-11-19T11:49:26Z 1st by what sort method? Alphabetically? http://stackoverflow.com/questions/1738980/how-do-i-disable-the-c-message-box-beep/1738993#1738993 Comment by Kenny on How do I disable the c# message box beep? Kenny 2009-11-16T00:34:33Z 2009-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#1734301 Comment by Kenny on Which is the best for a 3-tier architecture; Linq to SQL or Nhibernate? Kenny 2009-11-14T14:19:29Z 2009-11-14T14:19:29Z Can 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#1708005 Comment by Kenny on Is there a runtime benefit to using const local variables? Kenny 2009-11-10T13:48:54Z 2009-11-10T13:48:54Z other 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#1652053 Comment by Kenny on Choosing between VS 2005/2008/2010 for independent learning. Kenny 2009-10-30T21:16:25Z 2009-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#502115 Comment by Kenny on Does outsourcing make you worry about the security of your job? Kenny 2009-10-30T20:47:11Z 2009-10-30T20:47:11Z +1 lately my thought as well or another lost cost-of-living place.