User Eric - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T14:00:18Zhttp://stackoverflow.com/feeds/user/6367http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1742572/determine-when-a-mouse-hook-has-handled-the-last-message-winforms-net/1759925#17599250Answer by Eric for Determine when a mouse hook has handled the last message. Winforms, .NetEric2009-11-18T23:43:09Z2009-11-20T06:36:22Z<p>You are bypassing .NET mechanisms to handle windows events</p>
<p>You should not need anything native to deal with WinForms. Also the whole code is garbage collected so you <del>do</del> SHOULD not have to worry about deleting hooks</p>
<p>You might want to look at the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.form.deactivate.aspx" rel="nofollow">form.deactivate</a> event</p>
http://stackoverflow.com/questions/1032870/what-are-the-advantages-of-lepus3-over-uml2What are the advantages of LePUS3 over UML?Eric2009-06-23T14:21:52Z2009-11-08T13:16:48Z
<p>When searching online for object oriented concepts such as <a href="http://en.wikipedia.org/wiki/Composite%5Fpattern" rel="nofollow">the composite design pattern</a> I often found them represented in the LePUS3 notation. I am not really familiar with this
modeling language.</p>
<p>Is it something I should prefer over UML?</p>
http://stackoverflow.com/questions/439323/c-net-equivalent-to-java-public-static-void-main2C++ .NET equivalent to java public static void main()?Eric2009-01-13T15:21:19Z2009-11-08T13:13:18Z
<p>In java I can simply test classes directly with </p>
<pre><code>public static void main()
</code></pre>
<p>I then just add quick code and under Eclipse "Run" the class. Is there anything similar in C++ .NET ?</p>
<p>Right now I have to create an empty project, reference the correct headers then set that project as start up project.</p>
http://stackoverflow.com/questions/989439/software-like-synergy-that-also-works-with-windows0Software like Synergy that also works with windowsEric2009-06-12T23:00:41Z2009-11-05T15:11:37Z
<p>I'm using Synergy to control both a desktop and a laptop with a single set of mouse/keyboard. Unfortunately my desktop monitor is rather small (to programmer standards). I'd like to drag windows from my desktop and carry them to the laptop</p>
<p>Is there any software that can do this?</p>
http://stackoverflow.com/questions/690875/real-world-applications-of-erlang7Real world applications of erlangEric2009-03-27T18:09:22Z2009-11-04T00:08:56Z
<p>I'm searching for real world applications of erlang, like projects already built with that language or pointers on how to search for such projects.</p>
<p>I'm looking for real projects not just test projects that won't do anything</p>
http://stackoverflow.com/questions/1635943/any-hints-on-programming-dia-with-python-extensions0Any hints on programming Dia with Python extensions?Eric2009-10-28T08:53:34Z2009-10-28T09:05:11Z
<p>I'm searching for documentation on how to do it properly. Any hints?</p>
http://stackoverflow.com/questions/1050911/is-it-possible-to-use-anonymous-functions-in-c-net0Is it possible to use anonymous functions in C++ .NET?Eric2009-06-26T19:48:16Z2009-10-06T20:05:10Z
<p><a href="http://en.wikipedia.org/wiki/Anonymous%5Ffunction" rel="nofollow">Wikipedia</a> seems to say that C++0x will support anonymous functions. Boost also seem to support it. However I'm using .NET so if I could stick with it it would be awesome.</p>
<p>Basically I just want to write some quick code for objects. I have a robot which can have about 85 - 90 states. Most of the states are just "integer values passed to the robot microcontroller". So I tell the robot to go to state 35 for example.</p>
<p>However some states require additionnal manipulations such as user input so I'd like to keep it simple and write just a few lines of code for the differences. I've considered using derived classes but it involves a lot of code just to modify a few lines.</p>
http://stackoverflow.com/questions/291559/using-mixed-dlls-from-clrpure-projects1Using mixed DLLs from /clr:pure projectsEric2008-11-14T21:49:59Z2009-09-09T15:34:03Z
<p>I'm building a project along with a Dll.</p>
<p>The Dll must support native code so I declared it as a /clr.
My project was initialy also a /clr project and everything was fine. However I'd like to include some NUnit testing so I had to switch my main project from /clr to /clr:pure.</p>
<p>Everything still compiles but any Dll call generates a runtime error. When I revert back to /clr everything is ok</p>
<p>In my Dll, exported functions are declared as follow : </p>
<pre><code>#define DllExport __declspec( dllexport )
DllExport bool DisplayScan(bool bShow, bool bAllPasses) { }
</code></pre>
<p>I also made a .def file containing the real names of all the exported functions</p>
<pre><code>LIBRARY "Controller"
EXPORTS
DisplayScan
</code></pre>
<p>From my main project my imports are declared as follow :</p>
<pre><code>#define _DllImport [DllImport("Controller.dll", CallingConvention = CallingConvention::Cdecl)] static
_DllImport bool DisplayScan(bool bShow, bool bAllPasses)
</code></pre>
<p>Anyone ever encountered such a problem?</p>
http://stackoverflow.com/questions/830252/running-net-form-fullscreen1Running .NET Form fullscreenEric2009-05-06T15:44:14Z2009-09-07T04:12:38Z
<p>I'd like my application to be run as "fullscreen" much like a powerpoint presentation is ran. The title bar is gone and the menu bar is also gone.</p>
<p>I dont think it should be too complicated but I just can't find how to do it</p>
http://stackoverflow.com/questions/1358512/java-println-formatting-so-i-can-display-a-table/1358630#1358630-1Answer by Eric for Java println formatting so I can display a table?Eric2009-08-31T18:02:12Z2009-08-31T18:02:12Z<p>you can println "\t" which prints a tab, it will align everything easily</p>
http://stackoverflow.com/questions/1347866/md5-file-hash-for-the-same-unchanged-file-is-different-each-time-c/1348823#13488231Answer by Eric for MD5 file hash for the same unchanged file is different each time C#Eric2009-08-28T19:13:55Z2009-08-28T19:13:55Z<p>My suggestion is that you are not computing MD5 hashes since MD5 produces a fixed length output of 32 hex numbers</p>
<p>Also, since you don't see any numbers from 0xA to 0xF is quite puzzling</p>
<p>You might wanna check a "real" result with <a href="http://md5-hash-online.waraxe.us/" rel="nofollow">online MD5 calculators such as this one</a></p>
http://stackoverflow.com/questions/1348636/how-to-get-started-with-drivers-programming-under-windows/1348786#13487863Answer by Eric for How to get started with Drivers Programming under windows Eric2009-08-28T19:07:34Z2009-08-28T19:07:34Z<p>I would start by <a href="http://www.microsoft.com/whdc/Devtools/wdk/default.mspx" rel="nofollow">downloading the windows driver kit (WDK)</a>.</p>
<p>Afterwards, you decide which kind of driver you want. FileSystem driver? (probably not), RS-232 driver? usb driver? They all follow different rules and quirks.</p>
<p>The WDK comes with examples drivers for most kinds of drivers and should get you on track fast.</p>
http://stackoverflow.com/questions/1325699/is-there-a-good-design-pattern-for-implementing-optional-features/1325714#13257141Answer by Eric for Is there a good design pattern for implementing optional features?Eric2009-08-25T02:10:15Z2009-08-25T02:10:15Z<pre><code>interface Feature{
void execute_feature();
}
class Feature1 implements Feature{
void execute_feature(){}
}
class Feature2 implements Feature{
void execute_feature(){}
}
public static void main(String argv[]){
List<Feature> my_list = new List<Feature>();
my_list.Add(new Feature1());
my_list.Add(new Feature2());
for (Feature f : my_list){
f.execute_feature();
}
}
</code></pre>
<p>I think it's called strategy pattern</p>
<p>Syntax might not be exact</p>
http://stackoverflow.com/questions/454303/why-are-we-using-i-as-a-counter-in-loops37Why are we using i as a counter in loopsEric2009-01-17T23:35:08Z2009-08-24T22:03:59Z
<p>why are we using </p>
<pre><code>for (int i = 0 ; i < count ; i++){ }
</code></pre>
<p>why the i</p>
<p>why not </p>
<pre><code>for (int a = 0; a < count; a++){ }
</code></pre>
<p>I do it, you do it, everyone does it but WHY?</p>
<p>*edit</p>
<p>I found out an old saying about FORTRAN which is more funny than correct which says "god is real, everything else above is an integer".</p>
<p>"god" would be a variable name stating with a g so it would be in the real domain, while everything else above (excluding h for the joke's purpose) would be an integer</p>
<p>It seems that the original saying was in fact : "God is real, unless declared integer". Apologies to everyone citing me in their phd thesis</p>
http://stackoverflow.com/questions/1229318/how-to-read-copy-ctype-pointers-into-python-class0How to read/copy ctype pointers into python class?Eric2009-08-04T19:02:34Z2009-08-23T21:05:09Z
<p>This is a kind of follow-up from <a href="http://stackoverflow.com/questions/1228158/python-ctype-recursive-structures">my last question</a> if this can help you.</p>
<p>I'm defining a few ctype structures</p>
<pre><code>class EthercatDatagram(Structure):
_fields_ = [("header", EthercatDatagramHeader),
("packet_data_length", c_int),
("packet_data", POINTER(c_ubyte)),
("work_count", c_ushort)]
class EthercatPacket(Structure):
_fields_ = [("ether_header", ETH_HEADER),
("Ethercat_header", EthercatHeader),
("data", POINTER(EthercatDatagram))]
</code></pre>
<p>note that this is parsed correctly by python, the missing classes are defined elsewhere.
My problem is when I call the following code</p>
<pre><code>packet = EthercatPacket()
ethercap.RecvPacket(byref(packet))
print packet.data.header
</code></pre>
<p>This is incorrect. As I understand the problem, data is some kind of pointer so it isn't (really) mapped to EthercatDatagram, hence, the parser doesn't know the underlying header field.</p>
<p>is there some way to read that field as well as any other field represented by POINTER()?</p>
http://stackoverflow.com/questions/1228158/python-ctype-recursive-structures1python ctype recursive structuresEric2009-08-04T15:25:03Z2009-08-23T21:04:53Z
<p>I've developped a DLL for a driver in C. I wrote a test program in C++ and the DLL works fine.</p>
<p>Now I'd like to interract with this DLL using Python. I've successfully hidden most of the user defined C structures but there is one point where I have to use C structures. I'm rather new to python so I may get things wrong.</p>
<p>My approach is to redefine a few structures in python using ctype then pass the variable to my DLL. However in these class I have a custom linked list which contains recursive types as follow</p>
<pre><code>class EthercatDatagram(Structure):
_fields_ = [("header", EthercatDatagramHeader),
("packet_data_length", c_int),
("packet_data", c_char_p),
("work_count", c_ushort),
("next_command", EthercatDatagram)]
</code></pre>
<p>This fails, because inside EthercatDatagram, EthercatDatagram is not already defined so the parser returns an error. </p>
<p>How should I represent this linked list in python so that my DLL understands it correctly?</p>
http://stackoverflow.com/questions/1302368/how-to-tell-if-openmp-works-in-my-c-program/1302390#13023901Answer by Eric for How to tell if OpenMP works in my C++ programEric2009-08-19T20:15:24Z2009-08-19T20:15:24Z<p>You could use windows taskmanager (CTRL-SHIFT-ESC) on windows to monitor CPU usage, or top on *nix boxes.</p>
<p>Just check if many cores are used or not</p>
http://stackoverflow.com/questions/1302230/patch-vs-upgrade/1302384#13023840Answer by Eric for Patch vs. UpgradeEric2009-08-19T20:13:46Z2009-08-19T20:13:46Z<p>There is also a great lot of marketing involved.</p>
<p>I'm not wiling to pay for a patch while I might pay for an update (I'm looking at you OSX users).</p>
http://stackoverflow.com/questions/1301051/map-pointers-to-immutable-objects-with-hashtable-in-net0Map pointers to immutable objects with Hashtable in .NETEric2009-08-19T16:18:49Z2009-08-19T18:14:28Z
<p>I have a Hashtable object which "names" or "map" various fields in a class with a string </p>
<pre><code>ref class Interrupt{
Interrupt(){
this->type = 0;
this->size = 0;
}
int type;
int size;
}
Interrupt^ interrupt = gcnew Interrupt();
Hashtable^ map = gcnew Hashtable();
map->Add("InterruptType", interrupt->type);
map->Add("InterruptSize", interrupt->size);
</code></pre>
<p>this class is modified during runtime so type and size are both equals to 2.</p>
<p>further down the road I query my Hashtable but the values didn't change. I understand that it is because they are immutable. Is there a way I can specify my Hashtable to hold pointers to the fields of my class instead of storing the value of the reference?</p>
<p>I know I can modify class Interrupt to hold custom objects instead of raw int, but it would invole A LOT of refactoring.</p>
http://stackoverflow.com/questions/1288394/circular-dependecy-in-winforms-app-using-castle-windsor/1288851#12888510Answer by Eric for Circular dependecy in winforms app using Castle WindsorEric2009-08-17T16:04:56Z2009-08-17T16:04:56Z<p>I think that what you want is a forward reference to your form</p>
<p>Guessing by what you said, your project would not compile because of header precedence</p>
<p>How you write it exactly depends on your programming language</p>
<p>If your problem arise during runtime because of a null pointer reference, you can try to initialise every form during load, then wire everything and register to your for manager. </p>
http://stackoverflow.com/questions/1264568/how-does-unit-testing-improve-productivity/1264585#126458510Answer by Eric for How does unit testing improve productivity?Eric2009-08-12T06:51:27Z2009-08-12T06:51:27Z<p>Unit testing is not about producing more lines of codes per day. </p>
<p>It is to ensure that every day, your new lines of code don't cause more bugs.</p>
<p>You need to be very careful about what you mesure when you try to evaluate your "productivity". It might help you meet your deadlines however, since you will spend less time fixing stuff.</p>
<p>It is not something aimed for the "short term" as in "we'll use unit testing and our next project will be done in 80% of the time".</p>
http://stackoverflow.com/questions/1263480/good-way-to-organize-c-source-files/1263516#12635161Answer by Eric for Good way to organize C source files?Eric2009-08-11T23:24:22Z2009-08-11T23:24:22Z<p>If you define your structs and macros inside the .c, you won't be able to use it from other .c files</p>
<p>To do so, you have to put it in the .h so that #include tells the compiler where to check for your structs and macros</p>
<p>unless you #include "x.c", which you shouldn't do =)</p>
http://stackoverflow.com/questions/1262507/evolution-of-oop-long-term-directions/1262596#12625962Answer by Eric for Evolution of OOP: long term directionsEric2009-08-11T20:04:36Z2009-08-11T20:04:36Z<p>If no one uses it and its not on the rise, it does not exist</p>
<p><a href="http://www.tiobe.com/index.php/content/paperinfo/tpci/index.html" rel="nofollow">http://www.tiobe.com/index.php/content/paperinfo/tpci/index.html</a></p>
http://stackoverflow.com/questions/1253668/french-wordlist0French wordlistEric2009-08-10T08:15:47Z2009-08-10T08:29:19Z
<p>I'm searching for a wordlist to make a scrabble like game which would be in french</p>
http://stackoverflow.com/questions/1247968/fast-c-program-c-gui-possible/1250422#12504220Answer by Eric for Fast C++ program, C# GUI, possible?Eric2009-08-09T02:33:57Z2009-08-09T02:33:57Z<p>I've done it with C++.NET</p>
<p>Since both C++.NET and C# are managed I don't see why it could not be done. The point is how you will do it.</p>
<p>My scanner had up to 3000 lines / sec but the key strategy was to display blocks of 32 lines at a time. I didn't have hard real time requirements so I could be a little behind sometimes. If real time is very important to you, you should consider switching platform.</p>
<p>There is a real time windows solution called "InTime OS" but its really painful to use.</p>
<p>Another approach you can have is to separate the hard real time into a separate dll or library and have the C# show what it can at it's own speed. Really, the user will never be able to tell if your interface has 2000 fps or 500 fps</p>
http://stackoverflow.com/questions/922077/how-to-use-variables-inside-a-delegate-function0how to use variables inside a delegate functionEric2009-05-28T17:09:51Z2009-08-05T14:51:11Z
<p>I'm using a SDK for a usb camera. The SDK specifies that for each frame grabbed, a callback function will be called. The callback function is defined inside the SDK, it gets a data pointer to the image and a structure used to interpret the data.</p>
<p>All of that works correctly.</p>
<p>To make a useful application out of that, I need to access a few variables from my application. Now because the delegate function is static, I can only access static members. I thought of making a singleton out of them because its gonna be static, but is there any "conventionnal way" of accessing other data inside a delegate function?</p>
http://stackoverflow.com/questions/1229318/how-to-read-copy-ctype-pointers-into-python-class/1229490#12294900Answer by Eric for How to read/copy ctype pointers into python class?Eric2009-08-04T19:36:36Z2009-08-04T19:36:36Z<p>Ok I got it working</p>
<p>correct code was </p>
<pre><code>print packet.data.header[0]
</code></pre>
<p>thanks to the 7 person who dared to look at the question</p>
<p>the google string for the answer was : python ctype dereference pointer
3rd hit</p>
http://stackoverflow.com/questions/1229321/sending-structure-using-recvfrom-and-sendto/1229334#12293344Answer by Eric for Sending structure using recvfrom() and sendto()Eric2009-08-04T19:06:11Z2009-08-04T19:06:11Z<p>I'd remove the & in front of hp</p>
http://stackoverflow.com/questions/1228161/why-use-prefixes-on-member-variables-in-c-classes/1228193#12281935Answer by Eric for Why use prefixes on member variables in C++ classesEric2009-08-04T15:33:13Z2009-08-04T15:33:13Z<p>I don't think one syntax has real value over another. It all boils down, like you mentionned, to uniformity across the source files.</p>
<p>The only point where I find such rules interesting is when I need 2 things named identicaly, for example :</p>
<pre><code>void myFunc(int index){
this->index = index;
}
void myFunc(int index){
m_index = index;
}
</code></pre>
<p>I use it to differentiate the two. Also when I wrap calls, like from windows Dll, <em>RecvPacket(...)</em> from the Dll might be wrapped in <em>RecvPacket(...)</em> in my code. In these particular occasions using a prefix like "_" might make the two look alike, easy to identify which is which, but different for the compiler</p>
http://stackoverflow.com/questions/1076575/why-is-code-quality-not-popular/1076617#107661710Answer by Eric for Why is code quality not popular?Eric2009-07-02T20:49:21Z2009-07-17T20:00:14Z<p>Code review is not an exact science. <a href="http://en.wikipedia.org/wiki/Software%5Fmetric" rel="nofollow">Metrics</a> used are somehow debatable. Somewhere on that page : "<em>You can't control what you can't mesure</em>"</p>
<p>Suppose that you have one huge function of 5000 lines with 35 parameters. You can unit test it how much you want, it might do exactly what it is supposed to do. Whatever the inputs are. So based on unit testing, this function is "perfect". Besides correctness, there are tons of others <a href="http://en.wikipedia.org/wiki/Ility" rel="nofollow">quality attributes you might want to mesure</a>. Performance, scalability, maintainability, usability and such. Did you ever wondered why software maintenance is such a nightmare?</p>
<p>Real software projects quality control goes far beyond simply checking if the code is correct. If you check the <a href="http://en.wikipedia.org/wiki/V-Model%5F%28software%5Fdevelopment%29" rel="nofollow">V-Model of software development</a>, you'll notice that coding is only a small part of the whole equation.</p>
<p>Software quality control can go to as far as 60% of the whole cost of your project. This is huge. Instead, people prefer to cut to 0% and go home thinking they made the right choice. I think the real reason why so little time is dedicated to software quality is because software quality isn't well understood. </p>
<ul>
<li>What is there to mesure? </li>
<li>How do we mesure it? </li>
<li>Who will mesure it? </li>
<li>What will I gain/lose from mesuring it?</li>
</ul>
<p>Lots of coder sweatshops do not realise the relation between "less bugs now" and "more profit later". Instead, all they see is "time wasted now" and "less profit now". Even when shown pretty graphics demonstrating the opposite.</p>
<p>Moreover, software quality control and <a href="http://en.wikipedia.org/wiki/Software%5Fengineering" rel="nofollow">software engineering</a> as a whole is a relatively new discipline. A lot of the programming space so far has been taken by cyber cowboys. How many times have you heard that "anyone" can program? Anyone can write code that's for sure, but its not everyone who can be a programmer.</p>
<p>EDIT *</p>
<p>I've come across <a href="http://www2.computer.org/cms/Computer.org/ComputingNow/homepage/2009/0709/rW%5FSO%5FViewpoints.pdf" rel="nofollow">this paper (PDF)</a> which is from the guy who said "You can't control what you can't mesure". Basically he's saying that controlling everything is not as desirable as he first thought it would be. It is not an exact cooking recipe that you can blindly apply to all projects like the software engineering schools want to make you think. He just adds another parameter to control which is "Do I want to control this project? Will it be needed?"</p>
http://stackoverflow.com/questions/1759613/what-c-idioms-should-c-programmers-use/1759650#1759650Comment by Eric on What C++ idioms should C++ programmers use?Eric2009-11-18T23:45:27Z2009-11-18T23:45:27Zisnt it duck taping?http://stackoverflow.com/questions/374239/why-doesnt-python-have-a-switch-statement/475958#475958Comment by Eric on Why doesn't Python have a switch statement?Eric2009-11-14T18:17:41Z2009-11-14T18:17:41ZManaging 10x more classes makes it so much more easier to understandhttp://stackoverflow.com/questions/971312/why-avoid-increment-and-decrement-operators-in-javascript/971444#971444Comment by Eric on Why avoid increment ("++") and decrement ("--") operators in JavaScript?Eric2009-08-30T07:07:50Z2009-08-30T07:07:50Zthe conclusion is "watch out when you have multiple ++ symbols on the same line or same instruction". I don't think you've read ithttp://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114793#114793Comment by Eric on What are Code Smells? What is the best way to correct them?Eric2009-08-28T18:58:33Z2009-08-28T18:58:33ZIf i cant understand 100 lines of code in 15 seconds, I don't see how I would understand 10 functions of 10 lines of code in 10 seconds, much less how I'm supposed to put them altogether to achieve the same resulthttp://stackoverflow.com/questions/370073/whats-your-best-and-or-funniest-data-loss-story/370136#370136Comment by Eric on What's your best and/or funniest data loss story?Eric2009-08-28T14:52:32Z2009-08-28T14:52:32Zthis was on thedailywtf.com beforehttp://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/143759#143759Comment by Eric on What is the worst class/variable/function name you have ever encounteredEric2009-08-26T21:25:00Z2009-08-26T21:25:00ZTRWTF here is $k. $i and $j are finehttp://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/739215#739215Comment by Eric on What is the worst class/variable/function name you have ever encounteredEric2009-08-26T21:15:06Z2009-08-26T21:15:06Zetalon in french rather means "reference value"http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/1337442#1337442Comment by Eric on What is the worst class/variable/function name you have ever encounteredEric2009-08-26T21:13:37Z2009-08-26T21:13:37Zi just used google translate for this. knull in english is a four letter word starting with f and ending with khttp://stackoverflow.com/questions/1001494/being-a-lone-developer/1004206#1004206Comment by Eric on Being A Lone DeveloperEric2009-08-26T20:32:52Z2009-08-26T20:32:52ZMy ex-boss always reminded me "If you get hit by a car tomorrow, how can we pick up your work?"http://stackoverflow.com/questions/1315926/gcc-empty-program-23202-bytesComment by Eric on GCC: Empty program == 23202 bytes?Eric2009-08-24T22:06:33Z2009-08-24T22:06:33ZI'm willing to give you a state of the art hard drive I have, containing a whooping full gigabyte, so you can store 43 000 of those monstershttp://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/1225112#1225112Comment by Eric on What's your most controversial programming opinion?Eric2009-08-24T03:56:32Z2009-08-24T03:56:32ZYou may understand assembly but do you get how the hardware works? How electrons flow into different gates, how circuits are manufactured? Its all about choosing what you want to accomplish and the level of abstraction you need to achieve ithttp://stackoverflow.com/questions/1301051/map-pointers-to-immutable-objects-with-hashtable-in-net/1301059#1301059Comment by Eric on Map pointers to immutable objects with Hashtable in .NETEric2009-08-19T16:24:16Z2009-08-19T16:24:16ZGood idea, this will require a large switch like statement to handle multiple fields howeverhttp://stackoverflow.com/questions/1278401/c-programming-challengeComment by Eric on C++ programming challengeEric2009-08-14T15:20:07Z2009-08-14T15:20:07ZCan you link us to the programming challenge?http://stackoverflow.com/questions/851679/saving-an-image-in-opencv/1093096#1093096Comment by Eric on Saving an image in OpenCVEric2009-08-12T23:20:15Z2009-08-12T23:20:15ZI tried running opencv on my netbook, the camera usually works fine but for some reason, it doesn't pass the sanity checks. I can't have it to work eitherhttp://stackoverflow.com/questions/1262507/evolution-of-oop-long-term-directionsComment by Eric on Evolution of OOP: long term directionsEric2009-08-11T19:57:10Z2009-08-11T19:57:10Z@Stefano I code C++ for a living so its offensive! =)