Gareth

5,727
reputation
194 views

Registered User

name Gareth
member for 1 year
seen 54 mins ago
website
location Guildford, UK
age 25
I'm just a lowly web developer with a few ideas.
Dec
16
comment Can I create an *un*named scope in Rails?
That's perfect, and it's only documented in one file [api.rubyonrails.org/classes/ActiveRecord/… which I can't imagine I'd ever look at otherwise
Dec
16
asked Can I create an *un*named scope in Rails?
Dec
13
answered How can I replace every instance of a pattern in ruby?
Dec
10
comment What achievements have you gained in your career?
I would have hoped to achieve the achievement "Nice Answer" by answering this question with this answer. But now it's closed I can't.
Dec
8
comment how to bias a random number generator
No, it won't; 0.5 ^ 1.4 ~== 0.38. So long as 0<x<1 and n>1, x^n < x
Dec
7
answered how to bias a random number generator
Dec
6
awarded  Mortarboard
Dec
4
awarded  Nice Answer
Dec
4
accepted How to I dynamically set the expiry time for a cookie-based session in Rails
Dec
3
comment Overriding a Rails default_scope
Thanks for the link to the previous question
Dec
2
asked Overriding a Rails default_scope
Nov
19
comment How do rails association methods work?
Rails doesn't actually know what "the last [scope] in the chain" is. In fact, no named scopes actually execute any SQL calls. It's only when you do something with the scope (for example .each if iterating, or .to_s as puts implicitely does) that the database it queried.
Nov
13
answered javascript function return not working.
Nov
13
comment RegEx match open tags except XHTML self-contained tags
<a href="foo" title="5>3"> Oops </a>
Nov
13
answered Wrong value when casting a float(24)value to float(53) in SQL 2005
Nov
13
revised Transliteration in ruby
Corrected spelling
Nov
13
accepted Is it something bad to use <BR />?
Nov
13
accepted Transliteration in ruby
Nov
13
answered Transliteration in ruby
Nov
12
comment Is it something bad to use <BR />?
You can't just remove your <br>s and add CSS, because if you've removed your <br>s there's nothing to style. It's not incredibly helpful to say "remove your line breaks" without helping (literally) fill in the blanks
Nov
12
revised Is it something bad to use <BR />?
edited tags
Nov
12
answered Is it something bad to use <BR />?
Nov
9
revised how do you compare a param to every item in an array in rails?
Corrected code formatting
Nov
8
comment How to make words into a category. (NLP)
Why "FOOD" and not "POULTRY"?
Nov
7
awarded  Nice Answer
Nov
6
comment Reading Javascript Cookies from a subdomain…
yes, that is correct. There is no special syntax
Nov
6
comment Reading Javascript Cookies from a subdomain…
you should use example.com, or the .example TLD, for sample URLs -- as suggested in RFC 2606 [faqs.org/rfcs/rfc2606.html]
Nov
6
comment Reading Javascript Cookies from a subdomain…
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
Nov
4
answered Javascript event when mouse leaves browser window
Nov
1
answered Overriding instance variable array’s operators in Ruby
Oct
30
awarded  Nice Answer
Oct
27
awarded  Yearling
Oct
25
accepted jQuery : Attaching an event to multiple elements at one go
Oct
24
comment how to crowd source my web crawling
Why do you need to be so shady?
Oct
22
comment jQuery traversing form elements
you want class="otherHide" rather than class=".otherHide". The period is only used in the CSS selector to indicate you're looking for a class.
Oct
20
accepted Create a wizard that works with multiple Resources
Oct
20
answered How do I get html attribute order to be consistent when testing in Javascript.
Oct
20
answered Create a wizard that works with multiple Resources
Oct
18
answered How can I change the location of a page and not redirect the user?
Oct
11
awarded  Tumbleweed
Oct
10
comment What are the issue with putting markup outside <body> ?
If you're not producing a valid document, then behaviour across browsers is by definition undefined. Best to find a solution that's valid
Oct
10
comment single sign on multiple sub domains
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
Oct
5
answered Ruby: how to match a double quote in a regexp
Oct
4
revised Sorting page flow for has_many in Rails
edited title
Oct
4
asked Sorting page flow for has_many in Rails
Oct
4
revised Why does Object both include Kernel and inherit off it in Ruby?
edited body
Oct
1
revised How can I get browsers to download an exe instead of opening it in the browser window?
Corrected sample links to use example.com
Oct
1
answered Populating a database after “Sign Up”
Oct
1
comment Creating visible redirect?
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=example.com' header, and not pollute your markup
Sep
26
comment Tell if WebApp launched via URL or link on iPhone home screen
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