User Edu Felipe - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T17:13:07Z http://stackoverflow.com/feeds/user/21648 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/201593/is-there-a-simple-script-to-convert-c-enum-to-string 21 Is there a simple script to convert C++ enum to string? Edu Felipe 2008-10-14T15:14:04Z 2009-11-04T16:22:03Z <p>Suppose we have some named enums:</p> <pre><code>enum MyEnum { FOO, BAR = 0x50 }; </code></pre> <p>What I googled for is a script (any language) that scans all the headers in my project and generates a header with one function per enum.</p> <pre><code>char* enum_to_string(MyEnum t); </code></pre> <p>And a implementation with something like this:</p> <pre><code>char* enum_to_string(MyEnum t){ switch(t){ case FOO: return "FOO"; case BAR: return "BAR"; default: return "INVALID ENUM"; } } </code></pre> <p>The gotcha is really with typedefed enums, and unnamed C style enums. Does anybody know something for this?</p> <p>EDIT: The solution should not modify my source, except for the generated functions. The enums are in an API, so using the solutions proposed until now is just not an option.</p> http://stackoverflow.com/questions/1579443/instruct-gdb-6-5-to-use-source-embedded-in-object-file 1 Instruct GDB 6.5 to use source embedded in object file Edu Felipe 2009-10-16T17:49:20Z 2009-10-28T17:32:15Z <p>Hi All!</p> <p>I've been trying to make <code>GNU gdb 6.5-14</code> to use the source code embedded on the object file when debugging, instead of scanning some directories for it.</p> <p>The main reason is that I develop for an embedded platform and I cross compile, which means that all the source is in my computer.</p> <p>I read about the <code>-ggdb3</code> flag, that includes a lot of extra info, including the source code. So I started compiling with that flag.</p> <p>Doing a <code>objdump -S src/lib/libfoo.so</code> indeed prints out all the source code with the assembly code intermixed with the source code, so I'm guessing that it does indeed contain that info.</p> <p>The only thing is that GDB does not print it, unless I run from a nfs mounted version of my workspace that contains the source.</p> <p>Does anyone know how can I instruct gdb to look in the object file for code instead of relying on external files?</p> http://stackoverflow.com/questions/1459344/qt-and-serial-port-programming/1459697#1459697 3 Answer by Edu Felipe for Qt and serial port programming Edu Felipe 2009-09-22T12:08:50Z 2009-09-22T12:08:50Z <p>Well, there's always <a href="http://boost.org" rel="nofollow">Boost</a>.</p> <p>In Boost there is a great Async I/O library called <a href="http://www.boost.org/doc/libs/1%5F40%5F0/doc/html/boost%5Fasio.html" rel="nofollow">ASIO</a>. It can perform operations in all sorts of endpoints, including <a href="http://www.boost.org/doc/libs/1%5F40%5F0/doc/html/boost%5Fasio.html" rel="nofollow">serial ports</a>.</p> <p>There is a great <a href="http://www.nabble.com/Simple-serial-port-demonstration-with-boost-asio-asynchronous-I-O-p19849520.html" rel="nofollow">example</a> about how to build a minicom-like application using Boost::Asio, that you can use to see if ASIO will attend your needs.</p> <p>Since boost works on all platforms/compilers under the sun, the cross platform requirement can be checked.</p> <p>Cheers.</p> http://stackoverflow.com/questions/1459554/video-file-validation-in-django/1459608#1459608 0 Answer by Edu Felipe for Video file validation in django Edu Felipe 2009-09-22T11:50:28Z 2009-09-22T11:50:28Z <p>You can integrate with the <a href="http://www.sno.phy.queensu.ca/~phil/exiftool/" rel="nofollow">ExifTool</a> library, as it extracts metadata from audio/video/image files, and it can report you the file type.</p> <p>According to the docs you can even check other informations such as type of codec: <a href="http://www.sno.phy.queensu.ca/~phil/exiftool/TagNames/Flash.html" rel="nofollow">http://www.sno.phy.queensu.ca/~phil/exiftool/TagNames/Flash.html</a></p> http://stackoverflow.com/questions/1316092/updating-boost-wave-from-svn/1316109#1316109 1 Answer by Edu Felipe for Updating Boost Wave from SVN Edu Felipe 2009-08-22T14:40:20Z 2009-08-22T14:40:20Z <p>Well, you can check the logs and see the exact revision that the issue was fixed, diff only yhat revision and manually apply the patch.</p> <p>It is not recommended that you only updated one component, as boost heavily reuses itself, so if the interface changes you'd start getting all kinds of weird behaviors. Perhaps if you specify the component and the bug we could help you further.</p> http://stackoverflow.com/questions/1291994/auto-browser-refresh-during-web-development/1292032#1292032 4 Answer by Edu Felipe for Auto browser refresh during web development Edu Felipe 2009-08-18T05:49:33Z 2009-08-18T05:49:33Z <p>On Mac OS X you can do that using AppleScript. I did that some time ago and been using it ever since.</p> <pre><code># Check if Firefox is running, if so refresh ps -xc|grep -sqi firefox &amp;&amp; osascript &lt;&lt;'APPLESCRIPT' tell app "Firefox" to activate tell app "System Events" keystroke "r" using {command down} end tell APPLESCRIPT # Check if Safari is running, if so refresh ps -xc|grep -sq Safari &amp;&amp; osascript -e 'tell app "Safari"' -e 'activate' \ -e 'do JavaScript "window.location.reload();" in first document' -e 'end tell' </code></pre> <p>It refreshes Safari and Firefox, but as I said, it only works the mac. I've been using it on Textmate, this way every time I save a django file I also refresh the browsers. Pretty handy, but also slightly annoying when reading docs online and writing code, hehe.</p> http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/165116#165116 188 Answer by Edu Felipe for What real life bad habits has programming given you? Edu Felipe 2008-10-02T23:53:07Z 2009-08-05T20:31:04Z <p>Knuth would kill me, but I try to optimize every single path that I take, from college to home or just to the bathroom. I also tend to try to optimize the flow of people serving things in restaurants. But that's just sad.</p> http://stackoverflow.com/questions/1019652/how-can-i-know-if-an-dom-element-is-currently-on-screen-using-jquery 0 How can I know if an DOM element is currently on screen using jQuery. Edu Felipe 2009-06-19T19:24:28Z 2009-06-19T19:32:15Z <p>Is there a function, or plugin, that tells me if more than 50% of a <code>&lt;div&gt;</code> block is currently being displayed?</p> <p>I know there are things like <code>$.offset()</code> but I didn't want to do it by hand every time the user resizes it's window or scroll to a region.</p> <p>Something on the lines of <code>:visible</code>, but that is currently visible.</p> <p>Thanks!</p> http://stackoverflow.com/questions/717239/ioservice-why-and-how-is-it-used/717251#717251 5 Answer by Edu Felipe for io_service , why and how is it used Edu Felipe 2009-04-04T15:22:08Z 2009-04-04T16:29:37Z <p>Asio's <code>io_service</code> is the facilitator for operating on asynchronous functions. Once a async operation is ready, it uses one of <code>io_service</code>'s running threads to call you back. If no such thread exists it uses it's own internal thread to call you. </p> <p>Think of it as a queue containing operations. It garantees you that those operations, when run, will only do so on the threads that called its <code>run()</code> or <code>run_once()</code> methods, or when dealing with sockets and async IO, it's internal thread.</p> <p>The reason you must pass it to everyone is basically that someone has to wait for async operations to be ready, an as stated in it's own documentation <code>io_service</code> is ASIO's link to the Operating System I/O service so it abstracts away the platform's own async notifiers, such as <code>kqueue</code>, <code>/dev/pool/</code>, <code>epool</code>, and the methods to operate on those, such as <code>select()</code>.</p> <p>Primarily I end up using io_service to demultiplex callbacks from several parts of the system, and make sure they operate on the same thread, eliminating the need for explicit locking, since the operations are serialized. It is a very powerful idiom for asynchronous applications.</p> <p>You can take a look at the <a href="http://think-async.com/Asio/asio-1.4.1/doc/asio/overview/core/basics.html" rel="nofollow">core documentation</a> to get a better feeling of why <code>io_service</code> is needed and what it does.</p> http://stackoverflow.com/questions/570793/how-to-stop-a-read-operation-on-a-socket 1 How to stop a read operation on a socket? Edu Felipe 2009-02-20T18:49:18Z 2009-02-20T22:33:03Z <p>From one thread I got the following code:</p> <pre><code>int next_stuff(char **code){ ... len=read(file_desc,buffer+end_len,packet_size-end_len); if(len&lt;=0) { if(len==-1 &amp;&amp; errno==EAGAIN) return(0); else return(-1); } ... } while (next_stuff(&amp;buff) == 0) { ... } </code></pre> <p>On the other thread I'd like to finish that socket and exit this operation, but only doing a</p> <pre><code>close(file_desc); </code></pre> <p>does not cause read to return nonblocked. Am I missing something?</p> <p>EDIT:</p> <p>shutdown does not work as well. And I am trying that on Linux 2.6.23</p> http://stackoverflow.com/questions/521957/how-to-develop-a-directfb-app-without-leaving-x-11-environment 0 How to develop a DirectFB app without leaving X.11 environment. Edu Felipe 2009-02-06T20:03:54Z 2009-02-07T04:07:32Z <p>Hi folks,</p> <p>I'm trying to develop a GUI application for an embedded platform, without any windowing whatsoever and I'm doing that with DirectFB, and it suits my needs very fine.</p> <p>Since the embedded I develop for is not that powerful, I would really like to try to develop on my own Ubuntu desktop. The problem is Framebuffer is conflicting with X.org causing me to leave the whole desktop, and shutdown X.org just to see the result of my changes.</p> <p>Is there a good framebuffer simulator that suits my needs? Qt has one, called QVFb, but it only works for developing Qt apps, and the VNC back-end of DirectFB always crash.</p> <p>So, any ideas?</p> http://stackoverflow.com/questions/281136/creating-an-object-in-shared-memory-inside-a-shared-lib-so-in-c 1 Creating an object in shared memory inside a Shared Lib (so) in C++ Edu Felipe 2008-11-11T15:05:16Z 2008-11-11T15:50:20Z <p>Is it possible to share a single 'god' instance among everyone that links to this code, to be placed in a shared object?</p> <pre><code>god* _god = NULL; extern "C" { int set_log_level(int level) { if(_god == NULL) return -1; _stb-&gt;log_level(level); return 0; } int god_init(){ if(_god == NULL){ _god = new god(); //Magic happens here } } } </code></pre> <p>Provided that I perform a lock synchronization at the beginning of every function, and considering that God itself can new/malloc other things, but those things will never be returned themselves to the caller (God mallocs only for internal use), what is the simplest way of doing this, if possible.</p> <p>How can that be extended to an arbitrary number of programs linked to this shared library?</p> http://stackoverflow.com/questions/261599/why-can-i-use-a-function-before-its-defined-in-javascript 6 Why can I use a function before it's defined in Javascript? Edu Felipe 2008-11-04T11:35:41Z 2008-11-04T17:38:23Z <p>This code always work, and across browsers.</p> <pre><code>function fooCheck(){ alert(internalFoo()); return internalFoo(); function internalFoo(){ return true; } } fooCheck(); </code></pre> <p>I could not find a single reference to why it should work, though. I first saw this in John Resig's presentation note, but it just mentioned it. There's no explanation there or anywhere for that matter.</p> <p>Could someone please enlighten me?</p> http://stackoverflow.com/questions/256218/the-simplest-way-of-printing-a-portion-of-a-char-in-c 4 The simplest way of printing a portion of a char[] in C Edu Felipe 2008-11-01T22:59:45Z 2008-11-03T01:32:49Z <p>Let's say I have a char* str = "0123456789" and I want to cut the first and the last three letters and print just the middle, what is the simplest, and safest, way of doing it?</p> <p>Now the trick: The portion to cut and the portion to print are of variable size, so I could have a very long char*, or a very small one.</p> http://stackoverflow.com/questions/160694/syntax-highlighting-code-with-javascript/160768#160768 3 Answer by Edu Felipe for Syntax highlighting code with Javascript Edu Felipe 2008-10-02T03:23:44Z 2008-10-02T03:23:44Z <p>If you're using jQuery there's Chilli:</p> <p><a href="http://code.google.com/p/jquery-chili-js/" rel="nofollow">http://code.google.com/p/jquery-chili-js/</a></p> <p>All you have to do is include the jquery-chili.js and recipes.js, and do the highlight with </p> <pre><code>$("code").chili(); </code></pre> <p>It should figure out the language by itself.</p> http://stackoverflow.com/questions/160633/why-do-we-still-program-with-flat-files/160752#160752 5 Answer by Edu Felipe for Why do we still program with flat files? Edu Felipe 2008-10-02T03:16:02Z 2008-10-02T03:16:02Z <p>Here's why:</p> <ul> <li><p>Human readable. That makes a lot easier to spot a mistake, in both the file and the parsing method. Also can be read out loud. That's one that you just cannot get with XML, and might make a difference, specially in customer support.</p></li> <li><p>Insurance against obsolescence. As long as regex exist, it is possible to write a pretty good parser in just a few lines of code.</p></li> <li><p>Leverage. Almost everything there is, from revision control systems to editors to filter, can inspect, merge and operate on flat files. Merging XML can be a mess.</p></li> <li><p>Ability to integrate them rather easily with UNIX tools, such as grep, cut or sed.</p></li> </ul> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/133131#133131 0 Answer by Edu Felipe for What is the single most influential book every programmer should read? Edu Felipe 2008-09-25T12:51:26Z 2008-09-25T12:51:26Z <p><img src="http://pixhost.eu/avaxhome/avaxhome/2007-01-19/CC.jpg" alt="Code Craft" /></p> <p>I personally think this is a little better than the venerable Code Complete. Pete Goodliffe has a very practical approach, and the book is a lighter read.</p> http://stackoverflow.com/questions/127290/is-it-possible-to-subclass-a-c-struct-in-c-and-use-pointers-to-the-struct-in-c 7 Is it possible to subclass a C struct in C++ and use pointers to the struct in C code? Edu Felipe 2008-09-24T13:56:53Z 2008-09-25T12:06:25Z <p>Is there a side effect in doing this:</p> <p>C code:</p> <pre><code>struct foo { int k; }; int ret_foo(const struct foo* f){ return f.k; } </code></pre> <p>C++ code:</p> <pre><code>class bar : public foo { int my_bar() { return ret_foo( (foo)this ); } }; </code></pre> <p>There's an extern "C" around the C++ code and each code is inside its on compilation unit.</p> <p>Is this portable across compilers?</p> http://stackoverflow.com/questions/201593/is-there-a-simple-script-to-convert-c-enum-to-string/201770#201770 Comment by Edu Felipe on Is there a simple script to convert C++ enum to string? Edu Felipe 2009-10-28T20:54:53Z 2009-10-28T20:54:53Z The problem with this solution is that it changes the header defining the enum, which I cannot do. So this is not enough for my problem. http://stackoverflow.com/questions/1459554/video-file-validation-in-django Comment by Edu Felipe on Video file validation in django Edu Felipe 2009-09-22T11:51:41Z 2009-09-22T11:51:41Z Yeah, the header of the question is misleading. http://stackoverflow.com/questions/1448596/operator-overloading-in-c/1448608#1448608 Comment by Edu Felipe on operator overloading in C++ Edu Felipe 2009-09-19T14:55:21Z 2009-09-19T14:55:21Z This should be down voted as it is the wrong answer. http://stackoverflow.com/questions/1448596/operator-overloading-in-c/1448608#1448608 Comment by Edu Felipe on operator overloading in C++ Edu Felipe 2009-09-19T14:09:23Z 2009-09-19T14:09:23Z No. You can't override <code>-&gt;</code> outside of a class. http://stackoverflow.com/questions/1302618/jquery-and-this-object/1302634#1302634 Comment by Edu Felipe on JQuery and 'this' object Edu Felipe 2009-08-19T21:15:18Z 2009-08-19T21:15:18Z <code>this</code> does not refers to the jQuery. As Prakash noticed, it points to the DOM element. http://stackoverflow.com/questions/1296843/what-is-the-difference-between-null-0-and-0/1296871#1296871 Comment by Edu Felipe on What is the difference between NULL, '\0' and 0 Edu Felipe 2009-08-18T22:22:29Z 2009-08-18T22:22:29Z Why was this downvoted? The answer is valid and correct. http://stackoverflow.com/questions/884266/mixing-libraries-from-different-c-compilers/884373#884373 Comment by Edu Felipe on Mixing libraries from different C++ compilers Edu Felipe 2009-07-20T05:25:08Z 2009-07-20T05:25:08Z That is the theory, but in the practice the last ABI change was 3.4 http://stackoverflow.com/questions/261599/why-can-i-use-a-function-before-its-defined-in-javascript/262643#262643 Comment by Edu Felipe on Why can I use a function before it's defined in Javascript? Edu Felipe 2009-07-19T21:27:54Z 2009-07-19T21:27:54Z Actually, it's for very different reasons. The <code>if</code> block does not create a scope, while a <code>function()</code> block always creates one. The real reason was that the definition of global javascript names happens at compile phase, so that even if the code does not run, the name is defined. (Sorry it took so long to comment) http://stackoverflow.com/questions/700065/i-have-already-added-colorspaceconverter Comment by Edu Felipe on I have already added ColorSpaceConverter Edu Felipe 2009-07-11T20:35:53Z 2009-07-11T20:35:53Z Could someone please close this question? http://stackoverflow.com/questions/1019652/how-can-i-know-if-an-dom-element-is-currently-on-screen-using-jquery Comment by Edu Felipe on How can I know if an DOM element is currently on screen using jQuery. Edu Felipe 2009-06-19T19:30:54Z 2009-06-19T19:30:54Z The div contains only a <code>&lt;p&gt;</code> with plain text. http://stackoverflow.com/questions/570793/how-to-stop-a-read-operation-on-a-socket/570956#570956 Comment by Edu Felipe on How to stop a read operation on a socket? Edu Felipe 2009-02-20T20:35:47Z 2009-02-20T20:35:47Z Sorry, as I commented above shutdown does not do it was well. It does not make the read call return. http://stackoverflow.com/questions/570793/how-to-stop-a-read-operation-on-a-socket Comment by Edu Felipe on How to stop a read operation on a socket? Edu Felipe 2009-02-20T18:55:17Z 2009-02-20T18:55:17Z Also, doing a shutdown before the close does not work as well. http://stackoverflow.com/questions/521957/how-to-develop-a-directfb-app-without-leaving-x-11-environment/522998#522998 Comment by Edu Felipe on How to develop a DirectFB app without leaving X.11 environment. Edu Felipe 2009-02-09T20:09:38Z 2009-02-09T20:09:38Z force-windowed really worked for me. Thanks a lot! http://stackoverflow.com/questions/521957/how-to-develop-a-directfb-app-without-leaving-x-11-environment/523108#523108 Comment by Edu Felipe on How to develop a DirectFB app without leaving X.11 environment. Edu Felipe 2009-02-09T15:10:57Z 2009-02-09T15:10:57Z That's what I'm doing right now, but the process takes too much time. http://stackoverflow.com/questions/281136/creating-an-object-in-shared-memory-inside-a-shared-lib-so-in-c/281168#281168 Comment by Edu Felipe on Creating an object in shared memory inside a Shared Lib (so) in C++ Edu Felipe 2008-11-11T15:23:39Z 2008-11-11T15:23:39Z There's no other approach in doing this specific problem other than using RPC, but that has caused a serious performance issue in the app I am developing. Also bear in mind that I do not own/control all the code that requires the linking, so I cannot modify it.