Entries from July 2008 ↓

Set Up Push Email, Contacts, and Calendar on Your iPhone for Free (Adam Pash/Lifehacker)

View original post found on Techmeme authored by (author unknown)

Adam Pash / Lifehacker:
Set Up Push Email, Contacts, and Calendar on Your iPhone for Free  —  One of the coolest features available in the new iPhone 2.0 software update is the ability to get new email messages, contacts, and calendar events pushed to your device automatically.  The catch: If you don't want to shell …

Radiohead’s Camera-Free, Laser-Made Music Video Hits the Web, Lets You Manipulate it in Real Time [Radiohead]

View original post found on Gizmodo authored by Adam Frucci

The Radiohead video for “House of Cards” that used no cameras or lights, only fancy lasers, just hit the web, and it’s just as crazy and trippy as the screenshots suggested. Above, check out the video, while after the jump you’ll find another video that details just how it was made. Did I mention that because this video is pure data instead of images you can manipulate it in real time using a visualizer? Because you can.

Also be sure to check out the awesome visualizer, which lets you manipulate the data to adjust the image and rotate around the objects in real-time. The most fun time waster you’ll find all week, guaranteed. [Radiohead]


Macally PowerLink is Flash drive, Sync Cable, Emergency Juice for iPod, iPhone [Power]

View original post found on Gizmodo authored by Kit Eaton

You know how it is: you’re camping in the wild, and your iPhone suddenly runs out of juice, just as you get bored stiff with the music selection you’ve got aboard it. Previously you’d've had to carry a bunch of stuff around to sort this out, but Macally’s PowerLink has come to the rescue. With USB plug on one end and 30-pin iPod connector on the other, it acts as a sync cable, but also has a battery inside to give you a squirt of extra power if you’re in a pinch. It also packs a 2GB flash drive, but you’ll need to get mp3’s off that via iTunes, sadly. No info on how long the battery lasts, but as a 3-in-1 gizmo it’s pretty useful. Out “soon” for $49.99. [OhGizmo]


iPhone Web: Multitouch JavaScript “Virtual Light Table”

View original post found on Ajaxian » Front Page authored by Dion Almaer

The video above is Tom Robinson, one of the 280 North fellas who is smart enough to port Cocoa to the Web, showing us his multitouch “virtual light table” using the JavaScript APIs nicely documented by SitePen, as well as Apple.

His ~100 lines of code uses the new CSS transforms handles all of the touch events: touchstart, touchmove, touchend, touchcancel with code such as:

PLAIN TEXT
JAVASCRIPT:

  1.  
  2. for (var i = 0; i <e.touches.length; i++) {
  3.   // for each "movable" touch event:
  4.         if (e.touches[i].target.className == “movable”) {
  5.                 var id = e.touches[i].identifier;
  6.                
  7.                 // record initial data in the "moving" hash
  8.                 moving[id] = {
  9.                         identifier: id,
  10.                         target:         e.touches[i].target,
  11.                         mouse:    { x: e.touches[i].clientX, y: e.touches[i].clientY },
  12.                         position:       { x: e.touches[i].target.xfmTX, y: e.touches[i].target.xfmTY },
  13.                         rotation:       e.touches[i].target.xfmR,
  14.                         scale:   e.touches[i].target.xfmS
  15.                 };
  16.                
  17.                 // move to the front
  18.                 moving[id].target.style.zIndex = zIndexCount++;
  19.                
  20.                 // reset rotate/scale mode to off
  21.                 moving[id].rotateScaleMode = false;
  22.         }
  23. }
  24.  

He also added a nice bridge to allow you to somewhat play from the desktop:

In desktop browsers it uses the previous clicked location as a second “touch”, so you can click a photo then click and drag another spot on the photo to resize and rotate (notice the yellow dot).

Clearly the reverse of this bridge would be even more useful, since iPhone only sends mouse events under specific conditions. The mousedown, mouseup, and mousemove events could be emulated using the touch equivalents to make certain web apps work on the iPhone without much additional work. Of course you would need to either cancel the default actions (i.e. panning and zooming) on touch events, or have some way to manage the interactions between them.

Jquery-Click Menu

View original post found on Ajax < Web development | AjaxRain.com authored by (author unknown)

A clickable dropdown menu with (theoretically unlimited) submenus made out of an unordered list.

Simple CSS vertical menu

View original post found on Ajax < Web development | AjaxRain.com authored by (author unknown)

A simple vertical menu digg-like using CSS and javascript to show/hide sub-menu.

mooMessagebox

View original post found on Ajax < Web development | AjaxRain.com authored by (author unknown)

Highly customizable message boxes with the mootools framework

Justify elements using jQuery

View original post found on Ajax < Web development | AjaxRain.com authored by (author unknown)

The simplest way to do justify the labels in the form using Jquery

jQuery InputHintBox

View original post found on Ajax < Web development | AjaxRain.com authored by (author unknown)

An easy to use hint box script for forms using Jquery

Quote Scroller V2.3

View original post found on Ajax < Web development | AjaxRain.com authored by (author unknown)

Scrolls a collection of phrases of your choice across the screen, with various sizes for perspective.