frankodwyer
|
Registered User
|
|
|
Nov 26 |
accepted | Is it possible to disable floating headers in UITableView with UITableViewStylePlain? |
|
Nov 8 |
awarded | ● Notable Question |
|
Oct 29 |
accepted | Article Versioning / History |
|
Oct 27 |
awarded | ● Popular Question |
|
Oct 15 |
awarded | ● Popular Question |
|
Oct 7 |
awarded | ● Popular Question |
|
Sep 29 |
awarded | ● Popular Question |
|
Sep 27 |
revised |
How can caches_action be configured to work for multiple formats? more info |
|
Sep 27 |
revised |
How can caches_action be configured to work for multiple formats? fixed typo |
|
Sep 27 |
asked | How can caches_action be configured to work for multiple formats? |
|
Sep 21 |
comment |
How do web applications post Facebook news feed items and notifications without the user being active in the FB app? hmm 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? |
|
Sep 21 |
comment |
How do web applications post Facebook news feed items and notifications without the user being active in the FB app? thanks, 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? |
|
Sep 20 |
comment |
How do web applications post Facebook news feed items and notifications without the user being active in the FB app? (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. |
|
Sep 20 |
comment |
How do web applications post Facebook news feed items and notifications without the user being active in the FB app? no, 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. |
|
Sep 20 |
asked | How do web applications post Facebook news feed items and notifications without the user being active in the FB app? |
|
Sep 18 |
comment |
What is the best RESTful way to pass string collections as parameters? for 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. |
|
Sep 18 |
comment |
What is the best RESTful way to pass string collections as parameters? can you elaborate on 'and query variables for algorithmic resources'? Didn't get that - any examples? |
|
Sep 18 |
comment |
What is the best RESTful way to pass string collections as parameters? btw +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. |
|
Sep 18 |
comment |
What is the best RESTful way to pass string collections as parameters? my 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: /questions |
|
Sep 18 |
comment |
What is the best RESTful way to pass string collections as parameters? @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. |
|
Sep 18 |
comment |
What is the best RESTful way to pass string collections as parameters? my 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. |
|
Sep 18 |
asked | What is the best RESTful way to pass string collections as parameters? |
|
Sep 14 |
answered | Location Manager Error : (KCLErrorDomain error 0) |
|
Sep 14 |
comment |
How do I stop rails from escaping values in SQL for a particular column? thanks, 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. |
|
Sep 14 |
comment |
Location Manager Error : (KCLErrorDomain error 0) good 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 has got a good fix, then later on this error pops up. |
|
Sep 6 |
comment |
[iPhone] Performance issues of grouped UITableView on Device The code looks OK. Do you have any other threads running? |
|
Aug 30 |
revised |
Is mysql using my index or not, and can the performance of geokit be improved? added link to solution writeup |
|
Aug 30 |
answered | The last 20% in Ruby on Rails |
|
Aug 28 |
answered | Display first record in rails |
|
Aug 27 |
comment |
How do I stop rails from escaping values in SQL for a particular column? Oh 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. |
|
Aug 27 |
comment |
How do I stop rails from escaping values in SQL for a particular column? Thanks. 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) |
|
Aug 27 |
revised |
How do I stop rails from escaping values in SQL for a particular column? changed tags |
|
Aug 27 |
comment |
How do I stop rails from escaping values in SQL for a particular column? another way of looking at it, is whenever the lat,lng columns are updated, I want to update geom. In my migration for geom I do the following after adding the column: execute "UPDATE #{table} set geom=POINTFROMTEXT(CONCAT('POINT(',lat,' ',lng,')'))". I would like to trigger a similar update any time lat or lng is changed - either in a DB trigger or via rails. I'm currently using a before_save callback, which results in the issue above. And I don't know how to define a DB trigger in a migration. |
|
Aug 27 |
comment |
How do I stop rails from escaping values in SQL for a particular column? Good point about the incorrectly closed quotes. However, I never need to retrieve this value - it is only used in a spatial index. I am trying to get the equivalent of this: UPDATE places set geom=POINTFROMTEXT('POINT(52,253,20.977') |
|
Aug 27 |
asked | How do I stop rails from escaping values in SQL for a particular column? |
|
Aug 26 |
comment |
Is mysql using my index or not, and can the performance of geokit be improved? The performance is massively improved on 5.1.37 using this approach - execution times of less than a second. Also, mysql doesn't seem to object to this for the older sql versions: update t_spatial set coord=POINTFROMTEXT(CONCAT('POINT(',lat,' ',lon,')'));, and create spatial index then works on the table also. |
|
Aug 26 |
comment |
Conditional XSLT transformation in PHP yes but this will still be just one xsl file, with a bunch of xsl:template components to descend the xml input. I think of xsl:template as a subroutine or procedure/function. |
|
Aug 26 |
revised |
Conditional XSLT transformation in PHP more info |
|
Aug 26 |
answered | Conditional XSLT transformation in PHP |
|
Aug 26 |
comment |
Is mysql using my index or not, and can the performance of geokit be improved? Looks like a version thing - your script doesn't work for me on 5.0.51a or 5.1.35, but it did work when I installed 5.1.37 on my test box. I will try some performance tests now on 5.1.37, then try to figure out what the problem is on the older versions. |
|
Aug 26 |
accepted | IUI way to display invalid password |
|
Aug 26 |
answered | IUI way to display invalid password |
|
Aug 26 |
comment |
Is mysql using my index or not, and can the performance of geokit be improved? it fails on the very first row, which has lat=52.2532 and lng=20.9778 |
|
Aug 26 |
comment |
Is mysql using my index or not, and can the performance of geokit be improved? more info on that - both lat and lng are not null also. altho that wasn't enforced by the DB, I also added the constraint and it makes no difference. |
|
Aug 26 |
comment |
Is mysql using my index or not, and can the performance of geokit be improved? Ah!! I see...great blog by the way. I've been trying to the spatial suggestion but stuck on getting the following error: UPDATE places SET place_point=Point(lat,lng); ERROR 1416 (22003): Cannot get geometry object from data you send to the GEOMETRY field. I've also tried 'alter table places add place_point geometry not null' as I think this is required for a spatial index. Any idea what is the cause of this message? |
|
Aug 26 |
comment |
Is mysql using my index or not, and can the performance of geokit be improved? Ah OK, makes more sense. It still seems strange to me that it cannot be persuaded to optimise using both lat and lng in the original query. In the case of bbox I don't see what's unusual about it being spatial - it seems like a general issue that would apply to any query with two ranges (e.g. age and height in a DB of the general population)? |
|
Aug 26 |
comment |
Is mysql using my index or not, and can the performance of geokit be improved? Yes I wasn't objecting to it returning 40K rows, but the fact that it though it should examine 80K of them to do it. Also in the bounding box case that is more usual, there should only be 1K or so results even in this dataset. |
|
Aug 26 |
comment |
Is mysql using my index or not, and can the performance of geokit be improved? interestingly if I run this query SELECT * FROM places WHERE ((places.lat>51.3373601471464 AND places.lat<51.6264998528536)); it only returns 42078 rows! So it looks like mysql isn't making a great job of that part either. |
|
Aug 26 |
comment |
Is mysql using my index or not, and can the performance of geokit be improved? thanks - that sounds like it will work a lot better and I will try it out. is there also a way to improve the current query without using spatial (as geokit currently doesn't use mysql spatial stuff)? |
|
Aug 26 |
comment |
Is mysql using my index or not, and can the performance of geokit be improved? That's interesting - what kind of index should there be in that case? |
