User Gareth - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T19:35:28Z http://stackoverflow.com/feeds/user/31582 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1834159/overriding-a-rails-defaultscope 1 Overriding a Rails default_scope Gareth 2009-12-02T16:36:52Z 2009-12-02T16:54:29Z <p>If I have an ActiveRecord::Base model with a default-scope:</p> <pre><code>class Foo &lt; ActiveRecord::Base default_scope :conditions =&gt; ["bar = ?",bar] end </code></pre> <p>Is there any way to do a <code>Foo.find</code> <em>without</em> using the <code>default_scope</code> conditions? In other words, can you override a default scope?</p> <p>I would have thought that using 'default' in the name would suggest that it <strong>was</strong> overridable, otherwise it would be called something like <code>global_scope</code>, right?</p> http://stackoverflow.com/questions/1732473/javascript-function-return-not-working/1732487#1732487 1 Answer by Gareth for javascript function return not working. Gareth 2009-11-13T23:15:19Z 2009-11-13T23:15:19Z <p>Your sessionStatus() function never returns anything. It sets a function to run later, and <em>that</em> function returns something, but that's not anything to do with sessionStatus()</p> http://stackoverflow.com/questions/1732328/wrong-value-when-casting-a-float24value-to-float53-in-sql-2005/1732461#1732461 1 Answer by Gareth for Wrong value when casting a float(24)value to float(53) in SQL 2005 Gareth 2009-11-13T23:06:16Z 2009-11-13T23:06:16Z <p>The number you see is as close as the computer can get within however many binary digits it has available to use.</p> <p>If you try and write 1/3 in decimal, but you only have enough space for 8 digits, the closest you can get is <code>0.33333333</code>. That's still off by a quite a way, but if you had more decimal places you could get more accurate. This is exactly the same probably as the computer faces, but whereas each of your successive digits represents 1/10ths, 1/100ths, 1/1000ths, the computer works in 1/2, 1/4, 1/8, 1/16.</p> http://stackoverflow.com/questions/1726404/transliteration-in-ruby/1726460#1726460 4 Answer by Gareth for Transliteration in ruby Gareth 2009-11-13T00:57:31Z 2009-11-13T13:20:13Z <p>Ruby has an <a href="http://ruby-doc.org/stdlib/libdoc/iconv/rdoc/index.html" rel="nofollow">Iconv</a> library in its stdlib which converts encodings in a very similar way to the usual <code>iconv</code> command</p> http://stackoverflow.com/questions/1726073/is-it-something-bad-to-use-br/1726103#1726103 4 Answer by Gareth for Is it something bad to use <BR />? Gareth 2009-11-12T23:21:27Z 2009-11-12T23:21:27Z <p>The main reason for not using <code>&lt;br&gt;</code> is that it's not <a href="http://en.wikipedia.org/wiki/Semantic%5FWeb" rel="nofollow">semantic</a>. If you want two items in different visual blocks, you probably want them in different logical blocks.</p> <p>In most cases this means just using different elements, for example <code>&lt;p&gt;Stuff&lt;/p&gt;&lt;p&gt;Other stuff&lt;/p&gt;</code>, and then using CSS to space the blocks out properly.</p> <p>There are cases where <code>&lt;br&gt;</code> is semantically valid, i.e. cases where the line break is <em>part</em> of the data you're sending. This is really only limited to 2 use cases - poetry and mailing addresses.</p> http://stackoverflow.com/questions/1672142/javascript-event-when-mouse-leaves-browser-window/1672258#1672258 0 Answer by Gareth for Javascript event when mouse leaves browser window Gareth 2009-11-04T07:48:35Z 2009-11-04T07:48:35Z <p>Your problem comes from mouseout events being generated for elements <em>inside</em> the window, which then bubble up as described in the <a href="http://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-flow" rel="nofollow">W3C events spec</a>. You can check which element the event was actually fired on:</p> <pre><code>function mouseoutFunction(event) { event = event || window.event; var sender = event.srcElement || event.target; } </code></pre> http://stackoverflow.com/questions/1656090/overriding-instance-variable-arrays-operators-in-ruby/1656131#1656131 1 Answer by Gareth for Overriding instance variable array's operators in Ruby Gareth 2009-11-01T01:43:49Z 2009-11-01T01:43:49Z <p>You can extend the metaclass of any individual object, without having to create a whole new class:</p> <pre><code>&gt;&gt; i = [] =&gt; [] &gt;&gt; class &lt;&lt; i &gt;&gt; def &lt;&lt;(obj) &gt;&gt; puts "Adding "+obj.to_s &gt;&gt; super &gt;&gt; end &gt;&gt; end =&gt; nil &gt;&gt; i &lt;&lt; "foo" Adding foo =&gt; ["foo"] </code></pre> http://stackoverflow.com/questions/1591841/how-do-i-get-html-attribute-order-to-be-consistent-when-testing-in-javascript/1591879#1591879 7 Answer by Gareth for How do I get html attribute order to be consistent when testing in Javascript. Gareth 2009-10-20T00:32:15Z 2009-10-20T00:32:15Z <p>The attributes in HTML elements are unordered, that is: the order is irrelevant. If your tests assume a specific order then they're doing it wrong really.</p> http://stackoverflow.com/questions/1591644/create-a-wizard-that-works-with-multiple-resources/1591807#1591807 1 Answer by Gareth for Create a wizard that works with multiple Resources Gareth 2009-10-20T00:12:07Z 2009-10-20T00:12:07Z <p>It's important to understand the distinction between what REST provides and what REST doesn't care about.</p> <ul> <li><p>A RESTful service provides a minimal set of actions which a client can use (providing it knows the correct data format) to manipulate a class of resources</p> <ul> <li>For example, you should be able to POST to <code>/resourceA/12345</code> to edit that existing resource</li> </ul></li> <li><p>A RESTful service doesn't make any guarantees about which other URLs will return meaningful responses.</p> <ul> <li><p>One notable example is that REST doesn't specify that <code>/resourceA/12345/edit</code> will return an HTML form designed for editing that resource. That's a feature of the HTML application that simply provides a method of performing the POST described above.</p></li> <li><p>Extending this theory, it's perfectly acceptable to have multiple edit forms which all POST to the defined RESTful URL. Since the controller's <code>edit</code> action will generally use <code>.attributes = ...</code> to mass-assign whatever it's passed, you can look at the attributes passed in, along with information about which HTML button was used to submit the form, to decide which page the user should see next.</p></li> <li><p>It may be scary relying on one controller method to deal with multiple page's submissions, but with clever validation and selectively overwriting accessors, you can maintain a lot of control over how users access the app.</p></li> <li><p>You should also be able to work out that this method doesn't restrict users to only sending attributes in the order presented in the form. Another RESTful client could in theory POST updates for <em>all</em> attributes associated with a resource, rather than just those presented by one page of your wizard. Assuming your model methods are robust enough everything can be made to Just Work.</p></li> </ul></li> </ul> http://stackoverflow.com/questions/1585723/how-can-i-change-the-location-of-a-page-and-not-redirect-the-user/1585920#1585920 10 Answer by Gareth for How can I change the location of a page and not redirect the user? Gareth 2009-10-18T20:15:56Z 2009-10-18T20:15:56Z <p>You mean like, I'm visiting <code>http://www.fakebank.example</code> and you want the address bar to display <code>http://www.yourbank.example</code>? I think there are obvious reasons this won't be possible.</p> http://stackoverflow.com/questions/1517147/sorting-page-flow-for-hasmany-in-rails 0 Sorting page flow for has_many in Rails Gareth 2009-10-04T19:09:02Z 2009-10-10T01:52:02Z <p>I have a page flow allowing the user to choose an object ("<code>Player</code>") to add to a <code>has_many :players</code> association in another model.</p> <pre><code> 1 =&gt; List existing players for object [Enter player name] 2 =&gt; List of matching players [Select player] 3 =&gt; Confirmation page [Press 'Add'] 4 =&gt; Done </code></pre> <p>I want users to be able to choose "New Player" instead of selecting a player at step 2, in which case the user will go through the standard New Player process elsewhere on the site.</p> <p>However, after that's done, the user should return to step 3 with the new player in place.</p> <p>I don't know what the best way is to implement this. I don't want to duplicate the player creation code, but I don't want to dirty up the player creation code too much just for this case.</p> <p>I also don't want to start sticking IDs in the session if I can help it. It's fine in simple cases but if the user ever has two windows/tabs then things start behaving badly.</p> <p>What do you think?</p> http://stackoverflow.com/questions/1520170/ruby-how-to-match-a-double-quote-in-a-regexp/1520434#1520434 0 Answer by Gareth for Ruby: how to match a double quote in a regexp Gareth 2009-10-05T14:26:48Z 2009-10-05T14:26:48Z <p>Sounds like the problem is with the shell.</p> <p>Your error message is from Ruby, so it seems Ruby is receiving the <code>&lt;</code> as an argument. This means the shell isn't doing any redirection.</p> <p>I don't have a Windows machine handy so I'd double check that you're getting the redirection right first. On first inspection I think the <code>&lt; myfile.txt</code> should be <code>&lt;myfile.txt</code></p> http://stackoverflow.com/questions/1391308/why-does-object-both-include-kernel-and-inherit-off-it-in-ruby/1391408#1391408 8 Answer by Gareth for Why does Object both include Kernel and inherit off it in Ruby? Gareth 2009-09-08T00:28:59Z 2009-10-04T16:40:22Z <p><code>Object</code> does not inherit from <code>Kernel</code>, it is the final superclass (in Ruby 1.8). The result of the <a href="http://corelib.rubyonrails.org/classes/Module.html#M000790" rel="nofollow"><code>#ancestors</code></a> method comprises of superclasses <em>and</em> included modules. Specifically, in the order they are looked up for any particular call.</p> http://stackoverflow.com/questions/1502804/populating-a-database-after-sign-up/1502943#1502943 0 Answer by Gareth for Populating a database after "Sign Up" Gareth 2009-10-01T09:42:48Z 2009-10-01T09:42:48Z <p>Can you not just set defaults in your database?</p> http://stackoverflow.com/questions/529556/xpath-find-elements-by-attribute-namespace 4 XPath - Find elements by attribute namespace Gareth 2009-02-09T19:37:10Z 2009-09-29T02:16:39Z <p>I'm trying to use XPath to find all elements that have an element in a given namespace.</p> <p>For example, in the following document I want to find the foo:bar and doodah elements</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;root xmlns:foo="http://foo.example.com"&gt; &lt;foo:bar quux="value"&gt;Content&lt;/foo:bar&gt; &lt;widget&gt;Content&lt;/widget&gt; &lt;doodah foo:quux="value"&gt;Content&lt;/doodah&gt; &lt;/root&gt; </code></pre> <p>I know I can use the following XPath expression to load all attributes from a given namespace</p> <pre><code>"//@*[namespace-uri()='http://foo.example.com']" </code></pre> <p>However:</p> <ul> <li>This doesn't give me the elements, just the attributes and</li> <li>where elements contain multiple attributes from that namespace, this XPath will return a result per-attribute rather than per-element</li> </ul> <p>Is it possible to get what I want, or do I just have to gather the attributes and calculate the unique set of elements they correspond to ?</p> <p>EDIT: I was given the following answer by Dimitre Novatchev. I didn't realise that you could nest predicates inside predicates like this:</p> <pre><code>"//*[@*[namespace-uri()='http://foo.example.com']]" </code></pre> <p>Specifically this says "Any element that has any attribute that has namespace-uri = '...'"</p> http://stackoverflow.com/questions/1462855/how-do-i-make-object-a-fail-validation-when-its-has-a-object-b-fails-validation/1462994#1462994 1 Answer by Gareth for How do I make object A fail validation when its has-a object B fails validation Gareth 2009-09-22T22:34:33Z 2009-09-22T22:34:33Z <p>You can use <a href="http://api.rubyonrails.org/classes/ActiveRecord/Validations/ClassMethods.html#M002171" rel="nofollow"><code>validates_associated</code></a> for that</p> http://stackoverflow.com/questions/1443210/updating-a-local-repository-with-changes-from-a-github-repository/1443228#1443228 2 Answer by Gareth for Updating a local repository with changes from a Github repository Gareth 2009-09-18T08:31:07Z 2009-09-18T08:31:07Z <pre><code>git fetch [remotename] </code></pre> <p>However you'll need to merge any changes into your local branches. If you're on a branch that's tracking a remote branch on Github, then</p> <pre><code>git pull </code></pre> <p>will first do a fetch, and then merge in the tracked branch</p> http://stackoverflow.com/questions/1395781/esoteric-js-question/1395808#1395808 0 Answer by Gareth for Esoteric JS Question Gareth 2009-09-08T19:17:25Z 2009-09-08T19:17:25Z <p>You can create an anonymous function which accepts a function as an argument, and immediately pass it another anonymous function:</p> <pre><code>(function(fn) { })(function() { }) </code></pre> <p>But I can't think of a single useful reason for doing that.</p> http://stackoverflow.com/questions/1388018/jquery-attaching-an-event-to-multiple-elements-at-one-go/1388054#1388054 10 Answer by Gareth for jQuery : Attaching an event to multiple elements at one go Gareth 2009-09-07T07:43:34Z 2009-09-07T07:48:34Z <p>The <a href="http://docs.jquery.com/Traversing/add#expr" rel="nofollow">jQuery add method</a> is what you want:</p> <blockquote> <p>Adds more elements, matched by the given expression, to the set of matched elements</p> </blockquote> <pre><code>var a = $("#a"); var b = $("#b"); var combined = a.add(b) </code></pre> http://stackoverflow.com/questions/1352244/how-do-i-perform-an-additional-action-only-on-the-first-iteration-of-a-loop/1352268#1352268 7 Answer by Gareth for How do I perform an additional action only on the first iteration of a loop? Gareth 2009-08-29T20:12:11Z 2009-08-29T20:12:11Z <p>Forgive me if I'm missing something, but why not just do the thing you want before the loop?</p> <pre><code>dosomethingspecial(); foreach($arrayname as $value) { dosomething(); } </code></pre> http://stackoverflow.com/questions/1290940/determine-document-order-from-nodes/1291065#1291065 3 Answer by Gareth for Determine Document Order from Nodes Gareth 2009-08-17T23:41:47Z 2009-08-17T23:41:47Z <p>You can use the DOM function <a href="https://developer.mozilla.org/En/DOM/Node.compareDocumentPosition" rel="nofollow"><code>compareDocumentPosition</code></a> which will return different numbers based on the two nodes' relationships:</p> <blockquote> <pre><code>DOCUMENT_POSITION_DISCONNECTED = 0x01; DOCUMENT_POSITION_PRECEDING = 0x02; DOCUMENT_POSITION_FOLLOWING = 0x04; DOCUMENT_POSITION_CONTAINS = 0x08; DOCUMENT_POSITION_CONTAINED_BY = 0x10; </code></pre> </blockquote> <p>Potentially the result could be the sum of more than one of these codes as the answer is a bitmask, but I can't imagine a situation where two of these conditions would be true at the same time. Also note that the "disconnected" result would be returned for instance with nodes that have been created but not added to the document tree yet</p> http://stackoverflow.com/questions/1225059/how-can-i-calculate-the-sum-of-all-positive-integers-less-than-n/1225110#1225110 5 Answer by Gareth for How can I calculate the sum of all positive integers less than n? Gareth 2009-08-03T23:28:09Z 2009-08-03T23:38:32Z <p>Do you need to solve it recursively? That's certainly not the nicest way to solve it:</p> <blockquote> <p>Sum the numbers 1 to 10</p> </blockquote> <pre><code> 1 + 2 + 3 + 4 + 5 + 10 + 9 + 8 + 7 + 6 -- -- -- -- -- 11 +11 +11 +11 +11 = 55 </code></pre> <p>or, as it's summarised, <code>(n+1)(n/2)</code> -- with n=10, this is obviously <code>11 x 5</code></p> http://stackoverflow.com/questions/1219124/getting-a-grasp-of-how-many-people-use-my-software/1219333#1219333 1 Answer by Gareth for Getting a grasp of how many people use my software Gareth 2009-08-02T17:27:59Z 2009-08-02T17:27:59Z <p>If you're selling to anywhere that might have a competent IT setup, like a university, then I wouldn't even think about a sneaky don't-tell-them route. If you do, you're lining yourself up for bad publicity as soon as someone's firewall spots the unexpected connections</p> http://stackoverflow.com/questions/1216093/dynamic-regex-in-ruby/1216135#1216135 6 Answer by Gareth for Dynamic Regex in Ruby Gareth 2009-08-01T08:07:27Z 2009-08-01T08:07:27Z <p>You're only missing one thing:</p> <pre><code>&gt;&gt; Regexp.new "\w" =&gt; /w/ &gt;&gt; Regexp.new "\\w" =&gt; /\w/ </code></pre> <p>Backslashes are escape characters in strings. If you want a literal backslash you have to double it.</p> <pre><code>&gt;&gt; string = "[ALERT] Project: Revision ...123456 committed by Me &lt;me@me.com&gt;\n on 2009- 07-28 21:21:47\n\n Fixed typo\n" =&gt; "[ALERT] Project: Revision ...123456 committed by Me &lt;me@me.com&gt;\n on 2009- 07-28 21:21:47\n\n Fixed typo\n" &gt;&gt; r = Regexp.new("[A-Za-z]+: Revision ...[\\w]+ committed by [A-Za-z\\s]+") =&gt; /[A-Za-z]+: Revision ...[\w]+ committed by [A-Za-z\s]+/ &gt;&gt; string[r] =&gt; "Project: Revision ...123456 committed by Me " </code></pre> <p>Typically, if you'd pasted the output from your "broken" lines, rather than just the input, you'd probably have spotted that the <code>w</code> and <code>s</code> weren't escaped properly</p> http://stackoverflow.com/questions/1210861/how-do-i-split-a-string-in-ruby-maintaining-whitespaces-in-the-split/1210916#1210916 7 Answer by Gareth for How do I split a string in ruby maintaining whitespaces in the split Gareth 2009-07-31T06:15:10Z 2009-07-31T06:15:10Z <pre><code>&gt;&gt; "hello\t World\nbla".scan /\S+\s*/ =&gt; ["hello\t ", "World\n", "bla"] </code></pre> http://stackoverflow.com/questions/1166785/feed-reader-should-it-always-be-client-side/1166963#1166963 0 Answer by Gareth for Feed Reader: Should It Always Be Client Side? Gareth 2009-07-22T17:40:13Z 2009-07-22T17:40:13Z <p>Google Reader is one example of an RSS reader that parses the RSS on the server. I can't see any reason why you'd have to do that processing on the client</p> http://stackoverflow.com/questions/1166921/jquery-reference-by-id-supposed-to-return-an-array/1166955#1166955 1 Answer by Gareth for Jquery - Reference by ID - Supposed to return an array? Gareth 2009-07-22T17:37:31Z 2009-07-22T17:37:31Z <p>You should bear in mind that it's not really an array, it's a jQuery object which, among other things, allows array-style access</p> http://stackoverflow.com/questions/1118198/how-can-you-figure-out-the-highest-z-index-in-your-document/1118211#1118211 1 Answer by Gareth for How can you figure out the highest z-index in your document? Gareth 2009-07-13T08:05:22Z 2009-07-13T08:05:22Z <p>The best way to solve this problem is, in my opinion, just to set yourself conventions for what kinds of <code>z-index</code>es are used for different kinds of elements. Then, you'll find the correct <code>z-index</code> to use by looking back at your documentation.</p> http://stackoverflow.com/questions/1101888/is-there-any-reason-not-to-use-http-put-and-delete-in-a-web-application/1101921#1101921 1 Answer by Gareth for Is there any reason not to use HTTP PUT and DELETE in a web application? Gareth 2009-07-09T05:07:38Z 2009-07-09T05:07:38Z <p>Quite simply, the <a href="http://www.w3.org/TR/html401/interact/forms.html#adef-method" rel="nofollow">HTML 4.01 <code>form</code> element</a> only allows the values "<code>POST</code>" and "<code>GET</code>" in its <code>method</code> attribute</p> http://stackoverflow.com/questions/1078976/view-all-revision-numbers-that-made-changes-to-a-particular-file-in-mercurial/1079015#1079015 2 Answer by Gareth for View all revision numbers that made changes to a particular file in Mercurial Gareth 2009-07-03T11:49:32Z 2009-07-03T11:49:32Z <p>With git, you can run</p> <pre><code>git rev-list HEAD -- path/to/file </code></pre> <p>and you'll see a list of the commits which changed that file. Note that you can also run for example</p> <pre><code>gitk --all path/to/file </code></pre> <p>to open gitk, only showing commits for that file</p> http://stackoverflow.com/questions/1834159/overriding-a-rails-defaultscope/1834250#1834250 Comment by Gareth on Overriding a Rails default_scope Gareth 2009-12-03T00:45:48Z 2009-12-03T00:45:48Z Thanks for the link to the previous question http://stackoverflow.com/questions/1529606/how-do-rails-association-methods-work/1553552#1553552 Comment by Gareth on How do rails association methods work? Gareth 2009-11-19T11:54:19Z 2009-11-19T11:54:19Z Rails doesn't actually know what &quot;the last [scope] in the chain&quot; is. In fact, no named scopes actually execute any SQL calls. It's only when you <i>do</i> something with the scope (for example .each if iterating, or .to_s as <code>puts</code> implicitely does) that the database it queried. http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1732395#1732395 Comment by Gareth on RegEx match open tags except XHTML self-contained tags Gareth 2009-11-13T23:11:39Z 2009-11-13T23:11:39Z &lt;a href=&quot;foo&quot; title=&quot;5&gt;3&quot;&gt; Oops &lt;/a&gt; http://stackoverflow.com/questions/1726073/is-it-something-bad-to-use-br/1726079#1726079 Comment by Gareth on Is it something bad to use <BR />? Gareth 2009-11-12T23:26:50Z 2009-11-12T23:26:50Z You can't just remove your &lt;br&gt;s and add CSS, because if you've removed your &lt;br&gt;s there's nothing <i>to</i> style. It's not incredibly helpful to say &quot;remove your line breaks&quot; without helping (literally) fill in the blanks http://stackoverflow.com/questions/1695841/how-to-make-words-into-a-category-nlp Comment by Gareth on How to make words into a category. (NLP) Gareth 2009-11-08T11:13:33Z 2009-11-08T11:13:33Z Why &quot;FOOD&quot; and not &quot;POULTRY&quot;? http://stackoverflow.com/questions/1688941/reading-javascript-cookies-from-a-subdomain/1689058#1689058 Comment by Gareth on Reading Javascript Cookies from a subdomain... Gareth 2009-11-06T17:34:17Z 2009-11-06T17:34:17Z yes, that is correct. There is no special syntax http://stackoverflow.com/questions/1688941/reading-javascript-cookies-from-a-subdomain Comment by Gareth on Reading Javascript Cookies from a subdomain... Gareth 2009-11-06T17:29:17Z 2009-11-06T17:29:17Z you should use example.com, or the .example TLD, for sample URLs -- as suggested in RFC 2606 [<a href="http://www.faqs.org/rfcs/rfc2606.html]" rel="nofollow">faqs.org/rfcs/rfc2606.html]</a> http://stackoverflow.com/questions/1688941/reading-javascript-cookies-from-a-subdomain/1689058#1689058 Comment by Gareth on Reading Javascript Cookies from a subdomain... Gareth 2009-11-06T17:27:58Z 2009-11-06T17:27:58Z Ates is saying that, unless the cookie has been set properly, with the domain prefixed by a period, you won't be able to read the cookie from a subdomain http://stackoverflow.com/questions/1617706/how-to-crowd-source-my-web-crawling Comment by Gareth on how to crowd source my web crawling Gareth 2009-10-24T11:31:16Z 2009-10-24T11:31:16Z Why do you need to be so shady? http://stackoverflow.com/questions/1605170/jquery-traversing-form-elements/1605191#1605191 Comment by Gareth on jQuery traversing form elements Gareth 2009-10-22T05:50:02Z 2009-10-22T05:50:02Z you want class=&quot;otherHide&quot; rather than class=&quot;.otherHide&quot;. The period is only used in the CSS selector to indicate you're looking for a class. http://stackoverflow.com/questions/1548181/what-are-the-issue-with-putting-markup-outside-body/1548184#1548184 Comment by Gareth on What are the issue with putting markup outside <body> ? Gareth 2009-10-10T15:22:03Z 2009-10-10T15:22:03Z If you're not producing a valid document, then behaviour across browsers is by definition undefined. Best to find a solution that's valid http://stackoverflow.com/questions/1548079/single-sign-on-multiple-sub-domains/1548104#1548104 Comment by Gareth on single sign on multiple sub domains Gareth 2009-10-10T15:08:30Z 2009-10-10T15:08:30Z Remember that this will only make the session cookie available to multiple subdomains. You haven't said whether the servers running the subdomains all have access to the same database, so there's no guarantee the session data will be transferrable http://stackoverflow.com/questions/1502751/creating-visible-redirect/1502784#1502784 Comment by Gareth on Creating visible redirect? Gareth 2009-10-01T09:34:57Z 2009-10-01T09:34:57Z All of the http-equiv meta tags have an equivalent HTTP header (as the name suggests). So a nicer solution, seeing as you're able to from PHP, is to set a 'Refresh: 2;url=<a href="http://example.com" rel="nofollow">example.com</a>' header, and not pollute your markup http://stackoverflow.com/questions/1481442/tell-if-webapp-launched-via-url-or-link-on-iphone-home-screen/1481494#1481494 Comment by Gareth on Tell if WebApp launched via URL or link on iPhone home screen Gareth 2009-09-26T15:58:35Z 2009-09-26T15:58:35Z I think the OP is talking about the user opening Safari from a bookmark saved to the user's home screen, not Webkit instances in non-Safari applications http://stackoverflow.com/questions/1451145/fire-a-function-whose-name-is-in-a-string Comment by Gareth on fire a function whose name is in a string Gareth 2009-09-20T16:15:54Z 2009-09-20T16:15:54Z The best solution would almost certainly be to find a way not to have the function name in a string