User Will - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T11:20:02Zhttp://stackoverflow.com/feeds/user/15721http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1902432/finding-out-no-bits-set-in-a-variable-in-faster-manner/1902557#19025570Answer by Will for Finding out no bits set in a variable in faster manner Will2009-12-14T18:18:14Z2009-12-14T18:18:14Z<p>Counting the set bits in a variable is termed the "population count", shortened to "popcount".</p>
<p>A very good micro-benchmark of different software algorithms is given at: <a href="http://www.dalkescientific.com/writings/diary/archive/2008/07/05/bitslice%5Fand%5Fpopcount.html" rel="nofollow">http://www.dalkescientific.com/writings/diary/archive/2008/07/05/bitslice%5Fand%5Fpopcount.html</a></p>
<p>AMD "Barcelona" processors onwards have a fast fixed-cost instruction, which in GCC you can get using __builtin_popcount</p>
<p>On Intel boxes I've found that __builtin_ffs in a loop works best for sparse bit sets.</p>
<p>Its something you can't rely upon; you must micro-benchmark if this is important to you. </p>
http://stackoverflow.com/questions/1863440/is-there-any-scenario-where-the-rope-data-structure-is-more-efficient-than-a-stri/1879741#18797412Answer by Will for Is there any scenario where the Rope data structure is more efficient than a string builderWill2009-12-10T09:19:49Z2009-12-11T06:32:38Z<p>The <a href="http://save-endo.cs.uu.nl/" rel="nofollow">10th ICFP Programming Contest</a> <em>relied</em>, basically, on people using the rope data structure for efficient solving. That was the big trick to get a VM that ran in reasonable time.</p>
<p>Rope is excellent if there are lots of prefixing (apparently the word "prepending" is made up by IT folks and isn't a proper word!) and potentially better for insertions; StringBuilders use continuous memory, so only work efficiently for appending.</p>
<p>Therefore, StringBuilder is great for building strings by appending fragments - a very normal use-case. As developers need to do this a lot, StringBuilders are a very mainstream technology.</p>
<p>Ropes are great for edit buffers, e.g. the data-structure behind, say, an enterprise-strength TextArea. So (a relaxation of Ropes, e.g. a linked list of lines rather than a binary tree) is very common in the UI controls world, but that's not often exposed to the developers and users of those controls.</p>
<p>You need really really big amounts of data and churn to make the rope pay-off - processors are very good at stream operations, and if you have the RAM then simply realloc for prefixing does work acceptably for normal use-cases. That competition mentioned at the top was the only time I've seen it needed.</p>
http://stackoverflow.com/questions/1879758/multithreading-and-multiprocessing/1879818#18798182Answer by Will for multithreading and multiprocessingWill2009-12-10T09:32:26Z2009-12-10T09:32:26Z<p>Largely correct</p>
<ul>
<li>it is not required that a process creates all its threads at the beginning; they can be created as needed, and as many as needed can be created</li>
<li>the operating system multi-tasks between threads; many processes consist of a single thread, others might consist of several. The operating system has complicated ways of working out how to balance the CPU time of all the threads in the system based upon whether they need to run and what their priority is and such; its not as simple as you describe in the system, and its not based upon the process they are part of (except when that is part of the weighting system in the scheduler)</li>
</ul>
<p>Multi-threading allows the threads to share state easily - there is no 'memory protection' between the threads in the same process</p>
<p>Multiple processes does not allow threads to share state except explicitly e.g. by passing messages, sharing file handles or explicitly shared memory.</p>
http://stackoverflow.com/questions/1875167/performance-profiling-on-linux3Performance profiling on LinuxWill2009-12-09T16:43:35Z2009-12-09T23:23:45Z
<p>What are the best tools for profiling C/C++ applications on *nix?</p>
<p>(I'm hoping to profile a server that is a mix of (blocking) file IO, epoll for network and fork()/execv() for some heavy lifting; but general help and more general tools are all also appreciated.)</p>
<p>Can you get the big system picture of RAM, CPU, network and disk all in one overview, and drill into it?</p>
<p>There's been a lot of talk on the <a href="http://lwn.net/Articles/357481/" rel="nofollow">kernel lists</a> about things like <a href="http://blog.fenrus.org/?p=5" rel="nofollow"><code>perf timechart</code></a>, but I haven't found anything turning up in Ubuntu yet.</p>
http://stackoverflow.com/questions/1868411/boostasio-multi-threading-problem/1868508#18685082Answer by Will for boost::asio multi-threading problemWill2009-12-08T17:24:52Z2009-12-08T17:38:14Z<p>First, I'd advocate considering the <strong>multi-process approach</strong> instead; it is a very straightforward, easy to reason about and debug, and easy to scale architecture.</p>
<p>A server design where you can scale horizontally - several instances of the server, where state within each does not need to be shared between servers (e.g. shared state can be in a common database (SQL, <a href="http://project-voldemort.com/" rel="nofollow">Voldemort</a> (persistant) or <a href="http://code.google.com/p/redis/" rel="nofollow">Redis</a> (sets and lists - very cool, I'm really excited about a persistent version), <a href="http://memcached.org/" rel="nofollow">memcached</a> (unreliable) or such) - is more easily scaleable.</p>
<p>You could, for example, have a single listener thread that balances between several server processes using UNIX <code>sendmsg()</code> to transfer the descriptor. This architecture would be straightforward to migrate to multi machine with hardware load-balancers later.</p>
<p>The <strong>area idea</strong> in the poster is intriguing. It could be that, rather than locking, you could do it all by message queues. Reason that disk IO - even with SSD and such - and the network are the real bottlenecks and it is not necessary to be as careful with CPU; the latencies of messages passing between threads is not such a big deal, and depending on your operating system the threads (or processes) could be scheduled to different cores in an SMP setup.</p>
<p>But ultimately, once you reach saturation, to scale up the area idea you need faster cores and not more of them. Here's an interesting <a href="http://www.codinghorror.com/blog/archives/001279.html" rel="nofollow">monologue</a> from one of our hosts about that.</p>
http://stackoverflow.com/questions/1866031/generating-sorted-random-ints-without-the-sort/1866132#18661320Answer by Will for Generating sorted random ints without the sort?Will2009-12-08T10:39:37Z2009-12-08T10:39:37Z<p>You can do it in two passes;</p>
<p>in the first pass, generate deltas between 0 and (MAX_RAND/n)</p>
<p>in the second pass, normalise the random numbers to be within bounds</p>
<p>Still O(n), with good locality of reference.</p>
http://stackoverflow.com/questions/1858639/shall-i-place-try-catch-block-in-destructor-if-i-know-my-function-wont-throw/1858780#18587801Answer by Will for Shall I place try...catch block in destructor, if I know my function won't throw exception.Will2009-12-07T09:12:11Z2009-12-07T13:56:07Z<p>Fundamentally, it is not safe to throw an exception whilst <em>already</em> handling an exception.</p>
<p>If your destructor is being called whilst the stack is unwinding, and another exception is thrown, then your thread <em>can</em> be <strong>terminated immediately</strong> on some systems such as Symbian; that your code was planning to catch the exception won't stop that termination - your code won't even be called. Your thread certainly will be terminated if your <a href="http://www.parashift.com/c++-faq-lite/exceptions.html#faq-17.3" rel="nofollow">exception escapes the destructor</a>.</p>
<p>So <code>try {} catch(...) {}</code> in a destructor is not <em>portable</em> and is certainly tricky.</p>
<p>The sound advice is never call code that could throw an exception in <em>cleanup</em> code such as destructors and any function that might be called from a destructor, such as '<code>cleanup()</code>', '<code>close()</code>' or '<code>release_something()</code>'.</p>
<p>The original poster also queries the performance of try-catch. Early in the adoption of C++ exceptions, exception handling code was reasonably expensive; these days, your compiler almost certainly uses zero-cost exceptions, which means that an exception not thrown adds no runtime performance penalty to the code (but of course does slightly increase the binary size of the program).</p>
http://stackoverflow.com/questions/1855406/overloading-new-and-delete-problem/1855426#18554260Answer by Will for overloading new and delete problemWill2009-12-06T13:41:50Z2009-12-06T13:41:50Z<p>In Visual Studio, debug builds of programs already use a 'debug heap', so your own instrumentation is unnecessary.</p>
<p>Using the debug features of your platform, you could for example call <a href="http://msdn.microsoft.com/en-us/library/d41t22sb%28VS.71%29.aspx" rel="nofollow">_CrtDumpMemoryLeaks</a> at the end of your program, without actually overloading everything.</p>
http://stackoverflow.com/questions/1825621/how-do-you-use-aio-and-epoll-together-in-a-single-event-loop0How do you use AIO and epoll together in a single event loop?Will2009-12-01T11:38:26Z2009-12-05T16:41:14Z
<p>How can you combine AIO and epoll together in a single event loop?</p>
<p>Google finds lots of talk from 2002 and 2003 about unifying them, but its unclear if anything happened, or if it's possible.</p>
<p>Has anyone rolled-their-own with an epoll loop using eventfd for the aio signal?</p>
http://stackoverflow.com/questions/1849928/how-to-intelligently-degrade-or-smooth-gis-data-simplifying-polygons/1849954#18499542Answer by Will for How to intelligently degrade or smooth GIS data (simplifying polygons)?Will2009-12-04T22:04:22Z2009-12-04T22:04:22Z<p>Here's a simple iterative smoothing algorithm:</p>
<p>for each three sequential points on any path, if the middle point has no intersections and is within some small threshold angle of the direct path between the two outer points, remove it.</p>
<p>Repeat until satisfied. </p>
http://stackoverflow.com/questions/1849185/how-to-do-conditional-character-replacement-within-a-string/1849221#18492212Answer by Will for How to do conditional character replacement within a stringWill2009-12-04T19:43:25Z2009-12-04T19:43:25Z<p>focus on <em>easy</em> and <strong>correct</strong> first, then consider efficiency if profiling indicates its a bottleneck.</p>
<p>The simple approach is:</p>
<pre><code>prev = None
for ch in string:
if ch == 'a':
if prev == 'n':
...
prev = ch
</code></pre>
http://stackoverflow.com/questions/1848989/is-this-method-of-checking-a-gift-code-secure/1849020#18490206Answer by Will for Is this method of checking a "gift code" secure?Will2009-12-04T19:06:04Z2009-12-04T19:06:04Z<p>Let everyone enter their gift-code and address, and then submit</p>
<p>In the backend, verify the address and the gift-code.</p>
<p>If the gift-code is valid and not exhausted, congratulate the user. Else apologise to them and suggest they buy it instead anyway.</p>
<p>Does it have to be more complicated than that?</p>
http://stackoverflow.com/questions/1848730/c-read-from-file-redirection-and-also-keyboard/1848827#18488270Answer by Will for c++ read from file redirection and also keyboardWill2009-12-04T18:32:52Z2009-12-04T18:32:52Z<p>one approach that would <em>not require</em> any program alterations is to let the shell do the redirection for you.</p>
<p>On both Windows and Unix shells, < redirects a file to <strong>stdin</strong> for the program.</p>
<p>So, on unix/linux/mac on a console:</p>
<pre><code>./app < file.txt
</code></pre>
<p>or windows, at the command prompt, just:</p>
<pre><code>app < file.txt
</code></pre>
<p>will take the contents of <em>file.txt</em> and send it as <strong>stdin</strong> to the program called '<em>app</em>'.</p>
http://stackoverflow.com/questions/1848575/c-destructor-mess-impossible-to-debug/1848592#18485922Answer by Will for c++ destructor mess, impossible to debug...Will2009-12-04T17:54:24Z2009-12-04T18:04:21Z<p>First step is to compile your program with <code>-g 3</code> switch so that you get much more debugging info.</p>
<p>There's not a lot to go on, but there is a possibility that your <code>~MSG()</code> is getting called when the vector reallocates to grow.</p>
<p>Here's the most simple version of your code:</p>
<pre><code>#include <vector>
struct MSG {
MSG(int count);
~MSG();
void destroy();
char* payload;
int payloadLen;
};
MSG::MSG(int count): payload(new char[count]), payloadLen(count) {}
MSG::~MSG() {
destroy();
}
void MSG::destroy() {
if (payload != NULL)
delete[] payload;
payload = NULL;
payloadLen = 0;
}
std::vector<MSG> queueto1;
int main() {
queueto1.push_back(MSG(10));
return 0;
}
</code></pre>
<p><a href="http://codepad.org/aBWehqw8" rel="nofollow">And G++ says</a>: </p>
<blockquote>
<p>block freed twice</p>
<p>Exited: ExitFailure 127</p>
</blockquote>
<p>Now when the <code>push_back(MSG(10))</code> is being called, it is creating a temporary <code>MSG</code> instance and then using the <em>default</em> copy constructor to set the item in the vector, before calling <code>~MSG()</code> on the temporary (which deletes the payload that the item in the vector now points at).</p>
<p>You can implement the copy constructor <code>MSG(const MSG& copy)</code> to <em>transfer</em> ownership, but that requires a const_cast on the copy and is very very messy.</p>
<p><strong>Two easy options are available</strong>: <code>MSG::payload</code> is a shared pointer, or queueto1 is a <code>std::vector<MSG*></code></p>
http://stackoverflow.com/questions/1847092/given-an-rgb-value-what-would-be-the-best-way-to-find-the-closest-match-in-the-da/1847213#18472132Answer by Will for Given an RGB value what would be the best way to find the closest match in the database?Will2009-12-04T14:17:26Z2009-12-04T14:17:26Z<p>The <a href="http://en.wikipedia.org/wiki/Euclidean%5Fdistance" rel="nofollow">Euclidean distance</a> <code>difference = sqrt(sqr(red1 - red2) + sqr(green1 - green2) + sqr(blue1 - blue2))</code> is the <a href="http://en.wikipedia.org/wiki/Color%5Fdifference" rel="nofollow">standard way</a> to determine the similarity of two colours.</p>
<p>However, if you have your colours in a simple list, then to find the nearest colour requires computing the distance from the new colour with every colour in the list. This is an O(n) operation.</p>
<p>The <code>sqrt()</code> is an expensive operation, and if you're just comparing two distances then you can simply omit the <code>sqrt()</code>.</p>
<p>If you have a very large palette of colours, it is potentially quicker to organise the colours into a <a href="http://en.wikipedia.org/wiki/Kd-tree" rel="nofollow">kd tree</a> (or one of the <a href="http://en.wikipedia.org/wiki/Nearest%5Fneighbor%5Fsearch#Space%5Fpartitioning" rel="nofollow">alternatives</a>) so as to reduce the number of diffreences that require computing.</p>
http://stackoverflow.com/questions/1846836/the-best-shortest-path-algoritm/1846908#18469086Answer by Will for the best shortest path algoritmWill2009-12-04T13:22:37Z2009-12-04T13:46:41Z<p><a href="http://en.wikipedia.org/wiki/Dijkstra%27s%5Falgorithm" rel="nofollow">Dijkstra</a>'s algorithm finds the shortest path between a node and every other node in the graph. You'd run it once for every node. Weights must be non-negative, so if necessary you have to normalise the values in the graph first.</p>
<p><a href="http://en.wikipedia.org/wiki/Floyd%E2%80%93Warshall%5Falgorithm" rel="nofollow">Floyd-Warshall</a> calculates the shortest routes between all pairs of nodes in a single run! Weights must be non-negative, and the graph must be <em>directed</em> (your diagram is not).</p>
<p><a href="http://en.wikipedia.org/wiki/Johnson%27s%5Falgorithm#Analysis" rel="nofollow">Johnson</a>'s algorithm is using Dijkstra's algorithm to find all pairs in a single pass, and is faster for sparse trees (see the link for analysis).</p>
http://stackoverflow.com/questions/1835381/determining-child-window-positions0determining child window positionsWill2009-12-02T19:55:55Z2009-12-04T04:27:03Z
<p>I am trying to debug a win32 windows-mobile app that I am largely unfamiliar with.</p>
<p>I am forcing a periodic InvalidateRect(hWnd,NULL,FALSE) and each time I do the WM_PAINT method is being called, but the GetUpdateRect() returns 0,0,0,0, and obviously nothing that is drawn is visible. GetWindowRect() and GetClientRect() show the window is there and is not zero sized.</p>
<p>I am guessing that the window is completely obscured by its children. Its a maze trying to find these children in the code, however.</p>
<p>How should I approach debugging this? E.g. can I list these children and their positions?</p>
http://stackoverflow.com/questions/1747214/sorting-the-character-araray/1747294#1747294-2Answer by Will for sorting the character ararayWill2009-11-17T08:08:12Z2009-12-03T11:40:38Z<p>This is an excellently-efficient sort:</p>
<pre><code>void sort(char* a,int len) {
int i, count;
char t;
do {
count = 0;
for(i=1; i<len; i++) {
if(a[i-1]>a[i]) {
t = a[i-1];
a[i-1] = a[i];
a[i] = t;
count++;
}
}
} while(count);
}
int main() {
int i;
char a[6] = {'D','S','E','A','w','B'};
sort(a,6);
for(i = 0; i<6; i++)
putchar(a[i]);
putchar('\n');
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1839224/why-does-compiler-generate-error/1839255#18392551Answer by Will for Why does compiler generate error?Will2009-12-03T11:07:12Z2009-12-03T11:07:12Z<blockquote>
<p><a href="http://codepad.org/FynoRVDU" rel="nofollow">In function 'void f()': Line 8: error:
no matching function for call to
'ignore(<unresolved overloaded
function type>)' compilation
terminated due to -Wfatal-errors.</a></p>
</blockquote>
<p>std::endl is not a class, its a function template.</p>
http://stackoverflow.com/questions/1838674/python-spliting-a-string/1838686#18386866Answer by Will for Python Spliting a stringWill2009-12-03T09:18:29Z2009-12-03T09:35:23Z<p>Use <a href="http://docs.python.org/library/stdtypes.html#str.partition" rel="nofollow"><code>partition(' ')</code></a> which always returns three items in the tuple - the first bit up until the separator, the separator, and then the bits after. Slots in the tuple that have are not applicable are still there, just set to be empty strings.</p>
<p>Examples:
<code>"Sico87 is an awful python developer".partition(' ')</code> returns <code>["Sico87"," ","is an awful python developer"]</code></p>
<p><code>"Sico87 is an awful python developer".partition(' ')[0]</code> returns <code>"Sico87"</code></p>
<p>An alternative, <strong><em>trickier</em></strong> way is to use <a href="http://docs.python.org/library/stdtypes.html#str.split" rel="nofollow"><code>split(' ',1)</code></a> which works similiarly but returns a <strong><em>variable</em></strong> number of items. It will return a tuple of one or two items, the first item being the first word up until the delimiter and the second being the rest of the string (if there is any).</p>
http://stackoverflow.com/questions/1835275/long-polling-what-are-methods-for-determining-when-you-have-new-data/1835319#18353190Answer by Will for long polling - what are methods for determining when you have new data?Will2009-12-02T19:44:41Z2009-12-02T19:44:41Z<p>The file size isn't such a bad way.</p>
<p>Browsers might well already be tagging "if-modified-since" headers to the requests.</p>
http://stackoverflow.com/questions/1826120/sql-count-and-distinct/1826152#18261520Answer by Will for SQL count(*) and distinctWill2009-12-01T13:21:08Z2009-12-01T13:21:08Z<p>COUNT(*) is the number of rows matching a query.</p>
<p>A row contains unique information such as rowid. All rows are by definition distinct.</p>
<p>You must count the distinct instances of values in some field instead.</p>
http://stackoverflow.com/questions/1824910/is-there-an-occassion-where-using-catch-all-clause-catch-is-justified/1825276#1825276-1Answer by Will for Is there an occassion where using catch all clause : catch (...) is justified?Will2009-12-01T10:21:38Z2009-12-01T10:21:38Z<p><code>catch(...)</code> is necessary in the absence of the finally clause as found in other languages:</p>
<pre><code>try {
...
} catch(...) {
cleanup...
throw;
}
</code></pre>
<p>The alternative - making stack objects to 'own' everything - is often much more code and less readable and maintainable. The platform API is often C, and does not come with it conveniently bundled.</p>
<p>It is also useful around plugin code that you do not control or simply do not trust from a stability perspective. It won't stop them crashing, but it might keep things a little saner.</p>
<p>Finally, there are times when you really do not care about the outcome of something.</p>
http://stackoverflow.com/questions/1819323/play-video-in-java-from-inputstream/1819331#18193312Answer by Will for Play video in java from InputStreamWill2009-11-30T11:45:33Z2009-11-30T11:45:33Z<p>JMF is the way to go.</p>
<p>Get JMF to install.</p>
http://stackoverflow.com/questions/1819309/xcode-conditional-compilation/1819325#18193250Answer by Will for xcode conditional compilationWill2009-11-30T11:43:10Z2009-11-30T11:43:10Z<p>The bigger issue here is that you're hardcoding your theme in sourcecode.</p>
<p>Its only ever the most extreme customisation that should be done this way. Its sound advice that your theme should be in artwork and you should select it at runtime by varying the path you load the artwork from and such.</p>
http://stackoverflow.com/questions/1818134/hashing-function-for-four-unsigned-integers-c/1818173#18181733Answer by Will for Hashing function for four unsigned integers (C++)Will2009-11-30T06:34:25Z2009-11-30T06:34:25Z<p>Because hashing can generate collisions, you have to keep the keys in memory anyway in order to discover these collisions. Hashmaps and other standard datastructures do do this in their internal bookkeeping.</p>
<p>As the key is so small, just use the key directly rather than hashing. This will be faster and will ensure no collisions.</p>
http://stackoverflow.com/questions/1808541/performance-impact-of-processes-vs-threads2Performance impact of Processes vs ThreadsWill2009-11-27T12:39:30Z2009-11-29T10:27:16Z
<p>Clearly if performance is critical it makes sense to prototype and profile. But all the same, wisdom and advice can be sought on StackOverflow :)</p>
<p>For the handling of highly parallel tasks where inter-task communication is infrequent or suits message-passing, is there a performance disadvantage to using processes (fork() etc) or threads?</p>
<p>Is the context switch between threads cheaper than that between processes? Some processors have single-instruction context-switching don't they? Do the mainstream operating systems better utilise SMP with multiple threads or processes? Is the COW overhead of fork() more expensive than threads if the process never writes to those pages?</p>
<p>And so on. Thanks!</p>
http://stackoverflow.com/questions/1762148/atomic-instruction/1762179#17621794Answer by Will for Atomic InstructionWill2009-11-19T10:01:32Z2009-11-27T21:30:35Z<p>Some machine instructions are intrinsically atomic - for example, reading and writing properly aligned values of the native processor word size is atomic <em>on many architectures</em>.</p>
<p>This means that hardware interrupts, other processors and hyper-threads cannot interrupt the read or store and read or write a partial value to the same location.</p>
<p>More complicated things such as reading and writing together atomically can be achieved by explicit atomic machine instructions e.g. LOCK CMPXCHG on x86.</p>
<p>Locking and other high-level constructs are built on these atomic primitives, which typically only guard a single processor word.</p>
<p>Some clever concurrent algorithms can be built using just the reading and writing of pointers e.g. in linked lists shared between a single reader and writer, or with effort, multiple readers and writers.</p>
http://stackoverflow.com/questions/1801856/length-of-flash-videos/1803033#18030330Answer by Will for Length of flash videosWill2009-11-26T11:01:33Z2009-11-26T11:01:33Z<p>The <a href="http://www.phpclasses.org/browse/package/3747.html" rel="nofollow">PHP Video Toolkit</a> can extract the duration from a movie.</p>
http://stackoverflow.com/questions/1801856/length-of-flash-videos/1801873#18018730Answer by Will for Length of flash videosWill2009-11-26T06:26:20Z2009-11-26T06:26:20Z<p>An FLV or RTMP stream contains an onMetaData script that details the duration, if its known by the originator (e.g. you don't get it from 'live' streams).</p>
<p>You can read the <a href="http://www.adobe.com/devnet/flv/" rel="nofollow">FLV</a> and <a href="http://www.adobe.com/devnet/rtmp/" rel="nofollow">RTMP</a> specs and do your own dissecting, or you can play the video in Flash and wait for the <a href="http://livedocs.adobe.com/fms/2/docs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs%5FParts&file=00000584.html" rel="nofollow">onMetaData</a> callback.</p>
http://stackoverflow.com/questions/1863440/is-there-any-scenario-where-the-rope-data-structure-is-more-efficient-than-a-stri/1879741#1879741Comment by Will on Is there any scenario where the Rope data structure is more efficient than a string builderWill2009-12-11T06:32:46Z2009-12-11T06:32:46ZWhen I was doing that competition, I didn't know about rope - so I invented my own solution: as string builders are great for appending, and as the problem was prefixing, I simply stored my string .. backwards. Elegant somehow :)http://stackoverflow.com/questions/1880172/equivalent-of-java-triple-shift-operators-and-in-c/1880203#1880203Comment by Will on Equivalent of Java triple shift operators (>>> and <<<) in C#?Will2009-12-10T11:02:32Z2009-12-10T11:02:32ZJava doesn't? or C# doesn't?http://stackoverflow.com/questions/1875167/performance-profiling-on-linux/1876431#1876431Comment by Will on Performance profiling on LinuxWill2009-12-10T09:35:40Z2009-12-10T09:35:40Zthanks, pstack looks like a very capable sampling profilerhttp://stackoverflow.com/questions/1872016/how-to-use-re-to-search-for-items-in-one-list-inside-another-list-in-pythonComment by Will on How to use re to search for items in one list inside another list in PythonWill2009-12-09T07:31:25Z2009-12-09T07:31:25ZUseful to know how many items in each of the two lists, and how often the code will be called.http://stackoverflow.com/questions/1868411/boostasio-multi-threading-problemComment by Will on boost::asio multi-threading problemWill2009-12-08T18:06:08Z2009-12-08T18:06:08ZWin32 or UNIX or trying to be portable?http://stackoverflow.com/questions/1868411/boostasio-multi-threading-problem/1868508#1868508Comment by Will on boost::asio multi-threading problemWill2009-12-08T18:03:30Z2009-12-08T18:03:30ZI'm making a server right now in fact, where its a single threaded async design; I do at times need to do heavy lifting and when I do I fork/execv to do that and read in the results through a pipe (which I can do with my main event loop just as though it was an external connection)http://stackoverflow.com/questions/1868603/c-error-c2065-cout-undeclared-identifierComment by Will on C++ error C2065: 'cout' : undeclared identifierWill2009-12-08T17:42:49Z2009-12-08T17:42:49Z<< end; should be << endl; ?http://stackoverflow.com/questions/1866031/generating-sorted-random-ints-without-the-sort/1866132#1866132Comment by Will on Generating sorted random ints without the sort?Will2009-12-08T10:42:53Z2009-12-08T10:42:53Zeh on reading the OP again, I think he was already at this point
http://stackoverflow.com/questions/1864956/byte-precision-pointer-arithmetic-in-c-when-sizeofchar-1Comment by Will on Byte precision pointer arithmetic in C when sizeof(char) != 1Will2009-12-08T06:25:14Z2009-12-08T06:25:14ZI'm curious - which obscure platform is has a char not being a byte? Sounds like the whole premise of the question is premature portability ;)http://stackoverflow.com/questions/1858639/shall-i-place-try-catch-block-in-destructor-if-i-know-my-function-wont-throw/1858780#1858780Comment by Will on Shall I place try...catch block in destructor, if I know my function won't throw exception.Will2009-12-07T13:50:45Z2009-12-07T13:50:45ZLeave is implemented in terms of proper exceptions these days (for the zero-cost bit, rather than longjmp), but as you say its a bit headaching to mix your own throws, since only an int slot is kept for it, and there's a cleanup stack to worry abouthttp://stackoverflow.com/questions/1858639/shall-i-place-try-catch-block-in-destructor-if-i-know-my-function-wont-throw/1858780#1858780Comment by Will on Shall I place try...catch block in destructor, if I know my function won't throw exception.Will2009-12-07T13:20:41Z2009-12-07T13:20:41ZI apologise, I've worked for ages on Symbian and there it definitely kills you if you raise an exception whilst unwinding.http://stackoverflow.com/questions/1855406/overloading-new-and-delete-problem/1855426#1855426Comment by Will on overloading new and delete problemWill2009-12-06T15:07:11Z2009-12-06T15:07:11ZOn Linux, Valgrind would be just the thing! In the windows world, Purify is a commercial equivilent.http://stackoverflow.com/questions/1855406/overloading-new-and-delete-problem/1855426#1855426Comment by Will on overloading new and delete problemWill2009-12-06T15:06:38Z2009-12-06T15:06:38ZYou don't know that its a object allocated with 'new'.
What you can do is set the hooks for the malloc/realloc/free; that'll catch all your allocs, but not those inside libraries you call.http://stackoverflow.com/questions/1855406/overloading-new-and-delete-problem/1855426#1855426Comment by Will on overloading new and delete problemWill2009-12-06T14:17:34Z2009-12-06T14:17:34ZThe leak info is printed to stderr so you'll see it in visual studio. It also finds leaks that are not just caused by object news and deletes, such as you not managing win32 c-API resources and such.http://stackoverflow.com/questions/1848575/c-destructor-mess-impossible-to-debug/1848592#1848592Comment by Will on c++ destructor mess, impossible to debug...Will2009-12-04T18:15:39Z2009-12-04T18:15:39Zreally, follow the link on the phrase "And G++ says" to see what G++ says!