| bio | website | coderscentral.blogspot.com |
|---|---|---|
| location | Colorado Springs, CO | |
| age | 48 | |
| visits | member for | 3 years, 7 months |
| seen | 4 hours ago | |
| stats | profile views | 9,940 |
Started programming on a Control Data mainframe in FORTRAN IV, back when that was still a new thing. Was apparently quite masochistic, because I kept programming anyway. For that matter, I still do...
Gold C++ badge #20
Gold C badge #12
Legendary badge #35
|
3h |
comment |
Why is this use of the [] operator causing a compiler error? Although (*vm).["infile"] will probably work, you're probably better off eliminating the problem -- pass vm by reference instead of passing a pointer. |
|
4h |
comment |
C++ : loop on all files of a folder (and its subdfolders) : simplest solution? I'd probably start with somethign like this: stackoverflow.com/a/2531907/179910 (probably also want to look at the version Billy O'Neal edited into the question). |
|
5h |
comment |
C++ : loop on all files of a folder (and its subdfolders) : simplest solution? What operating system(s) do you want to target? |
|
17h |
comment |
ATL COM is the only way to develop IE7 or above addons/extensions? ATL isn't all that old, and it's well enough designed for its purpose that it's open to at least some question whether a replacement would be significantly better. |
|
21h |
comment |
c++ searching for a node in a tree Why do you use a tree if you're going to do a linear search anyway? The point of a tree is normally to get O(log N) searching, but you're not doing that. |
|
1d |
comment |
On exceptions in C++ destructors, are all properties automatically destroyed @user2336991: Fair enough -- just with somebody I don't know, I feel obliged to point it out; if you're already aware, that's great. If you can, updating to at least 4.7.2 would be worthwhile though -- definitely some pretty useful improvements. |
|
1d |
answered | On exceptions in C++ destructors, are all properties automatically destroyed |
|
1d |
awarded | Steward |
|
1d |
reviewed | Reject suggested edit on background-color not working in IE7 |
|
1d |
reviewed | Approve suggested edit on Which html5 Tag Should i Use for Sidebars? |
|
1d |
reviewed | Approve suggested edit on Why can't I find the certificate to sign the ClickOnce manifest? |
|
1d |
reviewed | Reject suggested edit on Print to array each time i press a button Xcode: |
|
1d |
reviewed | Approve suggested edit on Substracting time data exceeding 24h in R |
|
1d |
reviewed | Reject suggested edit on jboss-eap-6 tag wiki |
|
1d |
reviewed | Reject suggested edit on jboss-eap-6 tag wiki excerpt |
|
1d |
reviewed | Reject suggested edit on Simple HTML/CSS |
|
1d |
comment |
howto securely mix std::ifstream's tellg, seekg and read(*,n) methods in text-mode @wonkorealtime: Have you tested to find what the overhead from reallocation actually works out to? (I have -- it's generally too small to be measurable when you're also doing I/O). |
|
1d |
awarded | Nice Answer |
|
1d |
comment |
creating structres based on the users input @BrownieTuffy: Yes -- unless you have to write code that's also compatible with a C compiler, you almost never want to use malloc. |
|
1d |
answered | creating structres based on the users input |