User frankodwyer - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T15:52:32Zhttp://stackoverflow.com/feeds/user/42404http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1451888/how-do-web-applications-post-facebook-news-feed-items-and-notifications-without-t0How do web applications post Facebook news feed items and notifications without the user being active in the FB app?frankodwyer2009-09-20T20:06:45Z2009-11-05T02:04:38Z
<p>I have an existing Rails web application which I would like to integrate with Facebook, so that when the user takes actions in my application news items containing external links are later posted to the users wall / feed by a daemon which summarises the latest activity. I don't need single signon etc. at present, just the ability to send updates.</p>
<p>I would also like to be able to send notifications to the user's friends if they are also using the app, but I'd be happy with just the news feed functionality.</p>
<p>I'm working off the pragmatic programmer's book Facebook Platform Development by Michael Mangino, which uses the facebooker plugin, and early on the book says this:</p>
<blockquote>
<p>Facebook uses sessions to verify that
our application is performing actions
on behalf of an active user. When we
want to send a notification on behalf
of our user, we will provide Facebook
with that user’s session information.
Facebook will verify that the session
does in fact belong to the requesting
user and will also verify that the
user has been active on our
application within the past hour.
Facebook uses the session to prevent
applications from taking action on
behalf of a user who isn’t actively
using them</p>
</blockquote>
<p>What counts as 'being active in the application' and what does it mean in this context? I have seen other apps that do things like automatically publish RSS feeds to a user's profile so it does seem to be possible to have similar apps where the only interaction is a one-off install and configure. </p>
<p>How do these apps work and is it possible to get at this functionality from facebooker? </p>
http://stackoverflow.com/questions/1031930/how-is-a-rounded-rect-view-with-transparency-done-on-iphone4How is a rounded rect view with transparency done on iphone?frankodwyer2009-06-23T11:15:17Z2009-10-30T17:58:57Z
<p>A lot of apps pop up a transparent view with rounded corners and an activityIndicator when running a time consuming operation.</p>
<p>How is this rounding done and is it possible to do it just using Interface Builder (as there are lots of places I'd like to use something like this)? Or, should I use an imageview with a rounded rect or stretchable image? Do I need to draw the background myself?</p>
<p>So far, I have managed to get a basic view with similar transparency by setting the alphaValue in Interface Builder however it doesn't have rounded corners, and also the transparency seems to apply to all subviews (I don't want the text and activityindicator to be transparent, however even though I set the alphaValue on those in IB it seems to get ignored).</p>
http://stackoverflow.com/questions/1037021/can-uiviewanimationtransitioncurldown-work-on-a-view-containing-an-image-with-tra0Can UIViewAnimationTransitionCurlDown work on a view containing an image with transparency?frankodwyer2009-06-24T08:10:09Z2009-10-01T04:40:22Z
<p>I am trying to animate a piece of text being pasted on to a view as a post-it note. I have a view with a yellow background, which contains a text view and a close button, initially set to be hidden. I animate it onto the main view like this:</p>
<pre><code>[UIView setAnimationTransition:UIViewAnimationTransitionCurlDown forView:postitView cache:NO];
postitView.hidden=NO;
CGRect frame = postitView.frame;
frame.size.height=40;
postitView.frame=frame;
frame.size.height=265;
postitView.frame=frame;
cancelButton.hidden=NO;
[description flashScrollIndicators];
</code></pre>
<p>This seems to work and looks very close to what I want, however the note itself is not very realistic, though the animation helps the illusion that it's a postit. If I try to make the postit note look a bit more realistic by using a background image of a note instead of a yellow background to the view, the shadows look wrong during the animation. In this case it still uses a square shadow related to the view size, rather than a shadow related to the shape of the background image. Is there something else I need to do to make CoreAnimation do the right thing with a background image?</p>
<p>Any ideas for how to make this look more realistic? Failing being able to use a background image, I'd like to add a shadow to the bottom edge of the note view to make it look like it curls up a little when the animation is over - is this possible?</p>
<p>Some other things I've noticed/tried: I had to animate the frame size as in the code above to make any kind of reasonable animation happen, which feels wrong even though it looks roughly right. The approach I've seen to transitions in examples is something like this:</p>
<pre><code>[emptyView removeFromSuperview];
[self.view addSubview:postitView];
</code></pre>
<p>But when I try variations on that, it doesn't work at all for me (animations happen but look totally wrong). </p>
<p>I've also tried variations on this to fake the note being pasted at a slight random angle, but again the shadows/animation look wrong when doing this (it's also a bit pixellated):</p>
<pre><code>float angle = (random()/(float)RAND_MAX*4.0f-2.0f)*(M_PI/180.0f);
postitView.layer.transform = CATransform3DMakeRotation(angle, 0, 0.0, 1.0);
</code></pre>
http://stackoverflow.com/questions/1483847/how-can-cachesaction-be-configured-to-work-for-multiple-formats0How can caches_action be configured to work for multiple formats?frankodwyer2009-09-27T16:13:05Z2009-09-27T16:46:27Z
<p>I have a rails action which responds to requests in various formats including AJAX requests, for example:</p>
<pre><code> def index
# do stuff
respond_to do |format|
format.html do
# index.html.erb
end
format.js do
render :update do |page|
page.replace_html 'userlist', :partial => "userlist", :object=>@users
page.hide('spinner')
page.show('pageresults')
end
end
end
end
</code></pre>
<p>I have set this action to cache using memcached using:</p>
<pre><code> caches_action :index, :expires_in=>1.hour, :cache_path => Proc.new { |c| "index/#{c.params[:page]}/#{c.request.format}" }
</code></pre>
<p>This pattern seems to work fine for caching the HTML result but not for the JS result. The JS part always works fine when it is not coming from the cache. However when there is a cache hit, the page does not update.</p>
<p>What could cause this and what is the fix?</p>
<p>Update: digging into this more it looks like requests from the cache get mime type 'text/html' instead of 'text/javascript'. However I'm not sure how to fix this - is it a quirk of memcached? (Rails 2.3.2)</p>
http://stackoverflow.com/questions/1446810/what-is-the-best-restful-way-to-pass-string-collections-as-parameters0What is the best RESTful way to pass string collections as parameters?frankodwyer2009-09-18T20:57:03Z2009-09-18T21:21:50Z
<p>I've got a rails application with RESTful-ish URLs where I need to pass in a collection of strings (tags), and I don't want to use the query string.</p>
<p>Currently I'm using a route similar to /controller/tagged/:tags/foo/:foo/bar/:bar.:format</p>
<p>This requires the 'tags' to be encoded which is a pain and error prone if you want to manually type the URL into something.</p>
<p>Other approaches like /controller/tagged/tag1/tag2/tag3/foo... are difficult in that they are ambiguous (it's not clear where the tags list ends and other parameters start).</p>
<p>How do other people approach this kind of thing and what is your solution for expressing it as a rails route?</p>
http://stackoverflow.com/questions/1409141/location-manager-error-kclerrordomain-error-0/1423719#14237190Answer by frankodwyer for Location Manager Error : (KCLErrorDomain error 0)frankodwyer2009-09-14T20:25:32Z2009-09-14T20:25:32Z<p>From the API docs:</p>
<blockquote>
<p>CLError</p>
<p>Error codes returned by the location
manager object.</p>
<p>typedef enum { kCLErrorLocationUnknown
= 0, kCLErrorDenied, kCLErrorNetwork, kCLErrorHeadingFailure } CLError;</p>
<p>Constants</p>
<p>kCLErrorLocationUnknown The location
manager was unable to obtain a
location value right now.Available in
iPhone OS 2.0 and later. Declared in
CLError.h.</p>
<p>kCLErrorDenied Access to the location
service was denied by the user.
Available in iPhone OS 2.0 and later.
Declared in CLError.h.</p>
<p>kCLErrorNetwork The network was
unavailable or a network error
occurred. Available in iPhone OS 3.0b
and later. Declared in CLError.h.</p>
<p>kCLErrorHeadingFailure The heading
could not be determined. Available in
iPhone OS 3.0 and later. Declared in
CLError.h.</p>
</blockquote>
<p>So this means the location could not be determined.</p>
<p>I would guess the most likely cause is that the location manager is using WiFi to triangulate the location, and the database doesn't cover the local networks. That apparently can be fixed by the user if they go <a href="http://www.skyhookwireless.com/howitworks/submit%5Fap.php" rel="nofollow">here</a>.</p>
<p>However as I noted I have also seen this occasionally as a transient error when running a location based program in a location where the WiFi location stuff normally works.</p>
<p>Lastly I guess it is possible to see this error if there is some kind of hardware failure.</p>
http://stackoverflow.com/questions/1338492/how-do-i-stop-rails-from-escaping-values-in-sql-for-a-particular-column0How do I stop rails from escaping values in SQL for a particular column? frankodwyer2009-08-27T02:01:29Z2009-09-12T21:02:31Z
<p>I'm trying to manually manage some geometry (spatial) columns in a rails model.</p>
<p>When updating the geometry column I do this in rails:</p>
<pre><code>self.geom="POINTFROMTEXT('POINT(#{lat},#{lng})')"
</code></pre>
<p>Which is the value I want to be in the SQL updates and so be evaluated by the database. However by the time this has been through the active record magic, it comes out as:</p>
<pre><code>INSERT INTO `places` (..., `geom`) VALUES(...,'POINTFROMTEXT(\'POINT(52.2531519,20.9778386)\')')
</code></pre>
<p>In other words, the quotes are escaped. This is fine for the other columns as it prevents sql-injection, but not for this. The values are guaranteed to be floats, and I want the update to look like:</p>
<pre><code>INSERT INTO `places` (..., `geom`) VALUES(...,'POINTFROMTEXT('POINT(52.2531519,20.9778386)')')
</code></pre>
<p>So is there a way to turn escaping off for a particular column? Or a better way to do this?</p>
<p>(I've tried using GeoRuby+spatial adapter, and spatial adaptor seems too buggy to me, plus I don't need all the functionality - hence trying to do it directly).</p>
http://stackoverflow.com/questions/789984/how-to-safely-shut-down-a-loading-uiwebview-in-viewwilldisappear7How to safely shut down a loading UIWebView in viewWillDisappear?frankodwyer2009-04-26T00:15:50Z2009-09-08T07:33:18Z
<p>I have a view containing a UIWebView which is loading a google map (so lots of javascript etc). The problem I have is that if the user hits the 'back' button on the nav bar before the web view has finished loading, it is not clear to me how to tidily tell the web view to stop loading and then release it, without getting messages sent to the deallocated instance. I'm also not sure that a web view likes its container view disappearing before it's done (but I've no choice if the user hits the back button before it's loaded).</p>
<p>In my viewWillDisappear handler I have this</p>
<pre><code>map.delegate=nil;
[self.map stopLoading];
</code></pre>
<p>this seems to handle most cases OK, as nil'ing the delegate stops it sending the didFailLoadWithError to my view controller. However if I release the web view in my view's dealloc method, sometimes (intermittently) I will still get a message sent to the deallocated instance, which seems to be related to the javascript running in the actual page, e.g.:</p>
<pre><code>-[UIWebView webView:runJavaScriptAlertPanelWithMessage:initiatedByFrame:]: message sent to deallocated instance 0x4469ee0
</code></pre>
<p>If I simply don't release the webview, then I don't get these messages though I guess I'm then leaking the webview.</p>
<p>If I don't send the 'stopLoading' message, and simply release the webview within viewWillDisappear, then I see messages like this:</p>
<pre><code>/SourceCache/WebCore/WebCore-351.9.42/wak/WKWindow.c:250 WKWindowIsSuspendedWindow: NULL window.
</code></pre>
<p>Possibly related, I sometimes (again totally intermittent) get an ugly heisenbug where clicking the back button on some other view's navbar will pop the title, but not the view. In other words I get left with the title of view n on the stack, but the view showing is still view n+1 (the result is you're trapped on this screen and cannot get back to the root view - you can go the other direction, i.e. push more views and pop back to the view that didn't pop corrrectly, just not to the root view. The only way out is to quit the app). At other times the same sequence of pushes and pops on the same views works fine.</p>
<p>This particular one is driving me nuts. I think it may be related to the view disappearing before the web view is loaded, i.e. in this case I suspect it may scribble on memory and confuse the view stack. Or, this could be completely unrelated and a bug somewhere else (i've never been able to reproduce it in debug build mode, it only happens with release build settings when I can't watch it with gdb :-). From my debug runs, I don't think I'm over-releasing anything. And I only seem to be able to trigger it if at some point I have hit the view that has the web view, and it doesn't happen immediately after that.</p>
http://stackoverflow.com/questions/1333984/is-mysql-using-my-index-or-not-and-can-the-performance-of-geokit-be-improved1Is mysql using my index or not, and can the performance of geokit be improved?frankodwyer2009-08-26T11:13:44Z2009-08-30T12:33:52Z
<p>I'm using geokit (acts_as_mappable) in a rails application, and the performance of radial or bounds searches degrades considerably when there is a large number of models (I've tried with 1-2million but the problem no doubt kicks in earlier than this). </p>
<p>Geokit does all its calculations based on lat and lng columns in the table (latitude and longitude). To improve performance geokit will typically add a bounding box 'where' clause, with the intent being to use a combined index on latitude and longitude to improve performance. However it is still incredibly slow with large numbers of models, and it seems to me that the bounding box clause should help a lot more than it does. </p>
<p>So my question is, is there a way to make mysql make better use of the combined lat/lng index or otherwise improve the performance of geokit sql queries? Or, can the combined index for lat/lng be made more helpful?</p>
<p>edit: I've got this working with rails now and written the solution up in more detail <a href="http://www.frankodwyer.com/blog/?p=355" rel="nofollow">here</a></p>
<p><strong>More Background</strong></p>
<p>For example, this query finds all places within 10 miles of a given point. (I've added .length just to determine how many results come back - there are nicer ways to say this in geokit, but I wanted to force a more typical SQL query).</p>
<pre><code>Place.find(:all,:origin=>latlng,:within=>10).length
</code></pre>
<p>It takes about 14s on a mac mini. Here is the explain plan</p>
<pre><code>mysql> explain SELECT *, (ACOS(least(1,COS(0.898529183781244)*COS(-0.0157233221653665)*COS(RADIANS(places.lat))*COS(RADIANS(places.lng))+ -> COS(0.898529183781244)*SIN(-0.0157233221653665)*COS(RADIANS(places.lat))*SIN(RADIANS(places.lng))+ -> SIN(0.898529183781244)*SIN(RADIANS(places.lat))))*3963.19)
-> AS distance FROM `places` WHERE (((places.lat>51.3373601471464 AND places.lat<51.6264998528536 AND places.lng>-1.13302245886176 AND places.lng<-0.668737541138245)) AND ( (ACOS(least(1,COS(0.898529183781244)*COS(-0.0157233221653665)*COS(RADIANS(places.lat))*COS(RADIANS(places.lng))+
-> COS(0.898529183781244)*SIN(-0.0157233221653665)*COS(RADIANS(places.lat))*SIN(RADIANS(places.lng))+
-> SIN(0.898529183781244)*SIN(RADIANS(places.lat))))*3963.19)
-> <= 10))
-> ;
+----+-------------+--------+-------+-----------------------------+-----------------------------+---------+------+-------+----------+-------------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | filtered | Extra |
+----+-------------+--------+-------+-----------------------------+-----------------------------+---------+------+-------+----------+-------------+
| 1 | SIMPLE | places | range | index_places_on_lat_and_lng | index_places_on_lat_and_lng | 10 | NULL | 87554 | 100.00 | Using where |
+----+-------------+--------+-------+-----------------------------+-----------------------------+---------+------+-------+----------+-------------+
</code></pre>
<p>So mysql is examining 87554 rows even though the number of places in the result is 1135 (and the number of places actually in the bounding box is just 1323).</p>
<p>These are the stats on the index (which is made with a rails migration *add_index :places, [:lat, :lng]*):</p>
<pre><code>| Table | Non_unique | Key_name | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment |
| places | 1 | index_places_on_lat_and_lng | 2 | lng | A | 1373712 | NULL | NULL | YES | BTREE | |
</code></pre>
<p>Nor does it seem to be related to the trig calculations, as doing a similar query for a bounding box results in a much simpler query but it performs similarly badly:</p>
<pre><code>Place.find(:all,:bounds=>GeoKit::Bounds.from_point_and_radius(latlng,10)).length
</code></pre>
<p>Gives a similar explain plan:</p>
<pre><code> mysql> explain SELECT * FROM `places` WHERE ((places.lat>51.3373601471464 AND places.lat<51.6264998528536 AND places.lng>-1.13302245886176 AND places.lng<-0.668737541138245)) ;
+----+-------------+--------+-------+-----------------------------+-----------------------------+---------+------+-------+----------+-------------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | filtered | Extra |
+----+-------------+--------+-------+-----------------------------+-----------------------------+---------+------+-------+----------+-------------+
| 1 | SIMPLE | places | range | index_places_on_lat_and_lng | index_places_on_lat_and_lng | 10 | NULL | 87554 | 100.00 | Using where |
+----+-------------+--------+-------+-----------------------------+-----------------------------+---------+------+-------+----------+-------------+
</code></pre>
http://stackoverflow.com/questions/1353387/the-last-20-in-ruby-on-rails/1353416#13534161Answer by frankodwyer for The last 20% in Ruby on Railsfrankodwyer2009-08-30T08:16:24Z2009-08-30T08:16:24Z<blockquote>
<p>Won't RoR conventions stand in my way?
Because not every database table must
be available for all users, and not
all users can edit all columns and/or
all rows, and the views must be
adapted to my site's look and feel,
etc.</p>
</blockquote>
<p>This is a bit of a non-sequitur. Rails is a framework that has been lifted from real world applications. Those applications had to deal with all those issues also, as well as others you may not have thought of yet. Generally, the conventions make life easier once you learn them.</p>
<p>Another point is that the conventions are merely conventions. You don't have to follow them. You do not even have to use RoR for everything, though I've yet to find a case where I didn't/couldn't, I do generally try to push as much into the DB or cache layers as possible.</p>
http://stackoverflow.com/questions/1347741/display-first-record-in-rails/1347832#13478321Answer by frankodwyer for Display first record in railsfrankodwyer2009-08-28T15:42:53Z2009-08-28T15:42:53Z<p>@post.comments.first will normally work. (@post should be set up in your controller method)</p>
<p>However it is good to realise that 'first' means first in the association, which is normally ordered by id. Since ids autoincrement, this happens to be the same as 'first added' or 'earliest comment'. But it doesn't have to be.</p>
<p>If your association for comments specified a different ordering, then first will use this, e.g. if your association looked like this:</p>
<pre><code>has_many :comments, :order=>'rating desc'
</code></pre>
<p>Then (assuming the 'rating' field is set up somehow to be some value that represents the average rating) post.comments.first would give you the highest rated comment, not the first to be added.</p>
<p>In that case, assuming your comments model has timestamps, then you'd need to do something like </p>
<pre><code>@post.comments.find(:first, :order=>'created_at asc')
</code></pre>
http://stackoverflow.com/questions/1330083/conditional-xslt-transformation-in-php/1336146#13361460Answer by frankodwyer for Conditional XSLT transformation in PHPfrankodwyer2009-08-26T16:54:02Z2009-08-26T17:10:35Z<p>My understanding is that XSL is turing complete so the answer to pretty much any 'is it possible?' question is going to be yes. The answer to 'are you going to like it?', maybe not so much :-)</p>
<p>A simple way to do it and keep it modular would to use <xsl:param> to pass in the control parameters, and <xsl:choose> to select the format you want to display, and then branch/delegate to specific templates or functions for each format.</p>
<p>Where your formats have things in common you can DRY it up by delegating those parts to their own templates or functions, reusing them in the higher level templates for the main formats. Divide and conquer basically.</p>
<p>edit: to be more specific about what I mean by delegating, I mean explicitly calling templates and parameterising them, e.g.:</p>
<pre><code> <xsl:call-template name="showcard">
<xsl:with-param name="kind" select="nokia"/>
</xsl:call-template>
</code></pre>
<p>With those templates in turn delegating to others, etc. You can also get a lot from value-of and apply-templates directing the flow to specific templates. Though your case is probably simpler, this may lead to more readable code.</p>
http://stackoverflow.com/questions/1045622/iui-way-to-display-invalid-password/1335354#13353542Answer by frankodwyer for IUI way to display invalid passwordfrankodwyer2009-08-26T14:58:11Z2009-08-26T14:58:11Z<p>A standard thing here is some kind of <a href="http://developer.apple.com/iphone/library/documentation/userexperience/conceptual/mobilehig/ModalViews/ModalViews.html" rel="nofollow">modal alert view</a>.</p>
<p>IUI presumably implements this already (tho I can't find it from a quick search) but here is how it <a href="http://video.google.com/videosearch?hl=en&client=safari&rls=en&q=iphone%20alert%20view&um=1&ie=UTF-8&sa=N&tab=wv#" rel="nofollow">looks</a> (skip to near the end of the video).</p>
<p>Basically a modal alert dialog but with some animation and a spotlight/shine effect. It is largely the animation that makes it feel 'iPhone'.</p>
http://stackoverflow.com/questions/547219/firefox-sslerrornocypheroverlap-error/1329039#13290390Answer by frankodwyer for Firefox "ssl_error_no_cypher_overlap" errorfrankodwyer2009-08-25T15:28:30Z2009-08-25T15:28:30Z<p>The first thing I would check is the config for mod_nss. It is the odd one out, for it is yours and there is none in the world like it :-) Whereas if there was some huge bug in Firefox or mod_nss itself, I guess you'd have found out about it by now in your google quest. The fact that you've fiddled with the config (e.g. disabling SSL3, and various other random tweaks), is also suspicious.</p>
<p>I'd back track to a very vanilla mod_nss config and see if that works. Then change things systematically towards your current config until you can reproduce the problem. By the sound of it the source of the error is somewhere in the cipher spec config of mod_nss and the related protocol negotiation stuff. So maybe you inadvertently changed something there when trying to turn off SSLv3 (incidentally, why disable SSL3? Normally people disable V2?).</p>
<p>One other thing to check is that you're on the latest mod_nss and it's not a known bug in that. The fact that it manages to start the session and then fails later is interesting - it suggests that maybe it is trying to renegotiate the session and failing to negotiate ciphers at that point. So it might be the symmetric ciphers. Or it could simply be an implementation bug in your version of mod_nss that somehow garbles the protocol.</p>
<p>One other idea, and this is a wild guess, is the browser is trying to resume a session which was negotiated with SSLv3 before you disabled it, and something breaks when trying to resume that session when V3 is turned off, or maybe mod_nss just doesn't implement it right.</p>
<p>The java/tomcat stuff seems like a red herring as unless I've misunderstood your description, none of that is involved in the SSL handshake/protocol. </p>
http://stackoverflow.com/questions/1318268/unix-web-development-server-for-virtual-machine-pc-in-windows/1318283#13182831Answer by frankodwyer for UNIX web development server for virtual machine PC in Windowsfrankodwyer2009-08-23T10:52:54Z2009-08-23T11:04:04Z<p>There are lots of prebuilt vmware images that you can use. You might also consider looking at something like Amazon EC2 for which there are lots of off the shelf images.</p>
<p>I would also suggest Ubuntu server as a base OS.</p>
<p>Incidentally there are other virtualisation options in case Virtual PC doesn't recognise those prebuilt image formats (I think those formats are more standardised and interoperable these days, but not sure)...e.g. there is vmware, and there is virtualbox.org</p>
http://stackoverflow.com/questions/1315761/server-certificate-untrusted-error-in-iphone-application/1316988#13169881Answer by frankodwyer for "Server certificate untrusted" error in iPhone applicationfrankodwyer2009-08-22T20:38:47Z2009-08-22T20:38:47Z<p>I have actually seen this with my own app which also uses a godaddy cert - and yes I have installed the intermediate certs on my server.</p>
<p>It's rare, but this can happen if the user goes onto a wifi hotspot which interjects its login page to the connection attempt. It's actually correct behaviour for SSL, and it's caused by the hotspot effectively doing a man-in-the-middle redirection for your URL.</p>
<p>They can fix it by first going into Safari and getting the connection working.</p>
<p>OS3.0 is supposed to do some automatic login to this kind of hotspot but in my experience it doesn't always work.</p>
<p>edit: to add, before I used SSL I used to detect this for plain http and put up an appropriate error message. It is probably advisable to catch this error in your app and put up a similar message 'you may be connected to a hotspot which requires you to login', etc. Now that you've reminded me, I need to do that in my own app.</p>
http://stackoverflow.com/questions/1310479/how-do-you-make-people-accept-code-review/1311290#13112902Answer by frankodwyer for How do you make people accept code review?frankodwyer2009-08-21T10:56:10Z2009-08-21T10:56:10Z<p>Don't always assume the problem is at their end. Maybe you're doing it wrong.</p>
<p>Find out why they don't like it and instead of automatically assuming that they are a 'bad programmer' firstly consider if they may have a point and that you may be a bad reviewer of code, or simply communicating badly. It's possible.</p>
<p>If your code review / style rules are not subjective, arbitrary or insane, then it will be easy to explain the rationale for them to any competent, professional programmer. If you can't, then maybe you need to rethink either what you are doing or how you are presenting it. </p>
<p>Otherwise, if the problem is with just one or two individuals, it is likely more of a deeper HR problem with those people and nothing to do with code review specifically, the code review thing is just a symptom of that bigger problem.</p>
http://stackoverflow.com/questions/1310862/what-is-your-entry-for-songsincode5What is your entry for #songsincode? [closed]frankodwyer2009-08-21T09:09:30Z2009-08-21T10:03:50Z
<p>A trending topic on twitter yesterday, and one of the funniest in a long time, was #songsincode. </p>
<p>I'm sure the combined might of SO can come up with some pretty good entries - so what's yours?</p>
http://stackoverflow.com/questions/1310862/what-is-your-entry-for-songsincode/1311046#13110460Answer by frankodwyer for What is your entry for #songsincode?frankodwyer2009-08-21T09:57:14Z2009-08-21T09:57:14Z<pre><code>class Money
def buy(x)
raise ArgumentError if x.class==Love
end
end
</code></pre>
http://stackoverflow.com/questions/1310862/what-is-your-entry-for-songsincode/1310970#13109700Answer by frankodwyer for What is your entry for #songsincode?frankodwyer2009-08-21T09:35:42Z2009-08-21T09:35:42Z<pre><code>man.location=nil
</code></pre>
<p>The Beatles</p>
http://stackoverflow.com/questions/1310862/what-is-your-entry-for-songsincode/1310868#13108681Answer by frankodwyer for What is your entry for #songsincode?frankodwyer2009-08-21T09:10:37Z2009-08-21T09:10:37Z<p>One of mine:</p>
<pre><code>def who
[:bomp,:bomp].insert(0,:the,:bomp)
self
end
</code></pre>
http://stackoverflow.com/questions/1078597/how-to-programmatically-replace-uitoolbar-items-built-in-ib0How to programmatically replace UIToolBar items built in IBfrankodwyer2009-07-03T09:34:45Z2009-08-18T18:05:22Z
<p>I have a toolbar with various image buttons, created in Interface Builder.</p>
<p>I'd like to be able to programmatically replace one of the buttons with an activity indicator when pressed, and then put back the original button but change its color from white to yellow when the activity completes.</p>
<p>Is this possible with an IB built toolbar or must I look at building the whole toolbar programmatically and custom views?</p>
http://stackoverflow.com/questions/1287898/what-advantages-does-sketching-a-user-interface-on-paper-have/1287936#12879362Answer by frankodwyer for What advantages does sketching a user interface on paper have?frankodwyer2009-08-17T13:22:47Z2009-08-17T13:22:47Z<p>I'd recommend balsamiq mockups over paper - similar purpose/result but faster and can be emailed.</p>
<p>And the reason to do it that way rather than in IB/dreamweaver is primarily to avoid customers thinking it is finished when you show it to them. But IMO it also aids creativity and experimentation since it is a lot easier to change around.</p>
http://stackoverflow.com/questions/1285635/good-online-resource-for-common-databases-open-databases/1285663#12856631Answer by frankodwyer for Good online resource for common databases / open databases?frankodwyer2009-08-16T23:47:20Z2009-08-16T23:47:20Z<p>geonames.org is a pretty good source of such data</p>
http://stackoverflow.com/questions/1249024/is-it-possible-to-make-cachesaction-work-for-a-rails-controller-method-accessed1Is it possible to make caches_action work for a rails controller method accessed via HTTP POST?frankodwyer2009-08-08T14:29:45Z2009-08-16T03:26:29Z
<p>I have a controller action which could benefit from caching. However, when I turn on action caching via the usual:</p>
<pre><code> caches_action :myaction, :expires_in=>15.minutes
</code></pre>
<p>...caching doesn't get invoked. It looks like this is because the action is invoked using an HTTP POST. For similar actions invoked using HTTP GET, caching works fine.</p>
<p>I realise using a POST for this action is probably not great style and breaks resource routing conventions - presumably this is also why the response isn't being cached, even though it could be. However for now I'm stuck with it as this is what the client currently does and I can't change it easily.</p>
<p>So, is there a way to force caching for this method even though it is accessed via POST?</p>
<p>edit: I should clarify perhaps that the POST has no side effects, so it is safe to cache the action. It really should have been a GET in the first place, it just isn't and can't easily be changed for now. Also it does not matter for this that browsers or proxies won't cache the response.</p>
http://stackoverflow.com/questions/1271325/is-it-possible-to-select-a-row-in-a-previous-uitableview/1271402#12714020Answer by frankodwyer for Is it possible to select a row in a **previous** UITableview frankodwyer2009-08-13T11:26:37Z2009-08-13T23:30:10Z<p>I am not sure I understand your problem exactly here. Can you show a bit more code? You have 3 view controllers, right? Are you using a standard navigation controller pattern with push/pop to get from one to the other? It looks like maybe you aren't since the buttons are in an odd layout.</p>
<p>If you are then pressing the back button can just pop view 3 and go back to view 2 naturally (it will still be there, so the video should still be playable) so I don't see why you need to mess with the table in view 1 in order to find that and make it show again. You should just be able to hook into viewWillAppear and do the same thing you did when coming from view 1.</p>
<p>And if you aren't using a standard navigation controller pattern then maybe this is the problem. From a UI perspective you probably should do that anyway - people will expect a standard back button in the title bar.</p>
<p>I am pretty sure your problem is soluble anyhow - you can always pass object references from one view to the other when creating them for example - but I don't think you need to resort to the method you have in mind. </p>
<p>edit: reading the additional detail I see you are indeed using push/pop. So you have a stack of views, and when one is popped it uncovers the one beneath it, right? It should therefore be possible to do what you want by implementing the viewWillAppear or viewDidAppear methods in your controller. When your final screen is popped, if I understand correctly it will uncover the view which is able to play the movie. Your viewcontroller will get the viewWillAppear / viewDidAppear messages in that case - by maintaining state and receiving those messages you can then implement logic to decide whether or not you need to play the movie. Rather than call the didSelectRow. method again you could perhaps put the movie play stuff in its own method so you can call from either viewDidAppear or didSelectRow...</p>
http://stackoverflow.com/questions/1268173/sort-items-with-minimal-renumber/1275135#12751351Answer by frankodwyer for Sort items with minimal renumberfrankodwyer2009-08-13T23:04:38Z2009-08-13T23:04:38Z<blockquote>
<p>I'd like to explore smarter ways, like making sortOrder floating point except I don't have that option</p>
</blockquote>
<p>If you find it easier to think of it in terms of floating point, why not imagine the number as fixed point.</p>
<p>e.g. for the purposes of your algorithm interpret 1000000 as 100.0000. You'll need to choose the point position so that there as many decimal (or binary) places as you can fit given (max number of items in your array+2) vs the integer size. So let's say the max number of entries is 998, you'd need 3 digits before the point, the rest would be available for 'gaps'.</p>
<p>A move operation then can be as simple as setting its new sortnumber to half the sum of the sortnumber of the items either side, i.e. slotting the moved item between its new neighbors. Use 0 and size(array)+1 as the end cases. Again I'm assuming that your UI can record the moves done by the user - regardless I think it should be fairly straightforward to work them out, and a standard sort algorithm could probably be used, just redefine 'swap'.</p>
<p>So for example moving last to first in this array (with imaginary decimal point):</p>
<p>1.0000
2.0000
3.0000
4.0000
5.0000</p>
<p>becomes</p>
<p>1.0000
2.0000
3.0000
4.0000
0.5000 = (0.0000 + 1.0000)/2</p>
<p>giving a sort order of </p>
<p>0.5000
1.0000
2.0000
3.0000
4.0000</p>
<p>Which changes just one record, the last one in the array</p>
<p>Moving last to second would do this:</p>
<p>1.0000
2.0000
3.0000
4.0000
5.0000</p>
<p>Becomes</p>
<p>1.0000
2.0000
3.0000
4.0000
1.5000 = (1.0000+2.0000)/2</p>
<p>resulting in a sort order of </p>
<p>1.0000
1.5000
2.0000
3.0000
4.0000</p>
<p>Again, just one record changed.</p>
<p>You will still need to cater for the case where you you run out of room 'between' two numbers, which you will eventually. I think this is true regardless of algorithm. This will require 'swap' to renumber more entries to make more room. Again regardless of algorithm I don't think you can rule out the case where everything has to be renumbered, it will just be very unlikely. I also suspect that extensive renumbers become more likely over time, again no matter what you do - the available space will fragment. However by choosing the position of the point to give as much room as possible, it should be optimal, i.e. you postpone that as long as possible. </p>
<p>To avoid having to do a more extensive renumber at an inconvenient time, it would probably be advisable to regularly do some kind of batch renumber during quiet periods - basically stretching the gaps again to make room for further user driven sorts. Again, I think you probably need this no matter what method you use.</p>
<p>This is just a sketch and I think it is probably equivalent to any other way of doing it, though perhaps a more intuitive/maintainable way of thinking about it and a way of maximising the room for expansion. Also if you're really worried about poor performance of degenerate cases - and from your description it sounds like you should be - I'd suggest to run whatever algorithm you go with in a test harness with a lot of random data (no database) over a long period, to see how many renumbers it really performs in practice and especially to see if it degrades with use over a long period. I suspect any algorithm for this will.</p>
http://stackoverflow.com/questions/1267424/is-there-an-cocoa-or-objective-c-api-for-java/1267449#12674493Answer by frankodwyer for Is there an Cocoa or Objective C api for Java?frankodwyer2009-08-12T17:06:03Z2009-08-13T20:29:30Z<p>There is no java VM on the iphone - xmlvm must cross-compile the java code into an executable for the phone.</p>
<p>edit 1: that said coming from Java, you may not find objective-C that much of a shock to migrate to. It took me a few months to learn it coming from Java and C/C++ - most of the books about iphone programming (e.g. the pragmatic programmer's one) also give a little background on the language to get you started. It is a learning curve but ultimately I suspect a lot less frustrating as it the first-class language on the phone and well supported by tools and documentation etc.</p>
<p>edit 2: From a glance at the webpage, it looks like what xmlvm produces is actually objective-C, linked against a native xvmlm support framework. I assume the next step is to compile the objective-C output using whatever toolchain you have - probably xcode but if not then some gcc toolchain. Anyway the end result is going to be a native executable not java bytecode. You'll install that just like any executable you build from objective-C.</p>
http://stackoverflow.com/questions/1269400/is-this-a-fair-question-to-ask-in-a-software-engineering-interview-phase-1/1269475#12694750Answer by frankodwyer for Is this a fair question to ask in a Software Engineering Interview, phase 1?frankodwyer2009-08-13T00:40:23Z2009-08-13T00:40:23Z<p>If I were asked this question I would have written it assuming an existing framework like rails or tomcat or CGI or something. And if I asked it (which I wouldn't) I'd take a dim view of a candidate that didn't.</p>
<p>That said, it's not that hard to implement (or at least draft) a bare bones HTTP server <em>without</em> doing the full HTTP protocol and just doing the bare minimum to answer the question. It would be possible to tell who was a good or bad candidate just from how they approached that. For example did they leave open a security hole whereby the client could request a file outside the directory. Did they leave comments to the effect 'this isn't finished' and noting what else was needed. etc.</p>
<p>It still seems a pretty poor question, though it may depend on the details of how they asked it. Still, don't forget that the purpose of the interview is not just for them to evaluate you, but also for you to evaluate the company - a stupid question can reveal that you'll be working under people that haven't a clue.</p>
http://stackoverflow.com/questions/1269342/what-would-you-tell-yourself-if-you-were-teaching-your-past-self-java-as-your-fir/1269424#12694240Answer by frankodwyer for What would you tell yourself if you were teaching your past-self Java as your first language?frankodwyer2009-08-13T00:24:46Z2009-08-13T00:24:46Z<p>There's nothing especially silly about learning Java. At the end of the day it's only a language. You will not regret learning some other languages as well though, get some exposure to as many as you can. You don't need to be proficient in all of them, but you should get to the point where you know the high level concepts in a language agnostic way, and the language should become more of a minor detail and matter of taste, though some are easier to use for some tasks than others.</p>
<p>IMO two good ways to go from Java (that also have practical application together with Java) would be groovy for a dynamic 'fun' language, and 'C' for lower level knowledge (e.g. using JNI with Java). No harm learning a scripting language as well - you could even glue that to a Java program by calling out to the command line - or in some cases (e.g. python, ruby) running a java based version of it. If you learned all those you would probably learn a heck of a lot else on the way.</p>
http://stackoverflow.com/questions/1451888/how-do-web-applications-post-facebook-news-feed-items-and-notifications-without-t/1453197#1453197Comment by frankodwyer on How do web applications post Facebook news feed items and notifications without the user being active in the FB app?frankodwyer2009-09-21T14:40:09Z2009-09-21T14:40:09Zhmm and that 'publish_stream' permission seems very wide ranging .e.g. can change status - seems like a lot of privs to have to ask for just to stick a message in the news feed?http://stackoverflow.com/questions/1451888/how-do-web-applications-post-facebook-news-feed-items-and-notifications-without-t/1453197#1453197Comment by frankodwyer on How do web applications post Facebook news feed items and notifications without the user being active in the FB app?frankodwyer2009-09-21T14:34:51Z2009-09-21T14:34:51Zthanks, that really helps. But when you say 'prompt the user for extended permission', what does that prompting? The app that the user adds? Does it matter if they subsequently don't log in to the app or if they are not logged into FB?http://stackoverflow.com/questions/1451888/how-do-web-applications-post-facebook-news-feed-items-and-notifications-without-tComment by frankodwyer on How do web applications post Facebook news feed items and notifications without the user being active in the FB app?frankodwyer2009-09-20T20:32:25Z2009-09-20T20:32:25Z(of course, if I could do the same thing without having them install any FB app at all that would be even better, for example just by connecting their FB account to their account in my web app). I'm just not sure what is the easiest API/approach for this as FB seems to have several APIs that blur into one another.http://stackoverflow.com/questions/1451888/how-do-web-applications-post-facebook-news-feed-items-and-notifications-without-tComment by frankodwyer on How do web applications post Facebook news feed items and notifications without the user being active in the FB app?frankodwyer2009-09-20T20:30:20Z2009-09-20T20:30:20Zno, the idea is that users of the web app can install a companion facebook app that allows them to configure automatic publishing of things they do with the web app. It's conceptually the same as having tweets or blog posts replicated to facebook - so much so that I could use a generic RSS app but I don't want users to have to configure it.http://stackoverflow.com/questions/1446810/what-is-the-best-restful-way-to-pass-string-collections-as-parameters/1446851#1446851Comment by frankodwyer on What is the best RESTful way to pass string collections as parameters?frankodwyer2009-09-18T22:44:07Z2009-09-18T22:44:07Zfor action caching, I've been able to get that going using vanilla rails like so: caches_action :controller, :expires_in=>1.hour, :cache_path => Proc.new { |c| "control/#{c.params[:bar]}/#{c.params[:foo]}".gsub(/ /,'') }
This fudges the parameters into the cache path and makes sure that distinct requests are cached separately. However I'm not sure what version of rails this requires - I'm using 2.3.2 . Plus, I don't know if similar can be done in relation to the page cache.http://stackoverflow.com/questions/1446810/what-is-the-best-restful-way-to-pass-string-collections-as-parameters/1446888#1446888Comment by frankodwyer on What is the best RESTful way to pass string collections as parameters?frankodwyer2009-09-18T21:27:06Z2009-09-18T21:27:06Zcan you elaborate on 'and query variables for algorithmic resources'? Didn't get that - any examples?http://stackoverflow.com/questions/1446810/what-is-the-best-restful-way-to-pass-string-collections-as-parameters/1446856#1446856Comment by frankodwyer on What is the best RESTful way to pass string collections as parameters?frankodwyer2009-09-18T21:26:13Z2009-09-18T21:26:13Zbtw +1 for the observation that two urls map to the same resource collection - hadn't thought of that. Not sure it is a problem in practice but it would be nice to avoid it.http://stackoverflow.com/questions/1446810/what-is-the-best-restful-way-to-pass-string-collections-as-parameters/1446851#1446851Comment by frankodwyer on What is the best RESTful way to pass string collections as parameters?frankodwyer2009-09-18T21:24:29Z2009-09-18T21:24:29Zmy problem with the query string here is that rails doesn't seem to take any account of it when caching to the page cache. In other words, /questions?tag=foo and /questions?tag=bar will go to the same location in the page cache: /questionshttp://stackoverflow.com/questions/1446810/what-is-the-best-restful-way-to-pass-string-collections-as-parameters/1446823#1446823Comment by frankodwyer on What is the best RESTful way to pass string collections as parameters?frankodwyer2009-09-18T21:20:11Z2009-09-18T21:20:11Z@SingleShot good point, well made :-) Basically I am trying to retrieve a collection of resources filtered by the parameters. They are actually locations - so filtered by tag, origin point, distance, etc. So yes, it should be a GET. I want to be able to cache it tho.http://stackoverflow.com/questions/1446810/what-is-the-best-restful-way-to-pass-string-collections-as-parameters/1446856#1446856Comment by frankodwyer on What is the best RESTful way to pass string collections as parameters?frankodwyer2009-09-18T21:15:43Z2009-09-18T21:15:43Zmy problem with the query string (at least the last time I looked at using it), is that it is ignored for caching. I need the responses to go to the page cache.http://stackoverflow.com/questions/1338492/how-do-i-stop-rails-from-escaping-values-in-sql-for-a-particular-column/1416127#1416127Comment by frankodwyer on How do I stop rails from escaping values in SQL for a particular column? frankodwyer2009-09-14T19:33:13Z2009-09-14T19:33:13Zthanks, this is what I wound up doing. I found that it is a bit fussy about rails versions (e.g. didn't seem to work on the latest when I tried but was ok on 2.3.2), but when it works it does the trick.http://stackoverflow.com/questions/1409141/location-manager-error-kclerrordomain-error-0Comment by frankodwyer on Location Manager Error : (KCLErrorDomain error 0)frankodwyer2009-09-14T19:31:23Z2009-09-14T19:31:23Zgood question - I've seen the same error sometimes. I believe it happens when the location manager fails to get the current location - e.g. because a good enough fix isn't available. But, I've seen it at times after it <i>has</i> got a good fix, then later on this error pops up. http://stackoverflow.com/questions/1385316/iphone-performance-issues-of-grouped-uitableview-on-deviceComment by frankodwyer on [iPhone] Performance issues of grouped UITableView on Devicefrankodwyer2009-09-06T10:48:17Z2009-09-06T10:48:17ZThe code looks OK. Do you have any other threads running?http://stackoverflow.com/questions/1338492/how-do-i-stop-rails-from-escaping-values-in-sql-for-a-particular-column/1339449#1339449Comment by frankodwyer on How do I stop rails from escaping values in SQL for a particular column? frankodwyer2009-08-27T10:38:44Z2009-08-27T10:38:44ZOh and after_save will probably not work out of the box, as rails first attempts to write a NULL to geom, which fails as there is a not null constraint on geom. So would need somehow to prevent rails updating that attribute itself first. http://stackoverflow.com/questions/1338492/how-do-i-stop-rails-from-escaping-values-in-sql-for-a-particular-column/1339449#1339449Comment by frankodwyer on How do I stop rails from escaping values in SQL for a particular column? frankodwyer2009-08-27T10:36:02Z2009-08-27T10:36:02ZThanks. I've actually tried the trigger method but it doesn't seem to work - something in mysql bounces the update before the trigger gets called it seems. I have revisited spatial adapter now and it seems to work but is sensitive to the rails version (and maybe also the mysql version - need to do more testing)