44,964 reputation
1881191
bio website musigenesis.com
location Philadelphia, PA
age
visits member for 4 years, 8 months
seen 9 hours ago
stats profile views 6,234

Recovering anthropologist, professional (as in "I get paid", not "I am better than all others") programmer since 19-ought-95. In my last job, despite my vigorous protests, I was given the actual title of "visionary". I will be trying to live this down for the rest of my life.

I do C#, software synthesis, animation, windows mobile and other stuff. The other stuff now includes: iPhone/iPad (Objective-C), Android, BlackBerry and Windows Phone 7.

If you live in Philly and play disc golf, we may know each other already.


1d
awarded  Popular Question
2d
comment Detect Zoomscale in UIWebView
Problem is that this will always return 1.0 except when the user is actually in the act of zooming in or out. So it's a value that really only gives the ratio of the current active zoom scale to the zoom scale that existed when the user first started the zoom.
May
17
asked How to change text of my app in “open in” dialog?
May
16
awarded  Notable Question
May
13
awarded  Notable Question
May
11
comment Setting inner shadow UIButton to create sense of depth
@JonathanThurft: then draw it with an emo haircut, or check out my answer below. :)
May
11
comment Setting inner shadow UIButton to create sense of depth
Try this person's method. It appears to draw the shadow on a secondary view and then drop it into the main view; this should work for your button as well.
May
10
comment Setting inner shadow UIButton to create sense of depth
Are you trying to create a button that appears concave instead of convex? I.e. buttons usually have a gradient effect that makes them appear to be slightly raised from the surface of the screen. Are you instead trying to make this button appear to be slightly depressed?
May
10
revised ‘invalid context 0x0’ error when using CGContext* functions
You actually can call drawRect, but nothing will happen
May
10
comment Problem with waveOutWrite and waveOutGetPosition deadlock
BTW, I've never heard any kind of stuttering like what you describe when using the wndProc approach. What's going on in your program and your system when this occurs?
May
10
comment Problem with waveOutWrite and waveOutGetPosition deadlock
... for more than an hour or two continuously before locking, and it would occasionally lock after just a few seconds or minutes. So make sure you do some really long-running tests so you know you have it.
May
10
comment Problem with waveOutWrite and waveOutGetPosition deadlock
You may want to test that solution very heavily and make sure it's working 100%. In my real application, the work that required the call to waveOutGetPosition was done on a separate thread. It worked pretty well, but it would still occasionally deadlock - much less frequently than in the demo app that I posted here, but often enough to greatly concern me still. In my current version using the wndProc approach, the playback engine is 100% reliable; I have left it running for days at a time and I have not seen a single instance of the deadlock. But using the callback it would rarely run ...
May
8
comment How do I concatenate strings together in Objective-C?
@Logiwan992: stackoverflow.com/a/6781853/14606
May
7
answered How do I add a UIActivity Indicator to every Cell and maintain control of each individual indicator
May
6
awarded  Nice Answer
May
3
awarded  Popular Question
Apr
23
revised Handling Different Resolutions in Visual Studio 2008 for .NET CF
added 4 characters in body
Apr
23
comment Maximum Timer interval
@RenniePet: do you mean the constructor for Timer will throw an exception if the TimeSpan value is more than 49 days? Because a TimeSpan can hold a much longer interval than 49 days.
Apr
22
comment How to prevent Nuance's DragonMobile from turning off VoiceOver?
@RyanB: DragonMobile is not geared for people with mobility issues; it's geared for anyone who wishes to talk instead of typing. Typing with VoiceOver is a monstrous PITA, and all of my VoiceOver testers prefer to use the DM speech recognition instead. So I definitely have a use case.
Apr
21
comment How to handle different orientations in iOS 6
shouldAutorotateToInterfaceOrientation: is iOS 5 and earlier only.