User rustyshelf - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T17:54:19Zhttp://stackoverflow.com/feeds/user/6044http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/143075/nsdateformatter-am-i-doing-something-wrong-or-is-this-a-bug3NSDateFormatter, am I doing something wrong or is this a bug?rustyshelf2008-09-27T05:41:52Z2009-12-09T04:41:01Z
<p>I'm trying to print out the date in a certain format:</p>
<pre><code>NSDate *today = [[NSDate alloc] init];
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"yyyyMMddHHmmss"];
NSString *dateStr = [dateFormatter stringFromDate:today];
</code></pre>
<p>If the iPhone is set to 24 hour time, this works fine, if on the other hand the user has set it to 24 hour time, then back to AM/PM (it works fine until you toggle this setting) then it appends the AM/PM on the end even though I didn't ask for it:</p>
<pre><code>20080927030337 PM
</code></pre>
<p>Am I doing something wrong or is this a bug with firmware 2.1?</p>
<p>Edit 1: Made description clearer</p>
<p>Edit 2 workaround: It turns out this is a bug, to fix it I set the AM and PM characters to "":</p>
<pre><code>[dateFormatter setAMSymbol:@""];
[dateFormatter setPMSymbol:@""];
</code></pre>
http://stackoverflow.com/questions/1830079/iphone-core-data-automatic-lightweight-migration/1864342#18643420Answer by rustyshelf for iPhone Core Data "Automatic Lightweight Migration"rustyshelf2009-12-08T03:17:21Z2009-12-08T03:17:21Z<p>Just a note for those that come across this Googling, it seems even with auto(magic) migration you still need to create a version of your original store, and a new one, and set the new one as the current version.</p>
http://stackoverflow.com/questions/1822215/gwt-hosted-mode-very-slow/1824302#18243021Answer by rustyshelf for GWT hosted mode very slowrustyshelf2009-12-01T06:10:08Z2009-12-01T06:10:08Z<p>Do yourself a favour, move to GWT 2.0 (currently in RC2) and take advantage of Out Of Process Hosted Mode (OOPHM), which lets you debug straight in the browser, and is lightning fast!</p>
<p><a href="http://code.google.com/p/google-web-toolkit/wiki/UsingOOPHM" rel="nofollow">http://code.google.com/p/google-web-toolkit/wiki/UsingOOPHM</a></p>
http://stackoverflow.com/questions/766475/anonymous-delegate-implementation-in-objective-c1Anonymous delegate implementation in Objective-C?rustyshelf2009-04-20T00:18:29Z2009-12-01T00:03:14Z
<p>Is it possible to declare anonymous implementations of things like Delegates in Objective-C. I think I have the terminology right, but here's a java example:</p>
<pre><code>myClass.addListener(new FancyInterfaceListener({
void onListenerInterestingAction(Action a){
....interesting stuff here
}
});
</code></pre>
<p>So for example to handle an UIActionSheet call I have to declare another method in the same class, which seems a bit silly if I want to pass it data, because I'd have to store that data as a global variable. Here's an example of deleting something with a confirmation dialog asking you if your sure:</p>
<pre><code>-(void)deleteItem:(int)indexToDelete{
UIActionSheet *confirm = [[UIActionSheet alloc] initWithTitle:@"Delete Item?" delegate:self cancelButtonTitle:@"Cancel" destructiveButtonTitle:@"Delete" otherButtonTitles:nil];
[confirm showInView:self.view];
[confirm release];
}
</code></pre>
<p>and the UIActionSheetDelegate in the same class:</p>
<pre><code>- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex{
if (buttonIndex == 0){
[[Settings sharedSettings] removeItemAtIndex:/*need index variable here*/];
[drinksTable reloadData];
}
}
</code></pre>
<p>What I want to be able to do is declare it inline, just like I did in the java example at the top. Is this possible?</p>
http://stackoverflow.com/questions/1811115/can-the-server-create-and-return-gwt-objects-to-the-client/1811392#18113921Answer by rustyshelf for Can the server create and return GWT objects to the client?rustyshelf2009-11-28T02:50:46Z2009-11-28T02:56:57Z<p>No the server can't create GWT UI objects (like vertical panels) to be used in the presentation layer, nor should it, that's why it's called a 'server' and a 'presentation layer' one serves the data and handles all the business logic, the other displays things on a screen and allows a user to interact with them.</p>
<p>You can however send your JPA annotated POJO's to the front end just fine (we do it in all our applications). You simply need to include the source code for the annotations themselves so that GWT knows how to compile them. You also need to make sure your POJOs's are in a package that is referenced by a NameOfXmlFile.gwt.xml file, eg:</p>
<pre><code><module>
<inherits name='com.google.gwt.user.User'/>
<source path="domain" />
</module>
</code></pre>
<p>This file in my case is in a folder above a package called 'domain' where all my JPA annotated POJO's live. Then in your client side you tell it to inherit that .gwt.xml file:</p>
<pre><code><module>
<inherits name='com.google.gwt.user.User'/>
<!-- Domain layer references -->
<inherits name='your.package.structure.NameOfXmlFile'/>
</module>
</code></pre>
<p>There are restrictions on what you can put in those classes (like for example BigDecimal is not supported, etc) but anything that can be compiled by the GWT compiler (and JPA annotations certainly can be) can be sent without needing any kind of transfer objects. This is one of the real strengths of GWT, that you can use the same JPA Pojos in your entire application, without ever needing to create any other similar object.</p>
<p><strong>Edit:</strong> I just noticed you said <strong>JDO</strong> and not <strong>JPA</strong>. I assume the same applies there as well though if they are just annotations?</p>
http://stackoverflow.com/questions/1808197/how-do-i-compile-a-module-without-an-entrypoint/1808597#18085971Answer by rustyshelf for How do I compile a module without an EntryPoint?rustyshelf2009-11-27T12:50:21Z2009-11-27T12:50:21Z<p>No you don't need an EntryPoint. Here is an example of one of my modules that doesn't have one:</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<module>
<source path="grid" />
<inherits name="com.google.gwt.user.User"/>
</module>
</code></pre>
<p>The short answer is you don't compile code in modules. GWT just needs them as source code. When you compile your main module (the one with the entry point) it uses the source from any other modules you have inherited in your .gwt.xml file to compile the entire project.</p>
http://stackoverflow.com/questions/506622/cgcontextdrawimage-draws-image-upside-down-when-passed-uiimage-cgimage4CGContextDrawImage draws image upside down when passed UIImage.CGImagerustyshelf2009-02-03T10:23:11Z2009-11-26T12:24:18Z
<p>Does anyone know why CGContextDrawImage would be drawing my image upside down? I am loading an image in from my application:</p>
<pre><code>UIImage *image = [UIImage imageNamed:@"testImage.png"];
</code></pre>
<p>And then simply asking core graphics to draw it to my context:</p>
<pre><code>CGContextDrawImage(context, CGRectMake(0, 0, 145, 15), image.CGImage);
</code></pre>
<p>It renders in the right place, and dimensions, but the image is upside down. I must be missing something really obvious here?</p>
http://stackoverflow.com/questions/1795086/is-there-an-easy-way-to-make-a-horizontally-paged-uiscrollview-wrap-around0Is there an easy way to make a horizontally paged UIScrollView wrap around?rustyshelf2009-11-25T06:48:25Z2009-11-25T06:48:25Z
<p>I notice that in the stocks application, the small graph wraps around, eg: when you get to the end of the scroll view and swipe right again, you go back to the beginning. Before I go ahead and code this myself is there an easy way to do this in the SDK? I can't find any properties or methods that would enable that?</p>
<p>I have a paged UIScrollView that scrolls horizontally, pretty much exactly like the stocks application one does.</p>
http://stackoverflow.com/questions/1696045/is-there-a-way-to-leave-previous-messages-up-while-pushing-out-badge-updates0Is there a way to leave previous messages up while pushing out badge updates?rustyshelf2009-11-08T11:06:22Z2009-11-19T18:45:21Z
<p>So imagine this scenario:</p>
<p>10.00: your app pushes a message "Hello"</p>
<p>10.01: your app pushes a badge update with no message out the same device</p>
<p>What happens is that the message dissappears. So if the user didn't see it, it's gone. Is there a way to send a badge notification without clearing any previous messages? I know you can send the message again, but I don't want to spam users who may have already ready the message.</p>
<p>I don't want to have a discussion about the why, simply if it's possible?</p>
http://stackoverflow.com/questions/166712/how-to-show-the-loading-indicator-in-the-top-status-bar6How to show the loading indicator in the top status barrustyshelf2008-10-03T13:00:50Z2009-11-17T18:51:08Z
<p>I have noticed that some apps like Safari and Mail show a loading indicator in the status bar (the bar at the very top of the phone) when they are accessing the network. Is there a way to do the same thing in SDK apps, or is this an Apple only thing?</p>
http://stackoverflow.com/questions/1599204/core-data-backed-uitableview-with-indexing1Core Data backed UITableView with indexingrustyshelf2009-10-21T07:11:42Z2009-11-17T07:54:28Z
<p>I am trying to implement a Core Data backed UITableView that supports indexing (eg: the characters that appear down the side, and the section headers that go with them). I have no problems at all implementing this without Core Data using:</p>
<pre><code>- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section;
- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView;
</code></pre>
<p>I also have no problem implementing a UITableView that is backed by Core Data without using the indexing.</p>
<p>What I am trying to figure out is how to elegantly combine the two? Obviously once you index and re-section content, you can no longer use the standard NSFetchedResultsController to retrieve things at a given index path. So I am storing my index letters in an NSArray and my indexed content in an NSDictionary. This all works fine for display, but I have some real headaches when it comes to adding and deleting rows, specifically how to properly implement these methods:</p>
<pre><code>- (void)controllerWillChangeContent:(NSFetchedResultsController *)controller;
- (void)controller:(NSFetchedResultsController *)controller didChangeObject:(id)anObject atIndexPath:(NSIndexPath *)indexPath forChangeType:(NSFetchedResultsChangeType)type newIndexPath:(NSIndexPath *)newIndexPath;
- (void)controller:(NSFetchedResultsController *)controller didChangeSection:(id <NSFetchedResultsSectionInfo>)sectionInfo atIndex:(NSUInteger)sectionIndex forChangeType:(NSFetchedResultsChangeType)type;
- (void)controllerDidChangeContent:(NSFetchedResultsController *)controller;
</code></pre>
<p>Because the index paths it's returning me have no correlation with the ones in core data. I got add working by simply rebuilding my index NSArray and NSDictionary when the user adds a row, but doing the same when they delete one crashes the whole application.</p>
<p>Is there a simple pattern/example I'm missing here to make all this work properly?</p>
<p>Edit: Just to clarify I know that the NSFetchedResultsController does this out of the box, but what I want is to replicate the functionality like the Contacts app, where the index is the first letter of the first name of the person.</p>
http://stackoverflow.com/questions/535120/is-if-variable-the-same-as-if-variable-nil-in-objective-c1Is if (variable) the same as if (variable != nil) in Objective-Crustyshelf2009-02-11T01:47:08Z2009-11-13T20:07:40Z
<p>I am getting a EXC_BAD_ACCESS (SIGBUS) on this line in my iPhone project:</p>
<pre><code>if (timeoutTimer) [timeoutTimer invalidate];
</code></pre>
<p>The thing that has me stumped is that I don't understand how that line could crash, since the if statement is meant to be checking for nil. Am I misunderstanding the way Objective-C works, or do line numbers in crash statements sometime have the wrong line in them?</p>
http://stackoverflow.com/questions/1722936/gwt-web-page-complexity/1725996#17259960Answer by rustyshelf for GWT web page complexityrustyshelf2009-11-12T22:58:23Z2009-11-12T22:58:23Z<p>You need to remember that you don't have to have multiple entry points to build discrete widgets. A single entry point can inject as many widgets as you want onto a given page. So all you need to worry about is how to split up your application based on how a user would use it.</p>
http://stackoverflow.com/questions/427180/how-to-create-a-guid-uuid-using-the-iphone-sdk3How to create a GUID/UUID using the iPhone SDKrustyshelf2009-01-09T05:45:16Z2009-11-08T06:25:57Z
<p>I want to be able to create a GUID/UUID on the iPhone but I can't see any way to do it. </p>
<p>The intention is to be able to create keys for distributed data, that are all unique. Do I need some third-party code or is there a built in way to do this in the SDK?</p>
<p>I have tried Googling it, but I could find anything.</p>
http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/408623#40862323Answer by rustyshelf for What's your most controversial programming opinion?rustyshelf2009-01-03T04:53:55Z2009-11-05T19:44:02Z<p><strong>The more process you put around programming, the worse the code becomes</strong></p>
<p>I have noticed something in my 8 or so years of programming, and it seems ridiculous. It's that the only way to get quality is to employ quality developers, and remove as much process and formality from them as you can. Unit testing, coding standards, code/peer reviews, etc only reduce quality, not increase it. It sounds crazy, because the opposite should be true (more unit testing should lead to better code, great coding standards should lead to more readable code, code reviews should improve the quality of code) but it's not.</p>
<p>I think it boils down to the fact we call it "Software Engineering" when really it's design and not engineering at all.</p>
<p><hr></p>
<p>Some numbers to substantiate this statement:</p>
<blockquote>
<p>From the Editor</p>
<p>IEEE Software, November/December 2001</p>
<h2><a href="http://www.stevemcconnell.com/ieeesoftware/eic14.htm" rel="nofollow">Quantifying Soft Factors</a></h2>
<p>by <em>Steve McConnell</em></p>
<p>...</p>
<p><strong>Limited Importance of Process Maturity</strong></p>
<p>...
In comparing medium-size projects
(100,000 lines of code), the one with
the worst process will require 1.43
times as much effort as the one with
the best process, all other things
being equal. In other words, <strong>the
maximum influence of process maturity
on a project’s productivity is 1.43</strong>. ...</p>
<p>... What Clark doesn’t emphasize is that
for a program of 100,000 lines of
code, several human-oriented factors
influence productivity more than
process does. ...</p>
<p>... The seniority-oriented factors alone
(AEXP, LTEX, PEXP) exert an influence
of 3.02. <strong>The seven
personnel-oriented factors
collectively</strong> (ACAP, AEXP, LTEX,
PCAP, PCON, PEXP, and SITE <strong>§</strong>) <strong>exert a
staggering influence range of 25.8!</strong>
This simple fact accounts for much of
the reason that non-process-oriented
organizations such as Microsoft,
Amazon.com, and other entrepreneurial
powerhouses can experience
industry-leading productivity while
seemingly shortchanging process. ...</p>
<p><strong>The Bottom Line</strong></p>
<p>... It turns out that trading process
sophistication for staff continuity,
business domain experience, private
offices, and other human-oriented
factors is a sound economic tradeoff.
Of course, the best organizations
achieve high motivation and process
sophistication at the same time, and
that is the key challenge for any
leading software organization.</p>
</blockquote>
<p><strong>§</strong> Read the article for an explanation of these acronyms.</p>
http://stackoverflow.com/questions/99866/biggest-gwt-pitfalls/99977#9997759Answer by rustyshelf for Biggest GWT Pitfalls?rustyshelf2008-09-19T05:59:45Z2009-10-29T05:04:18Z<p>I'll start by saying that I'm a massive GWT fan, but yes there are many pitfalls, but most if not all we were able to overcome:</p>
<p><strong>Problem:</strong> Long compile times, as your project grows so does the amount of time it takes to compile it. I've heard of reports of 20 minute compiles, but mine are on average about 1 minute.</p>
<p><strong>Solution:</strong> Split your code into seperate modules, and tell ant to only build it when it's changed. Also while developing, you can massively speed up compile times by only building for one browser. You can do this by putting this into your .gwt.xml file:</p>
<pre><code><set-property name="user.agent" value="gecko1_8" />
</code></pre>
<p>Where gecko1_8 is Firefox 2+, ie6 is IE, etc.</p>
<p><hr /></p>
<p><strong>Problem:</strong> Hosted mode is very slow (on OS X at least) and does not come close to matching the 'live' changes you get when you edit things like JSPs or Rails pages and hit refresh in your browser.</p>
<p><strong>Solution:</strong> You can give the hosted mode more memory (I generally got for 512M) but it's still slow, I've found once you get good enough with GWT you stop using this. You make a large chunk of changes, then compile for just one browser (generally 20s worth of compile) and then just hit refresh in your browser.</p>
<p>New: If you have the flexibility, go with a milestone build of GWT 2.0, and use the new 'Development Mode'. It basically means you can run code directly in your browser of choice, so no loss of speed, plus you can firebug/inspect it, etc.</p>
<p><a href="http://code.google.com/p/google-web-toolkit/wiki/UsingOOPHM" rel="nofollow">http://code.google.com/p/google-web-toolkit/wiki/UsingOOPHM</a></p>
<p><hr /></p>
<p><strong>Problem:</strong> GWT code is java, and has a different mentality to laying out a HTML page, which makes taking a HTML design and turning it into GWT harder</p>
<p><strong>Solution:</strong> Again you get used to this, but unfortunately converting a HTML design to a GWT design is always going to be slower than doing something like converting a HTML design to a JSP page.</p>
<p><hr /></p>
<p><strong>Problem:</strong> GWT takes a bit of getting your head around, and is not yet mainstream. Meaning that most developers that join your team or maintain your code will have to learn it from scratch</p>
<p><strong>Solution:</strong> It remains to be seen if GWT will take off, but if you're a company in control of who you hire, then you can always choose people that either know GWT or want to learn it.</p>
<p><hr /></p>
<p><strong>Problem:</strong> GWT is a sledgehammer compared to something like jquery or just plain javascript. It takes a lot more setup to get it happening than just including a JS file.</p>
<p><strong>Solution:</strong> Use libraries like jquery for smaller, simple tasks that are suited to those. Use GWT when you want to build something truly complex in AJAX, or where you need to pass your data back and forth via the RPC mechanism.</p>
<p><hr /></p>
<p><strong>Problem:</strong> Sometimes in order to populate your GWT page, you need to make a server call when the page first loads. It can be annoying for the user to sit there and watch a loading symbol while you fetch the data you need.</p>
<p><strong>Solution:</strong> In the case of a JSP page, your page was already rendered by the server before becoming HTML, so you can actually make all your GWT calls then, and pre-load them onto the page, for an instant load. See here for details:</p>
<p><a href="http://wiki.retail-box.com/index.php/GWT#Speed%5Fup%5FPage%5FLoading.2C%5Fby%5Fpre-serializing%5Fyour%5FGWT%5Fcalls" rel="nofollow">Speed up Page Loading by pre-serializing your GWT calls</a></p>
<p><hr /></p>
<p>I've never had any problems CSS styling my widgets, out of the box, custom or otherwise, so I don't know what you mean by that being a pitfall?</p>
<p>As for performance, I've always found that once compiled GWT code is fast, and AJAX calls are nearly always smaller than doing a whole page refresh, but that's not really unique to GWT, though the native RPC packets that you get if you use a JAVA back end are pretty compact.</p>
http://stackoverflow.com/questions/253247/how-to-pause-a-uiimageview-animation0How to pause a UIImageView animationrustyshelf2008-10-31T11:49:19Z2009-10-27T03:06:57Z
<p>I have an animation that I'm displaying using a UIImageView:</p>
<pre><code>imageView.animationImages = myImages;
imageView.animationDuration = 3;
[imageView startAnimating];
</code></pre>
<p>I know I can stop it using stopAnimating, but what I want is to be able to pause it. The reason is that when you call stop, none of your animation images are displayed, whereas I would like the last one that is up at the time when I hit a button to stay up.</p>
<p>I have tried setting the duration to a much larger number, but that causes all the images to disappear as well. There must be a really basic way to do this?</p>
http://stackoverflow.com/questions/1591730/google-web-toolkit-doesnt-work-with-cachedrowset/1624786#16247860Answer by rustyshelf for Google web toolkit doesn't work with CachedRowSetrustyshelf2009-10-26T13:27:54Z2009-10-26T13:27:54Z<p>You need to realise that even though you are writing GWT in Java, it's actually been compiled into Javascript. Now sit down and have a think about how on earth javascript running in someone's browser is going to close your connections back on your server. Your intention seems to be lazy loading on the client side, and that is just not going to happen. Once you get over this mental hurdle, things will flow a lot more smoothly :)</p>
<p>If you want to use GWT you need to re-think your approach. You need to remember that all your data is disconnected from your server once it's used in GWT code, and runs as javascript once compiled. So yes, you need to move your data into appropriate POJOs and pass those to the client instead. Don't go crazy and try to transfer your entire database to your client, simple extract the parts you need...</p>
http://stackoverflow.com/questions/1608840/can-gwt-be-made-accessible-for-users-with-javascript-disabled/1610553#16105531Answer by rustyshelf for Can GWT be made accessible for users with JavaScript disabled?rustyshelf2009-10-22T23:17:36Z2009-10-22T23:17:36Z<p><strong>Q:</strong> Can an entirely javascript based framework work with javascript turned off?<br/>
<strong>A: No</strong></p>
<p>You could of course detect whether javascript is enabled and build an entirely different site for those users, but why bother? Tell them to turn javascript on if they want to use your site. Let's face it 30% of the internet is broken without javascript, and turning it off is very rare these days. That's 90's thinking that is ;)</p>
http://stackoverflow.com/questions/1576241/core-data-returns-nsmanagedobject-instead-of-concrete-class-but-only-when-using1Core Data returns NSManagedObject instead of Concrete class, but only when using . accessorrustyshelf2009-10-16T05:32:30Z2009-10-19T02:27:22Z
<p>I have set up a Core Data model where I have two objects, say Person and Address. A person has an address, and an address can belong to many people. I have modelled it in core data as such (so the double arrow points to Person, while the single arrow goes to Address)</p>
<p>I have then created two classes for those objects, and implemented some custom methods in those classes. In the Core Data model I have entered the names of the classes into them.</p>
<p>If I fetch an Address from Core Data directly, it gives me the actual concrete class and I can call my custom methods on it. </p>
<p>If on the other hand I fetch a Person and try to access the Address through Person (eg: person.address) I get back an NSManagedObject that is an address (eg: I can get to all the core data attributes I've set on it) but it doesn't respond to my custom methods, because it's of type NSManagedObject instead of Address. Is this a limitation of Core Data or am I doing something wrong? If it is a limitation are there any work arounds?</p>
http://stackoverflow.com/questions/160890/generating-random-numbers-in-objective-c10Generating Random Numbers in Objective-Crustyshelf2008-10-02T04:35:21Z2009-10-17T16:28:13Z
<p>I'm a java head mainly, and I want a way to generate a pseudo-random number between 0 and 74. In java I would use the method:</p>
<pre><code>Random.nextInt(74)
</code></pre>
<p>I'm not interested in a discussion about seeds or true randomness, just how you accomplish the same task in Objective-C. I've scoured The Google, and it just seems to be lots of different and conflicting bits of information.</p>
http://stackoverflow.com/questions/1556358/i-want-to-make-a-web-2-0-application-without-using-javascript-directly-detai/1557565#15575652Answer by rustyshelf for I want to make a "Web 2.0" application without using JavaScript directly. [Details Inside]rustyshelf2009-10-12T23:55:13Z2009-10-12T23:55:13Z<p>You can certainly develop an entire Web 2.0 project without coding Javascript using GWT (we have), but at the end of the day you still have to know HTML/CSS & Javascript.</p>
<p>This might sound like a stupid statement, but it's not once you consider that GWT is not a perfect abstraction, nor is it designed to be. It wasn't written in Java so that you didn't have to ever code in Javascript again, instead they did it because Java has better IDE's, is statically typed and makes maintenance a hell of a lot easier.</p>
<p>So yes, by all means go with GWT (and check out the new OOPHM, because it's AWESOME) but don't forget that you'll always need an understanding of the underlying frameworks of the web, if you want to develop for the web.</p>
http://stackoverflow.com/questions/1523084/where-does-gwts-hosted-mode-jetty-run-from0Where does GWT's Hosted Mode Jetty Run From?rustyshelf2009-10-06T00:34:11Z2009-10-06T01:51:14Z
<p>I'm trying to call a web service in my back end java code when it's
running in hosted mode. Everything loads fine, the GWT RPC call works
and I can see it on the server, then as soon as it tries to call an
external web service (using jax-ws) the jetty falls over with a
Internal Server Error (500). </p>
<p>I have cranked the log all the way up to
ALL but I still don't see any stack traces or cause for this error. I just get one line about the 500 Error with the request header and response.</p>
<p>Does anyone know if the internal jetty keeps a log file somewhere, or
how I can go about debugging what's wrong?</p>
<p>I'm running GWT 1.7 on OS X 10.6.1</p>
<p>Edit: I know that I can use the -noserver option, but I'm genuinely interested in finding out where this thing lives!</p>
http://stackoverflow.com/questions/316236/uiimage-imagenamed-vs-uiimage-imagewithdata3[UIImage imageNamed...] vs [UIImage imageWithData...]rustyshelf2008-11-25T02:53:28Z2009-09-30T18:24:15Z
<p>I want to load some images into my application from the file system. There's 2 easy ways to do this:</p>
<pre><code>[UIImage imageNamed:fullFileName]
</code></pre>
<p>or:</p>
<pre><code>NSString *fileLocation = [[NSBundle mainBundle] pathForResource:fileName ofType:extension];
NSData *imageData = [NSData dataWithContentsOfFile:fileLocation];
[UIImage imageWithData:imageData];
</code></pre>
<p>I prefer the first one because it's a lot less code, but I have seen some people saying that the image is cached and that this method uses more memory? Since I don't trust people on most other forums, I thought I'd ask the question here, is there any practical difference, and if so which one is 'better'?</p>
<p>I have tried profiling my app using the Object Allocation instrument, and I can't see any practical difference, though I have only tried in the simulator, and not on an iPhone itself.</p>
http://stackoverflow.com/questions/1353771/trying-to-write-nsstring-sha1-function-but-its-returning-null0Trying to Write NSString sha1 function, but it's returning nullrustyshelf2009-08-30T12:25:35Z2009-09-29T14:31:49Z
<p>I have the following Objective-C function:</p>
<pre><code>+(NSString *)stringToSha1:(NSString *)str{
NSMutableData *dataToHash = [[NSMutableData alloc] init];
[dataToHash appendData:[str dataUsingEncoding:NSUTF8StringEncoding]];
unsigned char hashBytes[CC_SHA1_DIGEST_LENGTH];
CC_SHA1([dataToHash bytes], [dataToHash length], hashBytes);
NSData *encodedData = [NSData dataWithBytes:hashBytes length:CC_SHA1_DIGEST_LENGTH];
[dataToHash release];
NSString *encodedStr = [NSString stringWithUTF8String:[encodedData bytes]];
//NSString *encodedStr = [[NSString alloc] initWithBytes:[encodedData bytes]
// length:[encodedData length] encoding: NSUTF8StringEncoding];
NSLog(@"String is %@", encodedStr);
return encodedStr;
}
</code></pre>
<p>What I'm trying to do is take an NSString and SHA1 encode it. That part seems to be working, I think where I am falling over is in how to convert the NSData object back to a legible string. If I use UTF8 encoding I get blank, if I say ASCII I get weird characters. What I really want is the hex string, but I have no idea how to get it. This is using the iPhone 3.0 SDK.</p>
<p>At the moment any String I pass in comes back out NULL.</p>
http://stackoverflow.com/questions/368014/awake-from-sleep-event-on-the-iphone4Awake from sleep event on the iPhone?rustyshelf2008-12-15T10:57:59Z2009-09-29T05:46:51Z
<p>Is there any way to detect if the iPhone wakes up from sleep while you're app is running? Eg: your app is running, the user locks the screen (or the screen auto locks) and some time later the user unlocks the screen and up pops your app. Is there some way to get an event at that point or detect it somehow? </p>
<p>I've tried searching the Google and this forum, but I can't seem to find anything about it.</p>
http://stackoverflow.com/questions/388192/nssound-on-the-iphone/388498#3884988Answer by rustyshelf for NSSound on the iphonerustyshelf2008-12-23T09:37:51Z2009-09-20T13:31:56Z<p>the new AVFoundation class is the easiest way to play sound on the iPhone, though it is for firmware 2.2 only:</p>
<pre><code>AVAudioPlayer *audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:path] error:NULL];
[audioPlayer play];
</code></pre>
<p>you just need this import in the class that uses it:</p>
<pre><code>#import <AVFoundation/AVAudioPlayer.h>
</code></pre>
http://stackoverflow.com/questions/1353771/trying-to-write-nsstring-sha1-function-but-its-returning-null/1357297#13572970Answer by rustyshelf for Trying to Write NSString sha1 function, but it's returning nullrustyshelf2009-08-31T12:47:25Z2009-08-31T12:47:25Z<p>This is what I ended up with, the next step would be to convert it to be a Category of NSString instead of a static method in a helper class:</p>
<pre><code>+(NSString *)stringToSha1:(NSString *)str{
const char *s = [str cStringUsingEncoding:NSASCIIStringEncoding];
NSData *keyData = [NSData dataWithBytes:s length:strlen(s)];
// This is the destination
uint8_t digest[CC_SHA1_DIGEST_LENGTH] = {0};
// This one function does an unkeyed SHA1 hash of your hash data
CC_SHA1(keyData.bytes, keyData.length, digest);
// Now convert to NSData structure to make it usable again
NSData *out = [NSData dataWithBytes:digest length:CC_SHA1_DIGEST_LENGTH];
// description converts to hex but puts <> around it and spaces every 4 bytes
NSString *hash = [out description];
hash = [hash stringByReplacingOccurrencesOfString:@" " withString:@""];
hash = [hash stringByReplacingOccurrencesOfString:@"<" withString:@""];
hash = [hash stringByReplacingOccurrencesOfString:@">" withString:@""];
NSLog(@"Hash is %@ for string %@", hash, str);
return hash;
}
</code></pre>
http://stackoverflow.com/questions/1300704/gwt-application-does-not-appear-in-ie7/1303323#13033231Answer by rustyshelf for Gwt application does not appear in IE7rustyshelf2009-08-20T00:19:00Z2009-08-20T00:19:00Z<p>GWT is compatible with all the IE6, 7 & 8.</p>
<p>It's your code. You need to turn on debugging in IE (from the advanced menu from memory) and look for any javascript errors. It would probably also be helpful to compile your code in PRETTY mode instead of OBF(USCATED) so you can see where the error is.</p>
http://stackoverflow.com/questions/1295170/gwt-java-difference-between-boolean-and-boolean/1297229#12972291Answer by rustyshelf for (GWT) java difference between boolean and Booleanrustyshelf2009-08-19T00:08:31Z2009-08-19T00:08:31Z<p>It's fairly Simple and the same for GWT and Java:</p>
<ul>
<li>boolean can be yes or no</li>
<li>Boolean can be yes, no or NULL. </li>
</ul>
<p>So unless you need the NULL (like for example your loading the field from the database, and you want NULL to be different to false) then stick to boolean.</p>
http://stackoverflow.com/questions/1811115/can-the-server-create-and-return-gwt-objects-to-the-client/1811392#1811392Comment by rustyshelf on Can the server create and return GWT objects to the client?rustyshelf2009-12-06T23:22:23Z2009-12-06T23:22:23ZBytecode enhancements are irrelevant to GWT, it compiles from the source code, not the byte code. This may still cause you problems at run-time though if JDO depends on those hidden properties. Sounds like JPA is the cleaner way to go then?http://stackoverflow.com/questions/1811115/can-the-server-create-and-return-gwt-objects-to-the-client/1811392#1811392Comment by rustyshelf on Can the server create and return GWT objects to the client?rustyshelf2009-11-28T23:23:09Z2009-11-28T23:23:09ZThe general approach we take to images is to store their file URLs on the back end and store the actual images on the filesystem, then when we send those POJO's to the client we convert the file URLs to http URLs that the client can display.
Another approach is to keep them in the database as a BLOB and provide a servlet that streams the BLOB back to the client as an image, and store the URL to the servlet for that BLOB in your POJO.http://stackoverflow.com/questions/1599204/core-data-backed-uitableview-with-indexing/1603428#1603428Comment by rustyshelf on Core Data backed UITableView with indexingrustyshelf2009-10-30T01:08:08Z2009-10-30T01:08:08ZsectionNameKeyPath!??!?!??! 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 ;)http://stackoverflow.com/questions/1608840/can-gwt-be-made-accessible-for-users-with-javascript-disabled/1610553#1610553Comment by rustyshelf on Can GWT be made accessible for users with JavaScript disabled?rustyshelf2009-10-26T13:02:03Z2009-10-26T13:02:03ZIf 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 ;)http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/408158#408158Comment by rustyshelf on What's your most controversial programming opinion?rustyshelf2009-10-26T12:57:11Z2009-10-26T12:57:11ZI 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 ;)http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/408171#408171Comment by rustyshelf on What's your most controversial programming opinion?rustyshelf2009-10-26T12:53:16Z2009-10-26T12:53:16ZThe 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?) :)http://stackoverflow.com/questions/1599204/core-data-backed-uitableview-with-indexing/1603428#1603428Comment by rustyshelf on Core Data backed UITableView with indexingrustyshelf2009-10-21T23:14:50Z2009-10-21T23:14:50ZI 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.http://stackoverflow.com/questions/1576241/core-data-returns-nsmanagedobject-instead-of-concrete-class-but-only-when-using/1586692#1586692Comment by rustyshelf on Core Data returns NSManagedObject instead of Concrete class, but only when using . accessorrustyshelf2009-10-20T01:08:52Z2009-10-20T01:08:52ZThat 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...http://stackoverflow.com/questions/1576241/core-data-returns-nsmanagedobject-instead-of-concrete-class-but-only-when-using/1586692#1586692Comment by rustyshelf on Core Data returns NSManagedObject instead of Concrete class, but only when using . accessorrustyshelf2009-10-19T10:19:06Z2009-10-19T10:19:06ZThanks 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 differencehttp://stackoverflow.com/questions/1576241/core-data-returns-nsmanagedobject-instead-of-concrete-class-but-only-when-using/1586712#1586712Comment by rustyshelf on Core Data returns NSManagedObject instead of Concrete class, but only when using . accessorrustyshelf2009-10-19T10:18:28Z2009-10-19T10:18:28ZNope I definitely have set all those, hence why it works if I fetch an object of that type directly from core datahttp://stackoverflow.com/questions/1576241/core-data-returns-nsmanagedobject-instead-of-concrete-class-but-only-when-usingComment by rustyshelf on Core Data returns NSManagedObject instead of Concrete class, but only when using . accessorrustyshelf2009-10-18T12:18:59Z2009-10-18T12:18:59ZSo 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.http://stackoverflow.com/questions/1556358/i-want-to-make-a-web-2-0-application-without-using-javascript-directly-detai/1557556#1557556Comment by rustyshelf on I want to make a "Web 2.0" application without using JavaScript directly. [Details Inside]rustyshelf2009-10-12T23:57:03Z2009-10-12T23:57:03ZI'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 :)http://stackoverflow.com/questions/1523084/where-does-gwts-hosted-mode-jetty-run-from/1523113#1523113Comment by rustyshelf on Where does GWT's Hosted Mode Jetty Run From?rustyshelf2009-10-06T01:15:30Z2009-10-06T01:15:30ZI 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 liveshttp://stackoverflow.com/questions/1475486/please-teach-my-program-to-talkComment by rustyshelf on Please Teach my program to Talkrustyshelf2009-09-25T09:39:40Z2009-09-25T09:39:40ZI 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?http://stackoverflow.com/questions/1353771/trying-to-write-nsstring-sha1-function-but-its-returning-null/1357297#1357297Comment by rustyshelf on Trying to Write NSString sha1 function, but it's returning nullrustyshelf2009-09-02T03:07:30Z2009-09-02T03:07:30ZThanks for the tip, but that's all I need.