Fabio Ceconello

1,622
Reputation
208 views

Registered User

Name Fabio Ceconello
Member for 1 year
Seen 23 hours ago
Website
Location BR
Age 36
1d
revised Static variable initialization?
added 164 characters in body
1d
answered Static variable initialization?
Nov
27
accepted C - Serialization of the floating point numbers (floats, doubles)
Nov
26
comment C - Serialization of the floating point numbers (floats, doubles)
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: codeproject.com/KB/applications/…
Nov
26
comment C - Serialization of the floating point numbers (floats, doubles)
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.
Nov
23
answered C - Serialization of the floating point numbers (floats, doubles)
Nov
23
answered Resources for Image Recognition
Nov
1
comment C++ EXE made in VC++ 2008 runs on Windows 7 but not XP
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.
Nov
1
answered C++ EXE made in VC++ 2008 runs on Windows 7 but not XP
Oct
31
revised Best way to index a tracklog
added 1 characters in body; deleted 1 characters in body
Oct
31
comment What development book made the most impact on you as a developer?
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 "the essential". 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.
Oct
31
answered Linux optimistic malloc: will new always throw when out of memory?
Oct
31
revised Best way to index a tracklog
added 79 characters in body
Oct
31
comment Best way to index a tracklog
About the creation of two lists, notice that in the case in which the tracklog is too "horizontal" or too "vertical" the range in one of the lists would get all of the points, and you'd degenerate to O(N) time.
Oct
31
comment Best way to index a tracklog
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.
Oct
31
asked Best way to index a tracklog
Oct
24
answered C++ user-defined conversion operators without classes?
Oct
24
revised Is C faster than C++?
deleted 9 characters in body
Oct
24
revised Is C faster than C++?
added 240 characters in body
Oct
24
answered Is C faster than C++?
Oct
22
answered Best books to optimize C++ code
Oct
22
comment Why are most of the biggest open source projects in C?
I agree, Chris, when I said "not viable" 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.
Oct
22
answered C++ Graphic Drawing Library
Oct
22
answered getters and setters style
Oct
11
revised Why are most of the biggest open source projects in C?
added 426 characters in body
Oct
11
answered Why are most of the biggest open source projects in C?
Oct
5
accepted Inline member functions in C++
Sep
16
awarded  Yearling
Sep
8
awarded  Popular Question
Aug
21
awarded  Nice Answer
Aug
10
comment Computing the probability for a section of a joint distribution
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.
Aug
10
comment Computing the probability for a section of a joint distribution
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.
Aug
10
comment Computing the probability for a section of a joint distribution
I'd appreciate if you could post the formulae for just this last step. Empirically it seemed to me that in order to "flatten" one of the dimensions you'd need to combine the two functions, because I supposed the corresponding curve would be steeper.
Aug
10
comment Why isn’t C++ used in Web-Developement ?
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.
Aug
10
comment Computing the probability for a section of a joint distribution
Thank you! I can follow your rationale, there's just one detail I didn't understand well. After the rotation & 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?
Aug
10
revised Computing the probability for a section of a joint distribution
edited body
Aug
10
asked Computing the probability for a section of a joint distribution
Aug
6
comment Generating a unique machine id
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.
Aug
6
answered Why should I setup a plugin interface in c++ instead of c
Jul
24
awarded  Popular Question
Jul
20
comment C++ UML Class Diagram Autogeneration
Didn't test Rational Rose, but its price tag is outrageous.
Jul
20
comment C++ UML Class Diagram Autogeneration
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.
Jul
19
revised How to add two numbers without using ++ or + or another arithmetic operator.
deleted 4 characters in body
Jul
19
answered How to add two numbers without using ++ or + or another arithmetic operator.
Jul
6
answered How do I *not* delete a member in a destructor?
Jun
30
revised Usage of volatile specifier in C/C++/Java
added 221 characters in body
Jun
30
awarded  Tumbleweed
Jun
30
answered Usage of volatile specifier in C/C++/Java
Jun
30
accepted is declaring a variable an instruction