-
Executing entirely arbitrary code inside a Gameboy Color game using only the dpad and buttons – nothing else. Nuts.
-
"Good art is a kind of magic. It does magical things for both artist and audience. We can have long polysyllabic arguments about how to describe the way this magic works, but the plain fact is that good art is magical and precious and cool. It’s hard to try and make good art, and it seems to me wholly reasonable that good artists should be concerned with their work’s cultural reception." Oh, this.
-
Looks like I'm going to have to go get me an Ordning Timer soon, to go with the intervalometer.
-
I am not an expert in these matters, but that is rather lovely.
-
That performance of Billie Jean. But with a Giant White Glove. Brilliant.
-
"On May 4th, 2007, we asked internet users to help isolate Michael Jackson's white glove in all 10,060 frames of his nationally televised landmark performance of Billy Jean. 72 hours later 125,000 gloves had been located. wgt_data_v1.txt (listed below) is the culmination of data collected. It is released here for all to download and use as an input into any digital system. Just as the data was gathered collectively it is our hope that it will be visualized collectively." This is amazing. And what it leads to is even better.
-
Thoughtbot discover their RFID door-lock system has an API. A short bash at some code later, and they now have theme songs when they enter the office.
-
"From 30th June to 25th August, I'll be following a route across Scotland from the south western tip of Mull to the outskirts of Edinburgh, as charted in Chapters 14–27 of Robert Louis Stevenson’s ‘Kidnapped’." I remember talking to Tim about this at BookCamp; it's great to see it in-the-world.
-
"Peter Newman's Skystation is a circular sculpture inspired by the form of Le Corbusier's LC4 chaise longue which encourages the user to lie down and contemplate the vast expanse of space above and beyond." I rather like that. Doesn't look comfortable, but I agree with the sentiment.
-
"After years of observation and reverse engineering I am proud to say I have been able to reproduce the IE6 algorithm to break even the most standards-compliant websites." Hur hur hur.
-
"…when I am busy, I feel that I am not fighting with my works, I am fighting with those post-it notes and deadline." Lovely stop-motion, involving pixel-art made of post-it-notes. Made me smile this afternoon.
-
"We couldn't believe it either, but as it turns out, from the launcher screen of your Pre, simply type in the phrase "upupdowndownleftrightleftrightbastart" and up comes a hidden app called "Developer Mode Enabler."" Let's face it, every device has to have a cheat code.
-
Alf's spotify searches for independent record labels. Super, even if the Ninja Tune list is a bit Cinematic Orchestra heavy. (I like the Cinematic Orchestra, but I like other things, too).
-
"So, is it possible to mix segments and querystring?" Sort of, maybe, seems to be the answer.
-
"The original Keynote Kung-fu article describes how to set up and use Keynote for the first time, but once you’ve done a couple of presentations, you’re going to want more." Rands drops some Keynote science, and I learn at least one new thing.
-
Even if it's got a long way to go, there's so much promise and potential here – and it's interesting to see how refined some of the puzzle ideas are. And: mind-bending in the way the best puzzle games are.
-
"I'm looking forward to working with new, clever people and getting my hands dirty again. I'm charged with leading the Open Library into fresh, fun territory; to enlist many hands to make "a page on the web for every book ever published" a great resource. I'm thrilled to be working with Brewster Kahle and his crack team in an important time for books on the web." What a perfect hire. Can't wait to see what George brings to it.
-
This is epic and brilliant and has so many jumping-off points I need to read it again, and again, and again.
-
"Now that suburban housewives in Missouri are letting their thoughts be known via Twitter, it's as if writing itself is thought to be under attack, invaded from all sides by the unwashed masses whose thoughts have not been sanctioned as Literature™. In many ways, I'm reminded of Truman Capote's infamous put-down of Jack Kerouac: "That's not writing, it's typing.""
-
Pop band from Bristol, made good singles, got a deal, rather than touring recorded an album, album got shelved by label that had wanted them to tour, band broke up, album now sees light of day from SVC, for three quid. Phew!
-
"With a recent project, we really started utilizing extensions with named_scope which is very powerful and cleaned up our code considerably." Some really nice examples of using named_scope effectively.
-
"Nintendo makes money with the hardware alone, which may be a superior business model." What, making profit on units rather than selling them at colossal loss is a *superior* business model? Who would have thought it!
-
Long thread of patched and hacked 8-bit and 16-bit ROMs, some bringing a vast amount of customisation.
Hacking the user interface through tags
30 March 2006
I’ve been thinking about tagging a lot recently. One particular thing came to my attention yesterday, and I think it’s worth noting in public.
Users use tags to hack the UI. Tagging isn’t just metadata; it’s metadata you can use.
To wit: a friend mentioned that one of the problems he had with Flickr was that you couldn’t see al the photos from a particular date. Oh, but you can, I said, and showed him the Archives page which does exactly that – it lets you trawl through photographs by date. It’s a really nice piece of design, in fact, so if you’ve never looked at them, go and check them out.
Of course Flickr lets you see things by date – it’s one of the key pieces of data it associates with every picture. Yes, there’s some confusion between “date uploaded” and “date taken on” but that’s dealt with – Flickr lets you view by both.
My friend hadn’t found this supposed lack in functionality a hinrdance, though. Instead, he’s just tagged his photos with a tag for the year (eg ‘2006’) and, sometimes, a tag for the month (‘September’). He’s not the only one – hunt around Flickr for the preponderance of tags like ‘200506’ or ‘20031224’. Lots of people do it.
Why do they do it? Two reasons. Firstly, they’re adding data that they either don’t think is there or that they can’t find. Even though Flickr stores date information, and they can see that at the bottom right of each picture, if they can’t manipulate that data – if they can’t pivot around it – then they store the data in a way they can use it – they stick it in a tag field. And that leads to the second reason: they’re making something to click on.
Making a tag is like making a shortcut button. One click on “2006” shows me all my pictures from 2006. So does the “archives” function but it’s not quite as fast, to be honest, and not as immediately intuitive.
This is true of all tagging systems – tagging makes links, that’s they way it works. So as well as using tags to store data, tags get used to extend and build upon the user interface. As a developer, this has an unexpected bonus. If you see lots of tags emerging storing data you already track (such as dates), consider that the method for accessing data by date might not be obvious (or simple) enough. And if you see enough data of identical format being tracked – often in the form of machine-readable tags, such as geotags, then perhaps it’s time to consider adding a new feature. Tags are a great way to track how uses actually make use of your service.