rustyshelf

3,550
Reputation
371 views

Registered User

Name rustyshelf
Member for 1 year
Seen 13 hours ago
Website
Location South Australia
Age 29
Java, Objective-C, Rails developer...in roughly that order.
11h
accepted Can the server create and return GWT objects to the client?
19h
revised Can the server create and return GWT objects to the client?
added 299 characters in body; added 26 characters in body
19h
answered Can the server create and return GWT objects to the client?
1d
answered How do I compile a module without an EntryPoint?
Nov
25
asked Is there an easy way to make a horizontally paged UIScrollView wrap around?
Nov
20
awarded  Nice Answer
Nov
15
awarded  Tumbleweed
Nov
12
answered GWT web page complexity
Nov
9
accepted How much support does GWT have for Java layout managers?
Nov
8
asked Is there a way to leave previous messages up while pushing out badge updates?
Nov
5
awarded  Notable Question
Nov
2
awarded  Popular Question
Oct
30
comment Core Data backed UITableView with indexing
sectionNameKeyPath!??!?!??! How the heck did I miss that! Wow that works brilliant. I should have read the doco better before coding my own...have reverted to that and it's working sweetly. I'd give you +5000 if I could ;)
Oct
29
revised Biggest GWT Pitfalls?
added OOPHM note
Oct
26
answered Google web toolkit doesn’t work with CachedRowSet
Oct
26
comment Can GWT be made accessible for users with JavaScript disabled?
If your target demographic is IE6 with Javascript turned off then you might as well give up on GWT now, and go back to the wonderful world of server side validation and presentation. Say hi to the past for me, I certainly don't miss it ;)
Oct
26
comment What’s your most controversial programming opinion?
I didn't say people who code for fun make great drinking buddies, nor did I say you had to spend your life married to a computer. But it still stands that those that have a passion for programming, and take it home and tinker with it, will quickly excel those that don't. For the rest it is a job. Sure it can be optimised, but it's a job. To a real programmer it's a passionate obsession, not a 9-5 job ;)
Oct
26
comment What’s your most controversial programming opinion?
The question did ask for controversial. In reality neither is to me. Architects make rubbish architects. Some of you assume that the inverse is automatically true (that programmers make great architects) and it's not. What I'm saying is that Architects will always be lousy architects who need to stick to BA work and forget about the fancy notion that they know how to design something they don't work with day in and day out. Good programmers on the other hand can make great architects as long as they stay programmers (confused yet?) :)
Oct
22
answered Can GWT be made accessible for users with JavaScript disabled?
Oct
21
revised Core Data backed UITableView with indexing
added 236 characters in body
Oct
21
comment Core Data backed UITableView with indexing
I think I didn't make myself clear enough. I want my indexes to be just like the Contact app, the first letter of the persons first name.
Oct
21
asked Core Data backed UITableView with indexing
Oct
20
comment Core Data returns NSManagedObject instead of Concrete class, but only when using . accessor
That worked! I recreated them all from the model, added my custom code back in and BAM it was happy. Weird. I can't really see any obvious difference apart from the extra methods it generated that I didn't have...
Oct
19
comment Core Data returns NSManagedObject instead of Concrete class, but only when using . accessor
Thanks for the tip, I did try that on just the one entity, but I will do it to all of them and see if it makes any difference
Oct
19
comment Core Data returns NSManagedObject instead of Concrete class, but only when using . accessor
Nope I definitely have set all those, hence why it works if I fetch an object of that type directly from core data
Oct
18
comment Core Data returns NSManagedObject instead of Concrete class, but only when using . accessor
So it's a runtime error (not a compiler one), about NSManagedObject not responding to the name of my custom method. The same error you get when you don't specify the name of your class in the core data modeller.
Oct
16
asked Core Data returns NSManagedObject instead of Concrete class, but only when using . accessor
Oct
12
comment I want to make a “Web 2.0” application without using JavaScript directly. [Details Inside]
I'd recommend you try Stripes over Struts any day. Once you've worked with Stripes you'll realise that poking your eyes out is more fun than working with Struts. I also disagree that GWT has been ignored, with 2.0 and OOPHM (and now that Google Wave is written in it) it's on the up :)
Oct
12
answered I want to make a “Web 2.0” application without using JavaScript directly. [Details Inside]
Oct
6
comment Where does GWT’s Hosted Mode Jetty Run From?
I know, and that's what I'm doing, but I'd really like to know where this Jetty instance is run from, and where (if it has one) it's log file lives
Oct
6
revised Where does GWT’s Hosted Mode Jetty Run From?
added 121 characters in body
Oct
6
asked Where does GWT’s Hosted Mode Jetty Run From?
Oct
2
revised Biggest GWT Pitfalls?
fixed broken web link; deleted 45 characters in body
Sep
26
awarded  Great Answer
Sep
25
comment Please Teach my program to Talk
I appreciate what you're trying to do hear, but as your opening sentence says, this is not really a programming question, and SO is a question and answer site. Why not ask some people about what kind of algorithms work best for blah, or what they think of x over y?
Sep
20
revised NSSound on the iphone
missing * for pointer
Sep
13
awarded  Yearling
Sep
2
comment Trying to Write NSString sha1 function, but it’s returning null
Thanks for the tip, but that's all I need.
Sep
1
awarded  Popular Question
Aug
31
answered Trying to Write NSString sha1 function, but it’s returning null
Aug
31
comment Trying to Write NSString sha1 function, but it’s returning null
thanks, I'm new to most of this C business, but it looks fairly easy to follow
Aug
30
asked Trying to Write NSString sha1 function, but it’s returning null
Aug
27
comment Biggest GWT Pitfalls?
You can re-use JQuery just as much as you can re-use GWT, I don't think that's a valid argument. They both support inheritance, and then can both be packaged for reuse (.jar file for GWT, .js file for JQuery). I stand by what I said GWT is a sledgehammer, you have to code it in Java, you have to compile it, you have a whole lot more things to manage. If you want to break a brick wall though, you pick the sledgehammer. It's not a critiscm it's a valid point. The right tool for the right job.
Aug
26
awarded  Famous Question
Aug
24
comment Gwt application does not appear in IE7
what's complicated about turning on IE debugging and looking for javascript errors? If you don't want to do that then it's time to hang up the boots and look for a different job ;)
Aug
20
answered Gwt application does not appear in IE7
Aug
19
answered (GWT) java difference between boolean and Boolean
Aug
12
awarded  Enlightened
Aug
12
awarded  Nice Answer
Aug
3
comment Best Persistence API for use with GWT
No, I have a golden rule when working with JPA. When using lists in 99% of the cases children should link to their parents, and parents should not contain lists of their children. This is not just GWT related, if you have lists that contain lists that contain lists your JPA code will eventually die a horrible death. I know that they are all just pointers, but it will still fall over, trust me :) So to directly answer your question no, my code was designed so that it doesn't need trimming, no matter where it goes (GWT, Stripes, etc)