User macbirdie - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T09:43:39Zhttp://stackoverflow.com/feeds/user/5049http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1779164/where-did-foodscanner-get-its-initial-barcode-database/1779194#17791940Answer by macbirdie for Where did foodscanner get its initial barcode database?macbirdie2009-11-22T16:34:12Z2009-11-22T16:34:12Z<p>Maybe from <a href="http://www.upcdatabase.com/" rel="nofollow">UPC Database</a>? Among probably several others.</p>
http://stackoverflow.com/questions/780978/opencl-books-tutorials/1573876#15738761Answer by macbirdie for OpenCL books/tutorials?macbirdie2009-10-15T17:26:31Z2009-10-19T11:33:46Z<p>AMD recently published an <a href="http://developer.amd.com/gpu/ATIStreamSDK/pages/TutorialOpenCL.aspx" rel="nofollow">Introductory Tutorial to OpenCL™</a> which should be helpful in getting your feet wet with the new standard.</p>
<p>Other than that, like others said, it's still a bit too early for exhaustive books and tutorials exploring all possibilities of OpenCL.</p>
http://stackoverflow.com/questions/1556382/does-windows-support-metadata-for-every-file/1556385#15563851Answer by macbirdie for Does Windows support metadata for every file?macbirdie2009-10-11T21:48:02Z2009-10-12T19:18:50Z<p>In your case you should definitely use the <a href="http://support.microsoft.com/kb/105763" rel="nofollow">NTFS alternate data streams</a> as the information you want to attach would otherwise have to be supported by the downloaded file's format and you want to add this information to any file type.</p>
<p>Although you have to remember that information hidden in those streams may be lost when the file holding it is transferred over the network, to a non-NTFS flash drive or any other non-NTFS medium.</p>
http://stackoverflow.com/questions/1519392/how-to-prevent-apache-http-client-from-following-a-redirect/1519423#15194232Answer by macbirdie for How to prevent apache http client from following a redirectmacbirdie2009-10-05T11:02:00Z2009-10-05T11:02:00Z<p>The default <code>HttpClient</code> implementation is pretty limited in configurability, but you can control the redirect handling by using HttpClient's boolean parameter <code>http.protocol.handle-redirects</code>.</p>
<p>See the <a href="http://hc.apache.org/httpcomponents-client/tutorial/html/httpagent.html#d4e967" rel="nofollow">docs</a> for reference.</p>
http://stackoverflow.com/questions/1495852/check-upload-file-type-from-an-array-in-php/1503030#15030301Answer by macbirdie for Check Upload file type from an array in PHP. macbirdie2009-10-01T10:02:12Z2009-10-01T10:02:12Z<pre><code>if( !in_array( $_FILES['upload_project_thum']['type'] . ':' . $upload_project_thum_ext, $upload_permitted_types) ) {
Trigger-error-here;
}
</code></pre>
<p>This should look for a proper string glued from both the type and extension.</p>
<p>Another way is to modify your loop like that:</p>
<pre><code>$is_allowed = false;
foreach ($upload_permitted_types as $image_type) {
$type = explode(":", $image_type);
if (($type[0] == $_FILES['upload_project_thum']['type']) && ($type[1] == $upload_project_thum_ext ) ) {
$is_allowed = true;
break;
}
}
if( !$is_allowed ) {
$errmsg_arr[] = 'Please select a jpg, jpeg, gif, or png image to use as the project thumbnail'. $type[1] . " Type: ". $type[0];
$errflag = true;
}
</code></pre>
http://stackoverflow.com/questions/1493676/is-there-a-program-that-can-send-data-via-sockets-to-a-server-to-test-it/1493695#14936955Answer by macbirdie for Is there a program that can send data via sockets to a server, to test it?macbirdie2009-09-29T16:44:11Z2009-09-29T16:44:11Z<p>Simple telnet client works well for such tests. You can also try PuTTY in either Telnet or Raw connection modes. Both allow you to choose the port you want to connect to.</p>
<p>Also a tool like <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=983b941d-06cb-4658-b7f6-3088333d062f&displaylang=en" rel="nofollow">Microsoft Network Monitor</a> is pretty useful to analyse the protocol's data flow if you don't have direct control (by logs) on what's being sent over the wire.</p>
http://stackoverflow.com/questions/1454575/how-to-make-this-php-snippet-work-without-warning/1454651#14546510Answer by macbirdie for How to make this PHP snippet work without warning?macbirdie2009-09-21T13:58:28Z2009-09-21T13:58:28Z<p>Maybe</p>
<pre><code>function process($obj, $index = null) {
if(is_array($obj))
{
if(!array_key_exists($index, $obj))
return 1;
else
return 2;
}
if(empty($obj))
return 1;
return 2;
}
</code></pre>
<p>Please don't hide warnings with @ whenever possible.</p>
http://stackoverflow.com/questions/1449188/running-windows-batch-file-commands-asynchronously/1449192#14491926Answer by macbirdie for Running windows batch file commands asynchronouslymacbirdie2009-09-19T18:37:18Z2009-09-19T19:01:00Z<p>Using <code>START</code> command to run each program should get you what you need.</p>
<p>Every <code>START</code> invocation runs the command given in its parameter and returns immediately, unless executed with a <code>/WAIT</code> switch.</p>
<p>That applies to command-line apps. Apps without command line return immediately anyway, so to be sure, if you want to run all asynchronously, use <code>START</code>.</p>
http://stackoverflow.com/questions/1443773/svn-how-to-commit-without-entering-password/1443817#14438170Answer by macbirdie for SVN: How to commit without entering password?macbirdie2009-09-18T10:52:06Z2009-09-18T10:52:06Z<p>If you have access to svn+ssh, you can use public-key authentication using a passphrase-less private key on script's side and its public counterpart on the svn server.</p>
http://stackoverflow.com/questions/1437502/remove-all-images/1437703#14377035Answer by macbirdie for Remove All Imagesmacbirdie2009-09-17T09:24:52Z2009-09-17T09:24:52Z<p>This should work too:</p>
<pre><code>var images = document.getElementsByTagName('img');
while(images.length > 0) {
images[0].parentNode.removeChild(images[0]);
}
</code></pre>
http://stackoverflow.com/questions/1437636/how-to-autorotate-from-portrait-to-landscape-mode/1437671#14376710Answer by macbirdie for How to autorotate from portrait to landscape mode?macbirdie2009-09-17T09:15:53Z2009-09-17T09:15:53Z<p>You have to implement <code>shouldAutorotateToInterfaceOrientation</code> method in your controller, like this</p>
<pre><code>- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return YES;
}
</code></pre>
http://stackoverflow.com/questions/1437477/how-do-i-import-a-java-point-class-in-android/1437539#14375394Answer by macbirdie for How do I import a java Point class in android?macbirdie2009-09-17T08:43:31Z2009-09-17T09:04:13Z<p>Maybe just use <a href="http://developer.android.com/reference/android/graphics/Point.html" rel="nofollow">android.graphics.Point</a> instead?</p>
<p>I don't think there are any awt classes in Android other than NumericShaper and TextAttribute.</p>
<p>You can't create an interface for any class you want and hope it will be loaded automatically, save for instantiating it - interface is only a description. Android doesn't include the full Java Class Library, just a subset.</p>
<p><a href="http://developer.android.com/reference/packages.html" rel="nofollow">Here's</a> a full list of currently used packages by Android.</p>
http://stackoverflow.com/questions/1431924/zendform-element-should-only-be-required-if-a-checkbox-is-checked/1432031#14320311Answer by macbirdie for Zend_Form: Element should only be required if a checkbox is checkedmacbirdie2009-09-16T09:48:57Z2009-09-16T09:48:57Z<p>I've been wondering how to do that in ZF as well, though never had to implement such form feature. </p>
<p>One idea that comes to mind is to create a custom validator that accepts the checkbox field as a parameter, and run it in a validator chain, as <a href="http://framework.zend.com/manual/en/zend.validate.validator%5Fchains.html" rel="nofollow">documented</a>. If the checkbox is checked, validator could return failure. Then you can check whether all validations failed and only then treat form as having failed validation.</p>
<p>That level of customization of form validation could be inconvenient, so maybe using form's isValidPartial method would be better.</p>
http://stackoverflow.com/questions/1378324/php-setting-variables-in-if-construct/1378360#13783600Answer by macbirdie for PHP: setting variables in IF-construct?macbirdie2009-09-04T10:11:52Z2009-09-04T10:11:52Z<p>You haven't specified what the ERROR variable is. If it being true indicates an error, set_login_session can be essentially reduced to</p>
<pre><code>$_SESSION['login']['logged_in'] = 1;
return !ERROR;
</code></pre>
<p>and the outer code to</p>
<pre><code>return set_login_session( $passhash );
</code></pre>
<p>There's no need to do such explicit bool value comparisons.</p>
<p>And yes, it's perfectly valid to set variables in functions, but make sure the variable is set always, no matter of the code path taken, so there are no uninitialized/unexistant variables used in your code. Otherwise you're asking for trouble or, at least, big fat warnings in script output.</p>
<p>The $_SESSION superglobal should be present if there's a session started. If there was no ['login']['logged_in'] in it, that's fine.</p>
http://stackoverflow.com/questions/1259192/webcam-access-in-c/1259204#12592044Answer by macbirdie for webcam access in c++macbirdie2009-08-11T09:07:57Z2009-08-11T10:15:50Z<p>You need <a href="http://msdn.microsoft.com/en-us/library/dd375454.aspx" rel="nofollow">DirectShow</a>. This is a Windows framework for video playback and capture.</p>
<p>It's included in <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=F26B1AA4-741A-433A-9BE5-FA919850BDBF" rel="nofollow">Windows SDK</a> and there are many samples for video input capture included.</p>
<p>But, as Vijay mentioned, you can also try using <a href="http://sourceforge.net/projects/opencvlibrary" rel="nofollow">OpenCV</a> since it not only abstracts away the platform-specific video capture API, it also includes many image processing algorithms you could use to track the light in your project.</p>
http://stackoverflow.com/questions/1254028/has-anyone-succeeded-in-using-google-app-engine-with-python-version-2-6/1254047#12540473Answer by macbirdie for Has anyone succeeded in using Google App Engine with Python version 2.6 ?macbirdie2009-08-10T10:04:45Z2009-08-10T10:04:45Z<p>I suppose logging module crashes if you try to start the dev environment. See <a href="http://code.google.com/p/googleappengine/issues/detail?id=1159#c7" rel="nofollow">the issue and a workaround</a>.</p>
<p>After doing that change my code worked in 2.6 without any problems. I suggest using 2.5.x though so there are no other incompatibilities introduced in your code which would make your app fail on the live server.</p>
http://stackoverflow.com/questions/1237360/adding-support-of-windows-to-posix-project-how-painful-is-it-worth-the-effort/1253990#12539900Answer by macbirdie for Adding support of Windows to POSIX project... How painful? Is it worth the effort?macbirdie2009-08-10T09:49:56Z2009-08-10T09:49:56Z<p>As a windows client app developer it sort of hurts me that the development environment division currently is essentially Win32 and <em>everything else</em> and that they are mostly incompatible. That's why I'm preparing to move to MinGW for my personal windows app projects and to try to make them cross-platform.</p>
<p>I would suggest gradually moving to more cross-platform libraries like, as you suggested, refactoring pthreads to boost::thread, or going from <code>fork()</code> to multi-process with IPC, probably also using boost's facilities. Date/time stuff can be dealt with Boost libs as well. As for database support, there are </p>
<p>Microsoft compiler support is not that important I think, as MinGW provides a decent build environment with all the IDEs that support it, Eclipse CDT and Dev-C++ being among the most popular. But if you are going to make your project msvc-compatible, make sure users will be able to use Express editions of Visual Studio 2010 (as soon as thay come out) - that way no one will have to fork out for a Visual Studio 2010 (upgrade) just to use your project and there will be no problem for you to require the latest in Microsoft technology.</p>
<p>Most likely you won't avoid some amount of <code>ifdef</code>s for a code base of your project's size, but surely the effort might be worth it, if not only for gaining valuable experience and expanding the community with a few new happy and grateful members.</p>
http://stackoverflow.com/questions/1164730/win-api-c-control-edit-compulsory/1164831#11648310Answer by macbirdie for Win API C++ Control Edit compulsorymacbirdie2009-07-22T12:10:47Z2009-07-22T12:10:47Z<p>Create a validating function that returns a bool indicating whether input in your window is correct or not. If it returns false, disable the OK button and optionally show a message box or, preferably, trigger a balloon notification on the edit control so the user isn't annoyed by another <code>OK</code> he has to push in order to correct her mistake.</p>
<p>Then you can listen for EN_CHANGE notification coming from the Editbox and validate the input with the above function.</p>
<p>But first, debug your application to make sure the BN_CLICKED event is handled by you properly.</p>
http://stackoverflow.com/questions/1126816/windows-how-to-test-ui-under-high-dpi/1126977#11269771Answer by macbirdie for Windows: How to test UI under high-dpi?macbirdie2009-07-14T17:56:31Z2009-07-21T13:43:30Z<p>If your app's layout behaves the same at 96, 120, 144, 150 dpi then I think there's no need to test it for even higher DPI, since you will have already tested that it works well for uneven dpi increments.</p>
<p>Actually there are many setups high-dpi-friendly already on the market, like 1650x1050 15,4" or 1920x1050 at 16" displays in notebooks, which at 120dpi already show pixel-dependency problems and are pretty uncomfortable to work with at 96dpi already so working on higher-density display support is valid. Good for you!</p>
<p>Edit: I've been thinking. That may not be very real-time, but maybe if you tried handling <a href="http://msdn.microsoft.com/en-us/library/dd145216.aspx" rel="nofollow"><code>WM_PRINT</code></a> or <a href="http://msdn.microsoft.com/en-us/library/dd145217.aspx" rel="nofollow"><code>WM_PRINTCLIENT</code></a> messages in your windows and printed it to a file or at least tried to show a print preview of them using printer settings? Suddenly we're in at least 300dpi. Just an idea.</p>
http://stackoverflow.com/questions/58620/default-button-size/58689#586892Answer by macbirdie for Default button size?macbirdie2008-09-12T11:03:03Z2009-07-20T13:49:41Z<h2>In the perfect, hassle-free world...</h2>
<p>To create a standard size button we would have to do this:</p>
<pre><code>LONG units = GetDialogBaseUnits();
m_hButton = CreateWindow(TEXT("BUTTON"), TEXT("Close"),
WS_VISIBLE | WS_CHILD | BS_DEFPUSHBUTTON,
0, 0, MulDiv(LOWORD(units), 50, 4), MulDiv(HIWORD(units), 14, 8),
hwnd, NULL, hInst, NULL);
</code></pre>
<p>where <strong>50</strong> and <strong>14</strong> are respective DLU dimensions, <strong>4</strong> and <strong>8</strong> are horizontal and vertical dialog template units respectively, based on <a href="http://msdn.microsoft.com/en-us/library/ms645475%28VS.85%29.aspx" rel="nofollow"><code>GetDialogBaseUnits()</code> function</a> documentation remarks.</p>
<p><hr /></p>
<h2>Nothing's perfect</h2>
<p><strong>BUT</strong> as Anders pointed out, those metrics are based on the system font. If your window uses a shell dialog font or simply anything not making your eyes bleed, you're pretty much on your own.</p>
<p>To get your own "dialog" base units, you have to retrieve current text metrics with <code>GetTextMetrics()</code> and use character height and average width (<code>tmHeight</code> and <code>tmAveCharWidth</code> of the <code>TEXTMETRIC</code> struct respectively) and translate them with MulDiv by your own, <strong>unless</strong> you are in a dialog, then <code>MapDialogRect()</code> will do all the job for you.</p>
<p>Note that <code>tmAveCharWidth</code> only approximates the actual average character width so it's recommended to use a <a href="http://msdn.microsoft.com/en-us/library/dd144938.aspx" rel="nofollow"><code>GetTextExtentPoint32()</code></a> function on an alphabetic character set instead.</p>
<p>See:</p>
<ul>
<li><a href="http://support.microsoft.com/kb/145994" rel="nofollow">How to calculate dialog box units based on the current font in Visual C++</a></li>
<li><a href="http://support.microsoft.com/kb/125681" rel="nofollow">How To Calculate Dialog Base Units with Non-System-Based Font</a></li>
</ul>
<p><hr /></p>
<h2>Simpler alternative</h2>
<p>If buttons are the only control you want to resize automatically, you can also use <a href="http://msdn.microsoft.com/en-us/library/bb775961%28VS.85%29.aspx" rel="nofollow"><code>BCM_GETIDEALSIZE</code></a> message <a href="http://msdn.microsoft.com/en-us/library/bb761851%28VS.85%29.aspx" rel="nofollow"><code>Button_GetIdealSize()</code></a> macro (Windows XP and up only) to retrieve optimal width and height that fits anything the button contains, though it looks pretty ugly without any margins applied around the button's text.</p>
http://stackoverflow.com/questions/58620/default-button-size2Default button size?macbirdie2008-09-12T10:25:32Z2009-07-20T13:49:41Z
<p>How do I create a button control (with <code>CreateWindow</code> of a <code>BUTTON</code> window class) that has a standard system-wide size (especially height) that's consistent with the rest of Windows applications?
I should of course take DPI into account and probably other settings.</p>
<blockquote>
<p><strong>Remark:</strong> Using <code>USE_CW_DEFAULT</code> for width and height results in a 0, 0 size button, so that's not a solution.</p>
</blockquote>
http://stackoverflow.com/questions/1138980/native-api-window-designer/1142504#11425040Answer by macbirdie for Native API window designermacbirdie2009-07-17T10:29:27Z2009-07-17T11:50:46Z<p>That's probably because there is no standard way of doing control layouts in WinAPI, you have to manage it by yourself. There is no base "Control" class in WinAPI - everything is a Window of some sort, so no way to support their differences with a common layout editor/designer.</p>
<p>You can however create your window layout in a dialog and make it resizable by yourself or using methods published on codeproject (<a href="http://www.codeproject.com/KB/dialog/layoutmgr.aspx" rel="nofollow">this</a> or <a href="http://www.codeproject.com/KB/dialog/resizabledialog.aspx" rel="nofollow">this</a> - both are MFC-related, but that's fairly easy to translate).</p>
<p>Or adapt <a href="http://blogs.msdn.com/windowsmobile/archive/2006/09/11/749467.aspx" rel="nofollow">ScreenLib</a> to your desktop needs.</p>
http://stackoverflow.com/questions/1130501/distributed-key-value-data-store-with-offline-access-static-partitioning/1131326#11313260Answer by macbirdie for Distributed Key-Value Data Store with Offline Access (Static Partitioning)macbirdie2009-07-15T13:14:28Z2009-07-15T13:14:28Z<p>Of course you must remember that replication is something completely different from backup, because one system's programmatic failure in handling the data can quickly replicate to other nodes resulting in total mayhem.</p>
<p>Maybe using a <a href="http://hadoop.apache.org/core/docs/current/hdfs%5Fuser%5Fguide.html" rel="nofollow">Hadoop File System</a> or <a href="http://www.openafs.org" rel="nofollow">OpenAFS</a> would be a good solution here?</p>
<p>I haven't used any of those systems in real-life scenarios, only had interest in them during my research on peer-to-peer and distributed storage solutions, but I think they're worth a try.</p>
http://stackoverflow.com/questions/1126240/recomended-in-depth-winsock-literature/1126507#11265072Answer by macbirdie for Recomended in-depth winsock literature?macbirdie2009-07-14T16:22:21Z2009-07-14T16:50:03Z<p>Can't beat <a href="http://rads.stackoverflow.com/amzn/click/0735615799" rel="nofollow">Network Programming for Microsoft Windows</a> even though it's 7 years old!</p>
<p>Also:</p>
<ul>
<li><a href="http://tangentsoft.net/wskfaq" rel="nofollow">WinSock Programmer's FAQ</a></li>
<li><a href="http://msdn.microsoft.com/en-us/library/ms740632%28VS.85%29.aspx" rel="nofollow">Using Winsock</a> at MSDN Library</li>
</ul>
http://stackoverflow.com/questions/253026/clistboxs-item-size-changed-when-changing-the-size-of-the-list-box-even-if-i-spe/1125905#11259050Answer by macbirdie for CListBox's Item size changed when changing the size of the list box even if I specify the size in MeasureItem() method?macbirdie2009-07-14T14:46:18Z2009-07-14T14:46:18Z<p>What's not mentioned in the reference is that WM_MEASUREITEM is called <em>every time</em> the <code>*_OWNERDRAWFIXED</code> control is resized.</p>
<p>I don't know however, how official this behavior is and whether it should be relied on, but it has been verified at <a href="http://www.codeguru.com/Cpp/controls/listview/advanced/article.php/c1013" rel="nofollow">CodeGuru</a> and several forum posts found on the Google thing.</p>
<p>If you don't want to process the message, then just set a private flag somewhere in the first <code>OnMeasureItem()</code> call and return from it as soon as you check that it's set next time.</p>
http://stackoverflow.com/questions/1124752/add-13-hours-to-a-timestamp/1124791#11247913Answer by macbirdie for Add 13 hours to a timestampmacbirdie2009-07-14T11:26:04Z2009-07-14T11:43:23Z<p>I know that </p>
<pre><code>date( "Y-M-d H:i:s", strtotime( $timestamp_from_array ) + 13 * 3600 );
</code></pre>
<p>is smelly, but it will give you an idea.</p>
<p><code>strtotime</code> converts the timestamp string to a timestamp value, then we add the hours and convert it back to the timestamp format in the array with the <code>date</code> function.</p>
<p>But I suppose what you really want is to use <a href="http://pl.php.net/manual/pl/datetimezone.getoffset.php" rel="nofollow">time zones</a>.</p>
<p>Edit:
<a href="http://stackoverflow.com/questions/1124752/1124811#1124811">igstan</a> is correct, you should also mind the daylight saving time changes between those offsets.</p>
http://stackoverflow.com/questions/1119024/tray-icon-issue/1119366#11193661Answer by macbirdie for Tray Icon issuemacbirdie2009-07-13T13:13:17Z2009-07-13T13:13:17Z<p>Maybe when you're changing the icon, its <code>ICONDATA</code> gets modified in a way that the system won't show the balloon or modify the notification icon anymore. It could be even incorrectly set <code>cbSize</code> struct member.</p>
<p>Check if <code>Shell_NotifyIcon</code> returns <code>TRUE</code> when trying to pop up. If <code>FALSE</code>, also check the dwMessage member, whether it's set to e.g. <code>NIM_SETVERSION</code>. That could mean that the <code>ICONDATA</code> structure's version given is unsupported, like the <a href="http://msdn.microsoft.com/en-us/library/bb762159%28VS.85%29.aspx" rel="nofollow">documentation</a> says.</p>
<p>Also in case of a failure check the actual error with the <code>GetLastError</code> function.</p>
http://stackoverflow.com/questions/687/keyboard-for-programmers/53726#537269Answer by macbirdie for Keyboard for programmersmacbirdie2008-09-10T10:00:18Z2009-07-12T14:24:25Z<p><img src="http://strony.aster.pl.nyud.net/barton/hardware/Logitech%5FUltraX%5FKeyboard.jpg" alt="alt text" /></p>
<p>I've been using my <strong>Logitech UltraX Flat</strong> for over 4 years now and it's great. No key weardown, great tactile response.</p>
<p>I got the UltraX <em>Media</em> variant at previous job and key response was much worse.</p>
<p>Wouldn't hurt to have a standalone Thinkpad keyboard though. Those in T61s are incredible!</p>
http://stackoverflow.com/questions/1108827/how-to-display-weather-using-any-weather-website/1108839#11088392Answer by macbirdie for How to display weather using any weather websitemacbirdie2009-07-10T10:36:14Z2009-07-10T10:36:14Z<p>You can use <a href="http://developer.yahoo.com/weather/" rel="nofollow">Yahoo Weather API</a>.</p>
<p>Have in mind that Yahoo explicitly states that their API is for non-commercial use though.</p>
<p>To parse the RSS returned by the API I'd recommend an XML pull parser. You'll find more information on those <a href="http://developers.sun.com/mobility/midp/articles/parsingxml/" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/1076184/drawing-the-slices-of-a-3d-pie-chart-in-the-right-order/1076290#10762902Answer by macbirdie for Drawing the slices of a 3D pie chart in the right ordermacbirdie2009-07-02T19:38:37Z2009-07-03T16:51:05Z<p>Maybe you'd have to divide drawing the slices into two equal stages. Both start at the angle farthest from the viewer and go in opposite ways.</p>
<p>After dividing the slices in two stages, you sort both whole slices and both parts of the one that was on the 50% boundary by their midpoint on the circumference, toward the viewer.</p>
<p>If there are e.g. two slices, first is 80% and starts at the angle farthest from the viewer, you'd divide it into two slices, 50% drawn in the first stage, then you'd draw the 20% slice that starts at at the top and goes in the other direction and only then you'd draw the remaining 30% of the first slice.</p>
<p>Sorry for the convoluted explanation, I hope you get the idea though. ;)</p>
<p>Edit:
To illustrate the case where a small slice is both overlapped and overlaps a bigger slice.
However note that this is not an exploded pie and this one is much easier to draw.</p>
<p><img src="http://chart.apis.google.com/chart?cht=p3&chd=t:95,5&chs=380x150&chl=Stacks|Overflows" alt="Example chart for a Stack Overflow question" /></p>
http://stackoverflow.com/questions/1528610/split-large-file-without-copyComment by macbirdie on Split large file without copy?macbirdie2009-10-21T11:38:43Z2009-10-21T11:38:43ZHere's a twist - use BitTorrent.http://stackoverflow.com/questions/1578872/how-is-it-that-windows-3-1-could-run-the-entire-operating-system-on-just-2-mb-ofComment by macbirdie on How is it that Windows 3.1 could run the ENTIRE operating system on just 2 MB of RAM (GUI & all) but Firefox alone with 1 tab can be 100 MB?macbirdie2009-10-16T15:59:51Z2009-10-16T15:59:51ZIntel Giveth, web 2.0 taketh away.http://stackoverflow.com/questions/1578886/best-free-website-for-sending-large-exe-to-customerComment by macbirdie on Best free website for "sending" large EXE to customermacbirdie2009-10-16T15:57:44Z2009-10-16T15:57:44ZHave you tried sending the exe zipped with a password? There's no way for firewall/antivirus software to detect content of such a file.http://stackoverflow.com/questions/1524397/openmp-in-visual-studio-2005Comment by macbirdie on OpenMP in Visual Studio 2005macbirdie2009-10-06T10:41:57Z2009-10-06T10:41:57ZThat's odd. I've just compiled all three snippets without any problem.http://stackoverflow.com/questions/687/keyboard-for-programmersComment by macbirdie on Keyboard for programmersmacbirdie2009-09-20T08:47:29Z2009-09-20T08:47:29ZI wrote a little windows app that delays caps lock switch by 400 milliseconds and have no problems with this key, ever. No problem adapting to other keyboards as well.http://stackoverflow.com/questions/1448193/python-sockstream-over-internet/1448227#1448227Comment by macbirdie on Python SOCK_STREAM over internet ... macbirdie2009-09-19T13:13:23Z2009-09-19T13:13:23ZMaybe the server-side isp is blocking listening(server) TCP sockets? If you start a web server there, does it work over internet?http://stackoverflow.com/questions/1448046/career-choice-in-jee-are-ejbs-standard/1448228#1448228Comment by macbirdie on Career Choice in JEE, are EJBs standard?macbirdie2009-09-19T09:49:58Z2009-09-19T09:49:58ZGlassfish is relatively new by standards of Java technology adoption in enterprise, so there may be not many big projects that use it - WebSphere, JBoss are well known, proven platforms. After all Glassfish is a fast, memory efficient, full-blown JEE app server. Now adoption may be slowing because it's not clear what Oracle is going to do with it.http://stackoverflow.com/questions/1250795/very-poor-boostlexicalcast-performance/1251451#1251451Comment by macbirdie on Very poor boost::lexical_cast performancemacbirdie2009-09-18T11:15:03Z2009-09-18T11:15:03ZHow about saving some numbers to a file which is based on XML?http://stackoverflow.com/questions/1437502/remove-all-images/1437525#1437525Comment by macbirdie on Remove All Imagesmacbirdie2009-09-17T17:50:43Z2009-09-17T17:50:43Z<i>Hugs n1313</i> http://stackoverflow.com/questions/1437502/remove-all-images/1437525#1437525Comment by macbirdie on Remove All Imagesmacbirdie2009-09-17T17:43:26Z2009-09-17T17:43:26ZDoesn't the edited version remove only half of the NodeList as well? But this time not every other Node, just second half of the list. You're increasing i until it reaches images.length, which is reduced in every iteration, so they kind of "meet" in the middle. Store the length outside the loop and it will be fine then.http://stackoverflow.com/questions/1410591/how-to-programmatically-control-the-cpu-utilization-by-an-c-winform-applicationComment by macbirdie on How to programmatically control the CPU utilization by an C# winform applicationmacbirdie2009-09-11T12:48:32Z2009-09-11T12:48:32ZNot an answer, but maybe you should set process/threads priority to lower levels instead.http://stackoverflow.com/questions/48555/best-way-to-compress-html-css-js-with-moddeflate-and-modgzip-disabled/55092#55092Comment by macbirdie on Best way to compress HTML, CSS & JS with mod_deflate and mod_gzip disabledmacbirdie2009-09-03T18:40:07Z2009-09-03T18:40:07ZWhat do you mean by updating the files? You don't have to do anything with the files that are to be compressed - you just have to put this script on a server and set up the Rewrite rules appropriately.http://stackoverflow.com/questions/48555/best-way-to-compress-html-css-js-with-moddeflate-and-modgzip-disabled/55092#55092Comment by macbirdie on Best way to compress HTML, CSS & JS with mod_deflate and mod_gzip disabledmacbirdie2009-09-03T13:44:42Z2009-09-03T13:44:42ZThis script assumes it's run by the apache Rewrite rule and is given a filename as an URI parameter.http://stackoverflow.com/questions/1373062/what-are-the-known-c-c-optimizations-for-gccComment by macbirdie on What are the known C/C++ optimizations for GCCmacbirdie2009-09-03T13:18:36Z2009-09-03T13:18:36Z// pretty often makes things perform better!http://stackoverflow.com/questions/1237360/adding-support-of-windows-to-posix-project-how-painful-is-it-worth-the-effort/1237438#1237438Comment by macbirdie on Adding support of Windows to POSIX project... How painful? Is it worth the effort?macbirdie2009-08-10T08:58:18Z2009-08-10T08:58:18ZThat's true about "windows-way" the things are expected to work. I <i>hate</i> it when I have to do e.g. cygwin magic or jump through other hoops in order to even compile a "cross-platform" application.