Mark Bessey

6,394
Reputation
404 views

Registered User

Name Mark Bessey
Member for 1 year
Seen 6 hours ago
Website
Location Silicon Valley
Age 89
17h
answered window.beforeunload called twice in Firefox - how to get around this?
22h
awarded  Nice Answer
23h
revised In JavaScript, why is [ ] preferred over new Array(); ?
added another example
23h
answered In JavaScript, why is [ ] preferred over new Array(); ?
1d
answered When should and shouldn’t you break away from OOP for speed/performance?
2d
awarded  Great Answer
Nov
23
answered Can I write custom assertions in CxxTest?
Nov
22
comment Best-case Running-time to solve an NP-Complete problem?
I didn't remember off-hand, so I looked it up on Wikipedia. Could be that I misread the article...
Nov
22
answered Function Pointers in Objective C
Nov
22
comment Function Pointers in Objective C
The second code snippet does provide a C-style function pointer, as requested. The details can be a little tricky, though.
Nov
22
answered Best-case Running-time to solve an NP-Complete problem?
Nov
22
answered Are there compiler flags to get malloc to return pointers above the 4G limit for 64bit testing (various platforms)?
Nov
22
answered Is there a C++ unit testing library that is similar to NUnit?
Nov
20
answered The right way to kill off near-dead hosted applications?
Nov
19
comment Get iPhone’s camera resolution?
This is probably the right way to do it. I assume you're referring to the cameraViewTransform property on UIImagePickerController?
Nov
19
answered System Architecture
Nov
19
answered accessing internal memory of the ARM from a user process on GNU/Linux
Nov
19
comment Creating a localized iPhone app but allowing the user to change language for the application.
It is a little odd to want to run one app in a different language than all the other apps. I wonder what the rationale is?
Nov
19
answered How to avoid debugger-only variables?
Nov
18
comment How to solve this mathematical problem?
Nominated for re-opening. It may not be a particularly difficult programming-related question, but it is programming-related.
Nov
17
answered Sorting alphabets & numerals
Nov
14
comment Sending struct over TCP (C-programming)
Not that it matters very much, but you should probably cast the structure to a void*, rather than a char *, since that's what send() is prototyped to take.
Nov
14
comment What are common Cocoa pitfalls?
This kind of thing is still all over in Cocoa, though. It's never a good idea to assume that any random NSArray you get from some other class is actually immutable.
Nov
14
comment What are five things you hate about your favorite language?
Blocks are in the latest version(but not on iPhone yet, I believe). Pretty nifty implementation, too.
Nov
13
accepted Reading ASCII File TAB is Replaced with NULL
Nov
13
answered Can I get around the launch timeout when running scripts from SpringBoard?
Nov
12
comment No symbol table in Go?
That's an excellent reference.
Nov
12
comment Accessing protected member functions from test code in C++
You'd probably want to combine this with Dependency Injection so you can replace the Foo in Blah with a test_Foo instance.
Nov
12
answered Accelerometer samplerate
Nov
12
answered Insertion Sort Code Challenge
Nov
11
answered A C++ derivative that is backwards-compatible with older C/C++ code?
Nov
10
comment floating value truncation java
I just checked this, and it does have the right behavior. I was pretty sure that casting to int performed truncation, rather than rounding.
Nov
10
comment floating value truncation java
It should do the right thing with negative numbers. That was kind of my point.
Nov
10
answered floating value truncation java
Nov
10
comment Java int division confusing me.
This is one of the most irritating features of C-based languages. I have never seen someone use an octal constant on purpose, but I've seen it cause problems multiple times.
Nov
10
comment how is read-only memory implemented in c?
"It depends". The only thing you can say for sure about a const int is that the compiler will produce a diagnostic message if you attempt to modify it. It might be stored in a read-only section, or it might never be stored at all, and directly encoded as a constant into the instructions that use it.
Nov
10
answered how is read-only memory implemented in c?
Nov
10
answered Are class variables included in the 7 +- 2 guideline?
Nov
10
revised Is there a way to improve the speed or efficiency of this lookup? (C/C++)
fixed formatting
Nov
10
revised Is there a way to improve the speed or efficiency of this lookup? (C/C++)
Added an example of how I'd do this.
Nov
9
comment Is there a way to improve the speed or efficiency of this lookup? (C/C++)
I know I've seen versions that accepted higher bases, as an extension. But it shouldn't be all that hard to write, anyway.
Nov
9
answered Is there a way to improve the speed or efficiency of this lookup? (C/C++)
Nov
9
comment Recommended reading material for getting started with webOS/Mojo SDK development?
+1 for Javascript - The Good Parts. Very popular around the Palm campus.
Nov
9
comment Initialize NSArray with floats?
I actually wrote this as a category originally, but figured it wasn't all that useful to add construction methods to NSArray.
Nov
6
comment SVN just won’t ignore a folder, despite propset svn:ignore
In most cases, it's probably easier to just "svn rm" the files, then re-generate them. It's generally a bad idea to copy folders around in your working copy, because the .svn info can confuse the client software. Ypu could take the script from stackoverflow.com/questions/414879/… and modify it to use tar instead of cp, removing the .svn folders with --exclude.
Nov
6
answered Building Interpreter Of a Document Format
Nov
6
comment SVN just won’t ignore a folder, despite propset svn:ignore
fixed my example.
Nov
6
revised SVN just won’t ignore a folder, despite propset svn:ignore
Duh. switched parameters
Nov
6
comment SVN just won’t ignore a folder, despite propset svn:ignore
Fair enough. That's what I get for answering questions from my iPhone...
Nov
6
answered SVN just won’t ignore a folder, despite propset svn:ignore