User Fabio Ceconello - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T00:23:57Z http://stackoverflow.com/feeds/user/8999 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/74067#74067 12 Answer by Fabio Ceconello for What development book made the most impact on you as a developer? Fabio Ceconello 2008-09-16T16:11:53Z 2009-11-26T05:33:07Z <p><a href="http://www.amazon.com/Art-Computer-Programming-Vol-Fundamental-Algorithms/dp/B000YT9K3K/ref=sr%5F1%5F1?ie=UTF8&amp;s=books&amp;qid=1259213547&amp;sr=1-1" rel="nofollow">The Art of Computer Programming vol I</a>, by D. Knuth</p> http://stackoverflow.com/questions/1786137/c-serialization-of-the-floating-point-numbers-floats-doubles/1786407#1786407 4 Answer by Fabio Ceconello for C - Serialization of the floating point numbers (floats, doubles) Fabio Ceconello 2009-11-23T22:10:06Z 2009-11-23T22:10:06Z <p>Assuming you're using mainstream compilers, floating point values in C and C++ obey the IEEE standard and when written in binary form to a file can be recovered in any other platform, provided that you write and read using the same byte endianess. So my suggestion is: pick an endianess of choice, and before writing or after reading, check if that endianess is the same as in the current platform; if not, just swap the bytes.</p> http://stackoverflow.com/questions/1786267/resources-for-image-recognition/1786347#1786347 2 Answer by Fabio Ceconello for Resources for Image Recognition Fabio Ceconello 2009-11-23T22:01:04Z 2009-11-23T22:01:04Z <p>The MIT OpenCourseWare has an image recognition course. Unfortunately, there are no video lectures for this course yet, but you'll find lecture notes and other materials.</p> <p><a href="http://ocw.mit.edu/OcwWeb/Electrical-Engineering-and-Computer-Science/6-801Fall-2004/CourseHome/index.htm" rel="nofollow">http://ocw.mit.edu/OcwWeb/Electrical-Engineering-and-Computer-Science/6-801Fall-2004/CourseHome/index.htm</a></p> http://stackoverflow.com/questions/1656212/c-exe-made-in-vc-2008-runs-on-windows-7-but-not-xp/1656238#1656238 1 Answer by Fabio Ceconello for C++ EXE made in VC++ 2008 runs on Windows 7 but not XP Fabio Ceconello 2009-11-01T02:35:18Z 2009-11-01T02:35:18Z <p>Do you have the manifest files in your application directory? I'd recommend to make sure they are there and refer correctly to the DLL locations. Take a look at this reference:</p> <p><a href="http://msdn.microsoft.com/en-us/library/ms235342%28VS.80%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms235342%28VS.80%29.aspx</a></p> http://stackoverflow.com/questions/1655796/best-way-to-index-a-tracklog 0 Best way to index a tracklog Fabio Ceconello 2009-10-31T22:28:17Z 2009-10-31T23:13:29Z <p>Given a set of points (2D) representing a tracklog (i.e. a sequence of locations in a map, a GPS recording for instance) I am unsure which would be the most efficient way to index it, in order to quickly select those contained in a given rectangle for rendering.</p> <p>Basically the two options I was considering were:</p> <ul> <li>A R-Tree containing the tracklog represented as a set of edges (each edge being a pair of consecutive points, those points being also the MBR)</li> <li>A K2-Tree containing the tracklog represented as a set of points (each point being a node in the tree).</li> </ul> <p>All these structures will be stored in memory only, and although the tracklogs usually aren't big (approx. a couple thousands points) this will run in an embedded system, so both execution performance and memory footprint are critical.</p> <p>The tracklog is already given in advance, so all access is to be read-only.</p> <p>I'd appreciate any thoughts about the two options I mentioned, or better alternatives.</p> http://stackoverflow.com/questions/1655650/linux-optimistic-malloc-will-new-always-throw-when-out-of-memory/1655857#1655857 0 Answer by Fabio Ceconello for Linux optimistic malloc: will new always throw when out of memory? Fabio Ceconello 2009-10-31T22:57:46Z 2009-10-31T22:57:46Z <p>In general, when memory is completely exhausted it becomes quite difficult for a program to behave correctly. Think about it: if malloc and new behaved like it was expected, and an exception was thrown, still the program would need some "elbow room" to gracefully inform the user and/or exit (especially a GUI program).</p> <p>So my recommendation would be to create an operator new that checks if the available memory is above a certain minimum limit (let's say 1MB in a standard computer). If not, it'll return null or throw std::bad_alloc, whichever you choose. After that, set a flag so that malloc/new doesn't check for the available memory anymore (assuming that now you're in "exit mode").</p> http://stackoverflow.com/questions/1618039/c-user-defined-conversion-operators-without-classes/1619141#1619141 1 Answer by Fabio Ceconello for C++ user-defined conversion operators without classes? Fabio Ceconello 2009-10-24T21:11:34Z 2009-10-24T21:11:34Z <p>No, you can't. What you could do as an alternative is to create a conversion constructor in the target class (not your case, as you want to convert to std::string - unless you derive it). But I agree to the other answers, I think an implicit conversion is not recommended in this case - especially because you're not converting from an object but from a pointer. Better to have a free function, your code will be easier to understand and the next programmer to inherit the code will for sure thank you.</p> http://stackoverflow.com/questions/1618957/is-c-faster-than-c/1619054#1619054 0 Answer by Fabio Ceconello for Is C faster than C++? Fabio Ceconello 2009-10-24T20:47:30Z 2009-10-24T21:02:17Z <p>Some features of C++ insert a performance penalty in the code, which is not immediately obvious. For instance, a method call in C++ is as fast as a function call in C if this method is static. If not, at least you'll have an extra push to preserve the register that stores the this pointer before the call, and a pop after. If the method is also virtual, then you'll have a virtual table lookup, which may imply an internal function call. The same happens if you have exceptions and/or RTTI. With exceptions, you have extra code generated at the beginning and end of every method. With RTTI, you have internal function calls to check type hierarchy trees.</p> <p>Notice that all these things happen "under the hood", so unless you're aware about how they work, you'd be unable to spot their performance effects. That's the main difference from C, in C an experienced programmer can predict with more precision the performance because there are much less factors to take into account.</p> <p>That said, a C++ program with a good architecture probably won't suffer from performance due to these factors. In most cases the performance difference is not significant, and in those little places in which performance is critical, you can explicitly avoid them (or write that code in C or assembly). The benefit of using C++, especially in large projects where scope control is a major factor and you need things like classes and namespaces to deal with it, is far greater. And, in some cases, like the optimizations made possible by inlines combined with TMP, you'll actually gain performance.</p> <p>A sidenote: this site has a good comparision of performance for similar programs in different computer languages:</p> <p><a href="http://shootout.alioth.debian.org/" rel="nofollow">http://shootout.alioth.debian.org/</a></p> <p>The pages comparing C++ and C is:</p> <p><a href="http://shootout.alioth.debian.org/u32q/c.php" rel="nofollow">http://shootout.alioth.debian.org/u32q/c.php</a></p> http://stackoverflow.com/questions/1605178/best-books-to-optimize-c-code/1610510#1610510 1 Answer by Fabio Ceconello for Best books to optimize C++ code Fabio Ceconello 2009-10-22T23:03:11Z 2009-10-22T23:03:11Z <p>Code Optimization: Effective Memory Usage, Kris Kaspersky</p> <p>Write Great Code Vol. I/II, Randall Hyde</p> http://stackoverflow.com/questions/1610210/c-graphic-drawing-library/1610439#1610439 0 Answer by Fabio Ceconello for C++ Graphic Drawing Library Fabio Ceconello 2009-10-22T22:47:39Z 2009-10-22T22:47:39Z <p>I tested AGG, Cairo, GDI+ and Quartz (for Mac).</p> <p>I think Quartz is the best, but is available (as long as I know) for Mac only.</p> <p>AGG is poweful, but is not well documented. The developer decided to reinvent the weel, and made his own doc system, instead of using something standard like doxygen. There are good tutorials for basic understanding, but when you dig deeper you find API documentation lacking, imprecise or incomplete.</p> <p>GDI+ is pretty basic compared to the others, and is available for Windows only.</p> <p>As a result, I think the best choice is probably Cairo (unless you can choose to develop for Mac only). It's well documented, the code is clean, and is fast and powerful.</p> http://stackoverflow.com/questions/1610029/getters-and-setters-style/1610408#1610408 0 Answer by Fabio Ceconello for getters and setters style Fabio Ceconello 2009-10-22T22:40:49Z 2009-10-22T22:40:49Z <p>I enforce the convention in which a method should always be a verb and a class should always be a noun (except for functors, for obvious reasons). In which case, a get/set prefix must be used for consistency. That said, I also agree entirely with Ed Swangren. This sums to me as using those prefixes a no-brainer.</p> http://stackoverflow.com/questions/1551842/why-are-most-of-the-biggest-open-source-projects-in-c/1551971#1551971 8 Answer by Fabio Ceconello for Why are most of the biggest open source projects in C? Fabio Ceconello 2009-10-11T22:29:55Z 2009-10-11T22:35:38Z <p>If you look at recent open source projects, you'll see many of them use C++. KDE, for instance, has all of its subprojects in C++. But for projects that started a decade ago, it was a risky decision. C was way more standardized at the time, both formally and in practice (compiler implementations). Also C++ depends on a bigger runtime and lacked good libraries at that time. You know that personal preference plays a big role in such decision, and at that time the C workforce in UNIX/Linux projects was far bigger than C++, so the probability that the initial developer(s) for a new project were more comfortable with C was greater. Also, any project that needs to expose an API would do that in C (to avoid ABI problems), so that would be another argument to favor C. And finally, before smart pointers became popular, it was much more dangerous to program in C++. You'd need more skilled programmers, and they would need to be overly cautions. Although C has the same problems, its simpler data structures are easier to debug using bounds checking tools/libraries.</p> <p>Also consider that C++ is an option only for high-level code (desktop apps and the like). The kernel, drivers, etc. are not viable candidates for C++ development. C++ has too much "under the hood" behavior (constructor/destructor chains, virtual methods table, etc) and in such projects you need to be sure the resulting machine/assembly code won't have any surprises and doesn't depend on runtime library support to work.</p> http://stackoverflow.com/questions/385297/whats-wrong-with-c-compared-to-other-languages/385386#385386 24 Answer by Fabio Ceconello for What's wrong with C++ compared to other languages? Fabio Ceconello 2008-12-22T02:12:18Z 2009-10-11T18:17:32Z <p>As others have said, C++ IS REALLY HARD TO LEARN. More than that, it's a two-stage learning. First, you have to learn all the language features. Second, you have to learn how to use them wisely. Most people never get to the second stage, and hate the language forever.</p> <p>But in many cases, though, it's "religious" hatred. This is particularly common between some Java programmers I know, which believe Java came to replace all the other languages, is better than them, and C++ in particular (for some reason) is the major evil. They don't state this directly, of course, but it's not hard to get it.</p> <p>I love C++ and do most of my job in it, but also feel having to mention that C++ does have many flaws in its design, though, so much that there's a book about it, <em><a href="http://rads.stackoverflow.com/amzn/click/0321228774" rel="nofollow">Imperfect C++</a></em>:</p> <p>None of them, of course, should be reason to thrash it (therefore the book). But also none of its strengths should be the reason to use it when another language is a better choice. I, for instance, would always consider Java, Ruby, PHP, etc. as a better choice for a website backend than C++. To automate simple tasks, I'd go for scripting languages... and so on. </p> http://stackoverflow.com/questions/83593/is-there-an-efficient-algorithm-to-generate-a-2d-concave-hull 6 Is there an efficient algorithm to generate a 2D 'concave' hull? Fabio Ceconello 2008-09-17T14:04:45Z 2009-09-10T14:46:41Z <p>Having a set of (2D) points from a GIS file (a city map), I need to generate the polygon that defines the 'contour' for that map (its boundary). Its input parameters would be the points set and a 'maximum edge length'. It would then output the corresponding (probably non-convex) polygon.</p> <p>The best solution I found so far was to generate the Delaunay triangles and then remove the external edges that are longer than the maximum edge length. After all the external edges are shorter than that, I simply remove the internal edges and get the polygon I want. The problem is, this is very time-consuming and I'm wondering if there's a better way.</p> http://stackoverflow.com/questions/1255348/computing-the-probability-for-a-section-of-a-joint-distribution 1 Computing the probability for a section of a joint distribution Fabio Ceconello 2009-08-10T14:49:40Z 2009-08-10T21:04:37Z <p>Considering I have a continuous joint distribution of two independent normal random variables (let's assume the independent vars are on the X and Z axis, and the dependent - the joint probability - is on the Y axis), and I have a line anywhere on the XZ plane, how would I compute the probability of a point falling on one side or the other of that line?</p> http://stackoverflow.com/questions/1233040/why-should-i-setup-a-plugin-interface-in-c-instead-of-c/1236521#1236521 2 Answer by Fabio Ceconello for Why should I setup a plugin interface in c++ instead of c Fabio Ceconello 2009-08-06T01:19:23Z 2009-08-06T01:19:23Z <p>I once made in C++ the plugin interface for a system I developed and it was a big mistake. Feasible, but not practical at all. Today, I'd always make the interface purely in C, and as simple as I can. The benefits of these choices are really significant. And if your plugin writers want a C++ API, you can simply write a C++ wrapper that calls the C interface.</p> <p>As an added bonus, if your plugin writers want an API in any other language, a C API will always be the easier to create bindings for.</p> http://stackoverflow.com/questions/1149929/how-to-add-two-numbers-without-using-or-or-another-arithmetic-operator/1151148#1151148 2 Answer by Fabio Ceconello for How to add two numbers without using ++ or + or another arithmetic operator. Fabio Ceconello 2009-07-19T23:18:24Z 2009-07-19T23:24:42Z <p>Well, to implement an equivalent with boolean operators is quite simple: you do a bit-by-bit sum (which is an XOR), with carry (which is an AND). Like this:</p> <pre><code>int sum(int value1, int value2) { int result = 0; int carry = 0; for (int mask = 1; mask != 0; mask &lt;&lt;= 1) { int bit1 = value1 &amp; mask; int bit2 = value2 &amp; mask; result |= mask &amp; (carry ^ bit1 ^ bit2); carry = ((bit1 &amp; bit2) | (bit1 &amp; carry) | (bit2 &amp; carry)) &lt;&lt; 1; } return result; } </code></pre> http://stackoverflow.com/questions/1088226/how-do-i-not-delete-a-member-in-a-destructor/1088275#1088275 3 Answer by Fabio Ceconello for How do I *not* delete a member in a destructor? Fabio Ceconello 2009-07-06T17:37:34Z 2009-07-06T17:37:34Z <p>The code in the destructor is only to delete members that are dynamically allocated. The destruction of members is not optional, you can only control the deallocation of what you explicitly allocated before (with operator new).</p> <p>What you want to do can be obtained using a shared_ptr, in which both your class and the external code share a pointer to the same external object. This way, only when all the pointers to that object go out of scope it will be deleted. But beware not to do circular references, shared_ptr has no "garbage collector" wisdom.</p> <p>Of course you could use a regular pointer shared by those places, but this is in most cases a bad idea, prone to give you headaches about proper resource deallocation later.</p> http://stackoverflow.com/questions/1063133/usage-of-volatile-specifier-in-c-c-java/1065565#1065565 1 Answer by Fabio Ceconello for Usage of volatile specifier in C/C++/Java Fabio Ceconello 2009-06-30T19:35:36Z 2009-06-30T19:44:38Z <p>The volatile keyword appeared long ago in C, and what it does basically is to "turn off" some compiler optimizations that assume if a variable wasn't changed explicitly, it wasn't changed at all. Its main utility those days was to declare variables that would be changed by interrupt handlers. I, for instance, used it once (late 80's) for a global variable containing the mouse cursor position. The position was changed by an interrupt, and without volatile the main program sometimes wouldn't detect its changes because the compiler optimized away the variable access, thinking it wasn't necessary.</p> <p>Today these uses are, in general, obsolete (unless you write low-level OS code) but still there are some rare situations in which volatile is useful (very rare indeed - I, for instance, probably didn't use it for the last 7 years).</p> <p>But for multithread programming it's completely unrecommended. The problem is that it won't protect for concurrent access between threads, it will only remove optimizations that would prevent its 'refresh' in the same thread. It wasn't intended for use in multithreaded environments. If you're in Java, use synchronized. If you're in C++, use some sync library, like pthreads or Boost.Threads (or, better yet, use the new C++ 0X thread libraries, if you can).</p> http://stackoverflow.com/questions/939857/is-declaring-a-variable-an-instruction/946876#946876 0 Answer by Fabio Ceconello for is declaring a variable an instruction Fabio Ceconello 2009-06-03T20:03:24Z 2009-06-03T20:11:58Z <p>If your variable is a primitive type (int, char, etc.):</p> <p>For a global or static variable, no. This is just an entry in the BSS or DATA segment (depending on if it is initialized or not), no executable code required. Except, of course, if the initializer has to be evaluated at runtime.</p> <p>For a local variable, if it's not initialized, usually the first one implies an assembly instruction, the others not. That's because the space allocation for them is usually made adding an offset to the stack pointer (in fact, subtracting - the stack grows backwards). When you declare your first int variable, an "ADD SP, 4" is generated; for the second, it's just changed to "ADD SP, 8". This instruction will not be at the place where you declare your variable, but instead at the function begin, because all the stack space for local variables must be allocated there.</p> <p>If you initialize a local variable at creation, then you will have a MOV instruction to load the value to its location in the stack. This instruction will be at the same place as the declaration, in relation to the rest of the code.</p> <p>These rules for local variables assume no optimization. One common form of optimization is to use CPU registers as variables, in this case no allocation is needed, but initialization will generate an instruction. Also, sometimes these registers must have their values preserved, so you'll see a PUSH instruction at the begin and a POP at the end of the function.</p> <p>The rules for objects when no constructor are involved (or the constructor is inlined) are a lot more complicated, but a similar logic applies. When you have a non-inlined constructor, of course you need at least an instruction for its call.</p> http://stackoverflow.com/questions/221654/how-to-automate-the-generation-of-html-output-in-enterprise-architect 1 How to automate the generation of HTML output in Enterprise Architect Fabio Ceconello 2008-10-21T12:24:09Z 2009-05-25T00:32:53Z <p>Enterprise Architect has a way to generate the documentation in HTML/RTF/etc. that you could publish, but you have to use its GUI to do that manually. When you have your *.eap files in a CVS/Subversion server, it would be useful to have a script that would check out daily the latest version and publish it in a web server. As long as I know, EA doesn't have a command line utility for this purpose. I found that you can automate almost anything using its COM interface, but that means it's necessary to write a small program to do that. Any ideas about the easiest/cleanest way to do that (without having to write code, if possible)?</p> http://stackoverflow.com/questions/880195/the-history-behind-the-definition-of-a-string/880244#880244 1 Answer by Fabio Ceconello for The History Behind the Definition of a 'String'... Fabio Ceconello 2009-05-18T23:18:31Z 2009-05-18T23:18:31Z <p>The word was originally used to differentiate between a set of values to which the particular order of elements doesn't matter (for instance, a set of random samples of measurements) and another that could only have its meaning preserved when the order is also preserved. Originally a string could be a set of any kind of values, but since in the post-mainframe era a string of characters is by far the most common kind, the fact that the values are characters became a "default".</p> http://stackoverflow.com/questions/99880/generating-a-unique-machine-id/820549#820549 2 Answer by Fabio Ceconello for Generating a unique machine id Fabio Ceconello 2009-05-04T15:18:52Z 2009-05-04T15:18:52Z <p>I had the same problem and after a little research I decided the best would be to read HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Cryptography, as Agnus suggested. It is generated during OS installation and won't change unless you make another fresh OS install. Depending on the OS version it may contain the network adapter MAC address embedded (plus some other numbers, including random), or a pseudorandom number, the later for newer OS versions (after XP SP2, I believe, but not sure). If it's a pseudorandom theoretically it can be forged - if two machines have the same initial state, including real time clock. In practice, this will be rare, but be aware if you expect it to be a base for security that can be attacked by hardcore hackers.</p> <p>Of course a registry entry can also be easily changed by anyone to forge a machine GUID, but what I found is that this would disrupt normal operation of so many components of Windows that in most cases no regular user would do it (again, watch out for hardcore hackers).</p> http://stackoverflow.com/questions/760114/what-would-you-use-to-implement-a-fast-and-lightweight-file-server/760631#760631 1 Answer by Fabio Ceconello for What would you use to implement a fast and lightweight file server? Fabio Ceconello 2009-04-17T14:28:36Z 2009-04-17T14:28:36Z <p>For frequent uploads of small files, the fastest way would be to implement your own proprietary protocol, but that would require a considerable amount of work - and also it would be non-standard, meaning future integration would be difficult unless you are able to implement your protocol in any client you'll support. If you choose to do it anyway, this is my suggestion for a simple protocol:</p> <ol> <li>Command: 1 byte to identify what'll be done: (0x01 for upload request, 0x02 for download request, 0x11 for upload response, 0x12 for download response, etc).</li> <li>File name: can be fixed-size or prefixed with a byte for the length (assuming the name is less than 255 bytes)</li> <li>Checksum, MD5 for instance (if upload request or download response)</li> <li>File size (if upload request or download response)</li> <li>payload (if upload request or download response)</li> </ol> <p>This could be implemented on top of a simple TCP socket. You can also use UDP, avoiding the cost of establishing a connection but in this case you have to deal with retransmission control.</p> <p>Before deciding to implement your own protocol, take a look at HTTP libraries like libcurl, you could make your server use standard HTTP commands like GET for download and POST for upload. This would save a lot of work and you'll be able to test the download with any web browser.</p> <p>Another suggestion to improve performance is to use as the file repository not the filesystem, but something like SQLite. You can create a single table containing one char column for the file name and one blob column for the file contents. Since SQLite is lightweight and does an efficient caching, you'll most of the time avoid the disk access overhead.</p> <p>I'm assuming you don't need client authentication.</p> <p>Finally: although C++ is your preference to give you raw native code speed, rarely this is the major bottleneck in this kind of application. Most probably will be disk access and network bandwidth. I'm mentioning this because in Java you'll probably be able to make a servlet to do exactly the same thing (using HTTP GET for download and POST for upload) with less than 100 lines of code. Use Derby instead of SQLite in this case, put that servlet in any container (Tomcat, Glassfish, etc) and it's done. </p> http://stackoverflow.com/questions/714213/c-template-casting/714485#714485 2 Answer by Fabio Ceconello for c++ template casting Fabio Ceconello 2009-04-03T15:34:52Z 2009-04-03T15:34:52Z <p>Notice that when you do an implicit cast, what the compiler can do without your help (I mean, without additional code) is just reference-upcast. That means that, seeing the object as a reference (for cast purposes only, the nature of the object doesn't change of course), it can look at it as one of its ancestors. When you have two template instances, none of them is an ancestor of the other (neither they are necessarily in the same hierarchy). After trying that, the compiler looks for cast operators, constructors, etc. At this stage, probably a temporary object needs to be created, except when you're doing attribution and there's an attribution operator that fits.</p> <p>One solution to your problem would be to use a conversion constructor:</p> <pre><code>template&lt;class T&gt; class ParamVector { public: vector &lt;T&gt; gnome; vector &lt;T&gt; data_params; ParamVector() { } template &lt;class T2&gt; ParamVector(const ParamVector&lt;T2&gt; &amp;source) { gnome.reserve(source.gnome.size()); copy(source.gnome.begin(), source.gnome.end(), gnome.begin()); data_params.reserve(source.data_params.size()); copy(source.data_params.begin(), source.data_params.end(), data_params.begin()); } }; </code></pre> <p>This would create a temporary object whenever you use an instance of the template and other is required. Not a good solution if you're dealing with large containers, the overhead isn't acceptable. Also, if you pass a template instance to a function that requires not an object but a reference, the compiler won't call the conversion constructor automatically (you have to do an explicit call).</p> http://stackoverflow.com/questions/654197/port-gnu-c-programs-to-visual-c/654242#654242 1 Answer by Fabio Ceconello for Port GNU C++ programs to Visual C++ Fabio Ceconello 2009-03-17T13:27:12Z 2009-03-17T13:27:12Z <p>I don't know about an easy way to simply convert from one to another, but..</p> <p>Assuming you use only ANSI C/C++ features, usually you don't need to convert the makefile, just look which .c/.cpp files are in it and add them to the VS project; you'll also have to check about compiler options and defined macros, to put them inside the VS project. I've done this to compile libs like expat, freetype, agg and others, without problems.</p> http://stackoverflow.com/questions/628149/tcp-getting-num-bytes-acked/628534#628534 1 Answer by Fabio Ceconello for tcp - getting num bytes acked Fabio Ceconello 2009-03-10T00:28:24Z 2009-03-10T00:28:24Z <p>When you have NODELAY=false (which is the default), when you call send() with less bytes than the TCP window, the bytes are not really sent immediately, so you're right. The OS will wait a little to see if you call another send(), in order to use only one packet to transmit the combined data, and avoid wasting a TCP header.</p> <p>When NODELAY=true the data is transmitted when you call send(), so you can (theoretically) count on the returned value. But this is not recommended due to the added network inefficiency.</p> <p>All in all, if you don't need absolute precision, you can use the value returned by send() even when NODELAY=true. The value will not reflect immediate reality, but some miliseconds later it will (but also check for lost connections, since the last data block you sent could have been lost). Once the connection is gracefully terminated, you can trust all the data was transmitted. If it wasn't, you'll know before - either because the connection was abruptly dropped or because you received a data retention related error (or any other).</p> http://stackoverflow.com/questions/627854/java-gui-libraries/628411#628411 2 Answer by Fabio Ceconello for Java GUI libraries Fabio Ceconello 2009-03-09T23:21:21Z 2009-03-09T23:21:21Z <p>Try JGoodies </p> <p><a href="http://www.jgoodies.com/" rel="nofollow">http://www.jgoodies.com/</a></p> http://stackoverflow.com/questions/624808/how-to-add-external-pages-to-java-code-documentation 1 How to add external pages to Java code documentation? Fabio Ceconello 2009-03-09T02:23:56Z 2009-03-09T08:57:24Z <p>When programming in C++, I use Doxygen and frequently create external .dox files for additional documentation that won't fit well in a specific class or method - for instance, file format documentation (for files that are accessed by multiple classes). I tried to find a way to do the same in Java, but it appears that javadoc doesn't have an equivalent feature, all documentation must be written inside the comments of a .java file and is tied to it (or at least to its package). Am I right? Is there an alternative way to do this?</p> http://stackoverflow.com/questions/603390/inline-member-functions-in-c/603632#603632 3 Answer by Fabio Ceconello for Inline member functions in C++ Fabio Ceconello 2009-03-02T19:27:24Z 2009-03-03T00:56:52Z <p>When you have an inline method that is forced to be non-inlined by the compiler, it will really instantiate the method in every compiled unit that uses it. Today most compilers are smart enough to instantiate a method only if needed (if used) so merely including the header file will not force instantiation. The linker, as you said, will pick one of the instantiations to include in the executable file - but keep in mind that the record inside the object module is of a special kind (for instance, a COMDEF) in order to give the linker enough information to know how to discard duplicated instances. These records will not, therefore, result in unwanted dependencies between modules, because the linker will use them with less priority than "regular" records to resolve dependencies.</p> <p>In the example you gave, you really don't know, but it doesn't matter. The linker won't resolve dependencies based on non-inlined instances alone never. The result (in terms of modules included by the linker) will be as good as if the inline method didn't exist.</p> http://stackoverflow.com/questions/1786137/c-serialization-of-the-floating-point-numbers-floats-doubles/1786407#1786407 Comment by Fabio Ceconello on C - Serialization of the floating point numbers (floats, doubles) Fabio Ceconello 2009-11-26T23:26:35Z 2009-11-26T23:26:35Z Isn't the case to treat those platforms that don't support the IEEE standard as exceptions, and when the (rare) version for them is needed, just do the necessary conversions only there? Here's a good article about the differences: <a href="http://www.codeproject.com/KB/applications/libnumber.aspx" rel="nofollow">codeproject.com/KB/applications/&hellip;</a> http://stackoverflow.com/questions/1786137/c-serialization-of-the-floating-point-numbers-floats-doubles/1786407#1786407 Comment by Fabio Ceconello on C - Serialization of the floating point numbers (floats, doubles) Fabio Ceconello 2009-11-26T23:24:58Z 2009-11-26T23:24:58Z Right, but they have to know the format used by the platform to support it in the RTL. Also, many platforms (these days especially embedded) don't have a math coprocessor, so they do dictate the format in the accompanying emulation lib. So I thought it'd be easier to refer to the compiler. http://stackoverflow.com/questions/1656212/c-exe-made-in-vc-2008-runs-on-windows-7-but-not-xp/1656238#1656238 Comment by Fabio Ceconello on C++ EXE made in VC++ 2008 runs on Windows 7 but not XP Fabio Ceconello 2009-11-01T21:55:26Z 2009-11-01T21:55:26Z If you build your executable to use the runtime libraries as DLLs, yes. Even if you have all the DLLs installed in the target machine, your EXE won't be able to find them without the manifest file. But one alternative is to link the runtime as a static lib, as henle suggested. Of course, your executable will grow in size accordingly. http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/74067#74067 Comment by Fabio Ceconello on What development book made the most impact on you as a developer? Fabio Ceconello 2009-10-31T23:11:32Z 2009-10-31T23:11:32Z I agree! If you can, for sure it's worth it to read all. I've read Vols I and III, recently bought II (still pending for reading). I mentioned the Vol.I because I consider it &quot;the essential&quot;. The other books, although as valuable, have a slightly narrower field. In an ideal world, Vol I should be in any CompSci/CompEng undergrad course, the others should be in any grad course. http://stackoverflow.com/questions/1655796/best-way-to-index-a-tracklog/1655814#1655814 Comment by Fabio Ceconello on Best way to index a tracklog Fabio Ceconello 2009-10-31T22:43:31Z 2009-10-31T22:43:31Z About the creation of two lists, notice that in the case in which the tracklog is too &quot;horizontal&quot; or too &quot;vertical&quot; the range in one of the lists would get all of the points, and you'd degenerate to O(N) time. http://stackoverflow.com/questions/1655796/best-way-to-index-a-tracklog/1655814#1655814 Comment by Fabio Ceconello on Best way to index a tracklog Fabio Ceconello 2009-10-31T22:39:56Z 2009-10-31T22:39:56Z One thing I forgot to mention, the tracklog will be read-only, so you don't need to consider insertion cases. I'm updating the question now. http://stackoverflow.com/questions/1551842/why-are-most-of-the-biggest-open-source-projects-in-c/1551971#1551971 Comment by Fabio Ceconello on Why are most of the biggest open source projects in C? Fabio Ceconello 2009-10-22T22:54:04Z 2009-10-22T22:54:04Z I agree, Chris, when I said &quot;not viable&quot; I didn't mean it's not possible, just that it probably wouldn't be the best choice. I think in such cases the C code would be simpler and cleaner than C++, I don't see the advantage for using object orientation in such situations like interface to hardware I/O ports and the like, at least not at that level. http://stackoverflow.com/questions/1255348/computing-the-probability-for-a-section-of-a-joint-distribution/1255479#1255479 Comment by Fabio Ceconello on Computing the probability for a section of a joint distribution Fabio Ceconello 2009-08-10T22:28:58Z 2009-08-10T22:28:58Z Thanks. I asked because in my specific case this would make the implementation more time-efficient, since I already had the distance previously calculated for another use. http://stackoverflow.com/questions/1255348/computing-the-probability-for-a-section-of-a-joint-distribution Comment by Fabio Ceconello on Computing the probability for a section of a joint distribution Fabio Ceconello 2009-08-10T22:26:40Z 2009-08-10T22:26:40Z Well, this has many applications in software for statistical analysis. I just didn't ask for code samples related to the solution because for me (and, probably, for most developers) they aren't necessary - if I got the concept I am able to turn it into code; also this is a language-independent problem. But code samples would be appreciated, from anyone willing to post. http://stackoverflow.com/questions/1255348/computing-the-probability-for-a-section-of-a-joint-distribution/1255479#1255479 Comment by Fabio Ceconello on Computing the probability for a section of a joint distribution Fabio Ceconello 2009-08-10T18:19:28Z 2009-08-10T18:19:28Z I'd appreciate if you could post the formulae for just this last step. Empirically it seemed to me that in order to &quot;flatten&quot; one of the dimensions you'd need to combine the two functions, because I supposed the corresponding curve would be steeper. http://stackoverflow.com/questions/1248923/why-isnt-c-used-in-web-developement Comment by Fabio Ceconello on Why isn't C++ used in Web-Developement ? Fabio Ceconello 2009-08-10T17:22:45Z 2009-08-10T17:22:45Z The lack of standard ABI in C++ is for sure one factor. When you deploy a Java servlet to Tomcat you don't have to worry about things like integer size, calling convention, compiler used, etc. You know it'll plug and fit. http://stackoverflow.com/questions/1255348/computing-the-probability-for-a-section-of-a-joint-distribution/1255479#1255479 Comment by Fabio Ceconello on Computing the probability for a section of a joint distribution Fabio Ceconello 2009-08-10T16:54:35Z 2009-08-10T16:54:35Z Thank you! I can follow your rationale, there's just one detail I didn't understand well. After the rotation &amp; etc, you mean the integral for one of the sections of the 3D space would be the same as that for one of the sections of a 2D space taken from any of the two distributions? In other words, could I calculate the distance of the nearest point in the line from the origin and use it as the limit to integrate any of the functions, and that would give me the right result? http://stackoverflow.com/questions/99880/generating-a-unique-machine-id/820549#820549 Comment by Fabio Ceconello on Generating a unique machine id Fabio Ceconello 2009-08-06T01:26:33Z 2009-08-06T01:26:33Z Not at all. In my case, for instance, I use it for audit purposes only. Unfortunately there's no reliable DRM infrastructure in common PCs. A robust licensing system, as you mentioned, would need to make use of external (USB dongles) or non-standard (CPUID) sources for a unique number. http://stackoverflow.com/questions/577489/c-uml-class-diagram-autogeneration/577680#577680 Comment by Fabio Ceconello on C++ UML Class Diagram Autogeneration Fabio Ceconello 2009-07-20T00:06:53Z 2009-07-20T00:06:53Z Didn't test Rational Rose, but its price tag is outrageous. http://stackoverflow.com/questions/577489/c-uml-class-diagram-autogeneration/577680#577680 Comment by Fabio Ceconello on C++ UML Class Diagram Autogeneration Fabio Ceconello 2009-07-20T00:06:17Z 2009-07-20T00:06:17Z I tested StarUML, ArgoUML, Enterprise Architect and Borland Together. The first two didn't work well (crashes, didn't recognize some language constructs, etc.). Borland Together is painfully slow, and also is hard to learn. The only that really worked well was Enterprise Architect. It's commercial, but has an affordable price. Worth it.