Max Howell

1,099
Reputation
210 views

Registered User

Name Max Howell
Member for 1 year
Seen 2 hours ago
Website
Location GB
Age 28
A C++ man working at http://www.last.fm
Nov
26
accepted Easiest way to format a number with thousand separators to an NSString according to the Locale
Nov
18
comment Fastest way to programmatically open prefpane?
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.
Nov
18
comment Fastest way to programmatically open prefpane?
Indeed: [[NSWorkspace sharedWorkspace] openFile:@"/Path/To/Foo.prefPane"];
Nov
18
answered Easiest way to format a number with thousand separators to an NSString according to the Locale
Nov
18
comment Easiest way to format a number with thousand separators to an NSString according to the Locale
I can't get this to work. Even using setHasThousandSeparators:YES changes nothing — no thousand separators.
Nov
18
revised Git tool to remove lines from staging if they consist only of changes in whitespace
added 9 characters in body
Nov
17
comment Easiest way to format a number with thousand separators to an NSString according to the Locale
So the absolute easiest way to do this is [NSString stringWithFormat:@"%d doodads", [[[NSNumberFormatter alloc] autorelease] stringFromNumber:n]]];? As that is more verbose than I hoped.
Nov
17
asked Easiest way to format a number with thousand separators to an NSString according to the Locale
Nov
17
asked Git tool to remove lines from staging if they consist only of changes in whitespace
Nov
7
asked Monitor filesystem activity of a child process on OS X with normal user privileges
Oct
22
comment Can “gem install” be configured to install executables outside /usr/bin/ by default?
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.
Oct
19
asked What is the origin of the UNIX $ (dollar) prompt?
Oct
10
comment Why are compilers so stupid?
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 meant 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.
Oct
8
comment any good tool for makefile generation?
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.
Oct
8
comment Are there good reasons not to exploit ‘#!/bin/make -f’ at the top of a makefile to give an executable makefile?
If env isn't in that place then you're using a Linux that is inventing problems for itself.
Oct
7
comment How to generate a Makefile with source in sub-directories using just one makefile.
It's done usually because people don't understand how to write Makefiles. One Makefile per directory sucks.
Sep
16
awarded  Yearling
Sep
6
comment What is the best UI you’ve ever used?
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.
Sep
6
comment What is the best UI you’ve ever used?
LOL, it's so obvious that this is a site for programmers.
Sep
6
comment Worst UI You’ve Ever Used
The OS X equivalent of this does it right though. Editing is modal, and escape resets the form.
Sep
6
comment Worst UI You’ve Ever Used
All this and more! It is also slow and uses up all your RAM.
Sep
2
comment Oversized Qt Fonts on OSX
You can set the Qt::MacSmallSize and Qt::MacMiniSize widget attributes to render those the standard Mac smaller sizes.
Aug
29
comment Ignore SIGPIPE for a single popen’d FILE*
So you can't get sigpipe for a socketpair? I can't find that information.
Aug
29
comment Ignore SIGPIPE for a single popen’d FILE*
I don't understand the first sentence, but will look up socketpair. Thanks.
Aug
29
asked Ignore SIGPIPE for a single popen’d FILE*
Aug
20
awarded  Popular Question
Aug
7
answered How to build qt out of source
Aug
4
asked Programmatically Activate NSMenuItem
Aug
3
comment Enums in Ruby
So the Ruby spirit is: "Typos will compile"
Jul
23
comment Keyboard for programmers
Adriano Varoli Piazza: Indeed, features like these exist. However, as a general rule I avoid unnecessary confusion and thus prefer it when the labels on the buttons match up with the symbols that appear on the screen.
Jul
23
answered QMake ‘subdirs’ template - executing a target?
Jul
14
awarded  Nice Answer
Jun
24
comment How do you make the Application window open when the dock icon is clicked?
It works if you hide the window but not if you close the window. Which I think is because Cocoa is releasing the window if you close it. But the obvious checkbox in IB doesn't help. I'm doing more research.
Jun
23
comment Creating method in implementation without defining in header
This is the correct answer.
Jun
23
awarded  Nice Question
Jun
20
answered possible flaws in ‘including *.c files’ style C programming
Jun
12
comment Keyboard for programmers
I had one and the function keys are membrane buttons and failed after 12 months :( I think I'm still under warranty. I should check.
Jun
11
awarded  Nice Answer