-
"PROBLEM: There is no way I can justify to myself spending that much money on plastic cows. Really, there is no way. WIN-WIN: I could however justify giving that same amount of money, or more, to a worthwhile charity. That would be an easy thing." Matt wants cows, in return for giving money to charity.
-
Oh wow; it's like a developer network for LittleBigPlanet. Smashing.
-
"On May 3rd 2008, artists Robin Hewlett and Ben Kinsley invited the Google Inc. Street View team and residents of Pittsburgh’s Northside to collaborate on a series of tableaux along Sampsonia Way. Neighbors, and other participants from around the city, staged scenes ranging from a parade and a marathon, to a garage band practice, a seventeenth century sword fight, a heroic rescue and much more…" Lovely.
-
'"With respect to the franchises that don’t have the potential to be exploited every year across every platform, with clear sequel potential that can meet our objectives of, over time, becoming $100 million-plus franchises, that’s a strategy that has worked very well for us," Kotick said.' Kotick is very serious about his use of the word 'exploit'.
-
""The ability to offer these songs on a subscription basis may very well result in the newest subscription opportunity in our portfolio," he said." Kotick wants you to pay Activision to subscribe to UGC. Oh dear.
-
Beautiful.
-
"As we move into a world in which we can manufacture things as cheaply as we print them, the skills that tinkerers develop– not just their ability to play with stuff, or to use particular tools, but to share their ideas and improve on the ideas of others– will be huge." Lots of good reflections from "Tinkering As A Mode Of Knowledge".
-
Visualising the heights of people's towers by importing their savegame. Lovely.
-
"By understanding the way bees respond to all the different aspects of the natural world, the beekeeper is able to recover his own relationship to the natural world through bees."
-
"Every time Bobby Kotick opens his mouth, I see a giant cow with "GUITAR HERO" branded on its side, and Bobby Kotick is squeezing two teats as fast as he can."
These are my links for November 3rd through November 4th:
-
"igraph is a free software package for creating and manipulating undirected and directed graphs. It includes implementations for classic graph theory problems like minimum spanning trees and network flow, and also implements algorithms for some recent network analysis methods, like community structure search." Oh, that could be very handy
-
"We’re just two regular guys who love grilling and football on Sunday afternoons, eating until we can’t get off the couch and of course, the taste of great bacon. And it’s our dream to make everything taste like bacon.", as the about page says. There are no words.
-
"My election party tomorrow will feature DMX controlled RGB LED lighting. The color of the house should reflect the electoral balance. The color will start purple, and drift toward either red or blue, depending on who’s winning." Awesome.
-
'"There is currently a work-around that may allow you to bypass this issue. Since you have the first 19 characters of the code already, you can basically try guessing the last character," explains the EA customer support site, helpfully.' DRMLOLZ. You cannot make this up.
-
Singles ad written as an SQL query.
-
"Maybe this could eventually become an entire category of entertainment: You're dropped into a huge, lush, gorgeous, sprawling world, and all you do is just sort of … wander around. We could even give it a name. Radical singleplayer: The game of solitude."
-
You're a little robot. You're also indestructible. Use bombs to bounce yourself around the level, but don't run out. Lovely little flash game.
-
In which an entertaining man plays a hacked, super-hard Super Mario map, swears at his TV a lot, and still manages to be pretty good at it. It's a nice illustration of the problem-solving process, and it's rather funny. "This is worse than Panic At The Disco. This is worse than Ann Coulter."
-
"The No Game is a party game with only one real rule."
-
This looks like it could be interesting/fun; if anything, worth watching as a slightly more attractive option for lifestreaming…
-
"Sequel Pro is the perfect tool for working with database-driven websites and applications." Leopard-only MySQL management application; forked out of the long-neglected CocoaMySQL.
-
I need to think on this more; there's a lot of meat in it, and some interesting commentary, but suggesting that "the entire bachelor’s degree in English is all about bullshitting things" I find somewhat insulting. I'm frustrated because it feels like Blow is pushing for people to find the "correct" interpretation, rather than any valid criticism they can back up. Still, there's also some excellent stuff in here, but it's the first thing he's said that's rubbed me the wrong way a little (and I'm not just talking about the 'bullshit' comment).
I’ve just had my first patch accepted on an open source project. Quite chuffed with that! As of this weekend, the Rails calendar_helper
plugin is now at version 0.21. My changes are very minimal, and only really to do with the markup.
Firstly, the default table markup’s had an overhaul. The date now goes into a %lt;caption>
tag, outside the <thead>
, as is appropriate. The <th>
‘s in the thead
now have scope="col"
applied to them, again, as is appropriate.
The only other change is optional. If you pass in an option of :accessible => true
, any dates in the grid which fall outside the current month will have <span> class="hidden"> monthName</span>
appended to them. It could be reasonably inferred that plain numbers are dates that relate to the caption of the table, but the numbers outside the current month should probably be clarified.
You can come up with your own method of hiding content marked as .hidden
; at NPG, we use the following:
.hidden {
position:absolute;
left:0px;
top:-500px;
width:1px;
height:1px;
overflow:hidden;
}
but really, use whatever you’re most comfortable with.
You can get the plugin from Geoffrey Grosenbach’s subversion:
http://topfunky.net/svn/plugins/calendar_helper/
via the usual Rails plugin installation method.