User Mecki - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T22:13:16Zhttp://stackoverflow.com/feeds/user/15809http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1750995/perl-script-fork-exec-system-claims-my-process-has-died-when-in-fact-only-my-ch1Perl Script, Fork/Exec, System claims my process has died when in fact only my child process has diedMecki2009-11-17T18:58:14Z2009-11-17T19:11:48Z
<p>I have a Perl script that does a fork/exec to start another tool in the background and monitor some file system changes while this other tool is running. This seems to work like expected.</p>
<p>When I start this Perl script from a shell (e.g. Bash), of course the shell prompt should be gone for as long as my Perl script is running. And it will keep running until the expected file modification has taken place; but there is no guarantee that the file modification might be done by the external tool, in that case the external tool will exit, but my script will keep running and has to handle that situation somehow - this handling is beyond the scope of the question and not related to my problem (so far it is not even implemented).</p>
<p>My problem is that as soon as my child process dies, Bash returns to its prompt, claiming my process has finished running... which is not true. It clearly is still running in the background and it still waits for the file system modification. If I keep printing some text in the main loop of the script, this text is still printed, even though bash has returned back to the prompt already.</p>
<p>I cannot figure out what makes bash believe my process has quit. I tried blocking the SIGCHLD signal in my script, I tried closing and/or redirecting STDOUT/STDERR/STDIN (which are duplicated on fork, but you never know) - no success. I even tried the famous "double fork", to make the final child independent of my script process, same outcome. No matter what I do, as soon as my child (or grandchild) dies, Bash beliefs my process has quit. Starting my script in the background (using "&" at the end) makes Bash even tell me that process XYZ has finished (and it names my process here, not the child process, even though my process is happily alive and printing to terminal via STDOUT that very moment).</p>
<p>If this was only an issue of Bash, I couldn't care any less, but other third party software that is supposed to run my script acts the same way. As soon as my child dies, they claim that my script has in fact died, which is simply not true.</p>
http://stackoverflow.com/questions/647537/b-tree-faster-then-avl-or-redblack-tree/1195288#11952882Answer by Mecki for B-tree faster then AVL or RedBlack-Tree? Mecki2009-07-28T16:39:45Z2009-10-05T08:15:03Z<p>Actually Wikipedia has a great article that shows every RB-Tree can easily be expressed as a B-Tree. Take the following tree as sample:</p>
<p><img src="http://upload.wikimedia.org/wikipedia/commons/thumb/6/66/Red-black%5Ftree%5Fexample.svg/800px-Red-black%5Ftree%5Fexample.svg.png" alt="RB-Tree" /></p>
<p>now just convert it to a B-Tree (to make this more obvious, nodes are still colored R/B, what you usually don't have in a B-Tree):</p>
<p><a href="http://upload.wikimedia.org/wikipedia/commons/7/72/Red-black%5Ftree%5Fexample%5F%28B-tree%5Fanalogy%29.svg" rel="nofollow">Same Tree as B-Tree</a></p>
<p>(cannot add the image here for some weird reason)</p>
<p>Same is true for any other RB-Tree. It's taken from this article:</p>
<p><a href="http://en.wikipedia.org/wiki/Red-black%5Ftree" rel="nofollow">http://en.wikipedia.org/wiki/Red-black_tree</a></p>
<p>To quote from this article:</p>
<blockquote>
<p>The red-black tree is then
structurally equivalent to a B-tree of
order 4, with a minimum fill factor of
33% of values per cluster with a
maximum capacity of 3 values.</p>
</blockquote>
<p>I found no data that one of both is significantly better than the other one. I guess one of both had already died out if that was the case. They are different regarding how much data they must store in memory and how complicated it is to add/remove nodes from the tree.</p>
<h2>Update:</h2>
<p>My personal tests suggest that B-Trees are better when searching for data, as they have better data locality and thus the CPU cache can do compares somewhat faster. The higher the order of a B-Tree (the order is the number of children a note can have), the faster the lookup will get. On the other hand, they have worse performance for adding and removing new entries the higher their order is. This is caused by the fact that adding a value within a node has linear complexity. As each node is a sorted array, you must move lots of elements around within that array when adding an element into the middle: all elements to the left of the new element must be moved one position to the left or all elements to the right of the new element must be moved one position to the right. If a value moves one node upwards during an insert (which happens frequently in a B-Tree), it leaves a hole which must be also be filled either by moving all elements from the left one position to the right or by moving all elements to the right one position to the left. These operations (in C usually performed by memmove) are in fact O(n). So the higher the order of the B-Tree, the faster the lookup but the slower the modification. On the other hand if you choose the order too low (e.g. 3), a B-Tree shows little advantages or disadvantages over other tree structures in practice (in such a case you can as well use something else). Thus I'd always create B-Trees with high orders (at least 4, 8 and up is fine).</p>
<p>File systems, which often base on B-Trees, use much higher orders (order 200 and even a lot more) - this is because they usually choose the order high enough so that a note (when containing maximum number of allowed elements) equals either the size of a sector on harddrive or of a cluster of the filesystem. This gives optimal performance (since a HD can only write a full sector at a time, even when just one byte is changed, the full sector is rewritten anyway) and optimal space utilization (as each data entry on drive equals at least the size of one cluster or is a multiple of the cluster sizes, no matter how big the data really is). Caused by the fact that the hardware sees data as sectors and the file system groups sectors to clusters, B-Trees can yield much better performance and space utilization for file systems than any other tree structure can; that's why they are so popular for file systems.</p>
<p>When your app is constantly updating the tree, adding or removing values from it, a RB-Tree or an AVL-Tree may show better performance on average compared to a B-Tree with high order. Somewhat worse for the lookups and they might also need more memory, but therefor modifications are usually fast. Actually RB-Trees are even faster for modifications than AVL-Trees, therefor AVL-Trees are a little bit faster for lookups as they are usually less deep.</p>
<p>So as usual it depends a lot what your app is doing. My recommendations are:</p>
<ol>
<li>Lots of lookups, little modifications: B-Tree (with high order)</li>
<li>Lots of lookups, lots of modifiations: AVL-Tree</li>
<li>Little lookups, lots of modifications: RB-Tree</li>
</ol>
<p>An alternative to all these trees are <a href="http://en.wikipedia.org/wiki/AA%5Ftree" rel="nofollow">AA-Trees</a>. As this <a href="http://www.upgrade-cepis.org/issues/2004/5/up5-5Mosaic.pdf" rel="nofollow">PDF paper suggests</a>, AA-Trees (which are in fact a sub-group of RB-Trees) are almost equal in performance to normal RB-Trees, but they are much easier to implement than RB-Trees, AVL-Trees, or B-Trees. Here is a <a href="http://www.rational.co.za/aatree.c" rel="nofollow">full implementation</a>, look <strong>how tiny it is</strong> (the main-function is not part of the implementation and half of the implementation lines are actually comments).</p>
<p>As the PDF paper shows, a <a href="http://en.wikipedia.org/wiki/Treap" rel="nofollow">Treap</a> is also an interesting alternative to classic tree implementation. A Treap is also a binary tree, but one that doesn't try to enforce balancing. To avoid worst case scenarios that you may get in unbalanced binary trees (causing lookups to become O(n) instead of O(log n)), a Treap adds some randomness to the tree. Randomness cannot guarantee that the tree is well balanced, but it also makes it highly unlikely that the tree is extremely unbalanced.</p>
http://stackoverflow.com/questions/1439176/svn-can-you-remove-directories-from-a-local-checkout-only-not-from-the-reposito3SVN: Can you remove directories from a local checkout only (not from the repository)?Mecki2009-09-17T14:17:05Z2009-09-21T13:09:44Z
<p>Assume that you have a directory under subversion control, that contains some files and tons of subdirectories, like that:</p>
<pre><code>file1.txt
file2.txt
file3.txt
dir1/
dir2/
dir3/
dir4/
:
dirXX/
</code></pre>
<p>Now you need the files and some of the dirs, but not all of them. This can be done with SVN. Just make the checkout non-recursive:</p>
<pre><code>svn checkout -N <URL>
</code></pre>
<p>This checks out only the first directory and the files inside. No subdirectories are included. Even if you go into the checkout directory and run a "<code>svn up</code>", it will only update the files checked out previously, it will not add the directories. You can now selectively add the directories you need by explicitly updating those. E.g. if you need dir2 and dir4 only, you can go into the checkout directory and execute</p>
<pre><code>svn up dir2
svn up dir4
</code></pre>
<p>If you run a generic "<code>svn up</code>" in the future, it will only update the files and those two directories, it will not add any of the other directories.</p>
<p>Now the problem: What if I decide at any later point that I don't need dir2 any longer? How do I get rid of it? There seems no way of doing so, other than deleting the whole checkout and start over from scratch.</p>
<p>When you just delete dir2, the next "<code>svn up</code>" will bring it back, as "<code>svn status</code>" of course shows it as missing now ("!" in front of its name). Running a "<code>svn remove</code>" will remove it of course, but on next commit it will also remove it from the repository, which must not happen.</p>
<p>Even the new sparse directory ("shallow checkout") feature of SVN 1.5 is of no use here:</p>
<blockquote>
<p>Subversion 1.5's implementation of
shallow checkouts is good but does not
support a couple of interesting
behaviors. First, you cannot
de-telescope a working copy item.
Running svn update --set-depth empty
in an infinite-depth working copy will
not have the effect of discarding
everything but the topmost
directory—it will simply error out.
<br> - <a href="http://svnbook.red-bean.com/en/1.5/svn.advanced.sparsedirs.html" rel="nofollow">http://svnbook.red-bean.com/en/1.5/svn.advanced.sparsedirs.html</a></p>
</blockquote>
<p>Is this complete impossible with SVN? Anyone ever came up with a clever work-a-round to that?</p>
<p>Just creating the checkout directory (without SVN) and then checking out the individual subdirectories from the repository directly as subdirectories to this directory will work for the directories: now every directory is a checkout of its own, can be updated and once not needed any longer, you can just delete it. However, how do I get the files then (e.g. file1.txt)? SVN does not allow to checkout individual files, you can only checkout whole directories.</p>
http://stackoverflow.com/questions/1439176/svn-can-you-remove-directories-from-a-local-checkout-only-not-from-the-reposito/1440225#14402252Answer by Mecki for SVN: Can you remove directories from a local checkout only (not from the repository)?Mecki2009-09-17T17:27:59Z2009-09-21T13:09:44Z<p>I hate it to answer my own questions... it makes me feel so dumb. And I hate it even more to be the one who provides the best answer, but unfortunately, here is the only real answer:</p>
<p><em>What I'm trying to do cannot be done with Subversion 1.4 or Subversion 1.5; Period.<br> No work around exists, that's just the way it is.</em></p>
<p><strong>It can be done with Subversion 1.6, thought.</strong><br>(didn't even know that 1.6 exists already)</p>
<p>Unlike SVN 1.5, SVN 1.6 can <strong>reduce the depth</strong> on a directory</p>
<pre><code>svn up --set-depth exclude dir2
</code></pre>
<p>is the solution. It sets the depth for dir2 to zero and it will immediately vanish from the checkout and no update will bring it back, unless you explicitly set the depth of this directory to a value again (or just do an update on it without depth option, since not giving any depth always means infinity, unless you use non-recursive, which means "files").</p>
<p>TIP:<br>
Actually SVN 1.6 cannot really reduce the depth the same way it can increase it. You can increase it from any level to any higher level. You can only reduce it to "exclude" (the lowest level of all). If you want to reduce from "infinity" (highest) to "files" (somewhere in the middle), you must first reduce it to "exclude" (causing the directory to vanish) and then increase it back again to "files". This is a bit of a hack, but it works just nice.</p>
http://stackoverflow.com/questions/1334929/how-can-dereferencing-a-null-pointer-in-c-not-crash-a-program7How can dereferencing a NULL pointer in C not crash a program?Mecki2009-08-26T14:04:30Z2009-08-27T17:33:23Z
<p>I need help of a real C guru to analyze a crash in my code. Not for fixing the crash; I can easily fix it, but before doing so I'd like to understand how this crash is even possible, as it seems totally impossible to me.</p>
<p>This crash only happens on a customer machine and I cannot reproduce it locally (so I cannot step through the code using a debugger), as I cannot obtain a copy of this user's database. My company also won't allow me to just change a few lines in the code and make a custom build for this customer (so I cannot add some printf lines and have him run the code again) and of course the customer has a build without debug symbols. In other words, my debbuging abilities are very limited. Nonetheless I could nail down the crash and get some debugging information. However when I look at that information and then at the code I cannot understand how the program flow could ever reach the line in question. The code should have crashed long before getting to that line. I'm totally lost here.</p>
<p>Let's start with the relevant code. It's very little code:</p>
<pre><code>// ... code above skipped, not relevant ...
if (data == NULL) return -1;
information = parseData(data);
if (information == NULL) return -1;
/* Check if name has been correctly \0 terminated */
if (information->kind.name->data[information->kind.name->length] != '\0') {
freeParsedData(information);
return -1;
}
/* Copy the name */
realLength = information->kind.name->length + 1;
*result = malloc(realLength);
if (*result == NULL) {
freeParsedData(information);
return -1;
}
strlcpy(*result, (char *)information->kind.name->data, realLength);
// ... code below skipped, not relevant ...
</code></pre>
<p>That's already it. It crashes in strlcpy. I can tell you even how strlcpy is <em>really</em> called at runtime. strlcpy is actually called with the following paramaters:</p>
<pre><code>strlcpy ( 0x341000, 0x0, 0x1 );
</code></pre>
<p>Knowing this it is rather obvious why strlcpy crashes. It tries to read one character from a NULL pointer and that will of course crash. And since the last parameter has a value of 1, the original length must have been 0. My code clearly has a bug here, it fails to check for the name data being NULL. I can fix this, no problem.</p>
<p>My question is:<br>
How can this code ever get to the strlcpy in the first place?<br>
<strong>Why does this code not crash at the if-statement?</strong></p>
<p>I tried it locally on my machine:</p>
<pre><code>int main (
int argc,
char ** argv
) {
char * nullString = malloc(10);
free(nullString);
nullString = NULL;
if (nullString[0] != '\0') {
printf("Not terminated\n");
exit(1);
}
printf("Can get past the if-clause\n");
char xxx[10];
strlcpy(xxx, nullString, 1);
return 0;
}
</code></pre>
<p>This code never gets passed the if statement. It crashes in the if statement and that is definitely expected.</p>
<p>So can anyone think of any reason why the first code can get passed that if-statement without crashing if name->data is really NULL? This is totally mysterious to me. It doesn't seem deterministic.</p>
<p>Important extra information:<br>
The code between the two comments is really <strong>complete</strong>, nothing has been left out. Further the application is <strong>single threaded</strong>, so there is no other thread that could unexpectedly alter any memory in the background. The platform where this happens is a PPC CPU (a G4, in case that could play any role). And in case someone wonders about "kind.", this is because "information" contains a "union" named "kind" and name is a struct again (kind is a union, every possible union value is a different type of struct); but this all shouldn't really matter here.</p>
<p>I'm grateful for any idea here. I'm even more grateful if it's not just a theory, but if there is a way I can verify that this theory really holds true for the customer.</p>
<h1>Solution</h1>
<p>I accepted the right answer already, but just in case anyone finds this question on Google, here's what really happened:</p>
<p>The pointers were pointing to memory, that has already been freed. Freeing memory won't make it all zero or cause the process to give it back to the system at once. So even though the memory has been erroneously freed, it was containing the correct values. The pointer in question is not NULL at the time the "<em>if check</em>" is performed.</p>
<p>After that check I allocate some new memory, calling malloc. Not sure what exactly malloc does here, but every call to malloc or free can have far-reaching consequences to all dynamic memory of the virtual address space of a process. After the malloc call, the pointer is in fact NULL. Somehow malloc (or some system call malloc uses) zeros the already freed memory where the pointer itself is located (not the data it points to, the pointer itself is in dynamic memory). Zeroing that memory, the pointer now has a value of 0x0, which is equal to NULL on my system and when strlcpy is called, it will of course crash.</p>
<p>So the real bug causing this strange behavior was at a completely different location in my code. Never forget: Freed memory keeps it values, but it is beyond your control for how long. To check if your app has a memory bug of accessing already freed memory, just make sure the freed memory is always zeroed before it is freed. In OS X you can do this by setting an environment variable at runtime (no need to recompile anything). Of course this slows down the program quite a bit, but you will catch those bugs much earlier.</p>
http://stackoverflow.com/questions/96882/how-do-i-create-a-nice-looking-dmg-for-mac-os-x-using-command-line-tools/97025#9702512Answer by Mecki for How do I create a nice-looking DMG for Mac OS X using command-line tools?Mecki2008-09-18T21:11:57Z2009-08-18T13:30:45Z<p>Don't go there. As a long term Mac developer, I can assure you, no solution is really working well. I tried so many solutions, but they are all not too good. I think the problem is that Apple does not really document the meta data format for the necessary data.</p>
<p>Here's how I'm doing it for a long time, very successfully:</p>
<ol>
<li><p>Create a new DMG, writeable(!), big enough to hold the expected binary and extra files like readme (sparse might work).</p></li>
<li><p>Mount the DMG and give it a layout manually in Finder or with whatever tools suits you for doing that (see FileStorm link at the bottom for a good tool). The background image is usually an image we put into a hidden folder (".something") on the DMG. Put a copy of your app there (any version, even outdated one will do). Copy other files (aliases, readme, etc.) you want there, again, outdated versions will do just fine. Make sure icons have the right sizes and positions (IOW, layout the DMG the way you want it to be).</p></li>
<li><p>Unmount the DMG again, all settings should be stored by now.</p></li>
<li><p>Write a create DMG script, that works as follows: </p>
<ul>
<li>It copies the DMG, so the original one is never touched again.</li>
<li>It mounts the copy.</li>
<li>It replaces all files with the most up to date ones (e.g. latest app after build). You can simply use <em>mv</em> or <em>ditto</em> for that on command line. Note, when you replace a file like that, the icon will stay the same, the position will stay the same, everything but the file (or directory) content stays the same (at least with ditto, which we usually use for that task). You can of course also replace the background image with another one (just make sure it has the same dimensions).</li>
<li>After replacing the files, make the script unmount the DMG copy again.</li>
<li>Finally call hdiutil to convert the writable, to a compressed (and such not writable) DMG.</li>
</ul></li>
</ol>
<p>This method may not sound optimal, but trust me, it works really well in practice. You can put the original DMG (DMG template) even under version control (e.g. SVN), so if you ever accidentally change/destroy it, you can just go back to a revision where it was still okay. You can add the DMG template to your Xcode project, together with all other files that belong onto the DMG (readme, URL file, background image), all under version control and then create a target (e.g. external target named "Create DMG") and there run the DMG script of above and add your old main target as dependent target. You can access files in the Xcode tree using ${SRCROOT} in the script (is always the source root of your product) and you can access build products by using ${BUILT_PRODUCTS_DIR} (is always the directory where Xcode creates the build results).</p>
<p>Result: Actually Xcode can produce the DMG at the end of the build. A DMG that is ready to release. Not only you can create a relase DMG pretty easy that way, you can actually do so in an automated process (on a headless server if you like), using xcodebuild from command line (automated nightly builds for example).</p>
<p>Regarding the initial layout of the template, <a href="http://www.mindvision.com/filestorm.asp" rel="nofollow">FileStorm</a> is a good tool for doing it. It is commercial, but very powerful and easy to use. The normal version is less than $20, so it is really affordable. Maybe one can automate FileStorm to create a DMG (e.g. via AppleScript), never tried that, but once you have found the perfect template DMG, it's really easy to update it for every release.</p>
http://stackoverflow.com/questions/1293026/http-connection-with-nsurlconnection-in-iphone/1293234#12932341Answer by Mecki for HTTP connection with NSURLConnection in iphoneMecki2009-08-18T11:13:41Z2009-08-18T13:28:58Z<p>NSURLConnection is not keeping the connection alive forever; it has a timeout and if no data is received within that timeout, it closes the connection again.</p>
<p>The didReceiveData is only called when there is actually data available - if you send the request and nothing comes back from the server as there is no data currently available, it is expected that it is not called, isn't it?</p>
<p>Is the connectionDidFinishLoading method called? If it is called, I guess NSURLConnection was waiting for data a certain amount of time and as no data arrived, it stopped - as this method should always be called once NSURLConnection is done, no matter if it was successful or not.</p>
<p>A NSURLConnection bases on a NSURLRequest and when creating a NSURLRequest, you can manually set a timeout. Try setting a really huge timeout. Timeout is in seconds (fractions of seconds are allowed, it is a floating point number), so try setting 28800.0 as timeout, that is 8 hours and see if the connection now stays open long enough so didReciveData is ever called.</p>
<p>Please also note that NSURLConnection doesn't know where data starts and where data ends, so it might call didReceiveData multiple times for a single piece of data being sent and your app needs to re-assemble the received data itself and it must know if this is a full data block, ready for processing, or if it must wait for more data coming in another didReceiveData callback.</p>
<h2>Update</h2>
<p>NSURLConnection does not guarantee to deliver data as soon as the data arrived. If it receives some data and it still has room to cache more data, it will keep waiting for more data and aggregate data into a chunk and finally deliver the whole chunk at once. That is why your countdown timer does not work. It does deliver all countdown data, but it does so after the countdown is over, as all the small countdown updates perfectly fit into a single chunk and further the MIME type of the HTTP header announces that many small chunks are following. To avoid calling your method delegate more often than necessary, NSURLConnection caches reply content internally as long as it still has room for doing so.</p>
<p>I'm not sure if you can do what you are trying to do with a NSURLConnection. I personally would rather use a real socket connection for that - but I don't know if that is possible on the iPhone.</p>
<p>In case it is any solace to you, the URL you posted here works nicely in Firefox, but it does not work in Safari 4 (Safari 4 only shows the image at the end, not the countdown). So the behavior you are getting here is the same one you get in Safari.</p>
http://stackoverflow.com/questions/1293169/setting-objects-to-nil-when-releasing-nsarray/1293279#12932794Answer by Mecki for setting objects to nil when releasing NSArrayMecki2009-08-18T11:26:35Z2009-08-18T11:26:35Z<p>Sorry, but what you are doing seems pointless to me. You cannot set an object to nil, you can only set the reference to an object to nil, but that has on influence on other references.</p>
<pre><code>NSObject * a = [[NSObject alloc] init];
NSObject * b = a;
[a release];
a = nil;
// b is NOT nil! b still points to the memory location where
// a used to be, which is now not valid anymore and using b
// for anything may crash your application!
</code></pre>
<p>If I put "a" into an array and then remove it again from the array, the retain count of "a" is decreased by one. Either it is then still bigger than zero, in which case "a" will not be released or it is zero, in which case it is released. Setting the reference to a to nil after it was released has no influence on other variables still pointing to "a".</p>
<p>So even if NSArray was setting the reference to "a" to nil after removing it to the array and releasing it (because its ref count got zero), it will have no affect on an instance variable still pointing to "a".</p>
<p>I'm not really sure what you are trying to do and it is certainly possible, but you are on a totally wrong track here.</p>
http://stackoverflow.com/questions/1271907/sorting-a-binary-search-tree-on-different-key-value/1273191#12731911Answer by Mecki for Sorting a binary search tree on different key valueMecki2009-08-13T16:45:02Z2009-08-13T16:45:02Z<p>You can easily do this in O(1) space, but not in O(1) time ;-)</p>
<p>Even though re-arranging a whole tree recursively until it is sorted again seems possible, it is probably not very fast - it may be O(n) at best, probably worse in practice. So you might get a better result by adding all nodes to an array once you are done with the tree and just sorting this array using quicksort on frequency (which will be O(log n) on average). At least that's what I would do. Even tough it takes extra space it sounds more promising to me than re-arranging the tree in place.</p>
http://stackoverflow.com/questions/1193477/fast-algorithm-to-quickly-find-the-range-a-number-belongs-to-in-a-set-of-ranges3Fast Algorithm to Quickly Find the Range a Number Belongs to in a Set of Ranges?Mecki2009-07-28T11:25:18Z2009-08-11T13:50:34Z
<h2>The Scenario</h2>
<p>I have several number ranges. Those ranges are not overlapping - as they are not overlapping, the logical consequence is that no number can be part of more than one range at any time. Each range is continuously (there are no holes within a single range, so a range 8 to 16 will really contain all numbers between 8 and 16), but there can be holes between two ranges (e.g. range starts at 64 and goes to 128, next range starts at 256 and goes to 384), so some numbers may not belong to any range at all (numbers 129 to 255 would not belong to any range in this example).</p>
<h2>The Problem</h2>
<p>I'm getting a number and need to know to which range the number belongs to... if it belongs to any range at all. Otherwise I need to know that it does not belong to any range. Of course speed is important; I can not simply check all the ranges which would be O(n), as there might be thousands of ranges.</p>
<h2>Simple Solutions</h2>
<p>A simple solution was keeping all numbers in a sorted array and run a binary search on it. That would give me at least O(log n). Of course the binary search must be somewhat modified as it must always check against the smallest and biggest number of a range. If the number to look for is in between, we have found the correct range, otherwise we must search ranges below or above the current one. If there is only one range left in the end and the number is not within that range, the number is within no range at all and we can return a "not found" result.</p>
<p>Ranges could also be chained together in some kind of tree structure. This is basically like a sorted list with binary search. The advantage is that it will be faster to modify a tree than a sorted array (adding/removing range), but unlike we waste some extra time on keeping the tree balanced, the tree might get very unbalanced over the time and that will lead to much slower searches than a binary search on a sorted array.</p>
<p>One can argue which solution is better or worse as in practice the number of searches and modification operations will be almost balanced (there will be an equal number of searches and add/remove operations performed per second).</p>
<h2>Question</h2>
<p>Is there maybe a better data structure than a sorted list or a tree for this kind of problem? Maybe one that could be even better than O(log n) in best case and O(log n) in worst case?</p>
<p>Some additional information that might help here is the following: All ranges always start and end at multiple of a power of two. They always all start and end at the same power of two (e.g. they all start/end at a multiple of 4 or at a multiple of 8 or at a multiple of 16 and so on). The power of two cannot change during run time. Before the first range is added, the power of two must be set and all ranges ever added must start/end at a multiple of this value till the application terminates. I think this can be used for optimization, as if they all start at a multiple of e.g. 8, I can ignore the first 3 bits for all comparison operations, the other bits alone will tell me the range if any.</p>
<p>I read about section and ranges trees. Are these optimal solutions to the problem? Are there possibly better solutions? The problem sounds similar to what a malloc implementation must do (e.g. every free'd memory block belongs to a range of available memory and the malloc implementation must find out to which one), so how do those commonly solve the issue?</p>
http://stackoverflow.com/questions/1193477/fast-algorithm-to-quickly-find-the-range-a-number-belongs-to-in-a-set-of-ranges/1260512#12605123Answer by Mecki for Fast Algorithm to Quickly Find the Range a Number Belongs to in a Set of Ranges?Mecki2009-08-11T13:50:34Z2009-08-11T13:50:34Z<p>After running various benchmarks, I came to the conclusion that only a tree like structure can work here. A sorted list shows of course good lookup performance - O(log n) - but it shows horribly update performance (inserts and removals are slower by more than the factor 10 compared to trees!).</p>
<p>A balanced binary tree also has O(log n) lookup performance, however it is much faster to update, also around O(log n), while a sorted list is more like O(n) for updates (O(log n) to find the position for insert or the element to delete, but then up to n elements must be moved within the list and this is O(n)).</p>
<p>I implemented an AVL tree, a red-black tree, a Treap, an AA-Tree and various variations of B-Trees (B means Bayer Tree here, not Binary). Result: Bayer trees almost never win. Their lookup is good, but their update performance is bad (as within each node of a B-Tree you have a sorted list again!). Bayer trees are only superior in cases where reading/writing a node is a very slow operation (e.g. when the nodes are directly read or written from/to hard disk) - as a B-Tree must read/write much less nodes than any other tree, so in such a case it will win. If we are having the tree in memory though, it stands no chance against other trees, sorry for all the B-Tree fans out there.</p>
<p>A Treap was easiest to implement (less than half the lines of code you need for other balanced trees, only twice the code you need for an unbalanced tree) and shows good average performance for lookups and updates... but we can do better than that.</p>
<p>An AA-Tree shows amazing good lookup performance - I have no idea why. They sometimes beat all other trees (not by far, but still enough to not be coincident)... and the removal performance is okay, however unless I'm too stupid to implement them correctly, the insert performance is really bad (it performs much more tree rotations on every insert than any other tree - even B-Trees have faster insert performance).</p>
<p>This leaves us with two classics, AVL and RB-Tree. They are both pretty similar but after hours of benchmarking, one thing is clear: AVL Trees definitely have better lookup performance than RB-Trees. The difference is not gigantic, but in 2/3 out of all benchmarks they will win the lookup test. Not too surprising, after all AVL Trees are more strictly balanced than RB-Trees, so they are closer to the optimal binary tree in most cases. We are not talking about a huge difference here, it is always a close race.</p>
<p>On the other hand RB Trees beat AVL Trees for inserts in almost all test runs and that is not such a close race. As before, that is expected. Being less strictly balanced RB Trees perform much less tree rotations on inserts compared to AVL Trees.</p>
<p>How about removal of nodes? Here it seems to depend a lot on the number of nodes. For small node numbers (everything less than half a million) RB Trees again own AVL Trees; the difference is even bigger than for inserts. Rather unexpected is that once the node number grows beyond a million nodes AVL Trees seems to catch up and the difference to RB Trees shrinks until they are more or less equally fast. This could be an effect of the system, though. It could have to do with memory usage of the process or CPU caching or the like. Something that has a more negative effect on RB Trees than it has on AVL Trees and thus AVL Trees can catch up. The same effect is not observed for lookups (AVL usually faster, regardless how many nodes) and inserts (RB usually faster, regardless how many nodes).</p>
<p><strong>Conclusion:</strong><br>
I think the fastest I can get is when using RB-Trees, since the number of lookups will only be somewhat higher than the number of inserts and deletions and no matter how fast AVL is on lookups, the overall performance will suffer from their worse insert/deletion performance.</p>
<p>That is, unless anyone here may come up with a much better data structure that will own RB Trees big time ;-)</p>
http://stackoverflow.com/questions/187761/recursive-lock-mutex-vs-non-recursive-lock-mutex12Recursive Lock (Mutex) vs Non-Recursive Lock (Mutex)Mecki2008-10-09T15:19:13Z2009-08-07T14:20:38Z
<p>POSIX allows mutexes to be recursive. That means the same thread can lock the same mutex twice and won't deadlock. Of course it also needs to unlock it twice, otherwise no other thread can obtain the mutex. Not all systems supporting pthreads also support recursive mutexes, but if they want to be <a href="http://www.opengroup.org/onlinepubs/009695399/functions/pthread_mutexattr_gettype.html" rel="nofollow">POSIX conform, they have to</a>.</p>
<p>Other APIs (more high level APIs) also usually offer mutexes, often called Locks. Some systems/languages (e.g. Cocoa Objective-C) offer both, recursive and non recursive mutexes. Some languages also only offer one or the other one. E.g. in Java mutexes are always recursive (the same thread may twice "synchronize" on the same object). Depending on what other thread functionality they offer, not having recursive mutexes might be no problem, as they can easily be written yourself (I already implemented recursive mutexes myself on the basis of more simple mutex/condition operations).</p>
<p>What I don't really understand: What are non-recursive mutexes good for? Why would I want to have a thread deadlock if it locks the same mutex twice? Even high level languages that could avoid that (e.g. testing if this will deadlock and throwing an exception if it does) usually don't do that. They will let the thread deadlock instead.</p>
<p>Is this only for cases, where I accidentally lock it twice and only unlock it once and in case of a recursive mutex, it would be harder to find the problem, so instead I have it deadlock immediately to see where the incorrect lock appears? But couldn't I do the same with having a lock counter returned when unlocking and in a situation, where I'm sure I released the last lock and the counter is not zero, I can throw an exception or log the problem? Or is there any other, more useful use-case of non recursive mutexes that I fail to see? Or is it maybe just performance, as a non-recursive mutex can be slightly faster than a recursive one? However, I tested this and the difference is really not that big.</p>
http://stackoverflow.com/questions/52092/why-the-claim-that-c-guys-dont-get-object-oriented-programming-vs-class-orien/1007483#10074831Answer by Mecki for Why the claim that c# guys don't get object-oriented programming? (vs class-oriented)Mecki2009-06-17T14:42:17Z2009-06-17T14:42:17Z<p>Object Oriented is a concept. This concept is based upon certain ideas. The technical names of these ideas (actually rather principles that evolved over the time and have not been there from the first hour) have already been given above, I'm not going to repeat them. I'm rather explaining this as simple and non-technical as I can.</p>
<p>The idea of OO programming is that there are objects. Objects are small independent entities. These entities may have embedded information or they may not. If they have such information, only the entity itself can access it or change it. The entities communicate with each other by sending messages between each other. Compare this to human beings. Human beings are independent entities, having internal data stored in their brain and the interact with each other by communicating (e.g. talking to each other). If you need knowledge from someone's else brain, you cannot directly access it, you must ask him a question and he may answer that to you, telling you what you wanted to know.</p>
<p>And that's basically it. This is real idea behind OO programming. Writing these entities, define the communication between them and have them interact together to form an application. This concept is not bound to any language. It's just a concept and if you write your code in C#, Java, or Ruby, that is not important. With some extra work this concept can even be done in pure C, even though it is a functional language but it offers everything you need for the concept.</p>
<p>Different languages have now adopted this concept of OO programming and of course the concepts are not always equal. Some languages allow what other languages forbid, for example. Now one of the concepts that involved is the concept of classes. Some languages have classes, some don't. A class is a blueprint how an object looks like. It defines the internal data storage of an object, it defines the messages an object can understand and if there is inheritance (which is <em>not mandatory</em> for OO programming!), classes also defines from which other class (or classes if multiple inheritance is allowed) this class inherits (and which properties if selective inheritance exists). Once you created such a blueprint you can now generate an unlimited amount of objects build according to this blueprint.</p>
<p>There are OO languages that have no classes, though. How are objects then build? Well, usually dynamically. E.g. you can create a new blank object and then dynamically add internal structure like instance variables or methods (messages) to it. Or you can duplicate an already existing object, with all its properties and then modify it. Or possibly merge two objects into a new one. Unlike class based languages these languages are very dynamic, as you can generate objects dynamically during runtime in ways not even you the developer has thought about when starting writing the code.</p>
<p>Usually this dynamic has a price: The more dynamic a language is the more memory (RAM) objects will waste and the slower everything gets as program flow is extremely dynamically as well and it's hard for a compiler to generate effective code if it has no chance to predict code or data flow. JIT compilers can optimize some parts of that during runtime, once they know the program flow, however as these languages are so dynamically, program flow can change at any time, forcing the JIT to throw away all compilation results and re-compile the same code over and over again.</p>
<p>But this is a tiny implementation detail - it has nothing to do with the basic OO principle. It is nowhere said that objects need to be dynamic or must be alterable during runtime. The Wikipedia says it pretty well:</p>
<blockquote>
<p>Programming techniques may include
features such as information hiding,
data abstraction, encapsulation,
modularity, polymorphism, and
inheritance.</p>
</blockquote>
<p><a href="http://en.wikipedia.org/wiki/Object-oriented%5Fprogramming" rel="nofollow">http://en.wikipedia.org/wiki/Object-oriented_programming</a></p>
<p>They <em>may</em> or they <em>may not</em>. This is all not mandatory. Mandatory is only the presence of objects and that they must have ways to interact with each other (otherwise objects would be pretty useless if they cannot interact with each other).</p>
http://stackoverflow.com/questions/178434/what-is-the-best-way-to-solve-an-objective-c-namespace-collision28What is the best way to solve an Objective-C namespace collision?Mecki2008-10-07T13:27:41Z2009-06-16T17:43:34Z
<p>Objective-C has no namespaces; it's much like C, everything is within one global namespace. Common practice is to prefix classes with initials, e.g. if you are working at IBM, you could prefix them with "IBM"; if you work for Microsoft, you could use "MS"; and so on. Sometimes the initials refer to the project, e.g. Adium prefixes classes with "AI" (as there is no company behind it of that you could take the initials). Apple prefixes classes with NS and says this prefix is reserved for Apple only.</p>
<p>So far so well. But appending 2 to 4 letters to a class name in front is a very, very limited namespace. E.g. MS or AI could have an entirely different meanings (AI could be Artificial Intelligence for example) and some other developer might decide to use them and create an equally named class. <em>Bang</em>, namespace collision.</p>
<p>Okay, if this is a collision between one of your own classes and one of an external framework you are using, you can easily change the naming of your class, no big deal. <strong>But what if you use two external frameworks, both frameworks that you don't have the source to and that you can't change?</strong> Your application links with both of them and you get name conflicts. How would you go about solving these? What is the best way to work around them in such a way that you can still use both classes?</p>
<p>In C you can work around these by not linking directly to the library, instead you load the library at runtime, using dlopen(), then find the symbol you are looking for using dlsym() and assign it to a global symbol (that you can name any way you like) and then access it through this global symbol. E.g. if you have a conflict because some C library has a function named open(), you could define a variable named myOpen and have it point to the open() function of the library, thus when you want to use the system open(), you just use open() and when you want to use the other one, you access it via the myOpen identifier.</p>
<p>Is something similar possible in Objective-C and if not, is there any other clever, tricky solution you can use resolve namespace conflicts? Any ideas?</p>
<p><hr /></p>
<h3>Update:</h3>
<p>Just to clarify this: answers that suggest how to avoid namespace collisions in advance or how to create a better namespace are certainly welcome; however, I will not accept them as <strong>the answer</strong> since they don't solve my problem. I have two libraries and their class names collide. I can't change them; I don't have the source of either one. The collision is already there and tips on how it could have been avoided in advance won't help anymore. I can forward them to the developers of these frameworks and hope they choose a better namespace in the future, but for the time being I'm searching a solution to work with the frameworks right now within a single application. Any solutions to make this possible?</p>
http://stackoverflow.com/questions/972438/vm-design-more-opcodes-or-less-opcodes-what-is-better6VM Design: More opcodes or less opcodes? What is better?Mecki2009-06-09T20:53:14Z2009-06-11T01:21:06Z
<p>Don't be shocked. This is a lot of text but I'm afraid without giving some detailed information I cannot really show what this is all about (and might get a lot of answers that don't really address my question). And this definitely not an assignment (as someone ridiculously claimed in his comment).</p>
<h2>Prerequisites</h2>
<p>Since this question can probably not be answered at all unless at least some prerequisites are set, here are the prerequisites:</p>
<ul>
<li>The Virtual Machine code shall be interpreted. It is not forbidden that there may be a JIT compiler, but the design should target an interpreter.</li>
<li>The VM shall be register based, not stack based.</li>
<li>The answer may neither assume that there is a fixed set of registers nor that there is an unlimited number of them, either one may be the case.</li>
</ul>
<p>Further we need a better definition of "better". There are a couple of properties that must be considered:</p>
<ol>
<li>The storage space for the VM code on disk. Of course you could always scrap all optimizations here and just compress the code, but this has a negative effect on (2).</li>
<li>Decoding speed. The best way to store the code is useless if it takes too long to transform that into something that can be directly executed.</li>
<li>The storage space in memory. This code must be directly executable either with or without further decoding, but if there is further decoding involved, this encoding is done during execution and each time the instruction is executed (decoding done only once when loading the code counts to item 2).</li>
<li>The execution speed of the code (taking common interpreter techniques into account).</li>
<li>The VM complexity and how hard it is to write an interpreter for it.</li>
<li>The amount of resources the VM needs for itself. (It is not a good design if the code the VM runs is 2 KB in size and executes faster than the wink of an eye, however it needs 150 MB to do this and its start up time is far above the run time of the code it executes)</li>
</ol>
<p>Now examples what I actually mean by more or less opcodes. It may look like the number of opcodes is actually set, as you need one opcode per operation. However its not that easy.</p>
<h2>Mulitple Opcodes for the Same Operation</h2>
<p>You can have an operation like</p>
<pre><code>ADD R1, R2, R3
</code></pre>
<p>adding the values of R1 and R2, writing the result to R3. Now consider the following special cases:</p>
<pre><code>ADD R1, R2, R2
ADD R1, 1, R1
</code></pre>
<p>These are common operations you'll find in a lot of applications. You can express them with the already existing opcode (unless you need a different one because the last one has an int value instead of a register). However, you could also create special opcodes for these:</p>
<pre><code>ADD2 R1, R2
INC R1
</code></pre>
<p>Same as before. Where's the advantage? ADD2 only needs two arguments, instead of 3, INC even only needs a single one. So this could be encoded more compact on disk and/or in memory. Since it is also easy to transform either form to the other one, the decoding step could transform between both ways to express these statements. I'm not sure how much either form will influence execution speed, though.</p>
<h2>Combining Two Opcodes Into a Single One</h2>
<p>Now let's assume you have an ADD_RRR (R for register) and a LOAD to load data into an register.</p>
<pre><code>LOAD value, R2
ADD_RRR R1, R2, R3
</code></pre>
<p>You can have these two opcodes and always use constructs like this throughout your code... or you can combine them into a single new opcode, named ADD_RMR (M for memory)</p>
<pre><code>ADD_RMR R1, value, R3
</code></pre>
<h2>Data Types vs Opcodes</h2>
<p>Assume you have 16 Bit integer and 32 Bit integer as native types. Registers are 32 Bit so either data type fits. Now when you add two registers, you could make the data type a parameter:</p>
<pre><code>ADD int16, R1, R2, R3
ADD int32, R1, R2, R3
</code></pre>
<p>Same is true for a signed and unsigned integers for example. That way ADD can be a short opcode, one byte, and then you have another byte (or maybe just 4 Bit) telling the VM how to interpret the registers (do they hold 16 Bit or 32 Bit values). Or you can scrap type encoding and instead have two opcodes:</p>
<pre><code>ADD16 R1, R2, R3
ADD32 R1, R2, R3
</code></pre>
<p>Some may say both are exactly the same - just interpreting the first way as 16 Bit opcodes would work. Yes, but a very naive interpreter might look quite different. E.g. if it has one function per opcode and dispatches using a switch statement (not the best way doing it, function calling overhead, switch statement maybe not optimal either, I know), the two opcodes could look like this:</p>
<pre><code>case ADD16: add16(p1, p2, p3); break; // pX pointer to register
case ADD32: add32(p1, p2, p3); break;
</code></pre>
<p>and each function is centered around a certain kind of add. The second one though may look like this:</p>
<pre><code>case ADD: add(type, p1, p2, p3); break;
// ...
// and the function
void add (enum Type type, Register p1, Register p2, Register p3)
{
switch (type) {
case INT16: //...
case INT32: // ...
}
}
</code></pre>
<p>Adding a sub-switch to a main switch or a sub dispatch table to a main dispatch table. Of course an interpreter can do either way regardless if types are explicit or not, but either way will <em>feel</em> more native to developers depending on opcode design.</p>
<h2>Meta Opcodes</h2>
<p>For lack of a better name I'll call them that way. These opcodes have no meaning at all on their own, they just change the meaning of the opcode following. Like the famous WIDE operator:</p>
<pre><code>ADD R1, R2, R3
WIDE
ADD R1, R2, R3
</code></pre>
<p>E.g. in the second case the registers are 16 Bit (so you can addnress more of them), in the first one only 8. Alternatively you can not have such a meta opcode and have an ADD and an ADD_WIDE opcode. Meta opcodes like WIDE avoid having a SUB_WIDE, MUL_WIDE, etc. as you can always prepend every other normal opcode with WIDE (always just one opcode). Disadvantage is that an opcode alone becomes meaningless, you always must check the opcode before it if it was a meta opcode or not. Further the VM must store an extra state per thread (e.g. whether we are now in wide mode or not) and remove the state again after the next instruction. Even CPUs have such opcodes (e.g. x86 LOCK opcode).</p>
<h2>How to Find a Good Trade-Off???</h2>
<p>Of course the more opcodes you have, the bigger switches/dispatch-tables will become and the more bits you will need to express these codes on disk or in memory (though you can maybe store them more efficiently on disk where the data doesn't have to be directly executable by a VM); also the VM will become more complicated and have more lines of code - on the other hand the more powerful the opcodes are: You are getting closer to the point where every expression, even a complex one, will end up in one opcode.</p>
<p>Choosing little opcodes makes it easy to code the VM and will lead to very compact opcodes I guess - on the other hand it means you may need a very high number of opcodes to perform a simple task and every not extremely often used expression will have to become a (native) function call of some kind, as no opcode can be used for it.</p>
<p>I read a lot about all kind of VMs on the Internet, but no source was really making a good and fair trade-off going either way. Designing a VM is like designing a CPU, there are CPUs with little opcodes, they are fast, but you also need many of these. And there are CPUs with many opcodes, some are very slow, but you'll need much less of them to express the same piece of code. It looks like the "more opcodes are better" CPUs have totally won the consumer market and the "less opcodes are better" ones can only survive in some parts of the server market or super computer business. What about VMs?</p>
http://stackoverflow.com/questions/871947/am-i-going-to-like-working-in-it/872444#8724440Answer by Mecki for Am I going to like working in IT?Mecki2009-05-16T13:32:00Z2009-05-16T13:32:00Z<p>My personal tip: Try finding a software development company (that's best if you really want to be a programmer surrounded by other programmers) which works according to the <a href="http://en.wikipedia.org/wiki/Scrum%5F%28development%29" rel="nofollow">Scrum</a> principle and you'll probably love your job. Most downsides you mentioned won't really exist in that case according to my experience. Our company started using Scrum and this was the best improvement in software development we ever had. Everyone loves it. Things work much smoother than before and you can forget about the time estimation fear you have, since in Scrum the time frame is fixed (software is always done on time), it's the feature set that varies (features not done on time are not done. Ship without them or ship at a later date, it's that simple).</p>
http://stackoverflow.com/questions/618403/what-is-the-best-ide-for-c-development-why-use-emacs-over-an-ide/618439#6184390Answer by Mecki for What is the best IDE for C Development / Why use Emacs over an IDE?Mecki2009-03-06T10:56:57Z2009-03-06T10:56:57Z<p>If you are looking for a free, nice looking, cross-platform editor, try <a href="http://www.activestate.com/komodo%5Fedit/" rel="nofollow">Komodo Edit</a>. It is not as powerful as Komodo IDE, however that isn't free. See <a href="http://www.activestate.com/komodo%5Fedit/comparison/" rel="nofollow">feature chart</a>.</p>
<p>Another free, extensible editor is <a href="http://www.jedit.org/" rel="nofollow">jEdit</a>. Crossplatform as it is 100% pure Java. Not the fastest IDE on earth, but for Java actually very fast, very flexible, not that nice looking though.</p>
<p>Both have very sophisticated code folding, syntax highlighting (for all languages you can think of!) and are very flexible regarding configuring it for you personal needs. jEdit is BTW very easy to extend to add whatever feature you may need there (it has an ultra simple scripting language, that looks like Java, but is actually "scripted").</p>
http://stackoverflow.com/questions/616833/if-it-aint-broke-dont-fix-it-or-upgrade-it/617232#6172320Answer by Mecki for If it aint broke dont fix it or upgrade itMecki2009-03-05T23:59:39Z2009-03-05T23:59:39Z<p>Time is money; but every hour you safe today with a tiny fix will bite you in the long run when it comes to the next problem and this time your tiny fixes breaks everything.</p>
<p>I had issues like this. Issues where I could have solved the problem in a terrible manner within maybe 2 hours. Instead I spent 16 hours refactoring everything. Why the hell have I been doing that? Am I crazy? Simple. The next 4 features I had to add took me each around 30 to 60 minutes. If I had not refactored the code, the next feature had taken me about 4, the second about 6 and the third about 8 hours as the code gets uglier and less maintainable with every feature added. By refactoring into modular, nicely extensible code, adding new features was no work at all any more.</p>
<p>That said, if someone says fix it as fast as possible, I would say "Okay, I will make the ultra fast, ultra hacky fix without refacotring... but only if you promise me that I don't have to ever touch this code again in my whole life thereafter. If you cannot promise that, if you expect me to keep maintaining it, then I refuse to make such a hack".</p>
<p>Remember:<br>You can tell me </p>
<ul>
<li>what feature set the project must have, </li>
<li>within what time frame it must be shippable,</li>
<li>to write decent, extensible, maintainable code</li>
</ul>
<p>Pick any <strong>TWO</strong>.</p>
http://stackoverflow.com/questions/612860/what-can-make-a-program-run-slower-when-using-more-threads/612963#6129638Answer by Mecki for What can make a program run slower when using more threads?Mecki2009-03-04T23:25:07Z2009-03-05T22:48:18Z<p>To avoid further comments on this: When I wrote my reply, the questioner hasn't posted a link to his source yet, so I could not tailor my reply to his specific issues. I was only answering the general question what "can" cause such an issue, I never said that this will necessarily apply to his case. When he posted a link to his source, I wrote another reply, that is exactly only focusing on his very issue (which is caused by the use of the random() function as I explained in my other reply). However, since the question of this post is still "What can make a program run slower when using more threads?" and not "What makes my very specific application run slower?", I've seen no need to change my rather general reply either (general question -> general response, specific question -> specific response).</p>
<p><hr /></p>
<p>1) Cache Poisoning<br>
All threads access the same array, which is a block of memory. Each core has its own cache to speed up memory access. Since they don't just read from the array but also change the content, the content is changed actually in the cache only, not in real memory (at least not immediately). The problem is that the other thread on the other core may have overlapping parts of memory cached. If now core 1 changes the value in the cache, it must tell core 2 that this value has just changed. It does so by invalidating the cache content on core 2 and core 2 needs to re-read the data from memory, which slows processing down. Cache poisoning can only happen on multi-core or multi-CPU machines. If you just have one CPU with one core this is no problem. So to find out if that is your issue or not, just disable one core (most OSes will allow you to do that) and repeat the test. If it is now almost equally fast, that was your problem.</p>
<p>2) Preventing Memory Bursts<br>
Memory is read fastest if read sequentially in bursts, just like when files are read from HD. Addressing a certain point in memory is actually awfully slow (just like the "seek time" on a HD), even if your PC has the best memory on the market. However, once this point has been addressed, sequential reads are fast. The first addressing goes by sending a row index and a column index and always having waiting times in between before the first data can be accessed. Once this data is there, the CPU starts bursting. While the data is still on the way it sends already the request for the next burst. As long as it is keeping up the burst (by always sending "Next line please" requests), the RAM will continue to pump out data as fast as it can (and this is actually quite fast!). Bursting only works if data is read sequentially and only if the memory addresses grow upwards (AFAIK you cannot burst from high to low addresses). If now two threads run at the same time and both keep reading/writing memory, however both from completely different memory addresses, each time thread 2 needs to read/write data, it must interrupt a possible burst of thread 1 and the other way round. This issue gets worse if you have even more threads and this issue is also an issue on a system that has only one single-core CPU.</p>
<p>BTW running more threads than you have cores will never make your process any faster (as you mentioned 3 threads), it will rather slow it down (thread context switches have side effects that reduce processing throughput) - that is unlike you run more threads because some threads are sleeping or blocking on certain events and thus cannot actively process any data. In that case it may make sense to run more threads than you have cores.</p>
http://stackoverflow.com/questions/614185/window-move-and-resize-apis-in-os-x/614433#6144335Answer by Mecki for Window move and resize APIs in OS XMecki2009-03-05T11:42:21Z2009-03-05T13:19:57Z<p>Use the Accessibility API. Using this API you can connect to a process, obtain a list of windows (actually an array), get the positions and sizes of each window and also change window properties if you like.</p>
<p>However, an application can only be using this API if the user has enabled access for assistive devices in his preferences (System Prefs -> Universal Access), in which case all applications may use this API, or if your application is a trusted assitive application (when it is trusted, it may use the API, even if this option is not checked). The Accessibility API itself offers the necessary functions to make your application trusted - basically you must become root (using security services to request root permissions of the user) and then mark your process as trusted. Once your application has been marked trusted, it must be restarted as the trusted state is only checked on start-up and can't change while the app is running. The trust state is permanent, unless the user moves the application somewhere else or the hash of the application binary changes (e.g. after an update). If the user has assistive devices enabled in his prefs, all applications are treated as if they were trusted. Usually your app would check if this option is enabled, if it is, go on and do your stuff. If not, it would check if it is already trusted, if it is, again just do your stuff. If not try to make itself trusted and then restart the application unless the user declined root authorization. The API offers all necessary functions to check all this.</p>
<p>There exist private functions to do the same using the Mac OS window manager, but the only advantage that would buy you is that you don't need to be a trusted Accessibility application (which is a one time operation on first launch in most cases). The disadvantages are that this API may change any time (it has already changed in the past), it's all undocumented and functions are only known through reverse engineering. The Accessibility however is public, it is documented and it hasn't change much since the first OS X version that introduced it (some new functions were added in 10.4 and again in 10.5, but not much else has changed).</p>
<p>Here's a code example. It will wait 5 seconds, so you can switch to a different window before it does anything else (otherwise it will always work with the terminal window, rather boring for testing). Then it will get the front most process, the front most window of this process, print it's position and size and finally move it by 25 pixels to the right. You compile it on command line like that (assuming it is named test.c)</p>
<pre><code>gcc -framework Carbon -o test test.c
</code></pre>
<p>Please note that I do not perform any error checking in the code for simplicity (there are various places that could cause the program to crash if something goes wrong and certain things may/can go wrong). Here's the code:</p>
<pre><code>/* Carbon includes everything necessary for Accessibilty API */
#include <Carbon/Carbon.h>
static bool amIAuthorized ()
{
if (AXAPIEnabled() != 0) {
/* Yehaa, all apps are authorized */
return true;
}
/* Bummer, it's not activated, maybe we are trusted */
if (AXIsProcessTrusted() != 0) {
/* Good news, we are already trusted */
return true;
}
/* Crap, we are not trusted...
* correct behavior would now be to become a root process using
* authorization services and then call AXMakeProcessTrusted() to make
* ourselves trusted, then restart... I'll skip this here for
* simplicity.
*/
return false;
}
static AXUIElementRef getFrontMostApp ()
{
pid_t pid;
ProcessSerialNumber psn;
GetFrontProcess(&psn);
GetProcessPID(&psn, &pid);
return AXUIElementCreateApplication(pid);
}
int main (
int argc,
char ** argv
) {
int i;
AXValueRef temp;
CGSize windowSize;
CGPoint windowPosition;
CFStringRef windowTitle;
AXUIElementRef frontMostApp;
AXUIElementRef frontMostWindow;
if (!amIAuthorized()) {
printf("Can't use accessibility API!\n");
return 1;
}
/* Give the user 5 seconds to switch to another window, otherwise
* only the terminal window will be used
*/
for (i = 0; i < 5; i++) {
sleep(1);
printf("%d", i + 1);
if (i < 4) {
printf("...");
fflush(stdout);
} else {
printf("\n");
}
}
/* Here we go. Find out which process is front-most */
frontMostApp = getFrontMostApp();
/* Get the front most window. We could also get an array of all windows
* of this process and ask each window if it is front most, but that is
* quite inefficient if we only need the front most window.
*/
AXUIElementCopyAttributeValue(
frontMostApp, kAXFocusedWindowAttribute, (CFTypeRef *)&frontMostWindow
);
/* Get the title of the window */
AXUIElementCopyAttributeValue(
frontMostWindow, kAXTitleAttribute, (CFTypeRef *)&windowTitle
);
/* Get the window size and position */
AXUIElementCopyAttributeValue(
frontMostWindow, kAXSizeAttribute, (CFTypeRef *)&temp
);
AXValueGetValue(temp, kAXValueCGSizeType, &windowSize);
CFRelease(temp);
AXUIElementCopyAttributeValue(
frontMostWindow, kAXPositionAttribute, (CFTypeRef *)&temp
);
AXValueGetValue(temp, kAXValueCGPointType, &windowPosition);
CFRelease(temp);
/* Print everything */
printf("\n");
CFShow(windowTitle);
printf(
"Window is at (%f, %f) and has dimension of (%f, %f)\n",
windowPosition.x,
windowPosition.y,
windowSize.width,
windowSize.height
);
/* Move the window to the right by 25 pixels */
windowPosition.x += 25;
temp = AXValueCreate(kAXValueCGPointType, &windowPosition);
AXUIElementSetAttributeValue(frontMostWindow, kAXPositionAttribute, temp);
CFRelease(temp);
/* Clean up */
CFRelease(frontMostWindow);
CFRelease(frontMostApp);
return 0;
}
</code></pre>
http://stackoverflow.com/questions/612860/what-can-make-a-program-run-slower-when-using-more-threads/613018#6130183Answer by Mecki for What can make a program run slower when using more threads?Mecki2009-03-04T23:48:38Z2009-03-05T10:44:17Z<p>Everything I said so far in my other reply holds still true on general, as your question was what "can"... however now that I've seen your actual code, my first bet would be that your usage of the random() function slows everything down. Why?</p>
<p>See, random keeps a global variable in memory that stores the last random value calculated there. Each time you call random() (and you are calling it twice within a single function) it reads the value of this global variable, performs a calculation (that is not so fast; random() alone is a slow function) and writes the result back there before returning it. This global variable is not per thread, it is shared among all threads. So what I wrote regarding cache poisoning applies here all the time (even if you avoided it for the array by having separated arrays per thread; this was very clever of you!). This value is constantly invalidated in the cache of either core and must be re-fetched from memory. However if you only have a single thread, nothing like that happens, this variable never leaves cache after it has been initially read, since it's permanently accessed again and again and again.</p>
<p>Further to make things even worse, glibc has a thread-safe version of random() - I just verified that by looking at the source. While this seems to be a good idea in practice, it means that each random() call will cause a mutex to be locked, memory to be accessed, and a mutex to be unlocked. Thus two threads calling random exactly the same moment will cause one thread to be blocked for a couple of CPU cycles. This is implementation specific, though, as AFAIK it is not required that random() is thread safe. Most standard lib functions are not required to be thread-safe, since the C standard is not even aware of the concept of threads in the first place. When they are not calling it the same moment, the mutex will have no influence on speed (as even a single threaded app must lock/unlock the mutex), but then cache poisoning will apply again.</p>
<p>You could pre-build an array with random numbers for every thread, containing as many random number as each thread needs. Create it in the main thread before spawning the threads and add a reference to it to the structure pointer you hand over to every thread. Then get the random numbers from there.</p>
<p>Or just implement your own random number generator if you don't need the "best" random numbers on the planet, that works with per-thread memory for holding its state - that one might be even faster than the system's built-in generator.</p>
<p>If a Linux only solution works for you, you can use <a href="http://www.kernel.org/doc/man-pages/online/pages/man3/random%5Fr.3.html" rel="nofollow">random_r</a>. It allows you to pass the state with every call. Just use a unique state object per thread. However this function is a glibc extension, it is most likely not supported by other platforms (neither part of the C standards nor of the POSIX standards AFAIK - this function does not exist on Mac OS X for example, it may neither exist in Solaris or FreeBSD).</p>
<p>Creating an own random number generator is actually not that hard. If you need real random numbers, you shouldn't use random() in the first place. Random only creates pseudo-random numbers (numbers that look random, but are predictable if you know the generator's internal state). Here's the code for one that produces good uint32 random numbers:</p>
<pre><code>static uint32_t getRandom(uint32_t * m_z, uint32_t * m_w)
{
*m_z = 36969 * (*m_z & 65535) + (*m_z >> 16);
*m_w = 18000 * (*m_w & 65535) + (*m_w >> 16);
return (*m_z << 16) + *m_w;
}
</code></pre>
<p>It's important to "seed" m_z and m_w in a proper way somehow, otherwise the results are not random at all. The seed value itself should already be random, but here you could use the system random number generator.</p>
<pre><code>uint32_t m_z = random();
uint32_t m_w = random();
uint32_t nextRandom;
for (...) {
nextRandom = getRandom(&m_z, &m_w);
// ...
}
</code></pre>
<p>This way every thread only needs to call random() twice and then uses your own generator. BTW, if you need double randoms (that are between 0 and 1), the function above can be easily wrapped for that:</p>
<pre><code>static double getRandomDouble(uint32_t * m_z, uint32_t * m_w)
{
// The magic number below is 1/(2^32 + 2).
// The result is strictly between 0 and 1.
return (getRandom(m_z, m_w) + 1) * 2.328306435454494e-10;
}
</code></pre>
<p>Try to make this change in your code and let me know how the benchmark results are :-)</p>
http://stackoverflow.com/questions/613087/an-encoding-savvy-grep-replacement/613126#6131261Answer by Mecki for An encoding-savvy grep replacement?Mecki2009-03-05T00:26:49Z2009-03-05T00:26:49Z<p>Perl has a way better regex syntax than grep (much more powerful), it has UTF8 and UTF16 support, but I'm not sure how good it is at guessing the encoding... if you tell it which encoding to use, though, it can read these files without any issues and run regexes over them. You'll have to write yourself a tiny Perl program for that (your own micro-grep implementation in Perl so to say), but that isn't too hard. Perl exists for all major operating systems.</p>
http://stackoverflow.com/questions/589622/ssl-question-how-does-a-root-ca-verify-a-signature/590169#5901695Answer by Mecki for SSL question: How does a ROOT CA verify a signatureMecki2009-02-26T11:33:53Z2009-02-26T11:33:53Z<p>Your server has a certificate, consisting of a private and a public key. The server never gives out the private key of course, but everyone may get the public key. The public key is embedded within a certificate container format. This format contains the IP address or domain name of the server, the owner of this IP address/domain name, an e-mail address of the owner, etc. </p>
<p>The whole thing is signed by a trusted authority. The trusted authority, aka certificate authority (CA) also has a private/public key pair. You give them your certificate, they verify that the information in the container are correct and sign the it by their private key, only they have access to. </p>
<p>The public key of the CA is installed on the user system by default, most well known CAs are included already in the default installation of your favorite OS or browser.</p>
<p>When now a user connects to your server, your server uses the private key to sign some data, packs that signed data together with its public key and sends everything to the client.</p>
<p>What can the client now do? First of all, it can use the public key it just got sent to verify the signed data. Since only the owner of the private key is able to sign the data correctly in such a way that the public key can verify the signature, it knows that whoever signed this piece of data, this person is owning the private key to the received public key. So far so well. But what stops a hacker to intercept the packet, replace the signed data with data he signed using a different certificate and also replace the public key with his public key? Nothing.</p>
<p>That's why after the signed data has been verified (or before it is verified) the client verifies that the received public key has a valid CA signature. Using the already installed public CA key, it verifies that the received public key has been signed by a known CA. Otherwise it is rejected (as a hacker may have replaced it on the way).</p>
<p>Last but not least, it checks the information within the public key container. Does the IP address or domain name really match the IP address or domain name of the server the client is currently talking to? If not, something is fishy!</p>
<p>People may ask: What stops a hacker from just creating his own keypair and just putting your domain name or IP address into the cert? Easy: If he does that, no CA will sign his key. To get a CA signature, you must prove that you are really the owner of this IP address or domain name. The hacker is not, he cannot prove that, he won't get a signature. So this won't work.</p>
<p>Okay, how about the hacker registers his own domain, create a certificate for that, and have that signed by a CA? This works, he will get it CA signed, it's his domain, no problem. However he cannot use this when hacking your connection. If he uses this certificate, the browser will immediately see that the signed public key is for domain example.net, but it is currently talking to example.com, not the same domain, thus something is fishy again.</p>
http://stackoverflow.com/questions/589774/is-it-worth-from-a-browsers-performance-perspective-to-compress-http-responses/590113#5901130Answer by Mecki for Is it worth from a browser's performance perspective to compress http responses?Mecki2009-02-26T11:16:31Z2009-02-26T11:16:31Z<p>Decompression is a very fast process compared to compression. Even a weak CPU (like one in a mobile device) can effectively decompress GZIP (ZIP, Deflate, and so on) within almost no time at all. Compressing the data is a much harder job. By using compression, you are increasing the server load... and the level of increase is not always negligible. Usually it is a trade off between bandwidth usage and CPU usage on the server side. For the client it usually plays no big role, unless the Internet access is very slow (e.g. a mobile phone connection). However, only text/html/css/js can be effectively compressed, most other data you'll find on web pages (like tons of images for example) cannot be compressed at all; so if we are talking about pages where there are 8 kb web page data and the page itself loads 200+ kb image data, forget about compression, it will buy you virtually nothing.</p>
http://stackoverflow.com/questions/589796/c-code-for-ps-command/590091#5900912Answer by Mecki for C code for ps commandMecki2009-02-26T11:10:49Z2009-02-26T11:10:49Z<p>Since the way how ps is retrieving information follows no standard (actually it does so in a different kind of way for every operating system family) and as this way is subject to change with every new release in every new OS... if you need the information ps provides, you should consider to actually just call ps and parse its output. Yes, I know working in such a way seems ugly and not professional, but it works quite lovely for many applications, it's actually pretty cross platform, and it's more unlikely that the output format of ps changes in the future (what would break your parser) than it is that the way how ps retrieves its information might change.</p>
http://stackoverflow.com/questions/590021/is-there-a-cross-platform-way-of-getting-a-list-of-running-applications/590074#5900747Answer by Mecki for Is there a cross-platform way of getting a list of running applications?Mecki2009-02-26T11:04:33Z2009-02-26T11:04:33Z<p>There is no real cross platform way of doing that. The whole concept of processes, applications, etc. is an operating system specific concept. If you use a certain library to solve the issue, you are not really cross platform, you are limited to the platforms that are supported by this library. E.g. Qt is not universal cross platform, it runs on a lot of platforms, but not on every known one and on platforms where it won't run, a Qt solution won't work. Most UNIX like platforms support the POSIX API (some more, some less) and if you limit yourself to POSIX functions, the solution will work in Linux, BSD, Mac OS X, Solaris, and similar OSes. It will not work on Windows, though. Microsoft decided to drop POSIX support (not that their POSIX support was great to begin with), however Cygwin brings back POSIX support to Windows (Cygwin emulates a complete Linux glibc API on top of Windows). The problem is that not even POSIX is really offering a set of functions to solve your problem here - the way how a POSIX tool like ps gets process information is entirely different on a Linux system compared to a BSD system for example.</p>
<p>The second issue is that you are talking "focus". Focus is something that does not apply to applications. A background application that has no UI and no windows cannot have "focus". What would "focus" mean for such an application? So you are not really interested in a list of running applications, but in a list of running UI applications that have windows and whose windows may get focus. An entirely different thing. The windows systems are even more different between different platforms and POSIX ignores UIs altogether.</p>
<p>Also you have a Visual-C++ tag on your question, so how cross platform must your code really be, as Visual-C++ is a Windows only thing, isn't it? What platforms are you really trying to support (please update your question accordingly), since I doubt there is any better solution than writing a different piece of code for every single supported platform.</p>
http://stackoverflow.com/questions/586727/what-approach-works-best-for-quickly-reading-files-off-of-optical-drives/586833#5868331Answer by Mecki for What approach works best for quickly reading files off of optical drives?Mecki2009-02-25T16:52:07Z2009-02-25T16:52:07Z<p>First you must keep in mind, that modern optical drives are quite fast reading sequential data, but seeking data is still a lot slower than on HDs. So if you must seek a lot within a big file (e.g. jump randomly around within a 500+ MB file), it might actually be faster to first copy the whole 500 MB to HD (into a temporary file), which will be done in sequential, fast reads, perform the operation on the temp file (much faster since much faster access times on HD) and delete the file again if you are done with it.</p>
<p>The same of above applies to little big vs many small files as well. Working with a couple of big files is much faster than with many small files, since every time you switch from one small file to another one the huge seeking time will give you headaches again. This is the reason why many games that ship on optical media packs game data in huge archive files (e.g. all textures of one level are in one huge file instead of having one small file per texture), so try keeping data well structured in big files you can read as sequential as possible.</p>
<p>HD caching itself is a good technique. There is this game I remember, though I forgot the title, that always kept the 3D data of your environment on HD. While you were moving through the world, it was constantly copying data from DVD to HD. Thus the surrounding 3D landscape was always available on HD for fast access, however not the whole DVD was copied, only about 200-300 MB were temporarily cached on HD to save HD space. The only annoying thing about that was that you often had DVD access "noise" while playing the game, however most of the time the whole process was happening only during CPU idle times, so it did not really affect game play. Only if you ran very fast constantly within the same direction it could happen that the DVD drive was falling back and all of a sudden the game stopped with a loading indicator for a couple of seconds. However I've been playing this games for days and maybe saw this loading indicator three times within a single week. If you were moving slow or not constantly into the same direction, there never was a loading indicator.</p>
http://stackoverflow.com/questions/586759/instruments-checking-for-memory-leaks-inquiry/586805#5868055Answer by Mecki for Instruments: checking for memory leaks inquiryMecki2009-02-25T16:42:58Z2009-02-25T16:42:58Z<p>No, Instruments just monitors the memory allocations of your code, it does not "go" anywhere, unless your app goes there. Actually a leak is nothing more than a piece of memory to that no reference exists anymore; thus it cannot be freed anymore, since how are you going to free it in the future if you cannot even reference to it any longer?</p>
<p>Instruments won't find all memory leaks that way, though. If you keep references to the memory, just never use them to free the memory, Instruments won't see this as a leak, because it cannot foresee if you are going to ever free it up in the future or not. As you still could free it up, it's not considered a leak. So if you have a memory issue, it might be beneficial to not just look for leaks, but also to monitor how much memory your application is "collecting" over the time. If this permanently rises even though it shouldn't, you might still have a leak, just none where you lose the references to the memory.</p>
http://stackoverflow.com/questions/561729/can-the-diamond-problem-be-really-solved7Can the Diamond Problem be really solved?Mecki2009-02-18T16:04:43Z2009-02-25T16:37:13Z
<p>A typical problem in OO programming is the diamond problem. I have parent class A with two sub-classes B and C. A has an abstract method, B and C implement it. Now I have a sub-class D, that inherits of B <strong>and</strong> C. The diamond problem is now, what implementation shall D use, the one of B or the one of C?</p>
<p>People claim Java knows no diamond problem. I can only have multiple inheritance with interfaces and since they have no implementation, I have no diamond problem. Is this really true? I don't think so. <strong>See below:</strong></p>
<p>[removed vehicle example]</p>
<p>Is a diamond problem always the cause of bad class design and something neither programmer nor compiler needs to solve, because it shouldn't exist in the first place?</p>
<p><hr /></p>
<p>Update: Maybe my example was poorly chosen.</p>
<p>See this image</p>
<p><img src="http://cartan.cas.suffolk.edu/oopdocbook/opensource/src/multinheritance/PersonStudentTeacher.png" alt="Diamond Problem" /></p>
<p>Of course you can make Person virtual in C++ and thus you will only have one instance of person in memory, but the real problem persists IMHO. How would you implement getDepartment() for GradTeachingFellow? Consider, he might be student in one department and teach in another one. So you can either return one department or the other one; there is no perfect solution to the problem and the fact that no implementation might be inherited (e.g. Student and Teacher could both be interfaces) doesn't seem to solve the problem to me.</p>
http://stackoverflow.com/questions/586523/pregmatchall/586550#5865501Answer by Mecki for preg_match_allMecki2009-02-25T15:45:38Z2009-02-25T15:45:38Z<p>Your sign is not in the parenthesis. $coords[1] contains the part of the regex that matched the part between ( and ). The +- are before the parenthesis, though, thus they are not part of what is matched and returned.</p>
http://stackoverflow.com/questions/123301/translating-int32-into-ushort-and-back-again/123645#123645Comment by Mecki on Translating Int32 into ushort and back againMecki2009-11-27T18:20:27Z2009-11-27T18:20:27Z@Fraser: Don't nit-pick please. The main purpose of NAT is to have mulitple internal private IP addressend being mapped to a single public one and that is not possible unless you also do PAT (or no two hosts ever talk to the same host on the internet, while using the same service - will hard to enforce, both accessing Google, bang); PAT is basically a non-existing term in network business. See also Wikipedia page to NAT; they only quickly mention PAT, say you also can just say NAT for that and use solely NAT to describe every kind of NAT.http://stackoverflow.com/questions/759903/how-can-i-insert-source-code-from-xcode-into-openoffice-without-getting-an-paragr/762639#762639Comment by Mecki on How can I insert source code from Xcode into OpenOffice without getting an paragraph for every single line?Mecki2009-11-27T18:14:53Z2009-11-27T18:14:53ZThis does not work, they stay paragraph, even when copying as unformated text.http://stackoverflow.com/questions/1750995/perl-script-fork-exec-system-claims-my-process-has-died-when-in-fact-only-my-ch/1751077#1751077Comment by Mecki on Perl Script, Fork/Exec, System claims my process has died when in fact only my child process has diedMecki2009-11-18T09:16:03Z2009-11-18T09:16:03ZYou are right - printing some debug output right before the exec shows that the exec runs in the parent and not in the child - DOOHH! Stupid mistake!!!http://stackoverflow.com/questions/1750995/perl-script-fork-exec-system-claims-my-process-has-died-when-in-fact-only-my-chComment by Mecki on Perl Script, Fork/Exec, System claims my process has died when in fact only my child process has diedMecki2009-11-17T22:08:56Z2009-11-17T22:08:56ZSorry for not posting any code, after trying to find the cause of this issue for about 30 minutes, I had exactly 10 minutes left before I had to leave (otherwise I would have missed an important appointment) - the description above was the best I could come up within 10 minutes (stripping the code to a minimal test case had taken some more time). I have access to the code again in exactly 11 hours from now; then I'll see what I can do regarding a code sample.http://stackoverflow.com/questions/1750995/perl-script-fork-exec-system-claims-my-process-has-died-when-in-fact-only-my-ch/1751077#1751077Comment by Mecki on Perl Script, Fork/Exec, System claims my process has died when in fact only my child process has diedMecki2009-11-17T22:04:32Z2009-11-17T22:04:32ZUmmm... good point you have there... I will double check that in exactly 11 hours from now (this is when I will have access to my code again). This would really be a stupid mistake, but everyone makes stupid mistakes once in a while and if it was doing the exec in the wrong fork, this would indeed match the undesired behavior described above.http://stackoverflow.com/questions/999681/how-to-remap-context-menu-key-in-mac-os-x/1165938#1165938Comment by Mecki on How to remap "Context Menu" key in Mac OS X?Mecki2009-11-10T15:20:36Z2009-11-10T15:20:36ZBut using XML layouts you can only map this key to a different key that is NOT a modifier! You cannot may modifiers via layout descriptions.http://stackoverflow.com/questions/1117065/cocoa-getting-the-current-mouse-position-on-the-screenComment by Mecki on Cocoa: Getting the current mouse position on the screenMecki2009-11-04T17:08:07Z2009-11-04T17:08:07ZI fail to see why your initial code was not working, this code works just lovely for me.http://stackoverflow.com/questions/1512058/hgignore-help-ignoring-all-files-but-certain-ones/1515582#1515582Comment by Mecki on hgignore: help ignoring all files but certain onesMecki2009-10-20T15:13:21Z2009-10-20T15:13:21ZHow you do you manually add those? Adding them with "hg add" fails, as the ignore file will be used. Adding them with "hg add -I" fails, as still the ignore file applies. So how can they be added overriding the ignore file?http://stackoverflow.com/questions/691050/monotone-only-pull-the-latest-revision-of-a-repository/1364250#1364250Comment by Mecki on Monotone - only pull the latest revision of a repositoryMecki2009-09-21T13:27:03Z2009-09-21T13:27:03ZBig problem of all distributed SCMs :( If I want to change a single file in a SVN repo, it takes me 3 minutes to check out the head, modify the file (or maybe two), commit and I'm done with it. Doing the same with a distributed SCM means after 30 minutes I'm still waiting for the repo to by synced before I can even get to the files.http://stackoverflow.com/questions/1439176/svn-can-you-remove-directories-from-a-local-checkout-only-not-from-the-reposito/1440225#1440225Comment by Mecki on SVN: Can you remove directories from a local checkout only (not from the repository)?Mecki2009-09-21T13:10:16Z2009-09-21T13:10:16ZSorry; have been working with Java for too long I guess -> Java 2 is Java 1.2, Java 5 is actually Java 1.5 and so on ;-)http://stackoverflow.com/questions/691050/monotone-only-pull-the-latest-revision-of-a-repository/1190631#1190631Comment by Mecki on Monotone - only pull the latest revision of a repositoryMecki2009-09-18T12:10:24Z2009-09-18T12:10:24ZWow, two completely useless Google searches. Sorry, but before you write an answer like that, please refrain from writing one at all. The second link turns up one page that does not answer the question at all. The first one plenty of pages and I see no answer to the question here either. --http://stackoverflow.com/questions/1439176/svn-can-you-remove-directories-from-a-local-checkout-only-not-from-the-repositoComment by Mecki on SVN: Can you remove directories from a local checkout only (not from the repository)?Mecki2009-09-17T17:20:50Z2009-09-17T17:20:50Z@ire_and_curses: If you don't write a real answer, you cannot get upvotes and I can not directly comment on what you write. Even if the question has been answered elsewhere, always write a real answer. If my question is then not closed as dupe in time, I can accept your answer as "the answer", even if it just directs me elsewhere. Not fair? I think it is. After all just answering by giving a link is also gives you rep for someone else's work.http://stackoverflow.com/questions/1439176/svn-can-you-remove-directories-from-a-local-checkout-only-not-from-the-reposito/1439274#1439274Comment by Mecki on SVN: Can you remove directories from a local checkout only (not from the repository)?Mecki2009-09-17T14:59:03Z2009-09-17T14:59:03ZSorry, this cannot really solve my issue. I can make a local repository and just link in some of the subdirectories, so only those appear... and I can probably unlink them (removing the external declaration) and they will go away... but I have no way to get the files fileX.txt in the main directory, as you cannot link in single files, only directories and linking in this directory links in the files and all subdirectories of it :(http://stackoverflow.com/questions/1439176/svn-can-you-remove-directories-from-a-local-checkout-only-not-from-the-repositoComment by Mecki on SVN: Can you remove directories from a local checkout only (not from the repository)?Mecki2009-09-17T14:54:51Z2009-09-17T14:54:51Z@ire_and_curses: First, why don't you write this as an answer? Second: These two questions are about preventing something from being committed. This has nothing to do with my problem at all. Even if I do svn delete on the directory and prevent this from being commited, the directory will not go away. Have you even read my question or just the headline?http://stackoverflow.com/questions/1439176/svn-can-you-remove-directories-from-a-local-checkout-only-not-from-the-reposito/1439274#1439274Comment by Mecki on SVN: Can you remove directories from a local checkout only (not from the repository)?Mecki2009-09-17T14:44:05Z2009-09-17T14:44:05ZThis sounds pretty interesting! First answer and already a very good one (upvote). Not sure if this is the best solution and if this really will solve my problem, but I should give this solution a try. Should this work and nobody has anything more simple to offer, I will accept this answer. Even if it won't solve my problem, it might solve some other SVN problems (so this knowledge is handy in any case)