1,293
Reputation
126 views

Registered User

Name
Member for 1 year
Seen 2 days ago
Website
Location
Age
Nov
16
answered qmake: How do I copy .dll/.so’s to the output directory?
Nov
11
awarded  Good Answer
Nov
9
comment What is the most difficult type of software to write?
Sorry for continuing a political discussion on a tech website, but there's no way to send a private message to a user, so I guess I'll post one more thing here. Re: "Being invaded is worse", nearly every war in history has been portrayed as defensive, by both sides involved. I'd link to the famous quote by Goering, but Godwin's law in 3 is rather tacky (even though in this case the point of course wouldn't be to compare your country to Nazi Germany, but instead to remark that if such a tactic can work for an extremely evil agenda, imagine how well it can work in a more ambiguous conflict).
Nov
8
comment What is the most difficult type of software to write?
Sorry, off topic, but I'm curious how you consider the moral implications of what you do - do you think it's morally neutral(/irrelevant) to make weapons, or that it's morally positive for anyone to make weapons for their own country, or only morally positive to make weapons for some countries (and if so, how you decide who it's okay to make weapons for)? Also, does it worry you that political leadership can change, and that a weapon you design now could be used in a war you are morally opposed to in 10-15 years?
Nov
7
accepted Where can I get these header files?
Nov
7
answered Where can I get these header files?
Nov
1
awarded  Nice Answer
Oct
13
comment How do I show the value of a #define at compile-time?
I think the submitter doesn't want to (just) enforce a particular value, they want to see what the current value is.
Oct
13
comment How do I show the value of a #define at compile-time?
For the case of a software version defined in a header you're probably safe (and it's a good answer). But as a general solution, a possible downside would be in getting your test app and your real app to have the same value of the #define - depending on their include paths, other #defines that may be used to set the value of that one, the CFLAGS passed to the compiler, etc.
Oct
13
answered How do I show the value of a #define at compile-time?
Oct
5
comment double type digits in C++
IEEE754 doubles have 52 bits of mantissa: en.wikipedia.org/wiki/… Aside from Intel using 80-bit floating point registers with 64 bits of mantissa (about 19 digits of resolution), I've never heard of any different "internal representation". Can you provide a reference to what you are referring to?
Sep
23
comment Prevent Outlook from mangling URLs sent from my application
Wasn't me who down-voted, but I'm guessing it happened because the question isn't programming related. Perhaps you'd have more luck on superuser.com?
Sep
18
answered Unpacking an executable from within a library in C/C++
Sep
17
comment How should I interview a candidate who is probably a “no hire”?
I think the ethical reasons are a lot more important than the legal reasons. Are you saying that if the legal reasons didn't exist your behavior would change? You'd let him fly all the way to NYC from wherever in the midwest, waste 1-2 days of time interviewing, plus all the prior time and emotional investment, and blow him off unless the law makes you do otherwise?
Sep
17
comment How should I interview a candidate who is probably a “no hire”?
If you think it's a waste of your time interviewing a person, it's an even bigger waste of theirs. You ought to confront your broken HR policy that results in you interviewing someone you pre-judge as inadequate for the position, and if you're not a big enough person to do that, you owe it to the person being interviewed to give them an objective interview. If you think they have a failing, ask questions that will test your theory. Don't give them a puffball interview and then blow them off, that's an asshole thing to do.
Sep
17
awarded  Yearling
Sep
16
comment C++ Class or Struct compatiblity with C struct
If you use a pack pragma on structures that don't already have natural alignment, there are often times harmful side effects. If you have improperly aligned floats on PowerPC for example, a hardware exception will occur. The hardware handler can choose to reset the processor (common in embedded apps), or handle the problem in software (which is SLOOOOW). In either case, using a pack pragma can only hurt you, you definitely want to define the structure to have natural alignment and not use pack so it works the same across platforms.
Sep
16
comment C++ Class or Struct compatiblity with C struct
I've never seen a compiler that inserted padding for structures that have natural alignment. VC++ 6.0, 2003, 2005, 2008, Metrowerks for PPC, Metrowerks for HC12, gcc for ARM, gcc 2.98-3.x for PowerPC, gcc 3.x-4.x for x86, SDCC for 8051, Crossworks for MSP430. I would greatly appreciate hearing a counter-example, or a good justification for why this is so.
Sep
16
comment C++ Class or Struct compatiblity with C struct
Just noticed your comment re: sizeof()... Are you aware of stdint.h? en.wikipedia.org/wiki/Stdint.h "Both C and C++ developers should know that it is important to update their coding standards even if the compiler is not C99 compliant because a version of stdint.h (for C), and a version of stdint.h and cstdint (for C++) can be downloaded or quickly created."
Sep
15
comment C++ Class or Struct compatiblity with C struct
In my experience pack pragmas are a bad idea. If you order the member variables such that they have natural alignment, then pack pragmas aren't necessary. And if you don't order them to have natural alignment and attempt to use pragmas to fix it, you can run into two problems: 1) The pragmas still won't work 2) You will force the compiler to misalign something the processor doesn't want misaligned, like floating point numbers. On PowerPC at least, a misaligned float will generate an interrupt that gets handled by software, that can significantly impact performance.
Sep
15
answered C++ Class or Struct compatiblity with C struct
Sep
8
comment How do I specifiy an object directory in a QT project file?
Are you satisfied with the .o file being in a subdir? What about moc files, resource files, generated makefiles, etc.? So far I am setting OBJECTS_DIR, MOC_DIR, DESTDIR, RCC_DIR, UI_DIR, UI_HEADERS_DIR, and UI_SOURCES_DIR, and everything goes into my 'obj' directory, except the generated makefiles. I thought I'd be home free with QMAKE_MAKEFILE, but that doesn't seem to like a path as part of the name (and it gets ignored by QtCreator, anyway).
Sep
1
comment Qt vs WPF/.NET
True, Jambi won't be maintained after May 2010. However, as your link indicates, the code is LGPL so you can maintain it yourself, and it is still available for download from Nokia. That's a much better situation than if a closed-source toolkit you depend is discontinued.
Sep
1
comment Qt vs WPF/.NET
There's a new set of Python bindings, PySide, that are LGPL.
Aug
25
answered In Qt, how do I align form elements in different group boxes?
Aug
19
accepted Header dependencies in qmake using MSVC Express
Aug
18
comment Writing a Path Coverage Tool
I'm curious why you want path coverage. I've worked on avionics certified to the FAA's satisfaction (DO-178b level B and C only, never level A), and we only did statement coverage. IMO gathering statement coverage had a low benefit, if you're already committed to high-quality unit tests (ie: a good engineer will write good tests (even without a coverage tool), a bad engineer won't (even when the coverage tool tells them their testing is deficient)). There are of course times when the coverage tool prompts you to write a test you didn't know you needed to write, but that seemed rare.
Aug
18
revised Header dependencies in qmake using MSVC Express
added 878 characters in body
Aug
18
revised Header dependencies in qmake using MSVC Express
added 531 characters in body
Aug
18
answered Header dependencies in qmake using MSVC Express
Aug
14
awarded  Nice Answer
Aug
10
answered Building a library with Visual Studio that can be linked to a Qt project?
Aug
7
comment Double(s) across different cpu architectures?
If you're avoiding text for performance reasons, you may want to look into Protocol Buffers: code.google.com/p/protobuf They handle endian issues, alignment (vs. sending a C data structure), etc. They do use floating-point numbers, under the assumption that sender and recipient are IEEE-754 compliant.
Aug
6
answered boolean parameters — do they smell?
Aug
6
answered Approaches to a GUI for a Large C Program
Aug
4
comment How to call the RJ45 as a serial port for interfacing?
The RJ45 connector used in PCs is used for ethernet (networking). It is physically wired to ethernet hardware inside your PC. If you put RS232 signals onto that connector, the ethernet hardware won't be able to understand them, and it might break the hardware (because the voltages and currents aren't compatible between ethernet and RS232). This Yost guy is using a commonly available connector (RJ45) for a protocol that it isn't commonly used with. That's okay if you develop all the hardware yourself, and only hook up your hardware to other instances of your hardware.
Jul
27
answered In emacs, how to strip CR (^M) and leave LF (^J) characters?
Jul
24
awarded  Nice Answer
Jul
22
comment How to prevent inadvertently using delete and free interchangeably in c++
Can you override malloc() and free() to do an assert? Then you could guarantee they are never called. If new/delete call malloc/free though, I'm not quite sure if they'd call the one in the stdlib (since that is what they were linked against?), or if they'd call yours (which wouldn't work), or if you'd get a linker error for multiple definitions of the same function.
Jul
21
answered Monitoring battery or power supply of laptop from java
Jul
21
answered A good serial communications protocol/stack for embedded devices?
Jul
16
answered “Every language was created for a specific purpose”
Jul
13
comment Is it possible to use GCC without Cygwin or MinGW?
Yes, Neil is right, MinGW is gcc, ported to windows.
Jul
13
answered In what languages can you dynamically rewrite functions on the fly?
Jul
2
comment How do I svn add all unversioned files to svn?
So install cygwin. This probably won't be the last time he needs to automate something. (deleted original comment that was above, to get rid of upvote)
Jul
2
answered What strategies have you used to improve build times on large projects?
Jul
2
comment What strategies have you used to improve build times on large projects?
An operating system kernel is mostly drivers, which are built separately. And the kernel is just a small part of an operating system, which in unix is hundreds of userland applications. Toolchains are made of an assembler, compiler, linker, various tools like nm and objdump, etc.
Jun
29
comment Most Astonishing Violation of the Principle of Least Astonishment
Agreed, "M$" is kind of lame. If you must express your dislike for Microsoft every time you talk about them, write "Micros~1". After all, that's what their own filesystem thought the company's name should be :D
Jun
25
comment How to use DSP to speed-up a code on OMAP?
I've always heard that the OMAP3 has a C64+ DSP built in, in addition to the ARM Cortex A8. en.wikipedia.org/wiki/Texas_Instruments_OMAP#OMAP3/…
Jun
18
answered simple C problem