Andrew Hedges

1,967
Reputation
247 views

Registered User

Name Andrew Hedges
Member for 1 year
Seen Nov 22 at 0:27
Website
Location NZ
Age 41
American expat in Auckland, experienced web developer, JavaScript guru, mad widget builder
Nov
6
revised how can I fix the jumpiness problem on a moving <LI> stream jQTouch mobile web app (iPhone JavaScript)
edited tags
Nov
6
answered how can I fix the jumpiness problem on a moving <LI> stream jQTouch mobile web app (iPhone JavaScript)
Oct
30
awarded  Popular Question
Oct
29
awarded  Notable Question
Sep
21
comment Does it still make sense to use HTML comments on blocks of JavaScript?
type="text/javascript" is ignored by browsers in favor of the MIME type sent by the server. It's omission was intentional.
Sep
17
awarded  Yearling
Sep
10
comment Why doesn’t @contenteditable work on the iPhone?
This is an excuse, not an answer. In desktop Safari, you don't get any fancy controls, just the ability to type into an element. Surely, iPhone can support that.
Sep
9
awarded  Popular Question
Aug
18
awarded  Popular Question
Aug
13
answered iphone web page transitions
Jul
27
answered Responding to address bar key events in Firefox Add-on
Jul
27
answered Is it possible to create new widget instances from within a Dashboard widget?
Jul
21
comment @font-face is deprecated on the iPhone version of Safari. What are my alternatives?
Ah, right. I didn't know you could do that in Cufón. Thanks!
Jul
20
comment @font-face is deprecated on the iPhone version of Safari. What are my alternatives?
I need to show random numbers in quick succession, and in a range of approximately -10k to 10k. Too much to cache. Maybe I need to show combinations of images of the individual numbers, 0-9.
Jul
20
comment @font-face is deprecated on the iPhone version of Safari. What are my alternatives?
I've used Cufón before and like it. I want to show a series of numbers in quick succession and I don't think Cufón can change the text once it's been converted.
Jul
19
asked @font-face is deprecated on the iPhone version of Safari. What are my alternatives?
Jul
18
comment Using JavaScript to model 3D polyhedra
I'd settle for even numbers. The point is, I want to get polyhedra with however many sides the user requests. The SVG solution looks pretty solid.
Jul
18
comment Using JavaScript to model 3D polyhedra
I like this idea. Should be very lightweight to implement (possibly all CSS). If the SVG solution above proves cumbersome, I'll pursue this and blog it up.
Jul
18
comment Using JavaScript to model 3D polyhedra
This just might be the ticket. Thanks, Andrew!
Jul
17
comment Using JavaScript to model 3D polyhedra
Truth be told, I want to model polyhedra with "any" number of sides (up to, at least, 100). I'm new to 3D, so I was hoping there was a lib where I can just say, give me a polyhedra with 17 sides, please. :-)
Jul
17
comment Using JavaScript to model 3D polyhedra
That's intriguing. I've been experimenting a lot with 2D transforms lately (segdeha.com/experiments/css-transitions). How could that be applied to building polyhedra with arbitrary numbers of sides?
Jul
17
asked Using JavaScript to model 3D polyhedra
Jul
13
comment Select percentage of rows with different values
Turns out you need a where clause on both the inner and outer selects.
Jul
13
answered Select percentage of rows with different values
Jul
13
asked Select percentage of rows with different values
Jul
3
answered What roles are available for developers with open-source projects?
Jul
3
answered What do you do to prepare for a new programming gig?
Jul
2
comment How random is JavaScript’s Math.random?
That's helpful, thanks!
Jul
1
comment Using CSS text-overflow to vary the number of lines of text within an element of a set height
Interesting idea. I tried it and it does force an ellipsis, but puts the content on 2 lines, where I want 3. It would cause me to need to break lines server-side to get the effect, which is what I'm trying to avoid. Thanks for the idea, though.
Jul
1
comment Using CSS text-overflow to vary the number of lines of text within an element of a set height
It appears that the only way to get an ellipsis to display is by constraining the text to one line (with white-space: nowrap).
Jul
1
revised Using CSS text-overflow to vary the number of lines of text within an element of a set height
Made it more obvious that I'm only concerned with WebKit.
Jul
1
comment Using CSS text-overflow to vary the number of lines of text within an element of a set height
I looked at iphone.facebook.com in Safari (spoofing the iPhone user agent) and it looks like they do this server-side. I suspect I'm doomed to the same fate.
Jul
1
asked Using CSS text-overflow to vary the number of lines of text within an element of a set height
Jun
30
comment How random is JavaScript’s Math.random?
I don't get it. "sarnath'd"?
Jun
30
comment How random is JavaScript’s Math.random?
For the record, I voted up both this and @jwoolard's answers. I chose this one as the accepted answer because the examples make it clear as crystal why the distribution of numbers is skewed to numbers with more digits.
Jun
30
asked How random is JavaScript’s Math.random?
Jun
21
comment Multi-column CSS lists
Sorry, I just haven't had a chance to get back to that project and try to implement this. Once I do so, I'll let you know if it worked in my case. Thanks for your thoughtful answer!
Jun
2
comment Can an iPhone app block phone calls?
I just got a call from an Australian phone spam bank. I wish I could add that number to a blocking app. Seems like a legitimate use case and S60 phones have an app that does this, from what I hear.
Jun
2
comment Multi-column CSS lists
I wasn't clear in my previous comment. The viewport size can change, but the column width should remain constant (always 240px in my case). The number of columns should change depending on the viewport width, with only vertical scrolling, if necessary. Does that make sense?
Jun
1
comment Multi-column CSS lists
In my design, the height and width change with the browser window and I want only vertical scrolling. Safari and Firefox both render with horizontal scrolling (adding columns) the way I have things set up.
Jun
1
comment Multi-column CSS lists
I did experiment with setting column widths. It should be all I need, but I'm finding with overflow: auto (which I have set because the container is an absolutely positioned div) it just adds columns rather than vertically scrolling. Not what I expected!
Jun
1
revised Multi-column CSS lists
Added update about column widths.
Jun
1
comment Multi-column CSS lists
Hence my question. :-)
Jun
1
comment Multi-column CSS lists
If browser support is there for the CSS3 module, I could use JS to change the number of columns at pre-determined widths. I'd prefer to avoid that route, though. Not even sure if the browser support is there.
Jun
1
asked Multi-column CSS lists