User jmucchiello - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T07:51:36Zhttp://stackoverflow.com/feeds/user/44065http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/373252/c-sizeof-with-a-type-or-variable2"C" sizeof with a type or variablejmucchiello2008-12-17T00:13:34Z2009-12-22T05:21:56Z
<p>Recently saw someone commending another user on their use of sizeof var instead of sizeof(type). I always thought that was just a style choice. Is there any significant difference? As an example, the lines with f and ff were considered better than the lines with g and gg:</p>
<pre><code> typedef struct _foo {} foo;
foo *f = malloc(count * sizeof f);
foo *g = malloc(sizeof(foo) * count);
foo **ff = malloc(count * sizeof *ff);
foo **gg = malloc(sizeof(foo*) * count);
</code></pre>
<p>In my opinion, the first set is just a matter of style. But in the second pair of lines, the extra second * can easily be confused for a multiplication.</p>
http://stackoverflow.com/questions/1917789/how-to-use-https-with-httpreceivehttprequest0How to use HTTPS with HttpReceiveHttpRequest()?jmucchiello2009-12-16T21:14:09Z2009-12-17T02:26:06Z
<p>I'm using the Windows HTTP API to process web service requests in C++ (not .NET) and everything works just fine for HTTP requests. When I change the URLs I'm expecting with HttpAddUrl to <a href="https://example.com:443/foo/bar" rel="nofollow">https://example.com:443/foo/bar</a> my tests from Internet Explorer no longer connect. My code does not get called at all and the calls to HttpReceiveHttpRequest don't complete when an HTTPS request comes in.</p>
<p>I created a certificate authority for myself and it is visible inside IE but I can't figure out what to do next.</p>
<p>What do I need to configure to make HTTP.SYS call my code when an HTTPS request comes in?</p>
http://stackoverflow.com/questions/1918385/how-do-i-over-allocate-memory-using-new-to-allocate-variables-within-a-struct/1918425#19184255Answer by jmucchiello for How do I over-allocate memory using new to allocate variables within a struct?jmucchiello2009-12-16T23:00:34Z2009-12-16T23:00:34Z<p>You go back to C or abandon these ideas and actually use C++ as it's intended.</p>
<ul>
<li>Use the constructor to allocate memory and destructor to delete it.</li>
<li>Don't let some other code write into your memory space, create a function that will ensure memory is allocated.</li>
<li>Use a std:string or std::vector to hold the data rather than rolling your own container class.</li>
</ul>
<p>Ideally you should just say:</p>
<p>myDerivedClass* foo = new myDerivedClass(a, b, c, d, ident);</p>
http://stackoverflow.com/questions/1774133/safe-delete-in-c/1774183#17741832Answer by jmucchiello for Safe Delete in C++jmucchiello2009-11-21T01:27:29Z2009-11-21T04:55:01Z<blockquote>
<p>NOTE: This answer is just addressing
some of the things you are doing
incorrectly. This is not the best way
to do what you are doing. An array of
<code>stock**</code> would make more sense.</p>
</blockquote>
<p>Doesn't your stock class have a constructor? You don't need to know anything about the stock class if it is a proper object:</p>
<pre><code>hash::hash(int capacity) // change this to unsigned and then you can't have capacity < 0
: isAdded(0)
, hashTable(0) // don't call new here with bad parameters
{
if ( capacity < 1 ) exit(-1); // this should throw something, maybe bad_alloc
maxSize = capacity;
hashTable = new stock[capacity]; // this calls the stock() constructor
// constructor already called. All this code is useless
// We can initialize our attributes for the stock
// to NULL, and test for that when searching.
// for ( int index = 0; index < maxSize; index++ )
// {
// hashTable[index].name = NULL;
// hashTable[index].sharePrice = NULL;
// hashTable[index].symbol = NULL;
// }
}
class stock {
char* name; // these should be std::string as it will save you many headaches
char* sharePrice; // but I'll do it your way here so you can see how to
char* symbol; // avoid memory leaks
public:
stock() : name(0), sharePrice(0), symbol(0) {}
~stock() { delete[] name; delete[] sharePrice; delete[] symbol; }
setName(const char* n) { name = new char[strlen(n)+1]; strcpy(name, n); }
setPrice(const char* p) { sharePrice = new char[strlen(p)+1]; strcpy(sharePrice, p); }
setSymbol(const char* s) { symbol = new char[strlen(s)+1]; strcpy(symbol, n); }
const char* getName() const { return name; }
const char* getPrice() const { return sharePrice; }
const char* getSymbol() const { return symbol; }
}
</code></pre>
http://stackoverflow.com/questions/1766711/c-enum-declaration-inside-a-scope-that-is-a-parameter-of-a-macro/1766858#17668580Answer by jmucchiello for [C++] Enum declaration inside a scope that is a parameter of a macro.jmucchiello2009-11-19T21:57:21Z2009-11-19T21:57:21Z<p>You are attempting to replicate RAII with a macro.</p>
<pre><code>#define SCOPE(ns) NamespaceRegistrar _ns_rar(ns);
struct NamespaceRegistrar {
std::string _ns;
NamespaceRegistrar(const std::string& ns) : _ns(ns) { AcquireResource(_ns); }
~NamespaceRegistrar() { ReleaseResource(_ns); }
};
{
SCOPE("Foo")
// stuff
}
</code></pre>
<p>I have no idea what you are talking about with regard to enums.</p>
http://stackoverflow.com/questions/1765431/c-comparing-member-function-pointers/1765517#17655170Answer by jmucchiello for C++ Comparing Member Function Pointersjmucchiello2009-11-19T18:29:48Z2009-11-19T20:23:25Z<p>Member function pointers are not actual pointers. You should look at them as opaque structs. What does a method pointer contain:</p>
<pre><code> struct method_pointer {
bool method_is_virtual;
union {
unsigned vtable_offset; // for a virtual function, need the vtable entry
void* function_pointer; // otherwise need the pointer to the concrete method
}
};
</code></pre>
<p>If you could cast this to void* (you can't) all you would have is a pointer the the struct, not a pointer to code. That's why operator<() is undefined as well since the value of the struct's pointer is just where ever it happens to be in memory.</p>
<p>In addition to that, what are you sorting by?</p>
http://stackoverflow.com/questions/1760365/possible-to-use-typeid-to-determine-parent-child-relationship/1760427#17604270Answer by jmucchiello for Possible to Use typeid to Determine Parent-Child Relationshipjmucchiello2009-11-19T01:55:24Z2009-11-19T01:55:24Z<p><code>typeid</code> is opaque. It is not meant to be a form of reflection. That said, doing a null check on the return from dynamic_cast is probably just as fast trying to traverse typeid structures to determine class relationships. Stick with dynamic_cast in pre-C++0x code.</p>
http://stackoverflow.com/questions/1744070/why-should-exceptions-be-used-conservatively/1746311#1746311-1Answer by jmucchiello for Why should exceptions be used conservatively?jmucchiello2009-11-17T02:58:28Z2009-11-17T02:58:28Z<p>I'm sorry but the answer is "they are called exceptions for a reason." That explanation is a "rule of thumb". You can't give a complete set of circumstances under which exceptions should or should not be used because what a fatal exception (English definition) is for one problem domain is normal operating procedure for a different problem domain. Rules of thumb are not designed to be followed blindly. Instead they are designed to guide your investigation of a solution. "They are called exceptions for a reason" tells you that you should determine ahead of time what is a normal error the caller can handle and what is an unusual circumstance the caller cannot handle without special coding (catch blocks).</p>
<p>Just about every rule of programming is really a guideline saying "Don't do this unless you have a really good reason": "Never use goto", "Avoid global variables", "Regular expressions pre-increment your number of problems by one", etc. Exceptions are no exception....</p>
http://stackoverflow.com/questions/1743832/c-access-to-command-line-arguments-outside-main/1743897#17438971Answer by jmucchiello for C++ Access to command line arguments outside main?jmucchiello2009-11-16T18:13:03Z2009-11-16T18:13:03Z<p>In Windows you can get the command line with a WIN32 function (GetCommandLine) call but it won't be parsed into an array like argc/argv. If the COM object uses MFC you can get the command line arguments from your CWinApp object. Otherwise, there's no easy way to do it.</p>
http://stackoverflow.com/questions/1732821/what-are-your-experiences-with-codeblocks/1737920#17379202Answer by jmucchiello for What are your experiences with Code::Blocks?jmucchiello2009-11-15T15:55:53Z2009-11-15T15:55:53Z<p>I use it for personal projects and it works well with MINGW 4.4. My only annoyance with it is it will sometimes crash and disappear silently. One minute your are compiling something, the next minute it's gone. No explanation. At least it only happens while compiling so your source files are saved.</p>
http://stackoverflow.com/questions/1733166/marking-duplicates-in-a-csv-file/1733196#17331960Answer by jmucchiello for marking duplicates in a csv filejmucchiello2009-11-14T03:56:18Z2009-11-14T03:56:18Z<p>Sounds like homework. Since this is a CSV file (and thus changing the record size is next to impossible) you are best off loading the whole file into memory and manipulating it there before writing it out to a new file. Create a list of strings which is the original lines of the file. Then create a map, insert into the the phone number (the key) and the value (the id). Before the insert you look for the number if it already exists, you update the line containing the duplicate phone number. If it isn't already in the map, you insert the (phone, id) pair.</p>
http://stackoverflow.com/questions/1726664/distributed-system-design-using-only-c/1729606#17296061Answer by jmucchiello for Distributed system design using only Cjmucchiello2009-11-13T14:37:18Z2009-11-13T14:37:18Z<p>The secret to prevent blocking is your end points must all be written as servers with threads for "protocol" processing that are separate from the threads for data processing.</p>
<p>As for line protocol, I've become enamored with JSON for line protocol. It is human readable. It is streamable without need for length bytes! It is easily extensible and mostly immune to protocol version change.</p>
http://stackoverflow.com/questions/1729430/cross-compiler-exception-handling-can-it-be-done-safely/1729445#17294451Answer by jmucchiello for Cross compiler exception handling - Can it be done safely?jmucchiello2009-11-13T14:13:35Z2009-11-13T14:13:35Z<p>Most likely not. Each version of the compiler will have its own runtime environment that is completely unaware of the other environment. Unless the vendor states explicitly that this is possible is it most likely not possible.</p>
http://stackoverflow.com/questions/988069/in-c-is-const-after-type-id-acceptable/1726998#17269980Answer by jmucchiello for In C++ is "const" after type ID acceptable?jmucchiello2009-11-13T03:41:25Z2009-11-13T03:47:59Z<p>I agree with both of you. You should put the const after the type. I also find looking at it an abomination that must be destroyed. But my recent foray into the wonders of <a href="http://stackoverflow.com/questions/1724051/const-correctness-for-value-parameters">const value parameters</a> has made me understand why putting the const second makes sense.</p>
<pre><code>int *
int const *
int * const
int const * const
</code></pre>
<p>Just looking at that has the hairs on my neck standing. I'm sure it would confuse my co-workers.</p>
<p>EDIT: I was just wondering about using this in classes:</p>
<pre><code>class Foo {
Bar* const bar;
Foo(const Foo&) = delete; // would cause too many headaches
public:
Foo() : bar(new Bar) {}
~Foo() { delete bar; }
};
</code></pre>
<p><code>bar</code> in this example is functionally equivalent to <code>Bar&</code> but it is on the heap and can be deleted. For the lifetime of each Foo, there will be a single Bar associated with it. </p>
http://stackoverflow.com/questions/1726446/how-much-designing-should-go-on-before-any-coding-takes-place/1726982#17269820Answer by jmucchiello for How Much Designing Should Go On Before Any Coding Takes Place?jmucchiello2009-11-13T03:34:44Z2009-11-13T03:34:44Z<p>I think you want us to tell you that your professor is wrong. Here's some ammunition: <a href="http://www.developerdotstar.com/mag/articles/reeves%5Fdesign%5Fmain.html" rel="nofollow">http://www.developerdotstar.com/mag/articles/reeves%5Fdesign%5Fmain.html</a> I have yet to discover if reeves is 100% correct but so far it is.</p>
http://stackoverflow.com/questions/1724051/const-correctness-for-value-parameters1Const correctness for value parametersjmucchiello2009-11-12T17:42:01Z2009-11-12T18:50:12Z
<p>I know there are few question about const correctness where it is stated that the declaration of a function and its definition do not need to agree for value parameters. This is because the constness of a value parameter only matters inside the function. This is fine:</p>
<pre><code>// header
int func(int i);
// cpp
int func(const int i) {
return i;
}
</code></pre>
<p>Is doing this really a best practice? Because I've never seen anyone do it. I've seen this quotation (not sure of the source) in other places this has been discussed:</p>
<blockquote>
<p>"In fact, to the compiler, the function signature is the same whether you include this const in front of a value parameter or not."</p>
<p>"Avoid const pass-by-value parameters in function declarations. Still make the parameter const in the same function's definition if it won't be modified."</p>
</blockquote>
<p>The second paragraph says to not put the const in the declaration. I assume this is because the constness of a value parameter is meaningless as part of a interface definition. It is an implementation detail.</p>
<p>Based on this recommendation, is it also recommended for the pointer values of pointer parameters? (It is meaningless on a reference parameter since you can't reassign a reference.)</p>
<pre><code>// header
int func1(int* i);
int func2(int* i);
// cpp
int func1(int* i) {
int x = 0;
*i = 3; // compiles without error
i = &x; // compiles without error
return *i;
}
int func2(int* const i) {
int x = 0;
*i = 3; // compiles without error
i = &x; // compile error
return *i;
}
</code></pre>
<p><strong>Summary:</strong> Making value parameters is useful to catch some logic errors. Is it a best practice? Do you go to the extreme of leaving the const out of the header file? Is it just as useful to const pointer values? Why or why not?</p>
<p><strong>Some references:</strong></p>
<p><a href="http://stackoverflow.com/questions/1554750/c-const-keyword-use-liberally">http://stackoverflow.com/questions/1554750/c-const-keyword-use-liberally</a>
<a href="http://stackoverflow.com/questions/117293/use-of-const-for-function-parameters">http://stackoverflow.com/questions/117293/use-of-const-for-function-parameters</a></p>
<p>An example of when const value parameters are useful:</p>
<pre><code>bool are_ints_equal(const int i, const int j) {
if (i = j) { // without the consts this would compile without error
return true;
} else {
return false;
}
// return i = j; // I know it can be shortened
}
</code></pre>
http://stackoverflow.com/questions/1722112/what-are-the-most-common-naming-conventions-in-c/1722544#17225440Answer by jmucchiello for What are the most common naming conventions in C?jmucchiello2009-11-12T14:27:29Z2009-11-12T14:27:29Z<p>I'm confused by one thing: You're planning to create a new naming convention for a new project. Generally you should have a naming convention that is company- or team-wide. If you already have projects that have any form of naming convention, you should not change the convention for a new project. If the convention above is just codification of your existing practices, then you are golden. The more it differs from existing <em>de facto</em> standards the harder it will be to gain mindshare in the new standard.</p>
<p>About the only suggestion I would add is I've taken a liking to _t at the end of types in the style of uint32_t and size_t. It's very C-ish to me although some might complain it's just "reverse" Hungarian.</p>
http://stackoverflow.com/questions/1713754/php-jsondecode-question/1713775#17137750Answer by jmucchiello for PHP json_decode questionjmucchiello2009-11-11T08:18:26Z2009-11-11T08:18:26Z<p>Your outer object contains two items named "segment". While this is legal JSON it is not possible to have a PHP object with two different items with the same name.</p>
http://stackoverflow.com/questions/1704353/template-lookup-in-class/1704511#17045110Answer by jmucchiello for Template lookup in class?jmucchiello2009-11-09T22:52:19Z2009-11-10T22:22:23Z<p>No, out of class you have to write:</p>
<pre><code>template <typename T>
Wrapper<T>::Wrapper<T>(const Wrapper<T>& w) : t(w.t) {}
</code></pre>
<p>But inside the class, <code>Wrapper</code> stands in for the "current class".</p>
<p>EDIT: This is for Andrew and his investigation into why a compiler would reject the on the constructor:</p>
<pre><code>template <typename T>
class Foo {
public:
Foo() {}
Foo(const Foo& f);
};
template <typename T>
Foo<T>::Foo<T>(const Foo<T>& f) { }
int main(int argc, char** argv)
{
Foo<int> f;
Foo<int> g(f); // make sure the template is instantiated
}
</code></pre>
http://stackoverflow.com/questions/1711426/design-methods-for-multiple-serialization-targets-formats-not-versions/1711601#17116011Answer by jmucchiello for Design methods for multiple serialization targets/formats (not versions)jmucchiello2009-11-10T22:10:57Z2009-11-10T22:10:57Z<p>Assuming you have full access to the classes that must be serialized. You need to add some form of reflection to the classes (probably including an abstract factory). There are two ways to do this: 1) a common base class or 2) a "traits" struct. Then you can write your encoders/decoders in relation to the base class/traits struct.</p>
<p>Alternatively, you could require that the class provide a function to export itself to a container of boost::any and provide a constructor that takes a boost::any container as its only parameter. It should be simple to write a serialization function to many different formats if your source data is stored in a map of boost::any objects.</p>
<p>That's two ways I might approach this. It would depend highly on the similarity of the classes to be serialized and on the diversity of target formats which of the above methods I would choose.</p>
http://stackoverflow.com/questions/1704165/is-there-a-way-to-improve-the-speed-or-efficiency-of-this-lookup-c-c/1704498#17044981Answer by jmucchiello for Is there a way to improve the speed or efficiency of this lookup? (C/C++)jmucchiello2009-11-09T22:48:59Z2009-11-09T22:48:59Z<p>Why not just use a base64 library? Is really important that 63 equals '11' and not a longer string?</p>
<pre><code>size_t base64_encode(char* outbuffer, size_t maxoutbuflen, const char* inbuffer, size_t inbuflen);
std::string integerToKey(unsigned long long input) {
char buffer[14];
size_t len = base64_encode(buffer, sizeof buffer, (const char*)&input, sizeof input);
return std::string(buffer, len);
}
</code></pre>
<p>Yes, every string will end with an equal size. If you don't want it to, strip off the equal sign. (Just remember to add it back if you need to decode the number.)</p>
<p>Of course, my real question is why are you turning a fixed width 8byte value and not using it directly as your "key" instead of the variable length string value?</p>
<p>Footnote: I'm well aware of the endian issues with this. He didn't say what the key will be used for and so I assume it isn't being used in network communications between machines of disparate endian-ness.</p>
http://stackoverflow.com/questions/1695807/why-c-cs-pragmaonce-isnt-an-iso-standard/1695843#16958438Answer by jmucchiello for Why C/C++'s #pragma_once isn't an ISO standard?jmucchiello2009-11-08T09:22:41Z2009-11-08T09:22:41Z<ol>
<li>How often do you have to add an include file to this project? Is it really so hard to add DIRNAME_FILENAME to the guard? And there is always GUIDs.</li>
<li>Do you really rename files that often? Ever? Also, putting the GUARD in the #endif is just as annoying as any other useless comment.</li>
<li>I doubt your 1000 header files guard defines are even a small percentage of the number of defines generated by your system libraries (especially on Windows).</li>
<li>I think MSC 10 for DOS (20+ years ago) kept track of what headers were included and if they contained guards would skip them if included again. This is old tech.</li>
<li><p>namespaces and templates should not span headers. Dear me, don't tell me you do this:</p>
<pre><code>template <typename foo>
class bar {
#include "bar_impl.h"
};
</code></pre></li>
<li><p>You said that already.</p></li>
</ol>
http://stackoverflow.com/questions/1691164/how-do-i-trace-into-an-externally-compiled-lib-in-visual-c/1691204#16912040Answer by jmucchiello for How do I trace into an externally-compiled lib in Visual C++jmucchiello2009-11-06T23:23:07Z2009-11-06T23:23:07Z<p>When you built OpenSSL, where did you specify the symbol file should go? Is it in the same directory as your executable?</p>
http://stackoverflow.com/questions/1688094/best-way-to-store-and-retrieve-this/1688189#16881891Answer by jmucchiello for Best way to store and retrieve this..?jmucchiello2009-11-06T15:07:29Z2009-11-06T15:07:29Z<p>Why isn't this just <code>map<double, vector<double> ></code>?</p>
http://stackoverflow.com/questions/1684815/expected-constructor-destructor-or-type-conversion-before-token/1684858#16848580Answer by jmucchiello for Expected constructor, destructor, or type conversion before '=' tokenjmucchiello2009-11-06T01:34:23Z2009-11-06T01:34:23Z<p>It doesn't know what type SDL_Surface is. You need to define it or at least forward declare it.</p>
http://stackoverflow.com/questions/1678696/random-records-mysql-php/1684812#16848120Answer by jmucchiello for Random Records Mysql PHPjmucchiello2009-11-06T01:22:04Z2009-11-06T01:22:04Z<p>If the rowsize is not excessively large, I would profile just selecting 50 rows and keeping a random list of 12 of them in the application. Yes, that means you are throwing away 80% of the selected rows. When you are talking 80% of 50 is that really a crime? This is the kind of thing SQL is not good at.</p>
http://stackoverflow.com/questions/1684249/getting-at-string-data-in-sql/1684320#16843202Answer by jmucchiello for Getting at string data in SQLjmucchiello2009-11-05T23:10:44Z2009-11-05T23:10:44Z<p>Why are you storing data in the database in this format? Split it up into columns so that you can do meaningful queries.</p>
http://stackoverflow.com/questions/1683843/is-sql-injection-a-risk-today/1683942#16839423Answer by jmucchiello for Is SQL injection a risk today?jmucchiello2009-11-05T22:00:23Z2009-11-05T22:00:23Z<p>The bobby tables example will not work with the mysql interface because it doesn't do multiple queries in one call. The mysqli interface is vulnerable to the multiple query attack. The mysql interface is more vulnerable to the privilege boost attack:</p>
<p>In your form I type account: <code>admin</code> password: <code>' or 1=1 --</code> so that your typical login sql: <code>select * from users where user_name = '$admin' and password = '$password'</code>. The or causes this to be true and let's you log in.</p>
http://stackoverflow.com/questions/1680538/c-separate-compilers-for-classes-vtables/1680635#16806352Answer by jmucchiello for C++ Separate Compilers for classes (vtables)?jmucchiello2009-11-05T13:35:46Z2009-11-05T13:35:46Z<p>It's not just classes that won't be able to talk to one another. Bare functions declared in a header but compiled only by one of the compilers will be invisible to the other compiler because of name mangling.</p>
<p>Also, any static classes/members of classes compiled by the compiler that does NOT compile main() will not initialize correctly because that compiler's runtime will not be executed. Even things like 64bit long long arithmetic (on 32bit platforms) might not be linked correctly because of the conflicting runtime libraries.</p>
http://stackoverflow.com/questions/1675204/tic-tac-toe-design-pattern/1675372#16753727Answer by jmucchiello for Tic Tac Toe Design Patternjmucchiello2009-11-04T17:24:53Z2009-11-04T17:24:53Z<p>Caveat: I hate when people use "design patterns" as a GOAL. Design good code and if what you are doing looks like a DP, use the DP to help you improve the code. But don't start out saying "I want to write my program using the Striking Crane Pattern." That's putting the cart before the horse. DPs should emerge from your design. They shouldn't drive the design.</p>
<p>EndCaveat</p>
<p>You are already using design patterns. DPs are just jargon for commonly found "patterns" used in programming. What you should first be asking yourself is "How do I recognize the design patterns in the network game I've written?"</p>
<p>After that you can worry about going forward. To have multiple games you will probably want to use an abstract factory pattern to handle your games. The server calls the factory to get a game object that knows how to play the chosen game.</p>
http://stackoverflow.com/questions/1923201/cstring-join-method/1923275#1923275Comment by jmucchiello on CString join method?jmucchiello2009-12-17T18:07:15Z2009-12-17T18:07:15ZDeleting the first char of a string has got to be the most expensive operation you can perform. Switch the comma around and delete the last char. Or just don't generate extra commas.http://stackoverflow.com/questions/1918385/how-do-i-over-allocate-memory-using-new-to-allocate-variables-within-a-struct/1918477#1918477Comment by jmucchiello on How do I over-allocate memory using new to allocate variables within a struct?jmucchiello2009-12-17T14:39:35Z2009-12-17T14:39:35ZSince he's using 0 terminates string in his struct he should set the array size to 1. Then he doesn't need the +1 after the strlen() call. Regardless, this is not a C++ solution at all.http://stackoverflow.com/questions/1917789/how-to-use-https-with-httpreceivehttprequest/1919117#1919117Comment by jmucchiello on How to use HTTPS with HttpReceiveHttpRequest()?jmucchiello2009-12-17T14:35:49Z2009-12-17T14:35:49ZTried that. The cert shows up in mmc and IE as a trusted authority. http://stackoverflow.com/questions/1888984/securing-private-keys-against-brute-force-attacks-on-mobile-devices/1889042#1889042Comment by jmucchiello on Securing private keys against brute force attacks on mobile devicesjmucchiello2009-12-11T18:08:34Z2009-12-11T18:08:34ZWhat stops them from getting the salt off the device? They can watch the code running in the simulator to find out how you retrieve the salt. Then they can write an app that does the same thing and displays it on the screen and run this on the device. Now in the emulator they modify the memory image of the salt to match the one found on the device and then they let the app decrypt the private key and grab it from memory. Not easy. But simple once they find the right break points.http://stackoverflow.com/questions/1887036/how-do-you-find-a-co-ordinates-of-a-given-perpendicular-from-point-x1-y1Comment by jmucchiello on How do you find a co-ordinates of a given perpendicular from point (x1 , y1)jmucchiello2009-12-11T18:02:13Z2009-12-11T18:02:13ZIs there a stackoverflow for math? It could be called divisionbyzero.com or 1plus1equals2.com. :)http://stackoverflow.com/questions/1848803/execute-php-via-cron-no-input-file-specified/1849145#1849145Comment by jmucchiello on Execute PHP via cron - No Input file specifiedjmucchiello2009-12-04T19:41:48Z2009-12-04T19:41:48Zwget makes more sense than lynx. And this is not a lazy solution. Coding only for web access is easier to maintain than having to code for both web access and cli access.http://stackoverflow.com/questions/1843022/what-modules-ought-i-to-consider-in-python-if-i-wish-to-use-cgi-sessionsComment by jmucchiello on What modules ought I to consider in Python if I wish to use CGI sessions?jmucchiello2009-12-03T21:46:52Z2009-12-03T21:46:52ZApache installs smoothly and simply onto Windows.http://stackoverflow.com/questions/1829533/compiling-twice-with-delphi-6-and-getting-the-same-checksum-on-the-binaryComment by jmucchiello on Compiling Twice with Delphi 6 and getting the same checksum on the binaryjmucchiello2009-12-01T23:07:58Z2009-12-01T23:07:58ZI would get that each ".obj" (or equivalent in Delphi) has a timestamp that is finding its way into your .exehttp://stackoverflow.com/questions/1794919/finding-the-index-of-an-entry-in-a-linked-list-in-better-than-on-timeComment by jmucchiello on Finding the index of an entry in a linked list in better than O(n) time...jmucchiello2009-11-25T16:59:41Z2009-11-25T16:59:41ZYou haven't really explained why the ordering must be contiguous. I also don't see why the skip list is overkill. To reduce time, you trade space. That's how algorithmic processing works.http://stackoverflow.com/questions/1792578/benefits-of-exporting-a-class-from-a-dll-vs-static-library/1792708#1792708Comment by jmucchiello on Benefits of exporting a class from a dll vs. static libraryjmucchiello2009-11-24T20:37:37Z2009-11-24T20:37:37ZThat is not 100% correct. A global var in a DLL is instanced per process. You can, with pragmas/linker tricks create system globals but that is not the default. It was as William says in Win3.1 but that changed in Win95/NT.http://stackoverflow.com/questions/1765525/python-sudoku-programming/1766424#1766424Comment by jmucchiello on Python sudoku programmingjmucchiello2009-11-21T16:38:27Z2009-11-21T16:38:27Zupdate() should be easy to refactor. :)http://stackoverflow.com/questions/1775206/are-ascii-characters-always-encoded-the-same-way-in-all-character-encodings/1775250#1775250Comment by jmucchiello on Are ASCII characters always encoded the same way in all character encodings?jmucchiello2009-11-21T12:23:51Z2009-11-21T12:23:51Z'abc' could also be '97 0 98 0 99 0' in UTF-16. You need a BOM to determine endianness.http://stackoverflow.com/questions/1774133/safe-delete-in-c/1774175#1774175Comment by jmucchiello on Safe Delete in C++jmucchiello2009-11-21T04:57:23Z2009-11-21T04:57:23ZI mildly disagree with your first sentence. Agnostic collections might be preferred but Boost.Intrusive shows that sometimes the object knows about the collection it is in.http://stackoverflow.com/questions/1761806/whats-an-algorithm-or-code-for-the-obtaining-ordinal-position-of-an-element-in-a/1761881#1761881Comment by jmucchiello on What’s An Algorithm or code for the obtaining ordinal position of an element in a list sorted by value in c++jmucchiello2009-11-20T07:31:10Z2009-11-20T07:31:10ZO(log N): Only if your tree is always balanced. In which case you need to factor in the time to rebalance the tree after every insert.http://stackoverflow.com/questions/1768749/effective-interpreted-programming-language-for-file-image-manipulationComment by jmucchiello on Effective Interpreted Programming Language for File/Image manipulation jmucchiello2009-11-20T07:27:47Z2009-11-20T07:27:47ZThis sounds like a job for imagemagic and bash.