Lawrence Johnston

3,623
reputation
281 views

Registered User

name Lawrence Johnston
member for 1 year
seen yesterday
website
location San Francisco Bay Area, California
age 23
I'm a San Francisco Bay Area programmer working in Objective-C/Cocoa and C#. I also dabble in Python.
Dec
7
revised How do I get NSTextFields to fully animation using Core Animation with a layer backs NSView
deleted 2 characters in body
Dec
7
asked How do I get NSTextFields to fully animation using Core Animation with a layer backs NSView
Dec
6
awarded  Mortarboard
Dec
4
comment Most Useful Attributes in C#
That's the one I meant, yes. Edited the url to reflect this.
Dec
4
revised Most Useful Attributes in C#
Changing back to the DefaultValue attribute I was originally thinking of.
Dec
3
comment Basic Java threading issue
Interesting point. I'll look into it.
Dec
3
comment Basic Java threading issue
@Joel No problem. Thanks for all your input on the subject.
Dec
3
comment Basic Java threading issue
@Joel totalFoos is barredFoos plus nonBarredFoos. barredFoos and nonBarredFoos only increment, never decrement. Therefore when the value of barredFoos changes, totalFoos must change as well. barredFoos + nonBarredFoos != (barredFoos + 1) + nonBarredFoos
Dec
3
comment Basic Java threading issue
@gab Yes. Ensuring that the two values that it has received correspond to each other is precisely the issue at hand. The reason I believe this is a threading issue it because it is definitely not guaranteed that they will correspond over several network calls (another thread could have changed the values in between the two methods executing), and it may not be guaranteed in the latter example that the methods will execute in order once JVM optimizations have been taken into account.
Dec
3
comment Basic Java threading issue
Will wrapping either the two network calls in synchronized methods or the method which calls the two methods really guarantee that the methods are called in order? As far as I'm aware they wont.
Dec
3
comment Basic Java threading issue
@Steve Emmerson Thank you, that was exactly the kind of thing I was concerned about. Is there anyway to insure that they do happen in the proper sequence?
Dec
3
comment Basic Java threading issue
Thanks for the input. In the actual implementation I am taking the possible infinite loop into account.
Dec
3
comment Basic Java threading issue
Unfortunately, this is a situation where the system maintaining the counters is not controlled by my company.
Dec
3
revised Basic Java threading issue
added 134 characters in body; added 1 characters in body
Dec
3
comment Basic Java threading issue
@RomainMuller thanks for the link. That's exactly the sort of thing I was referring to in my concerns about the latter sample above.
Dec
3
comment Basic Java threading issue
Exactly meriton. And I also have to have the result from both methods at what is essentially the same point in time (it doesn't matter precisely what point in time, just that it's the same for both variables). `totalFoo`s can't change before I access `barredFoo`s, otherwise the subtraction to find `nonBarredFoo`s will be thrown off.
Dec
3
asked Basic Java threading issue
Dec
3
asked “Overwrite Project Package” option in PackageMaker — What does it do?
Dec
1
comment SFAuthorizationView authorize: method does not work.
One thing to note is that if you just need to check to see if the user is authorized (not actually unlock the lock) you can use AuthorizationCopyRights([[authorizationView authorization] authorizationRef], [authorizationView authorizationRights], kAuthorizationEmptyEnvironment, kAuthorizationFlagDefaults | kAuthorizationFlagExtendRights | kAuthorizationFlagInteractionAllowed, NULL) which will prompt the user if needed.
Nov
25
awarded  Popular Question
Nov
20
awarded  Notable Question
Nov
18
awarded  Notable Question
Nov
13
revised How do you do a deep copy an object in .Net (C# specifically)?
Fixed code.
Nov
12
awarded  Nice Question
Nov
4
answered How do I reset the result for a property in a stub without resetting the entire stub?
Nov
2
revised How do I reset the result for a property in a stub without resetting the entire stub?
Adding test example
Nov
2
comment How do I reset the result for a property in a stub without resetting the entire stub?
Yes. That's exactly what I'm doing in the CreateBasicIFooLikeObjectStub() method. The issue is that in my test method I may want to call stub.Stub( x => x.FooLikeObject2).Return(null); in order to verify that an exception is thrown in that case. And that's when I get the InvalidOperationException detailed above. I'll edit the question to make this clear.
Nov
2
asked How do I reset the result for a property in a stub without resetting the entire stub?
Oct
30
comment RhinoMocks: Correct way to mock property getter
Just a note that that last example needs a _mocks.ReplayAll() before you do anything with the IUser stub.
Oct
28
asked Will I have any issues using a PPC Mac Mini as a build machine for a 10.5+ application while developing on Snow Leopard?
Oct
27
revised What is the best Battleship AI?
added 6 characters in body
Oct
17
awarded  Taxonomist
Oct
15
accepted iPhone app pricing model question?
Oct
14
comment Xcode script for generating/synthesizing properties
Yes, thanks for pointing that out.
Oct
14
revised Xcode script for generating/synthesizing properties
Fixed spelling.; edited body
Oct
14
awarded  Notable Question
Sep
25
answered How do I enforce a timeout on a webservice call using ksoap 2?
Sep
24
comment How do I enforce a timeout on a webservice call using ksoap 2?
Unfortunately this is not a phone but is instead a copier, which doesn't use the MIDP, and thus no Thread.interrupt().
Sep
24
asked How do I enforce a timeout on a webservice call using ksoap 2?
Sep
23
answered How to code a method, function or variable in Objective - C
Sep
17
comment How do I tell when a CUPS print jobs has been completed plus info about that job?
Excellent, thank you very much.
Sep
17
comment How do I tell when a CUPS print jobs has been completed plus info about that job?
I like this idea a lot. Any ideas on how I could tell when a job had been canceled using this route?
Sep
17
asked How do I tell when a CUPS print jobs has been completed plus info about that job?
Sep
11
asked Log file rollover when logging to file using Google toolbox for Mac
Sep
2
answered EXEC_BAD_ACCESS when using NSOperation
Aug
25
accepted Is there an Objective-C Wrapper for gSOAP?
Aug
25
answered Is there an Objective-C Wrapper for gSOAP?
Aug
25
asked Persisting items being uploaded via web service to disk
Aug
25
asked How do I link my executable to my test bundle when debugging test using otest?
Aug
17
comment What license do I need to use gSOAP in a commercial product?
Thanks Robert. We have purchased the commercial license for our product.