90 reputation
6
bio website
location
age
visits member for 1 year, 10 months
seen 5 hours ago
stats profile views 13

Mar
10
comment Twitter Bootstrap zooms text differently on Webkit (Chrome, Safari)
Weird that an answer that doesn't address the Bootstrap bug gets two votes. Can't downvote it, can't remove the incorrect "automatic" bounty.
Mar
10
comment Twitter Bootstrap zooms text differently on Webkit (Chrome, Safari)
No, I'm talking about users that use standard, built in zoom features. Browsers have this feature built in, it makes no sense to force users to use a site-specific javascript version instead. Users with lower vision will often have auto-zoom set, in other words always open new sites at (for example) 125%. Fluid layouts do help with this, although if it's near the mobile/desktop media query breakpoint the media query won't be activated (based on pixels), so the end result is a multi-column layout squashed into the space of a single column layout, and often text overflowing columns.
Mar
3
comment Twitter Bootstrap zooms text differently on Webkit (Chrome, Safari)
Fluid layouts (with or without the extra [class*="container-"]) do stay constrained within the columns, with small amounts of zoom. But still in Webkit there's never any switch to a narrower layout based on what's visible. Take for example twitter.github.com/bootstrap/examples/fluid.html - as you zoom the menu and sidebars become increasingly messy in Chrome. In Firefox, a couple of levels of zoom gets the menu to collapse, and more zoom gets a single column mode. Adding the above [class*="container-"] doesn't seem to make a difference, can you point me to a working example?
Dec
2
comment How to disable webkit-text-size-adjust with JavaScript
Many thanks for creating the extension, really useful! The careless use of -webkit-text-size-adjust:none by many sites may be the reason Chrome market share has started to decline.
Oct
31
comment Bookmarklet to submit page source to form
That works great on the browsers I've tested so far, thanks! It won't be suitable for IE 6 (too long), but that's OK, not planning to support that. Plenty of room left to add a pretty alert and some more variables. Again thanks, neat solution.
Oct
28
comment Bookmarklet to submit page source to form
You're right the "document.body.appendChild(d);" doesn't serve any purpose - a remnant of an earlier version. Doesn't do any harm either, since I've already set a variable from the InnerHTML, but not needed. Thanks for suggesting the cache-breaker variable for the url, that works well. Using Iframes to cut the new tab flashing does sound overkill (especially given my limited javascript knowledge), so I may just go with what I have now unless anybody has any other suggestions.
Oct
15
comment Is there a Dotclear to WXR convertor that can be used to import comments into Disqus?
No response, so I went ahead and created a WXR file from the Dotclear file. But the Disqus import process is so slow (days) and opaque (no error messages when it rejects it) I gave up after a couple of attempts. It's clearly not worth using Disqus or Livefyre for a site that has existing comments, until or unless they get around to caring about finishing their import development.
Sep
22
comment Indexing on only part of a field in MongoDB
Yes Chris, that's what I meant by my comment about reconsidering whether Mongo is the right tool for the job - nothing wrong with Mongo (loads and indexes really fast!), just that this isn't something it's ideal for (especially once I add more complex searches). Elasticsearch is top of the list.
Sep
22
comment Indexing on only part of a field in MongoDB
I've experimented now with adding a second field, containing the first 12 characters of the main field, lowercased. Can't fit the results in here (didn't realise there was a limit) so I'll edit the question.