Home
vgs_rss' Journal -- Day [entries|friends|calendar]
vgs_rss

[ userinfo | livejournal userinfo ]
[ calendar | livejournal calendar ]

Mashable posts huge list of web development resources [19 Oct 2007|01:43am]
12:00 16.10.2007
Mashable posts huge list of web development resources

Mashable.com is best known for their up-to-minute reporting on trendy websites and social networking news. Along with their standard news, they regularly make posts that list out great resources for different web technologies. Well, it looks like Mashable's Sean P. Aune spent the whole weekend on a new post because he's listed out 250+ tools and resources for coding the web.

While many of the sites will certainly be familiar to Ajaxian readers, there's sure to be plenty of new reading material and tools for all to enjoy. I personally had never heard of Load Info - Gif Generator, a site providing Ajax indicators, and I'm sure I'll find even more great sites as I scan all 250 listings.

Included are links for Ajax, CSS, ActionScript and JavaScript tools as well as sites catering to server-side technologies.


read more at Ajaxian
post comment

GroupsWiki and Protoedit [19 Oct 2007|01:43am]
12:55 16.10.2007
GroupsWiki and Protoedit

Ben Nolan has open sourced GroupsWiki (which we first talked about almost a year ago). GroupsWiki is a visual wiki, and doesn't require users to learn a special wiki markup.

Part of the release is Ben's editor (tentatively named protoedit) which is a minimalist rich text editor written using Prototype. (The editor is in /javascripts/application.js). I haven't had a chance to pull out the editor in a standalone example - but it's relatively straightforward to wire up. The editor is small (<15k of javascript), clean and object-oriented - and Safari 2 compatible.

Ben did a presentation at Railsconf on using functional javascript (the enumerable functions in prototype.js) and show some examples from the rich-text-editor in his slides.

GroupsWiki


read more at Ajaxian
post comment

Ajaxian Featured Tutorial: When is your page ready? [19 Oct 2007|01:43am]
13:00 16.10.2007
Ajaxian Featured Tutorial: When is your page ready?

In this tutorial, Patrick Hunlock takes us through a page's ready states and shows how to write JavaScript code to determine when a page's DOM elements are loaded and available:

The problem with window.onload is that it assumes that no other script or library will want to attach an onload event of its own. And in this day of booming frameworks and endless pre-written snippets, that is no longer a certainty. Indeed, as your Javascript applications become larger you my find yourself stumbling over your own code!

Patrick provides step-by-step explanations and code that shows how to register events so they don't conflict with other libraries or code snippets down the road:

startStack=function() { };  // A stack of functions to run onload/domready
	
registerOnLoad = function(func) {
   var orgOnLoad = startStack;
   startStack = function () {
      orgOnLoad();
      func();
      return;
   }
}
	
var ranOnload=false; // Flag to determine if we've ran the starting stack already.
	
if (document.addEventListener) {
  // Mozilla actually has a DOM READY event.
   document.addEventListener(\"DOMContentLoaded\", function(){if (!ranOnload) {ranOnload=true; startStack();}}, false);
}  else if (document.all && !window.opera) {
  // This is the IE style which exploits a property of the (standards defined) defer attribute
  document.write(\"
[Error: Irreparable invalid markup ('<scr [...] \"src>') in entry. Owner must fix manually. Raw contents below.]

<lj-raw><small>13:00 16.10.2007</small><br>

<b><a href="http://feeds.feedburner.com/~r/ajaxian/~3/170636257/ajaxian-featured-tutorial-when-is-your-page-ready">Ajaxian Featured Tutorial: When is your page ready?</a></b><br>

<p>In this tutorial, <a href="http://www.hunlock.com/blogs/Are_you_ready_for_this">Patrick Hunlock takes us through a page's ready states</a> and shows how to write JavaScript code to determine when a page's DOM elements are loaded and available:</p>
<blockquote><p>The problem with window.onload is that it assumes that no other script or library will want to attach an onload event of its own. And in this day of booming frameworks and endless pre-written snippets, that is no longer a certainty. Indeed, as your Javascript applications become larger you my find yourself stumbling over your own code!</p></blockquote>
<p>Patrick provides step-by-step explanations and code that shows how to register events so they don't conflict with other libraries or code snippets down the road:</p>
<pre>startStack=function() { }; // A stack of functions to run onload/domready

registerOnLoad = function(func) {
var orgOnLoad = startStack;
startStack = function () {
orgOnLoad();
func();
return;
}
}

var ranOnload=false; // Flag to determine if we've ran the starting stack already.

if (document.addEventListener) {
// Mozilla actually has a DOM READY event.
document.addEventListener(\"DOMContentLoaded\", function(){if (!ranOnload) {ranOnload=true; startStack();}}, false);
} else if (document.all &#038;& !window.opera) {
// This is the IE style which exploits a property of the (standards defined) defer attribute
document.write(\"<scr \" + \"ipt id='DOMReady' defer=true \" + \"src=//:>< \/scr\" + \"ipt>\");
document.getElementById(\"DOMReady\").onreadystatechange=function(){
if (this.readyState==\"complete\"&#038;&(!ranOnload)){
ranOnload=true;
startStack();
}
}
}

var orgOnLoad=window.onload;
window.onload=function() {
if (typeof(orgOnLoad)=='function') {
orgOnLoad();
}
if (!ranOnload) {
ranOnload=true;
startStack();
}
}</scr></pre>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/ajaxian?a=Fws8eEus"><img src="http://feeds.feedburner.com/~f/ajaxian?i=Fws8eEus" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ajaxian?a=g1z5PKHH"><img src="http://feeds.feedburner.com/~f/ajaxian?i=g1z5PKHH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ajaxian?a=53beITue"><img src="http://feeds.feedburner.com/~f/ajaxian?i=53beITue" border="0"></img></a>
</div>

<br clear="all">

<p></p><small><a href="http://feeds.feedburner.com/~r/ajaxian/~3/170636257/ajaxian-featured-tutorial-when-is-your-page-ready">read more</a> at <a href="http://ajaxian.com">Ajaxian</a></small></lj-raw><div align="right"><small><a href="http://hiero.ru/rss2lj/" rel="nofollow">rss2lj</a></small></div>
post comment

Moo on Us: Survey Update [19 Oct 2007|01:43am]
20:14 16.10.2007
Moo on Us: Survey Update

We goofed in our recent survey story; we left out MooTools from the "Frameworks" category. While it wasn't an option in the original survey, over 11% of those surveyed wrote it in. If we'd actually included Moo as an option, it's likely to have scored even higher.

Many apologies for the gaffe; those responsible have been sacked, spat upon, flogged, and keel-hauled. We updated the PDF with this information as well as the number of respondents: 826.


read more at Ajaxian
post comment

Prototype 1.6.0 RC1: Changes to the Class and Event APIs, Hash rewrite, and bug fixes [19 Oct 2007|01:43am]
22:56 16.10.2007
Prototype 1.6.0 RC1: Changes to the Class and Event APIs, Hash rewrite, and bug fixes

Sam Stephenson has announced Prototype 1.6.0 RC1 which has "fixed a handful of bugs and made some changes to the Class and Event APIs in response to your feedback. We’ve also addressed a long-standing issue with the Hash class."

For example, they show how they changed from:

JAVASCRIPT:
  1.  
  2. var Foo = Class.create();
  3. Class.extend(Foo, { /* instance methods */ });
  4.  

to:

JAVASCRIPT:
  1.  
  2. var Foo = Class.create();
  3. Foo.addMethods({ /* instance methods */ });
  4.  

Other changes are:

  • Completely rewriten of the Hash class
  • Changes to the Event API
  • Element#wrap now returns the newly created wrapper element instead of the element being wrapped.
  • document.getElementsByClassName and Element#getElementsByClassName are now deprecated, since native implementations of these methods return a live NodeList, while we can only return a static Array. Please use $$ or Element#select instead.

read more at Ajaxian
post comment

Humanized Messages Library [19 Oct 2007|01:43am]
07:52 17.10.2007
Humanized Messages Library

Michael Heilemann has created a jQuery plugin, Humanized Messages, that implements Aza Raskins transparent messages pattern:

Transparent messages are the brainchild of Jef Raskin. It’s simply a large and translucent message that’s displayed over the contents of your screen. They fade away when the user takes any action (like typing or moving the mouse). In practice, the message is both noticeable yet unobtrusive. And because the message is transparent, you can see what’s beneath it. It’s just humane

You wire it up in a simple way, as shown in this demo:

JAVASCRIPT:
  1.  
  2.         jQuery(document).ready(function() {
  3.                 jQuery('a.showmessage').click(function() {
  4.                         humanMsg.displayMsg('<strong>Success:</strong> <span class="indent">You clicked \''+jQuery(this).text()+'\'</span>');
  5.                         return false;
  6.                 })
  7.  
  8.                 jQuery('a.showmessage:last').click(function() {
  9.                         humanMsg.displayMsg('"Your <strong>Earth</strong> will be reduced to a burned-out cinder."');
  10.                         return false;
  11.                 })
  12.         })
  13.  

Humanized Messages


read more at Ajaxian
post comment

Dealing with the Flexibility of JavaScript [19 Oct 2007|01:43am]
12:47 17.10.2007
Dealing with the Flexibility of JavaScript

Neil Roberts has written a piece on Dealing with the Flexibility of JavaScript which delves into functions that are overloaded based on signature.

For example:

JAVASCRIPT:
  1.  
  2. connect = function(/*...*/){
  3.   if(arguments.length == 1){
  4.     var ao = arguments[0];
  5.   }else{
  6.     var ao = interpolateArgs(arguments, true);
  7.   }
  8.   if(isString(ao.srcFunc) && (ao.srcFunc.toLowerCase() == "onkey")){
  9.     // ...
  10.   }
  11.   if(isArray(ao.srcObj) && ao.srcObj!=""){
  12.     // ...
  13.   }
  14. }
  15.  

Commentors on the story had varied opinions.

Isabelle likes bridges:

JAVASCRIPT:
  1.  
  2. function clicked(event){ processById(event.target.id); }
  3. function processById(id){ }
  4.  

Simon Willison and Dylan Schieman discussed how jQuery and Dojo do different things depending on not only arguments, but even the contents of strings that were passed in.


read more at Ajaxian
post comment

Re-inventing XMLHttpRequest: Cross-browser implementation with sniffing capabilities [19 Oct 2007|01:43am]
13:18 17.10.2007
Re-inventing XMLHttpRequest: Cross-browser implementation with sniffing capabilities

Sergey Ilinsky has written up an article on an XMLHttpRequest implementation wrapper that provides an equal XHR playground across the various browsers.

If you use the wrapper you can fix things like:

As part of his work Sergey compared the browser implementations:

XMLHttpRequest Appendix

And has made his code available for download.


read more at Ajaxian
post comment

Lombardi Blueprint Process Mapping Tool [19 Oct 2007|01:43am]
14:05 17.10.2007
Lombardi Blueprint Process Mapping Tool

A case study of the Lombardi Blueprint process mapping tool was recently posted to the GWT
developer blog
:

Blueprint is a multi-thousand line Web 2.0 application that developed over the last year or so. After trying and abandoning Flash and Dojo based versions of the app, we settled on GWT for its far superior ease of debugging, code size, and execution speed. The refactoring support we get from being able to code in Java and use IntelliJ/Eclipse made it a slam dunk.

The challenge handed to us was to create a tool that the average business user could use to document and manage their business processes. It had to be easy to use, encourage collaboration between team members, and provide a shared repository for all of a company's process documentation. Workflow functionality had to be on par with our competitors: Microsoft Visio, IDS Scheer's ARIS, IBM's WebSphere Business Modeler, and other desktop modeling tools. But we also wanted wiki & shared whiteboard capabilities to store information. Editing should use the drag and drop interaction users of desktop apps are familiar with.

The case study has details on the full experience building the application, which you can see in action here:


read more at Ajaxian
post comment

MTV & Adobe team up for AIR contest [19 Oct 2007|01:43am]
16:47 17.10.2007
MTV & Adobe team up for AIR contest

MTV and Adobe have teamed to put on a contest to choose the AIR app which makes the coolest use of MTV's assets.

So you want to make an Adobe® AIR™ application, awesome. We're looking for three great ideas - they could be anything. Go simple and practical or complex and addictive. It's up to you! First, download Adobe® AIR™. Then check out all of the MTV assets available to pull in to your application - everything from MTV.com RSS feeds, Video & Podcast mRSS Feeds, and MTV Blog Feeds to and outlandish MTV art.

They're offering up some sweet prizes including:

Total Request Application - Grand Prize

  • Two night trip for two to New York City
  • MTV "VIP" Night On the Town
  • "Pitch Session" with MTV Networks Product Development Team
  • Adobe Creative Suite 3 Master Collection
  • MP3 Player & One Year Subscription to Rhapsody Music Service

Pimp My Assets: Mashup - Finalist

  • One night trip for one to New York City
  • "Pitch Session" with MTV Networks Product Development Team
  • Adobe Creative Suite 3 Master Collection
  • MP3 Player & One Year Subscription to Rhapsody Music Service

Making The Wildcard - Finalist

  • One night trip for one to New York City
  • "Pitch Session" with MTV Networks Product Development Team
  • Adobe Creative Suite 3 Master Collection
  • MP3 Player & One Year Subscription to Rhapsody Music Service

Full details for the contest and registration can be found on the MTV contest webpage.


read more at Ajaxian
post comment

Sun has rewritten the browser Java plugin [19 Oct 2007|01:43am]
01:21 18.10.2007
Sun has rewritten the browser Java plugin

Ben and I are sitting in a Sun briefing where Ken Russell of Sun is announcing that they have ground up rewritten the Java plugin in the browser. The features of the rewrite are:

  • Improved scripting support (java/javascript integration is better)
  • Improved reliability
  • Supports more powerful applets (applets can ask for more memory)
  • Better windows vista support (signed applets)
  • Enterprise features (run one applet in a particular JRE version)

This will be released via a Java 6 update beta and they will have the new plugin turned off by default, and you will be able to turn it on via a switch in the Java control panel. It has been tested in IE 6, 7, Firefox 3 alpha, and they are hoping that Mozilla back ports the fixes to Firefox 2.


read more at Ajaxian
post comment

Companion.JS: IE Debugging, now supports console.log [19 Oct 2007|01:43am]
06:23 18.10.2007
Companion.JS: IE Debugging, now supports console.log

Jean-Fabrice Rabaute has released Companion.JS, an IE debugger that features:

  • Detailled javascript error reporting (call stack and real file name where the error occured).
  • "Firebug"-like Console API feature.
  • Javascript console feature useful to inspect javascript objects at runtime.
  • A toolbar icon to open the Companion.JS panel.


read more at Ajaxian
post comment

YUI image upload extension [19 Oct 2007|01:43am]
11:00 18.10.2007
YUI image upload extension

When the developers of a JavaScript library post about your extensions, it generally means that you've done a heck of a job. It seems that Dennis Muhlestein has impressed the YUI team with his image upload extension to the YUI Rich Text Editor.

I’ve created an extension that modifies the RTE image dialog to include a new input for browsing to an image. It uses the Yahoo Connection manager to upload the image in the background to your server, and then displays the image in the RTE after the file is successfully uploaded.

Dennis provides downloadable code and detailed instructions on how to implement his extension into your YUI code.


read more at Ajaxian
post comment

PackR: Rails Packing [19 Oct 2007|01:43am]
11:26 18.10.2007
PackR: Rails Packing

James Coglan has produced a Rails plugin to handle Dean Edwards Packer.

PackR allows you to programatically compress:

RUBY:
    # Create a new instance of Packr first
    packr = Packr.new
    compressed = packr.pack(script)</p>

    # Pass options to control the type of compression
    compressed = packr.pack(script, :shrink_vars => true)
    compressed = packr.pack(script, :base62 => true)
    compressed = packr.pack(script, :shrink_vars => true, :base62 => true)

or you can use the rake task:

rake packr:pack_libs


read more at Ajaxian
post comment

Enunciate your web APIs [19 Oct 2007|01:43am]
11:59 18.10.2007
Enunciate your web APIs

Enunciate is an open source framework that allows you to automatically build, package, deploy, and to clearly, accurately deliver your Web service API on the Java platform.

It will automatically give you multiple endpoints (SOAP, REST, JSON, GWT-RPC, etc.), generate client code, and give you full documentation.

The new 1.4 release also includes support for publishing your JAX-WS endpoints as GWT-RPC endpoints, including generating the GWT client-side code for invoking the endpoints via Ajax.

Features

Full User Documentation

Enunciate will generate full user-level documentation to describe your web API. The content for the documentation is
taken from the documentation of the original source code (i.e. Javadoc),
consolidating the maintenance of your entire Web service contract to a single place.

  • Consolidated, Annotated WSDL and Schemas</p>

    The common WS stack will provide a WSDL for an endpoint when queried. Generally, the WSDL is generated at runtime, the
    associated schema is inline, the semantic constructs (i.e. namespaces, message names, argument ids, etc.) are awkward
    and inconsistent, and the scope is limited to that specific endpoint. The XML contract is difficult to interpret (especially
    when being consumed for client-side stubs) and doesn’t give a consolidated picture of the whole API because it has no reference
    to other endpoints and schema data that service the same namespace
    (click here for a more
    complete discussion
    ).

    Enunciate generates the formalized XML contract at compile-time, providing for a consolidated, efficient XML definition.
    Core schema data is consolidated into a single set of schema documents (grouped by namespace), and multiple endpoints
    that service the same namespace are put into a single WSDL. This allows for a wider, cleaner picture of the formal contract
    and relieves the consumer of the consolidation work.

  • Multiple Endpoints: SOAP, REST, JSON, GWT-RPC, etc.</p>

    Enunciate will publish your endpoint class as a SOAP endpoint as defined by the JAX-WS annotations (powered by XFire). By supplying additional metadata, the same endpoint class will be published
    as a XML REST endpoint at a different URL. Furthermore, certain REST endpoints will be automatically available as JSON
    endpoints at yet another URL. See the REST module documentation for more information.

    Also, by enabling the GWT module, your endpoints will be published via
    GWT-RPC along with the client-side GWT code for invoking those endpoints via AJAX.

  • Client Code Generation</p>

    Enunciate will generate client code for multiple platforms to interface remotely with your published API. Not only is
    the generated code fully documented, but it is simple, elegant and efficient. Enunciate does not generate
    client code from the WSDL but instead reflects it from the original source code, allowing code documentation to be carried over
    and preserving valuable information like method signatures, class structure, and variable names.

    Currently, Enunciate generates code for the Java 1.4 platform and the Java 5 platform, but has plans to add modules that
    generate code for the .NET and C/C++ platforms in the future. Consult the roadmap for
    information on other modules in the pipe and how you can help.

  • Full App Packaging</p>

    Enunciate packages your API, extended with each of the above features, into a single web application archive (war file). Drop the war
    file into your favorite J2EE container, and consider your web API enunciated.


  • read more at Ajaxian
    post comment

    Google Analytics expands tracking capabilities [19 Oct 2007|01:43am]
    12:00 18.10.2007
    Google Analytics expands tracking capabilities

    VentureBeat is reporting that Google has updated their popular Google Analytics service to begin tracking Ajax and Flash-based requests:

    The new additions reflect a growing feeling on the web that pageviews are a less important metric than they used to be. Google Analytics is opening a feature for beta testing that tracks user engagement with elements that have become common with Web 2.0 services, including Javascript, Ajax and Flash applications, widgets and gadgets, and downloadable pages.

    With many sites reliant on selling advertising based on page views, this update will allow developers to leverage Ajax, JavaScript and/or Flash without the worry of losing valuable stats data:

    While small web companies will be the primary beneficiaries of the new features, the move could also prove meaningful for online advertising. Experts have suggested for some time that advertising rates should reflect elements beyond the simple standard used so far, page views.

    Full article here.


    read more at Ajaxian
    post comment

    Ken Russell on the new Java Plugin [19 Oct 2007|01:43am]
    15:00 18.10.2007
    Ken Russell on the new Java Plugin

    After we posted about the news that Sun has rewritten the browser Java plugin system, we got a chance to sit down with the lead engineer on the project, Ken Russell.

    He got to tell us about the fun implementation issues behind the rewrite. It turns out that the new system is mostly written in Java itself, and there is a very thin bridge to the browser. The JVM also runs in its own OS process, so if the JVM crashes it doesn’t affect the browser.

    There were also other tidbits, such as having JNLP working natively in the browser, and how this could be used to allow other scripting engines such as JRuby to run in the browser. One JNLP extension, and everyone can share JRuby.


    read more at Ajaxian
    post comment

    As they did last year, Poptech is streaming their... [19 Oct 2007|07:03am]
    22:23 16.10.2007
    As they did last year, Poptech is streaming their...

    As they did last year, Poptech is streaming their entire conference live on the web for free. October 18-20. They also take questions from the web audience, several of which they used last year on stage.

    (link)

    read more at kottke.org
    post comment

    What if the Google homepage were optimized for Google? (via... [19 Oct 2007|07:03am]
    14:18 17.10.2007
    What if the Google homepage were optimized for Google? (via...

    What if the Google homepage were optimized for Google? (via magnetbox)

    (link)

    read more at kottke.org
    post comment

    The Boston Red Sox's designated hitter, David Ortiz, makes extensive... [19 Oct 2007|07:03am]
    15:06 17.10.2007
    The Boston Red Sox's designated hitter, David Ortiz, makes extensive...

    The Boston Red Sox's designated hitter, David Ortiz, makes extensive use of video replays during games. He reviews at-bats right after they happen and can watch every pitch he's ever seen from the pitcher that he's facing, on demand. (via collision detection)

    (link)

    read more at kottke.org
    post comment

    Whereas Mario Batali says to spare the sauce on your... [19 Oct 2007|07:03am]
    16:14 17.10.2007
    Whereas Mario Batali says to spare the sauce on your...

    Whereas Mario Batali says to spare the sauce on your pasta so that you can taste the pasta, Mark Bittman suggests the opposite: the pasta adds little flavor or nutrition so use more sauce, vegetables, and meat. Who's right? Who cares! Have it one way one night, do it the other way some other night.

    (link)

    read more at kottke.org
    post comment

    Do you make a distinction between typos and misspellings, or is... [19 Oct 2007|07:03am]
    16:26 17.10.2007
    Do you make a distinction between typos and misspellings, or is...

    Do you make a distinction between typos and misspellings, or is that just me? For example, "regualr" is a typo while "refridgerator" is a misspelling. The former is a mechanical error while the latter demonstrates a lack of specific knowledge. Both are signs of sloppy writing which might be why people don't often distinguish the two.

    (link) (Comment on this)

    read more at kottke.org
    post comment

    Two bits (bites? har har) of Apple news: 1. Steve... [19 Oct 2007|07:03am]
    17:05 17.10.2007
    Two bits (bites? har har) of Apple news: 1. Steve...

    Two bits (bites? har har) of Apple news:

    1. Steve Jobs has announced that an SDK will be available for the iPhone and iPod touch in February. No more hacking your phone to put applications on it.

    2. You can now preorder OS X 10.5 (Leopard) at Amazon for $109...that's $20 off the retail price. The offer comes with a pre-order price guarantee; if the price drops before it ships, you get it for the lower price.

    (link)

    read more at kottke.org
    post comment

    Dr. James Watson, Nobel laureate: He says that he is... [19 Oct 2007|07:03am]
    17:21 17.10.2007
    Dr. James Watson, Nobel laureate: He says that he is...

    Dr. James Watson, Nobel laureate:

    He says that he is "inherently gloomy about the prospect of Africa" because "all our social policies are based on the fact that their intelligence is the same as ours - whereas all the testing says not really", and I know that this "hot potato" is going to be difficult to address. His hope is that everyone is equal, but he counters that "people who have to deal with black employees find this not true". He says that you should not discriminate on the basis of colour, because "there are many people of colour who are very talented, but don't promote them when they haven't succeeded at the lower level". He writes that "there is no firm reason to anticipate that the intellectual capacities of peoples geographically separated in their evolution should prove to have evolved identically. Our wanting to reserve equal powers of reason as some universal heritage of humanity will not be enough to make it so".

    Watson's comments have caused some controversy. (thx, demetrice, who says "this makes Wes Anderson look like Medgar Evers")

    (link)

    read more at kottke.org
    post comment

    A comparison of the Last.fm chart and the official UK... [19 Oct 2007|07:03am]
    18:49 17.10.2007
    A comparison of the Last.fm chart and the official UK...

    A comparison of the Last.fm chart and the official UK downloads chart after Radiohead's In Rainbows was released online last week. The top 10 on Last.fm: all Radiohead. Official chart: nada. (via adactio)

    (link)

    read more at kottke.org
    post comment

    3x3 video mashup call and response old commercial row row... [19 Oct 2007|07:03am]
    20:37 17.10.2007
    3x3 video mashup call and response old commercial row row...

    3x3 video mashup call and response old commercial row row row your boat. Oh, just go watch it, it's cool, especially if you like The Clapper and Christian Marclay. (via waxy, from whom I'm detecting signs of life re: his blog)

    (link)

    read more at kottke.org
    post comment

    The NYC Dept of Transportation is introducing compass decals to... [19 Oct 2007|07:03am]
    20:54 17.10.2007
    The NYC Dept of Transportation is introducing compass decals to...

    The NYC Dept of Transportation is introducing compass decals to be placed on sidewalks at subway exits to help orient disembarking passengers. I thought I'd posted a link about this idea before on kottke.org, but the only reference I can find is a discussion about compasses on manhole covers. (thx, erik)

    Update: Aha, here's the entry. John has more.

    (link)

    read more at kottke.org
    post comment

    According to the person who filed a re-examination request, the... [19 Oct 2007|07:03am]
    21:14 17.10.2007
    According to the person who filed a re-examination request, the...

    According to the person who filed a re-examination request, the US Patent Office has rejected a number of broad claims related to Amazon's one-click patent.

    In its Office Action released 9 October 2007, the Patent Office found that the prior art I found and submitted completely anticipated the broadest claims of the patent, U.S. Patent No. 5,960,411.

    The patent is not off the books yet...Amazon has a chance to respond before that happens. People have been waiting for this for a long time. (via marginal revolution)

    (link)

    read more at kottke.org
    post comment

    In the ongoing battle between the iTunes Music Store and <a... [19 Oct 2007|07:03am]
    23:16 17.10.2007
    In the ongoing battle between the iTunes Music Store and <a...

    In the ongoing battle between the iTunes Music Store and Amazon's MP3 store, Amazon is giving a 20% referral fee to their associates for each song sold through the end of the year. Wow. That's $1.80 on a $8.99 album...I wonder if Amazon's selling these for below cost (like they did with Harry Potter.) (via nelson)

    (link)

    read more at kottke.org
    post comment

    Second trailer for the could-be-amazing I'm Not There, a movie... [19 Oct 2007|07:03am]
    13:47 18.10.2007
    Second trailer for the could-be-amazing I'm Not There, a movie...

    Second trailer for the could-be-amazing I'm Not There, a movie about Bob Dylan, starring Christian Bale, Heath Ledger, Cate Blanchett, and three other actors as Bob Dylan. Not very related: would any of Christian Bale's characters be any good in bed?

    (link)

    read more at kottke.org
    post comment

    A review of the script for Where the Wild Things... [19 Oct 2007|07:03am]
    14:52 18.10.2007
    A review of the script for Where the Wild Things...

    A review of the script for Where the Wild Things Are, written by Dave Eggers and Spike Jonze (the script, not the review):

    Where the Wild Things Are is filled with richly imagined psychological detail, and the screenplay for this live-action film simply becomes a longer and more moving version of what Maurice Sendak's book has always been at heart: a book about a lonely boy leaving the emotional terrain of boyhood behind.

    (link)

    read more at kottke.org
    post comment

    iRobot, the makers of the Roomba robotic vacuum cleaner, also makes... [19 Oct 2007|07:03am]
    16:03 18.10.2007
    iRobot, the makers of the Roomba robotic vacuum cleaner, also makes...

    iRobot, the makers of the Roomba robotic vacuum cleaner, also makes a pool cleaning robot.

    (link)

    read more at kottke.org
    post comment

    A pair of well-to-do auto enthusiasts named Alex Roy and... [19 Oct 2007|07:03am]
    18:21 18.10.2007
    A pair of well-to-do auto enthusiasts named Alex Roy and...

    A pair of well-to-do auto enthusiasts named Alex Roy and Dave Maher set the unofficial record for crossing the US by car: 31 hours, 4 minutes, faster than the old record of 32 hours, 7 minutes.

    According to Yates and his fellow Cannonballers, trying to beat that record today is pointless. Their argument goes something like this: Cannonball records were set back when the free-wheelin' '70s hooked up with the greed-is-good '80s for fat lines of cocaine and unprotected sex. But these, brother, are Patriot Act days - executive-privilege end times in which no rogue deed goes untracked, no E-ZPass unlogged, no roaming cell phone unmonitored by perihelion satellite. Big Brother is definitely watching. Big Speed, the old Cannonballers say, is a quaint, 20th-century idea, like pay phones or print magazines.

    Roy was inspired to take up fast driving by the short film C'était un Rendez-vous, where Claude Lelouch races through Paris at breakneck speeds to meet his sweetheart in Montmartre. Here's the route they took, another piece on the record in the NY Times, and a book by Roy on his exploits. This is the sort of thing that is really, really cool up until the moment Roy's tricked out BMW makes contact with a family minivan at 120mph...and then, not so much.

    Update: Here's a video of the pair zooming along on the freeway. Comment on YouTube:

    Those guys look like they're doing about 90-95... BFD. You see that all the time going up and down I-5 and I-95.. I once was doing about 90 down I-95 and got passed by a HOUSE on a flatbed truck. (yawn)

    (link)

    read more at kottke.org
    post comment

    Improv Everywhere's latest mission: 111 topless men shopping at Abercrombie... [19 Oct 2007|07:03am]
    19:27 18.10.2007
    Improv Everywhere's latest mission: 111 topless men shopping at Abercrombie...

    Improv Everywhere's latest mission: 111 topless men shopping at Abercrombie and Fitch, a store that features a shirtless male greeter and tons of shirtless male advertising.

    (link)

    read more at kottke.org
    post comment

    Tattoos for blind people can be made by placing implants... [19 Oct 2007|07:03am]
    21:37 18.10.2007
    Tattoos for blind people can be made by placing implants...

    Tattoos for blind people can be made by placing implants under the skin to create embossed text on the skin.

    Update: Somewhat related is braille graffiti. (thx, jake)

    (link)

    read more at kottke.org
    post comment

    David Pogue has been keeping a list of questions that... [19 Oct 2007|07:03am]
    22:29 18.10.2007
    David Pogue has been keeping a list of questions that...

    David Pogue has been keeping a list of questions that he doesn't have answers for; some of them are pretty interesting.

    * Why is Wi-Fi free at cheap hotels, but $14 a night at expensive ones?
    * Do P.R. people really expect anyone to believe that the standard, stilted, second-paragraph C.E.O. quote was really uttered by a human being?
    * Why doesn't someone start a cellphone company that bills you only for what you use? That model works O.K. for the electricity, gas and water companies -- and people would beat a path to its door.
    * Why doesn't everyone have lights that turn off automatically when the room is empty?

    (link) (Comment on this)

    read more at kottke.org
    post comment

    It's worth sitting through the first several minutes of this... [19 Oct 2007|07:03am]
    23:24 18.10.2007
    It's worth sitting through the first several minutes of this...

    It's worth sitting through the first several minutes of this documentary on the speech patterns of Edwardian-era Britons to hear Joan Washington, the host and an accent expert, speak with several different British accents.

    (link)

    read more at kottke.org
    post comment

    Photograph of the graves of Vincent and Theodore van Gogh... [19 Oct 2007|07:03am]
    01:14 19.10.2007
    Photograph of the graves of Vincent and Theodore van Gogh...

    Photograph of the graves of Vincent and Theodore van Gogh in Auvers-sur-Oise, France. (Don't quite know why I'm posting this...it just struck me is all.)

    (link)

    read more at kottke.org
    post comment

    navigation
    [ viewing | October 19th, 2007 ]
    [ go | previous day|next day ]