audionerd | 15 years ago | on: Ask HN: image scaling on the fly
audionerd's comments
audionerd | 15 years ago | on: Ask HN: Best Place to run a UI Design contest ?
audionerd | 15 years ago | on: Data URIs make CSS sprites obsolete
audionerd | 15 years ago | on: LingPipe - A tool kit for processing text using computational linguistics
I used Michael Granger's excellent Ruby binding: http://repo.deveiate.org/LinkParser/file/3e46194ad8d6
audionerd | 15 years ago | on: The Magic Behind Amazon's 2.7 Billion Dollar Question
Amazon is wise to make a separation between "I agree with the user's opinion" (via my own review) and "I found the user's opinion useful" (via my vote).
audionerd | 16 years ago | on: How 5-year Wikipedia hoax fooled even the subject's own company
"They had no connection with the original hoaxer"
http://ken-jennings.com/blog/?p=1900audionerd | 16 years ago | on: How 5-year Wikipedia hoax fooled even the subject's own company
Turns out DQ did know the Wikipedia entry was false, but still liked the concept of some of the far-out claims, and wrote a script around them.
audionerd | 16 years ago | on: Scribd in HTML
audionerd | 16 years ago | on: Snappy HTML5 demonstration
var addTouchListeners = function() {
document.addEventListener('touchstart', function(e) {
touchStartX = e.touches[0].pageX;
}, false);
document.addEventListener('touchend', function(e) {
var pixelsMoved = touchStartX - e.changedTouches[0].pageX;
var SWIPE_SIZE = 150;
if (pixelsMoved > SWIPE_SIZE) {
nextSlide();
}
else if (pixelsMoved < -SWIPE_SIZE) {
prevSlide();
}
}, false);
};audionerd | 16 years ago | on: Visualizing Time Zones
audionerd | 16 years ago | on: New iPhone Agreement Bans Flash-to-iPhone Compiler & Others
http://lists.macosforge.org/pipermail/macruby-devel/2010-Jan...
audionerd | 16 years ago | on: Html audio generated music
http://ajaxian.com/archives/generating-and-playing-sound-in-...
But I've never seen it done realtime like this! Very cool.
audionerd | 16 years ago | on: JavaScript: what is "this"?
In "Coders at Work", page 141, Brendan Eich talks about wanting to build a scheme-like language for the browser. The c-like syntax was adopted because Netscape wanted it to look like Java.
audionerd | 16 years ago | on: How Agility Allows Us to Build One Of the World's Biggest Rails Apps
http://github.com/nealford/presentations/blob/master/Rails%2...
... from this collection of Neal Ford's presentation slides on github:
audionerd | 16 years ago | on: Someone please build this: Anti-shelving filter for GMail
audionerd | 16 years ago | on: Sugru: a silicone molding compound for hacking around the house
audionerd | 16 years ago | on: Translate MySQL to MongoDB MapReduce [pdf]
Often you'd layer a more expressive declarative language on top of that, which is what drivers like MongoMapper or Mongoid provide.
Even within the JavaScript interpreter you can be writing declaratively, like this jLINQ example:
http://somewebguy.wordpress.com/2010/02/14/jlinq-in-mongodb-...
audionerd | 16 years ago | on: Virgin America ditches Flash on its site
http://www.virginamerica.com/va/travelInfo.do?pageName=route...
audionerd | 16 years ago | on: Ballmer: Google leads because 'they did it right first'
audionerd | 16 years ago | on: Apple in talks with Microsoft to make Bing default search engine on the iPhone