User Max Howell - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T21:42:10Z http://stackoverflow.com/feeds/user/6444 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1751612/git-tool-to-remove-lines-from-staging-if-they-consist-only-of-changes-in-whitespa 4 Git tool to remove lines from staging if they consist only of changes in whitespace Max Howell 2009-11-17T20:39:50Z 2009-11-20T18:53:08Z <p>The point in removing trailing whitespace is that if everyone does it always then you end up with a diff that is minimal, ie. it consists only of code changes and not whitespace changes.</p> <p>However when working with other people who do not practice this, removing all trailing whitespace with your editor or a pre-commit hook results in an <em>even worse</em> diff. You are doing the opposite of your intention.</p> <p>So I am asking here if there is a tool that I can run manually before I commit that unstages lines from staging that are only changes in whitespace.</p> <p>Also a bonus would be to change the staged line to have trailing whitespace removed for lines that have code changes.</p> <p>Also a bonus would be to not do this to Markdown files (as trailing space has meaning in Markdown).</p> <p>I am asking here as I fully intend to write this tool if it doesn't already exist. Thanks.</p> http://stackoverflow.com/questions/1751867/easiest-way-to-format-a-number-with-thousand-separators-to-an-nsstring-according 0 Easiest way to format a number with thousand separators to an NSString according to the Locale Max Howell 2009-11-17T21:18:29Z 2009-11-18T01:14:27Z <p>I can't seem to find an easy way to do it. The exact thing I need is:</p> <pre><code>[NSString stringWithFormat:@"%d doodads", n]; </code></pre> <p>Where n is an int. So for 1234 I'd want this string (under my locale):</p> <pre><code>@"1,234 doodads" </code></pre> <p>Thanks.</p> http://stackoverflow.com/questions/1751867/easiest-way-to-format-a-number-with-thousand-separators-to-an-nsstring-according/1752991#1752991 0 Answer by Max Howell for Easiest way to format a number with thousand separators to an NSString according to the Locale Max Howell 2009-11-18T01:14:27Z 2009-11-18T01:14:27Z <p>This was the only way I could make it work.</p> <pre><code>NSNumberFormatter* formatter = [[NSNumberFormatter alloc] init]; [formatter setFormatterBehavior:NSNumberFormatterBehavior10_4]; [formatter setFormat: @"#,###"]; NSString* doodads = [formatter stringFromNumber:[NSNumber numberWithInt:n]]; [formatter release]; </code></pre> <p>The docs aren't clear if this is properly localised or not. I'm guessing no, it isn't, it will always use commas. Which sucks.</p> http://stackoverflow.com/questions/1693455/monitor-filesystem-activity-of-a-child-process-on-os-x-with-normal-user-privilege 0 Monitor filesystem activity of a child process on OS X with normal user privileges Max Howell 2009-11-07T15:48:08Z 2009-11-07T16:12:00Z <p>I spawn a child process and need to know what files it modifies, creates or deletes.</p> <p>I can't use dtrace because I cannot sudo.</p> <p>I can't use FSEvents because it reports modifications that occur for all processes on the system and I'm only interested in my child process.</p> <p>Thanks for your help.</p> http://stackoverflow.com/questions/1591654/what-is-the-origin-of-the-unix-dollar-prompt 3 What is the origin of the UNIX $ (dollar) prompt? [closed] Max Howell 2009-10-19T23:11:47Z 2009-10-19T23:11:47Z <p>I know this isn't really a programming question, and I apologise for that. But I think it is interesting nonetheless, and I couldn't think of a better place to ask it.</p> <p>The UNIX prompt uses a $ symbol to indicate that your input is expected.</p> <p>I was wondering why this symbol was chosen -- if there is a reason. Dollar just seems a little unexpected. A > would have been more suggestive in my opinion.</p> http://stackoverflow.com/questions/1351395/ignore-sigpipe-for-a-single-popend-file 1 Ignore SIGPIPE for a single popen'd FILE* Max Howell 2009-08-29T13:05:25Z 2009-08-29T13:42:31Z <p>The code I am looking at is here:</p> <p><a href="http://github.com/andymatuschak/Sparkle/blob/8ea15468b4a8c0487ca7a72f3c9e6ffb708c6af8/SUPipedUnarchiver.m" rel="nofollow">http://github.com/andymatuschak/Sparkle/blob/8ea15468b4a8c0487ca7a72f3c9e6ffb708c6af8/SUPipedUnarchiver.m</a></p> <p>Sparkle is like a plugin. It can be instantiated in a multi-threaded program. Thus I don't want to call signal(SIGPIPE, SIG_IGN) (ie. ignore <em>all</em> SIGPIPE) as who knows what other threads are doing/expecting.</p> <p>How can I disable the SIGPIPE signal for this one FILE pointer opened via popen?</p> http://stackoverflow.com/questions/1245011/how-to-build-qt-out-of-source/1245915#1245915 0 Answer by Max Howell for How to build qt out of source Max Howell 2009-08-07T17:10:15Z 2009-08-07T17:10:15Z <p>IIRC on Windows, you have to do a sandbox install, you can't do the UNIX-typical "make install".</p> <p>There are two options usually for building Qt, -prefix-install and -prefix /foo</p> <p>You pick one, so if -prefix doesn't allow you to type make install, then I guess on Windows you have to use the -prefix-install route, which is a sandboxed install to the directory you extract Qt to.</p> <p>I'm guessing you didn't try make install? So try that. It should install Qt to a separate directory away from the sources.</p> http://stackoverflow.com/questions/334686/how-can-i-detect-the-operating-system-in-perl 2 How can I detect the operating system in Perl? Max Howell 2008-12-02T16:59:00Z 2009-08-05T15:11:49Z <p>I have Perl on Mac, Windows and Ubuntu. How can I tell from within the script which one is which? Thanks in advance.</p> <p><strong>Edit:</strong> I was asked what I am doing. It is a script, part of our cross-platform build system. The script recurses directories and figures out what files to build. Some files are platform-specific, and thus, on Linux I don't want to build the files ending with _win.cpp, etc.</p> http://stackoverflow.com/questions/1229596/programmatically-activate-nsmenuitem 0 Programmatically Activate NSMenuItem Max Howell 2009-08-04T19:57:42Z 2009-08-04T20:45:37Z <p>When you press the keys for an NSMenuItem keyboard shortcut on Mac, the menu itself highlights to indicate that an action in that menu has been activated.</p> <p>If you are not familiar with the effect try it now by selecting some text and while pressing CMD-C, watch the Edit menu. It will flash blue to indicate you activated a shortcut for an item in that menu.</p> <p>I want to achieve the same effect programmatically, preferably without faking the keyboard entry. Thanks for your time.</p> http://stackoverflow.com/questions/1167573/qmake-subdirs-template-executing-a-target/1169155#1169155 0 Answer by Max Howell for QMake 'subdirs' template - executing a target? Max Howell 2009-07-23T01:44:32Z 2009-07-23T01:44:32Z <p>I've tried to do a lot of stuff with qmake as a build system over the years. Eventually I just resorted to having a pre-qmake step. Ie. a configure script.</p> <p>You can build your version tool in there and then execute it before calling qmake to generate the Makefiles. </p> <p>I found the easiest way to get data into the pro files, if you need that too, is to generate a .pro.inc file and include it from your main pro.</p> http://stackoverflow.com/questions/1021717/possible-flaws-in-including-c-files-style-c-programming/1021922#1021922 0 Answer by Max Howell for possible flaws in 'including *.c files' style C programming Max Howell 2009-06-20T16:10:14Z 2009-06-20T16:10:14Z <p>The evils of macros can be exacerbated:</p> <p>file1.c</p> <pre><code>#define bottom arse </code></pre> <p>file2.c</p> <pre><code>int f() { int arse = 4; bottom = 3; printf("%d", arse); } </code></pre> <p>main.c</p> <pre><code>#include "file1.c" #include "file2.c" void main() { f(); } </code></pre> <p>Indeed a convoluted example. But usually you wouldn't notice it because a macro's scope is the file it is in.</p> <p>I did actually get this bug, I was importing some lib code into a new project and couldn't be bothered to write the Makefile, so I just generated an all.cpp which included all the sources from the library. And it didn't work as expected due to macro pollution. Took me a while to figure it out.</p> http://stackoverflow.com/questions/608963/register-as-login-item-with-cocoa 4 Register as Login Item with Cocoa? Max Howell 2009-03-04T01:46:11Z 2009-04-26T16:26:19Z <p>Google gave me: <a href="http://developer.apple.com/samplecode/LoginItemsAE/index.html" rel="nofollow">http://developer.apple.com/samplecode/LoginItemsAE/index.html</a></p> <p>And I figured there must be a better way than using AppleScript Events.</p> <p>So I downloaded the Growl sources. They use the exact sources from that Apple developer article.</p> <p>Is there a better way?</p> <p>(I refer to Login Items in Accounts in System Preferences, ie. making my program start when the user Logs in, programmatically)</p> http://stackoverflow.com/questions/148570/using-pre-compiled-headers-with-cmake/647899#647899 0 Answer by Max Howell for Using pre-compiled headers with CMake Max Howell 2009-03-15T14:33:29Z 2009-03-15T14:33:29Z <p>I found this: <a href="http://www.vtk.org/Bug/view.php?id=1260" rel="nofollow">http://www.vtk.org/Bug/view.php?id=1260</a></p> <p>Though I couldn't get it to work on Apple GCC 4.0</p> http://stackoverflow.com/questions/585801/why-does-qt-needs-allocate-of-child-objects-in-the-heap/598553#598553 0 Answer by Max Howell for Why does Qt needs allocate of child objects in the Heap? Max Howell 2009-02-28T19:47:15Z 2009-02-28T19:47:15Z <p>In your example quit doesn't have to be heap allocated.</p> <p>This code compiles and executes fine:</p> <pre><code>struct MyWidget : QWidget { QPushButton quit; MyWidget() { quit.setGeometry( 62, 40, 75, 30 ); quit.setFont( QFont( "Times", 18, QFont::Bold ) ); } }; </code></pre> http://stackoverflow.com/questions/573540/osx-app-how-to-reference-resources-folder-in-code/577143#577143 0 Answer by Max Howell for [OSX .app] How to reference Resources folder in code Max Howell 2009-02-23T10:23:56Z 2009-02-23T10:23:56Z <p>We use:</p> <pre><code>QDir CoreDir::bundle() { // Trolltech provided example CFURLRef appUrlRef = CFBundleCopyBundleURL( CFBundleGetMainBundle() ); CFStringRef macPath = CFURLCopyFileSystemPath( appUrlRef, kCFURLPOSIXPathStyle ); QString path = CFStringToQString( macPath ); CFRelease(appUrlRef); CFRelease(macPath); return QDir( path ); } </code></pre> <p>So do CoreDir::bundle().filePath( "../Resources" );</p> http://stackoverflow.com/questions/443546/qt-goes-lgpl-on-windows-is-it-good-enough-to-use-instead-of-mfc/530798#530798 5 Answer by Max Howell for Qt goes LGPL! On Windows, is it good enough to use instead of MFC? Max Howell 2009-02-10T01:48:10Z 2009-02-10T01:48:10Z <p>I love Qt. I use it for everything. But if I wasn't familiar with it, and only going to develop on Windows, I'd prolly go with C# .NET. Because Qt isn't quite native. And Qt has compromises in its API for the sake of cross platform development. And C++ applications and additionally Qt applications are not trivial to distribute.</p> <p>I say probably, because actually, thinking about it, the open sourciness of Qt has saved my arse a few times, and I feel a lot more comfortable working with tools that are open.</p> http://stackoverflow.com/questions/500701/qt-configuration-on-windows/507221#507221 2 Answer by Max Howell for qt configuration on windows Max Howell 2009-02-03T14:15:12Z 2009-02-03T14:15:12Z <p>I think the actual solution to this is in your pro file:</p> <p>QT += opengl</p> http://stackoverflow.com/questions/687/keyboard-for-programmers/192199#192199 22 Answer by Max Howell for Keyboard for programmers Max Howell 2008-10-10T16:41:32Z 2009-02-03T13:01:04Z <p>I'm surprised nobody else has mentioned it, but get an American layout keyboard.</p> <p>This is because the functional character set of almost all programming languages were designed on a US keyboard. Important keys like:</p> <p><strong>" ; ' { }</strong></p> <p>are on the home row or close to it. Having to stretch for shift-number combinations hampers productivity.</p> <p>It may seem like an annoyance if you're used to a Swedish keyboard or whatever, but trust me, it's worth the (surprisingly) minimal time investment.</p> <p>Of course if you're American, which is likely, this is less useful to you. Me, I'm a Brit and have been programming with US layout for 15 years or so now.</p> http://stackoverflow.com/questions/446474/how-do-you-write-code-at-home/446772#446772 0 Answer by Max Howell for How do you write code at home? Max Howell 2009-01-15T13:45:58Z 2009-01-15T13:45:58Z <p>Either just do it, I think MS would prefer you developing software for Windows than not.</p> <p>Or use Qt + QtCreator: <a href="http://www.qtsoftware.com/" rel="nofollow">http://www.qtsoftware.com/</a></p> <p>It's C++ but C# is similar enough that you'll be alright. And Qt makes C++ a lot less painful. And it's all free.</p> http://stackoverflow.com/questions/405770/why-are-compilers-so-stupid/405823#405823 0 Answer by Max Howell for Why are compilers so stupid? Max Howell 2009-01-02T01:36:34Z 2009-01-02T01:36:34Z <p>I have to agree, that set to <strong>maximum</strong> optimisation (when compile time is considered secondary to the resulting performance), the compiler should well be clever enough to optimise away such cases. And as pointed out earlier, modern C++ compilers do. So I guess the Java "compiler" still needs a few more development iterations to catch up.</p> http://stackoverflow.com/questions/360160/mixing-qt-and-boost/362637#362637 3 Answer by Max Howell for Mixing Qt and Boost Max Howell 2008-12-12T12:41:56Z 2008-12-12T12:41:56Z <p>We (Last.fm) use them both together, though we only just started to do so, and so haven't a good deal of experience yet. So far everything is fine though :)</p> http://stackoverflow.com/questions/345610/remove-all-but-the-last-500-000-bytes-from-a-file-with-the-stl 0 Remove all but the last 500,000 bytes from a file with the STL Max Howell 2008-12-06T00:19:49Z 2008-12-08T10:29:31Z <p>Our logging class, when initialised, truncates the log file to 500,000 bytes. From then on, log statements are appended to the file.</p> <p>We do this to keep disk usage low, we're a commodity end-user product.</p> <p>Obviously keeping the first 500,000 bytes is not useful, so we keep the last 500,000 bytes.</p> <p>Our solution has some serious performance problem. What is an efficient way to do this?</p> http://stackoverflow.com/questions/29156/mac-virtualization-vm-ware-fusion-or-parallels/197432#197432 2 Answer by Max Howell for Mac Virtualization: VM Ware Fusion or Parallels Max Howell 2008-10-13T12:36:54Z 2008-12-05T23:55:00Z <p>I am in the process of switching my work-related VMs from Parallels to VirtualBox.</p> <p>Having followed Parallels for six months or so, it seems unmaintained, undeveloped, slow and buggy. There forums are full of posts from people at Parallels who give no confidence. Version 3 is behind VMWare and VirtualBox (in some important areas, eg. performance), yet nobody can predict when version 4 will be released.</p> <p>Linux support in Parallels is terrible.</p> <p>I've not tried VMWare on the Mac, so I cannot comment there. But if you need Bootcamp support, it seems you should explore VMWare. Otherwise I can say nothing but good things about VirtualBox.</p> <p><strong>Edit</strong> I have now used VMWare fusion, it is excellent. I recommend it over VirtualBox, if you can afford it, since it has all the niceties of Parallels but the performance of VirtualBox And as noted above it has "unity" too. I like VirtualBox because it is open source, but the reality is with virtualisation, that it isn't too tricky to switch between virtualisation solutions should your propriety vendor disappear.</p> <p><strong>Edit</strong> Parallels 4 came out. Totally unannounced as far as I'm concerned, amid all sorts of promises to fix certain bugs in version 3 that they now will never do. Parallels is a lying company. You can not trust them and should not give them your money.</p> <p>Also a further conclusion. Try them all out. It's pretty easy to move vm images between the competing products.</p> http://stackoverflow.com/questions/207016/how-to-fade-out-volume-naturally 10 How to fade out volume naturally? Max Howell 2008-10-16T00:29:49Z 2008-12-01T22:50:57Z <p>I have experimented with a sigmoid and logarithmic fade out for volume over a period of about half a second to cushion pause and stop and prevent popping noises in my music applications.</p> <p>However neither of these sound "natural". And by this I mean, they sound botched. Like an amateur engineer was in charge of the sound decks.</p> <p>I know the ear is logarithmic when it comes to volumes, or at least, twice as much power does not mean twice as loud. Is there a magic formula for volume fading? Thanks.</p> http://stackoverflow.com/questions/321656/when-a-qt-widget-gets-focus/324453#324453 1 Answer by Max Howell for When a Qt widget gets focus Max Howell 2008-11-27T18:36:13Z 2008-11-27T18:36:13Z <p>Qt Designer isn't designed for this level of WYSIWYG programming.</p> <p>Do it in C++:</p> <pre><code>class LineEdit : public QLineEdit { virtual void focusInEvent( QFocusEvent* ) {} }; </code></pre> http://stackoverflow.com/questions/315393/i-cant-connect-kaction-to-slot-on-kmainwindow/320769#320769 2 Answer by Max Howell for I can't connect KAction to slot on KMainWindow Max Howell 2008-11-26T14:00:15Z 2008-11-26T14:00:15Z <p>You forgot the Q_OBJECT macro.</p> <pre><code>class MainWindow: public KMainWindow { Q_OBJECT public: // [snip] } </code></pre> http://stackoverflow.com/questions/300986/when-should-you-not-use-virtual-destructors/302267#302267 1 Answer by Max Howell for When should you not use virtual destructors? Max Howell 2008-11-19T15:31:29Z 2008-11-19T15:31:29Z <p>Virtual functions mean every allocated object increases in memory cost by a virtual function table pointer.</p> <p>So if your program involves allocating a very large number of some object, it would be worth avoiding all virtual functions in order to save the additional 32 bits per object.</p> <p>In all other cases, you will save yourself debug misery to make the dtor virtual.</p> http://stackoverflow.com/questions/254526/what-does-a-gcc-compiled-static-library-contain 5 What does a GCC compiled static library contain? Max Howell 2008-10-31T18:56:38Z 2008-10-31T19:13:38Z <p>My application links against libsamplerate.a. I am doing this to make distributing the final binary easier.</p> <p>I am worried that perhaps the code inside the .a file depends on some other libraries I also will need to distribute.</p> <p>But if it doesn't I am worried I am bloating up my application too much by including multiple copies of eg. libc.</p> <p>What exactly will be inside libsamplerate.a? Just libsamperate's bytecode? Or more?</p> http://stackoverflow.com/questions/250984/do-i-really-need-version-control/251171#251171 1 Answer by Max Howell for Do I really need version control? Max Howell 2008-10-30T18:07:15Z 2008-10-30T18:07:15Z <p>When your client phones up in a panic because something is broken on the live site and it's a regression, you'll be glad you can just open TortoiseSVN and see what it was you did last Tuesday that caused the breakage.</p> http://stackoverflow.com/questions/241144/how-to-set-an-initial-size-of-a-qscrollarea/250257#250257 0 Answer by Max Howell for How to set an initial size of a QScrollArea? Max Howell 2008-10-30T14:00:07Z 2008-10-30T14:00:07Z <p>You can try:</p> <pre><code>class MyScrollArea : public QScrollArea { virtual QSize sizeHint() const { return QSize( 300, 300 ); } }; // create label for displaying an image QImage image( ":/test.png" ); Label *label = new QLabel; label-&gt;setPixmap( image.toPixmap() ); // put label into scroll area QScollArea *area = new MyScrollArea( this ); area-&gt;setWidget( label ); </code></pre> <p>However layout and Qt is amazingly Voodoo. It is IMO its least functional part.</p> <p>if that doesn't work, try calling QWidget::resize() on various widgets.</p> http://stackoverflow.com/questions/1752855/fastest-way-to-programmatically-open-prefpane/1754945#1754945 Comment by Max Howell on Fastest way to programmatically open prefpane? Max Howell 2009-11-18T20:21:33Z 2009-11-18T20:21:33Z I'm not usually keen on this though as you have to figure out where your Third Party prefpane has been installed. Alas, using bundle identifiers with the appropriate NSWorkspace call doesn't seem to work. http://stackoverflow.com/questions/1752855/fastest-way-to-programmatically-open-prefpane/1754945#1754945 Comment by Max Howell on Fastest way to programmatically open prefpane? Max Howell 2009-11-18T20:20:40Z 2009-11-18T20:20:40Z Indeed: <code>[[NSWorkspace sharedWorkspace] openFile:@&quot;/Path/To/Foo.prefPane&quot;];</code> http://stackoverflow.com/questions/1751867/easiest-way-to-format-a-number-with-thousand-separators-to-an-nsstring-according/1751905#1751905 Comment by Max Howell on Easiest way to format a number with thousand separators to an NSString according to the Locale Max Howell 2009-11-18T00:52:22Z 2009-11-18T00:52:22Z I can't get this to work. Even using setHasThousandSeparators:YES changes nothing — no thousand separators. http://stackoverflow.com/questions/1751867/easiest-way-to-format-a-number-with-thousand-separators-to-an-nsstring-according/1751905#1751905 Comment by Max Howell on Easiest way to format a number with thousand separators to an NSString according to the Locale Max Howell 2009-11-17T21:34:04Z 2009-11-17T21:34:04Z So the absolute easiest way to do this is <code>[NSString stringWithFormat:@&quot;%d doodads&quot;, [[[NSNumberFormatter alloc] autorelease] stringFromNumber:n]]];</code>? As that is more verbose than I hoped. http://stackoverflow.com/questions/333508/can-gem-install-be-configured-to-install-executables-outside-usr-bin-by-defau/333639#333639 Comment by Max Howell on Can "gem install" be configured to install executables outside /usr/bin/ by default? Max Howell 2009-10-22T15:01:24Z 2009-10-22T15:01:24Z This is really annoying. There is no way to change this because it depends on the global constant. And if you do change it everytime rubygems is updated you have to change it again. I'd like to shoot the guy responsible for this appalling decision. http://stackoverflow.com/questions/405770/why-are-compilers-so-stupid/405820#405820 Comment by Max Howell on Why are compilers so stupid? Max Howell 2009-10-10T22:29:45Z 2009-10-10T22:29:45Z If you don't want optimisation, don't use optimisation flags. You clearly don't want optimisation if you are relying on loops that do nothing but are there to take up time. The optimisation compiler is <i>meant</i> to speed things up while keeping the functional aspects of the code the same. This is also what 99% of people want. For some reason you want compilers to be designed for your 1% use-case. http://stackoverflow.com/questions/9589/any-good-tool-for-makefile-generation/9595#9595 Comment by Max Howell on any good tool for makefile generation? Max Howell 2009-10-08T15:52:58Z 2009-10-08T15:52:58Z I don't much like cmake, my reasons are many, but the worst IMO is it forces your users to install cmake before they can build your project. http://stackoverflow.com/questions/385539/are-there-good-reasons-not-to-exploit-bin-make-f-at-the-top-of-a-makefile-t/385557#385557 Comment by Max Howell on Are there good reasons not to exploit '#!/bin/make -f' at the top of a makefile to give an executable makefile? Max Howell 2009-10-08T15:51:47Z 2009-10-08T15:51:47Z If env isn't in that place then you're using a Linux that is inventing problems for itself. http://stackoverflow.com/questions/231229/how-to-generate-a-makefile-with-source-in-sub-directories-using-just-one-makefile/231251#231251 Comment by Max Howell on How to generate a Makefile with source in sub-directories using just one makefile. Max Howell 2009-10-07T17:29:44Z 2009-10-07T17:29:44Z It's done usually because people don't understand how to write Makefiles. One Makefile per directory sucks. http://stackoverflow.com/questions/238180/what-is-the-best-ui-youve-ever-used/238237#238237 Comment by Max Howell on What is the best UI you've ever used? Max Howell 2009-09-06T13:08:56Z 2009-09-06T13:08:56Z In my experience the people who disagree with this statement haven't actually used OS X for work. I did cross platform development and gave every OS (including Linux) at least 3 years of full time usage. In the end I switched to Mac. http://stackoverflow.com/questions/238180/what-is-the-best-ui-youve-ever-used/238192#238192 Comment by Max Howell on What is the best UI you've ever used? Max Howell 2009-09-06T13:07:05Z 2009-09-06T13:07:05Z LOL, it's so obvious that this is a site for programmers. http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/238320#238320 Comment by Max Howell on Worst UI You've Ever Used Max Howell 2009-09-06T13:04:33Z 2009-09-06T13:04:33Z The OS X equivalent of this does it right though. Editing is modal, and escape resets the form. http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/568142#568142 Comment by Max Howell on Worst UI You've Ever Used Max Howell 2009-09-06T13:00:13Z 2009-09-06T13:00:13Z All this and more! It is also slow and uses up all your RAM. http://stackoverflow.com/questions/1187139/oversized-qt-fonts-on-osx/1211505#1211505 Comment by Max Howell on Oversized Qt Fonts on OSX Max Howell 2009-09-02T10:39:55Z 2009-09-02T10:39:55Z You can set the Qt::MacSmallSize and Qt::MacMiniSize widget attributes to render those the standard Mac smaller sizes. http://stackoverflow.com/questions/1351395/ignore-sigpipe-for-a-single-popend-file/1351471#1351471 Comment by Max Howell on Ignore SIGPIPE for a single popen'd FILE* Max Howell 2009-08-29T17:14:12Z 2009-08-29T17:14:12Z So you can't get sigpipe for a socketpair? I can't find that information.