User twk - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T21:14:15Z http://stackoverflow.com/feeds/user/23524 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/575290/which-browsers-claim-to-support-http-compression-but-are-actually-flaky 3 Which browsers claim to support HTTP compression but are actually flaky? twk 2009-02-22T17:34:51Z 2009-11-17T07:02:41Z <p>Are there any known issues with older/buggy browsers that claim to support gzip/deflate compression but don't handle it very well? I'm obviously only turning it on for browsers that claim to support it, but for the best user experience, I want to know if there are any browsers I should blacklist. </p> <p>For some reason, I remember hearing problems about IE6 and gzip, but I'm not sure what the details were. </p> http://stackoverflow.com/questions/292109/outputting-to-stderr-whenever-malloc-free-is-called 2 Outputting to stderr whenever malloc/free is called twk 2008-11-15T03:38:16Z 2009-11-14T20:48:11Z <p>With Linux/GCC/C++, I'd like to record something to stderr whenever malloc/free/new/delete are called. I'm trying to understand a library's memory allocations, and so I'd like to generate this output while I'm running unit tests. I use valgrind for mem leak detection, but I can't find an option to make it just log allocations. </p> <p>Any ideas? I'm looking for the simplest possible solution. Recompiling the library is not an option. </p> http://stackoverflow.com/questions/795129/obfuscation-and-reverse-engineering-deterrents-for-c-win-osx-app 2 Obfuscation and reverse engineering deterrents for C++ Win/OSX app twk 2009-04-27T20:22:07Z 2009-11-07T15:49:13Z <p>Hello,</p> <p>I've got a C++ app that ships on Windows and OSX. It communicates with our backend using TCP (encrypted with OpenSSL, natch). I'd like to throw up some speed bumps for folks who are trying to reverse engineer the protocol and/or disassemble the executable. </p> <p>Skype does an excellent job of this, which is why you won't find a lot of apps that speak skype. Here is a really good read about what it does: <a href="http://www.secdev.org/conf/skype_BHEU06.handout.pdf" rel="nofollow">http://www.secdev.org/conf/skype_BHEU06.handout.pdf</a></p> <p>I'd like some ideas about how to accomplish similar stuff our app. Are there commercial products that make code harder to statically analyze? What is the best way to invest my time to accomplish the goals I've listed?</p> <p>Thanks,</p> http://stackoverflow.com/questions/1596139/hidden-features-and-dark-corners-of-stl/1631965#1631965 3 Answer by twk for Hidden Features and Dark Corners of STL? twk 2009-10-27T16:17:01Z 2009-10-27T16:17:01Z <p>size() on a list is O(N) on some platforms. Use empty() if you can, it should be O(1).</p> http://stackoverflow.com/questions/711800/efficiently-detecting-changes-in-a-set-of-states 0 Efficiently detecting changes in a set of states twk 2009-04-02T22:06:21Z 2009-10-06T13:00:00Z <p>I have a set of objects. Each object has an ID and a state, and valid state transitions are defined by a state machine. A remote client periodically polls this set to determine if its local copy needs to be synced. As an example, let's say I have objects A and B, each with states 1, and 2. Valid state changes are 1->2 and 2->1. If an object has gone from from state 1 -> 2 in between polls, the remote side needs to be updated. But if it goes back to 1 before the remote side checks, nothing needs to be done.</p> <p>A very simple solution would be to simply increment a counter each time any state is changed. The remote client would send in the counter from its previous poll. If it matches the previous value, no changes are necessary. </p> <p>A more complicated approach would be to hash all the object ID + state pairs into a single value. </p> <p>The first approach has the advantage of being very cheap to calculate (O(1)), but may result in unnecessary syncing (when an object goes from state 1 -> 2 -> 1). There is no need to sync, but the counter will be different. The second approach overcomes this problem, but takes O(N) to calculate. </p> <p>Does any one have any ideas about how to accomplish this? I'm not certain there is a solution to this problem, but any clever tricks you guys can think of will be much appreciated.</p> http://stackoverflow.com/questions/302914/crc32-c-or-c-implementation 3 CRC32 C or C++ implementation twk 2008-11-19T18:41:37Z 2009-10-05T11:28:37Z <p>I'm looking for an implementation of CRC32 in C or C++ that is explicitly licensed as being free or public domain. The implementation <a href="http://www.networkdls.com/Software.Asp?Review=22" rel="nofollow">here</a> seems nice, but the only thing it says about the license is "source code", which isn't good enough. I'd prefer non LGPL so I don't have to fool around with a DLL (my app is closed source). I saw the adler32 implementation in zlib, but I'm checking small chunks of data, which adler is not good for. </p> <p>Thanks!</p> http://stackoverflow.com/questions/163026/what-is-your-least-favorite-syntax-gotcha/163148#163148 54 Answer by twk for What is your (least) favorite syntax gotcha? twk 2008-10-02T15:55:11Z 2009-09-02T23:04:19Z <p>I don't like the fact that braces are optional in C-like languages if you only have a single line after a conditional. For example:</p> <pre><code>if( x ) foo(); </code></pre> <p>Many years ago, I hastily edited a statement like that to read:</p> <pre><code>if( x ) bar(); foo(); </code></pre> <p>It took me a lot longer than it should have to fix that bug. So, now my rule is that if I don't have braces, everything goes on the same line. So, this is OK:</p> <pre><code>if( x ) foo(); </code></pre> http://stackoverflow.com/questions/1301402/example-invalid-utf8-string 4 Example invalid utf8 string? twk 2009-08-19T17:20:22Z 2009-08-27T05:34:23Z <p>I'm testing how some of my code handles bad data, and I need a few series of bytes that are invalid utf8. Can you post some, and ideally, an explanation of why they are bad/where you got them? </p> <p>Thanks!</p> http://stackoverflow.com/questions/174612/cross-platform-format-string-for-variables-of-type-sizet 5 Cross platform format string for variables of type size_t? twk 2008-10-06T14:51:51Z 2009-08-25T03:35:20Z <p>On a cross platform c/c++ project (Win32, Linux, OSX), I need to use the *printf functions to print some variables of type size_t. In some environments size_t's are 8 bytes and on others they are 4. On glibc I have %zd, and on Win32 I can use <a href="http://msdn.microsoft.com/en-us/library/tcxf1dw6.aspx" rel="nofollow">%Id</a>. Is there an elegant way to handle this?</p> http://stackoverflow.com/questions/1294717/handling-exdev-error-on-rename-failure 1 Handling EXDEV error on rename() failure twk 2009-08-18T15:39:53Z 2009-08-18T16:20:33Z <p>On linux, the stdio function rename fails with EXDEV if both paths are not on the same volume. What is the best workaround for this? Is there another function that will handle this, or do I need to copy/unlink?</p> <p>Thanks!</p> http://stackoverflow.com/questions/366772/getting-a-list-of-3rd-party-modules-with-windbg 2 Getting a list of 3rd party modules with Windbg? twk 2008-12-14T17:38:55Z 2009-07-26T19:27:28Z <p>I'm using windbg to examine some crash dumps sent in by an app. There seems to be some correlation between a crash I'm seeing and having a certain 3rd party DLL loaded into the process (a flaky Winsock LSP, I suspect). To make this sort of analysis easier in the future, is there a windbg script that would just show me a list of modules that are non-Microsoft? This would make patterns between crashes more obvious to me. I'm using "lm D sm", but going through the list manually right now is a pain.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1168766/what-is-a-good-easy-to-use-profiler-for-c-on-linux/1168817#1168817 1 Answer by twk for What is a good easy to use profiler for C++ on Linux? twk 2009-07-22T23:25:39Z 2009-07-22T23:25:39Z <p>gprof is the standard gnu tool for profiling.</p> http://stackoverflow.com/questions/1007495/determining-distribution-so-i-can-generate-test-data 2 Determining distribution so I can generate test data twk 2009-06-17T14:44:04Z 2009-07-07T08:09:26Z <p>I've got about 100M value/count pairs in a text file on my Linux machine. I'd like to figure out what sort of formula I would use to generate more pairs that follow the same distribution. From a casual inspection, it looks power law-ish, but I need to be a bit more rigorous than that. Can R do this easily? If so, how? Is there something else that works better?</p> <p>Thanks!</p> http://stackoverflow.com/questions/513742/xeon-memory-access-latency 0 Xeon memory access latency twk 2009-02-04T22:46:27Z 2009-06-30T12:00:01Z <p>On a Xeon 5400 chip, how many cycles does it take to:</p> <ul> <li>Read from the L1 cache</li> <li>Read from the L2 cache</li> <li>Read from main memory </li> </ul> <p>I've had a hard time finding it, but I'd love a pointer into some documentation from Intel that describes this.</p> http://stackoverflow.com/questions/878933/convert-short-8-3-paths-to-long 0 Convert short (8.3) paths to long? twk 2009-05-18T17:42:27Z 2009-06-21T21:37:25Z <p>In a Win32/WTL/C++ app, I need to convert some 8.3 paths to their true file names. How do I do it? </p> <p>Thanks,</p> http://stackoverflow.com/questions/1018996/details-about-the-implementation-of-stl-structures-in-libstdc 1 Details about the implementation of stl structures in libstdc++ twk 2009-06-19T16:58:14Z 2009-06-19T20:10:40Z <p>I'd like to use this post to document some basic facts about the internals of stl in libstdc++. Reading that code is slow and painful, and sometimes I want to know simple facts about things like queue or list:</p> <ol> <li>How much heap overhead (number of pointers + structure size) does each element have?</li> <li>What is the basic internal structure? eg, for a queue, is is basically just a linked list? Or does it use a ring internally?</li> <li>Has the implementation changed from version to version?</li> </ol> <p>So please, if you've ever dug into the code to answer a question like this, please document it here. Here <a href="http://gcc.gnu.org/onlinedocs/libstdc%2B%2B/api.html" rel="nofollow">are links</a> to source and the (meager) existing docs:</p> http://stackoverflow.com/questions/185254/how-can-a-win32-process-get-the-pid-of-its-parent 5 How can a Win32 process get the pid of its parent? twk 2008-10-08T22:56:09Z 2009-06-11T03:07:53Z <p>I'm currently passing the pid on the command line to the child, but is there a way to do this in the Win32 API? Alternatively, can someone alleviate my fear that the pid I'm passing might belong to another process after some time if the parent has died?</p> http://stackoverflow.com/questions/945979/determine-the-registered-application-for-an-extension 0 Determine the registered application for an extension twk 2009-06-03T17:19:52Z 2009-06-04T13:29:16Z <p>I've got a file extension and I'd like to get the name of the application (if there is one) that will be invoked when I ShellExecute a file of that type. This is a WTL/C++ app. Is there any sample code out there that does this?</p> <p>Thanks!</p> http://stackoverflow.com/questions/199277/best-practices-for-deploying-tools-scripts-to-production 3 Best practices for deploying tools & scripts to production? twk 2008-10-13T22:33:42Z 2009-05-30T12:09:35Z <p>I've got a number of batch processes that run behind the scenes for a Linux/PHP website. They are starting to grow in number and complexity, so I want to bring a small amount of process to bear on them.</p> <p>My source tree has a bunch of cpp files and scripts, organized with development but not deployment in mind. After compiling all the executables, I need to put various scripts and binaries on a cluster of machines. Different machines need different executables, scripts, and config files for their batch processes. I also have a few of tools that I've written that belong on every machine. At the moment, this deployment process is manual and error prone.</p> <p>I'm guessing I'm just going to end up with a script that runs at the root of the source tree and builds a smaller tree of everything necessary for any of the machines. Then, I'll just rsync that to the appropriate machines. But I'm curious how other people are managing this type of problem. Any ideas?</p> http://stackoverflow.com/questions/918736/random-number-generator-that-produces-a-power-law-distribution 2 Random number generator that produces a power-law distribution? twk 2009-05-28T01:13:20Z 2009-05-28T03:03:45Z <p>I'm writing some tests for a C++ command line Linux app. I'd like to generate a bunch of integers with a power-law/long-tail distribution. Meaning, I get a some numbers very frequently but most of them relatively infrequently. </p> <p>Ideally there would just be some magic equations I could use with rand() or one of the stdlib random functions. If not, an easy to use chunk of C/C++ would be great.</p> <p>Thanks!</p> http://stackoverflow.com/questions/859517/osx-equivalent-of-shellexecute 3 OSX equivalent of ShellExecute? twk 2009-05-13T18:15:52Z 2009-05-13T18:40:03Z <p>I've got a C++ app that I'm porting from Win32 to OSX. I'd like to be able to launch arbitrary files as if the user opened them. This is easy on windows using ShellExecute. How do I accomplish the same thing on the Mac? </p> <p>Thanks!</p> http://stackoverflow.com/questions/853177/win32-api-for-determining-if-a-path-is-relative-or-absolute 1 Win32 API for determining if a path is relative or absolute? twk 2009-05-12T14:48:40Z 2009-05-12T14:49:39Z <p>Is there a win32 function that will tell me if a path is relative or absolute? </p> <p>Thanks,</p> http://stackoverflow.com/questions/163654/what-are-the-best-options-for-nat-port-forwarding 4 What are the best options for NAT port forwarding? twk 2008-10-02T17:48:50Z 2009-05-10T04:34:58Z <p>I'd like to make it easy for users to forward a port on their NAT to their local machine for my C++ app. I'd like to make this work on OSX &amp; Windows. Linux would be a great bonus, but Linux users are probably more comfortable forwarding ports manually, so it is less of a concern. LGPL type code is OK, but I can't use anything that is straight GPL. </p> <p>I'd love to hear any thoughts or experiences anyone has had in this area, but a few specific questions come to mind:</p> <ul> <li>Is there a recognized best library for UPNP? The <a href="http://miniupnp.free.fr/" rel="nofollow">MiniUPNP</a> client looks like it might work, but is there anything else out there? </li> <li>What about <a href="http://en.wikipedia.org/wiki/Bonjour_(software)" rel="nofollow">Bonjour</a>? Can I rely on it for OSX computers? </li> <li>All the big bittorrent apps have to deal with this, so is there an existing survey of how they do it? What about Skype? </li> </ul> http://stackoverflow.com/questions/238382/downsampling-and-applying-a-lowpass-filter-to-digital-audio 6 Downsampling and applying a lowpass filter to digital audio twk 2008-10-26T18:12:07Z 2009-04-15T11:07:49Z <p>I've got a 44Khz audio stream from a CD, represented as an array of 16 bit PCM samples. I'd like to cut it down to an 11KHz stream. How do I do that? From my days of engineering class many years ago, I know that the stream won't be able to describe anything over 5500Hz accurately anymore, so I assume I want to cut everything above that out too. Any ideas? Thanks.</p> <p>Update: There is some code on <a href="http://www.codeguru.com/forum/showthread.php?t=463186&amp;page=1&amp;pp=15" rel="nofollow">this page</a> that converts from 48KHz to 8KHz using a simple algorithm and a coefficient array that looks like { 1, 4, 12, 12, 4, 1 }. I think that is what I need, but I need it for a factor of 4x rather than 6x. Any idea how those constants are calculated? Also, I end up converting the 16 byte samples to floats anyway, so I can do the downsampling with floats rather than shorts, if that helps the quality at all. </p> http://stackoverflow.com/questions/727164/how-to-build-openssl-in-release-mode-with-symbols 1 How to build OpenSSL in release mode with symbols? twk 2009-04-07T19:04:28Z 2009-04-07T21:47:18Z <p>I generally build my openssl libs by doing this:</p> <pre><code>perl Configure VC-WIN32 ms\do_masm nmake -f ms\ntdll.mak nmake -f ms\ntdll.mak test </code></pre> <p>For debugging minidumps, I'd like to get a pdb file for the 2 dlls (while still building them in "release" mode). I've added /Zi to the CFLAGS part of ms\ntdll.mak, but I still get "Binary was not built with debug information" when I look at the in-memory modules in the visual studio debugger. Am I missing a step?</p> <p>Thanks</p> http://stackoverflow.com/questions/727164/how-to-build-openssl-in-release-mode-with-symbols/727721#727721 1 Answer by twk for How to build OpenSSL in release mode with symbols? twk 2009-04-07T21:47:18Z 2009-04-07T21:47:18Z <p>link needs /DEBUG. </p> http://stackoverflow.com/questions/624260/how-to-reuse-an-ostringstream 8 How to reuse an ostringstream? twk 2009-03-08T20:53:24Z 2009-03-08T21:41:00Z <p>I'd like to clear out and reuse an ostringstream (and the underlying buffer) so that my app doesn't have to do as many allocations. How do I reset the object to its initial state?</p> http://stackoverflow.com/questions/598640/what-represents-the-most-mentally-challenging-form-of-coding/598655#598655 0 Answer by twk for What represents the most mentally challenging form of coding? twk 2009-02-28T20:47:32Z 2009-02-28T20:47:32Z <p>I sure hope there are some people out there busy making it easy to use more processor cores automatically. Sure, there is stuff like the Intel Thread Building Blocks or even languages like Erlang, but I hope we see a lot more progress on that front in the next 10 years. </p> http://stackoverflow.com/questions/592639/restful-design-with-per-user-information 1 RESTful design with per-user information? twk 2009-02-26T21:59:00Z 2009-02-26T22:22:42Z <p>What is the correct design for returning per user information in a RESTful manner? Let's say that I had a Foo at /foos/$fooID. The resource has a number of universal properties (eg name &amp; description), but let's say it also has something specific to the user who is currently viewing it -- perhaps the number Foos <strong>they</strong> have purchased in the past. What is the RESTful way to handle that? </p> <p>Of course, the simplest thing to do is simply show each user something different. But if I wasn't going to do that for some reason, I would say that /foo/x should be universal and unchanging and any information specific to that user should be at /users/$userID/purchases or something like that. Caching and authz flow nicely from that model, etc. But of course, then the user has to make multiple requests. </p> <p>Is there a good reason to try to separate the information out like that? I'm curious how other people have handled this. </p> http://stackoverflow.com/questions/584683/stabilizing-the-standard-library-qsort 4 Stabilizing the standard library qsort? twk 2009-02-25T04:06:30Z 2009-02-25T04:21:53Z <p>I'm assuming that the good old qsort function in stdlib is not stable, because the man page doesn't say anything about it. This is the function I'm talking about:</p> <pre><code> #include &lt;stdlib.h&gt; void qsort(void *base, size_t nmemb, size_t size, int(*compar)(const void *, const void *)); </code></pre> <p>I assume that if I change my comparison function to also include the address of that which I'm comparing, it will be stable. Is that correct? </p> <p>Eg:</p> <pre><code>int compareFoos( const void* pA, const void *pB ) { Foo *pFooA = (Foo*) pA; Foo *pFooB = (Foo*) pB; if( pFooA-&gt;id &lt; pFooB-&gt;id ) { return -1; } else if( pFooA-&gt;id &gt; pFooB-&gt;id ) { return 1; } else if( pA &lt; pB ) { return -1; } else if( pB &gt; pA ) { return 1; } else { return 0; } } </code></pre> http://stackoverflow.com/questions/1473609/memory-leak-debug Comment by twk on memory leak debug twk 2009-09-25T19:14:13Z 2009-09-25T19:14:13Z which embedded platform? http://stackoverflow.com/questions/1301402/example-invalid-utf8-string/1301440#1301440 Comment by twk on Example invalid utf8 string? twk 2009-08-19T17:33:40Z 2009-08-19T17:33:40Z Awesome answer -- exactly what I needed. You rock! http://stackoverflow.com/questions/1018996/details-about-the-implementation-of-stl-structures-in-libstdc/1019830#1019830 Comment by twk on Details about the implementation of stl structures in libstdc++ twk 2009-06-19T22:13:35Z 2009-06-19T22:13:35Z Ok, but I think you missed the point of my comment. I have a farm of servers, they all run a very controlled environment. I'm only interested in the templates that are documented on the website I linked to. http://stackoverflow.com/questions/1018996/details-about-the-implementation-of-stl-structures-in-libstdc/1019830#1019830 Comment by twk on Details about the implementation of stl structures in libstdc++ twk 2009-06-19T21:05:37Z 2009-06-19T21:05:37Z I'm only interested in the libstdc++ implementation. http://stackoverflow.com/questions/1018996/details-about-the-implementation-of-stl-structures-in-libstdc Comment by twk on Details about the implementation of stl structures in libstdc++ twk 2009-06-19T19:30:42Z 2009-06-19T19:30:42Z Does the standard contain information about heap overhead? Or how much vectors over-allocate when they grow by default? Or whether a dequeue uses an internal structure that is susceptible to heap fragmentation? I didn't see anything like that in the libstdc++ docs. http://stackoverflow.com/questions/1018996/details-about-the-implementation-of-stl-structures-in-libstdc Comment by twk on Details about the implementation of stl structures in libstdc++ twk 2009-06-19T18:19:52Z 2009-06-19T18:19:52Z I'm using it at scale, in an environment I totally control (I don't just upgrade versions willy-nilly). It is useful for me to know things like the heap overhead of structures before I start working on a solution so that I don't have to prototype and benchmark all my different options. It is also useful when I'm debugging a perf problem to know about the internals of the structures I'm using. http://stackoverflow.com/questions/1018996/details-about-the-implementation-of-stl-structures-in-libstdc/1019032#1019032 Comment by twk on Details about the implementation of stl structures in libstdc++ twk 2009-06-19T17:48:51Z 2009-06-19T17:48:51Z this is platform dependent: <a href="http://gcc.gnu.org/onlinedocs/libstdc++/manual/sequences.html#sequences.list.size" rel="nofollow">gcc.gnu.org/onlinedocs/libstdc++/&hellip;</a> http://stackoverflow.com/questions/795129/obfuscation-and-reverse-engineering-deterrents-for-c-win-osx-app Comment by twk on Obfuscation and reverse engineering deterrents for C++ Win/OSX app twk 2009-04-27T20:32:29Z 2009-04-27T20:32:29Z I'm not relying on it. My life will just be simpler if it takes a while for rogue clients to appear. This is just part of my &quot;defense in depth&quot;. http://stackoverflow.com/questions/711800/efficiently-detecting-changes-in-a-set-of-states Comment by twk on Efficiently detecting changes in a set of states twk 2009-04-03T00:11:36Z 2009-04-03T00:11:36Z Sadly, I have to poll. There are a very large number of clients, and on the order of 1000 objects. http://stackoverflow.com/questions/677550/crippling-test-environments Comment by twk on Crippling Test Environments twk 2009-03-24T14:52:07Z 2009-03-24T14:52:07Z This doesn't sound like a great idea to me. Scaling a web app is all about removing bottlenecks, and by testing on different hardware than you run in production with, you may focus on the wrong bottleneck. http://stackoverflow.com/questions/583896/faster-fundamental-datastructures-on-multicore-machines/584476#584476 Comment by twk on Faster fundamental datastructures on multicore machines? twk 2009-02-25T18:58:27Z 2009-02-25T18:58:27Z hey, you have to hand off a batch of work each time you lock, or it is n't worth it http://stackoverflow.com/questions/584683/stabilizing-the-standard-library-qsort/584701#584701 Comment by twk on Stabilizing the standard library qsort? twk 2009-02-25T04:52:37Z 2009-02-25T04:52:37Z @litb -- I'm not sure what you mean. With the compare function I posted, there are no &quot;equal&quot; values. http://stackoverflow.com/questions/584683/stabilizing-the-standard-library-qsort/584701#584701 Comment by twk on Stabilizing the standard library qsort? twk 2009-02-25T04:21:22Z 2009-02-25T04:21:22Z Ah, good call. I knew my spider sense was tingling for a reason. http://stackoverflow.com/questions/584683/stabilizing-the-standard-library-qsort/584687#584687 Comment by twk on Stabilizing the standard library qsort? twk 2009-02-25T04:10:30Z 2009-02-25T04:10:30Z Yeah, I thought about adding the scary-nonportable-code tag http://stackoverflow.com/questions/566662/how-to-handle-people-who-lie-on-their-resume/566704#566704 Comment by twk on How to handle people who lie on their resume twk 2009-02-19T19:13:12Z 2009-02-19T19:13:12Z How about &quot;effective liar&quot;?