collision detection
content | discontent
send me yours
January 06, 2003
A computer that glows

There's an interesting piece by John Markoff in the New York Times today about a new Apple patent -- for a computer with a glowing, external, LED-covered case.

The company's United States patent application, No. 20030002246, entitled "active enclosure for a computing device," describes a machine that contains an array of rainbow-hued light-emitting diodes. It seems that the quirky computer maker is considering the manufacture of a machine that acts something like a mood ring — a computer whose shells change colors at the owner's whim.

Though Markoff doesn't make this connection, it sounds to me like Apple is creating an "ambient device." I wrote about this last month in the New York Times Magazine, when I profiled Ambient Devices, a incredibly cool Cambridge-based company, who are pioneering the idea of "ambient information." They've created a small glass Orb that changes color to match information you want to monitor:

The orb sits on your office desk and glows a quiet yellow. To a visitor, it might appear to be a slightly fey designer lamp, or perhaps a mutant night light. In reality, it's a financial tool: the orb changes colors to track the performance of your stocks. When the market is stable, it glows yellow; when stocks are soaring, it becomes increasingly green. And if it begins to fade into a deep scarlet? Better call your broker.

This is ''ambient information'' -- the newest concept in how to monitor everyday data. Normally, our digital tools are intrusive, constantly barging in to demand our attention with e-mail alerts, beeping instant messages and phone calls. The Ambient Orb, released this year by Ambient Devices, takes a different approach. It displays information that you take in subconsciously. Instead of blasting the news at you directly, it radiates it in the background.

''The point is, you don't need to keep checking into CNNfn all day long like a neurotic freak,'' says David Rose, the C.E.O. of Ambient Devices. ''You know implicitly what's going on, because the information is all around you.''

If Apple is creating an Orb-like enclosure for the computer itself, that would be an extremely cool thing. On the other hand, it wouldn't shock me if it infringes on the patents of Ambient Devices -- so there we may be in for a big patent battle here.

(Note: I went to the U.S. patent web site but couldn't find the listing of the patent itself, to point to the pictures. Can anyone find it?)

Posted by Clive Thompson at January 06, 2003 01:43 PM | TrackBack
Comments

I really did think that the concept of Ambient information was one of the most profound in that NY Times magazine. There has to be some commonality of the patents between Apple, Ambient Devices, and the lighting company.. but I imagine that'll be hashed out.

Another area that seems to be indirectly converging is this idea of information with us all the time. Ambient Devices is a great example of that, and then Microsoft recently announced their Spot initiative. Although it certainly isn't a light, they seem pretty related in concept. I wonder how much their future vision competes? I did see a watch on the Ambient website.

If Ambient is going to be facing Microsoft, I'd suggest partnering with Apple asap.

Posted by: Limen on January 14, 2003 11:21 AM

Heh. Yes, I suspect partnering with Apple is a good idea for Ambient, though who knows? If their patents precede both Apple and Microsoft, maybe they can make all their money on licensing.

Posted by: Clive on January 14, 2003 05:28 PM

I'd buy an ambient glode, if it would work here in the UK.

This is a device/app waiting for a consumer wlan interface, if you ask me. For a start, delivering information via a radio paging network limits the market to the coverage area of the paging network- more impartantly if I were to spend $150 on an intelligent ornament I wouldn't want to commit myself to an monthly fee just to make it work properly.

A configurable device runnig on 802.x or Bluetooth would be very different- change the input and formatting info to whatever you want, not just what the manufacturer makes available.

Posted by: Mike Hartley on May 23, 2003 04:37 AM

I totally agree. I think the globe is itself fairly customizable -- but the info still has to travel over the radio/pager network. Being able to run it on a personal, local wireless link would rock much more.

Posted by: Clive on May 23, 2003 08:52 AM

well, wifi would rock for the 10% of the market that actually has a local wireless network. but if you are trying to create a broadly applicable product, then certainly radio/pager networks are a better choice for the forseeable future. certainly covering 90% of the us market is much better than 10%.

btw - the devices work in broadcast mode, no service fee. you only pay service fees for premium information, otherwise no monthly fee at all. that said, they need to release a version in the UK

Posted by: Sam on June 11, 2003 11:53 AM

link to patent app, it takes a while for these apps to be posted

Posted by: Louis McDavid on October 7, 2003 11:19 PM

If Ambient is going to be facing Microsoft, I'd suggest partnering with Apple asap.

Posted by: sonneries on January 8, 2004 08:26 AM

Nice site. thx.

Posted by: Online Casino on January 16, 2004 12:27 PM

We can see an example of this in our code we've written so far. In each function's block, we declare variables that hold our data. When each function ends, the variables within are disposed of, and the space they were using is given back to the computer to use. The variables live in the blocks of conditionals and loops we write, but they don't cascade into functions we call, because those aren't sub-blocks, but different sections of code entirely. Every variable we've written has a well-defined lifetime of one function.

Posted by: Blanche on January 20, 2004 11:36 AM

The Stack is just what it sounds like: a tower of things that starts at the bottom and builds upward as it goes. In our case, the things in the stack are called "Stack Frames" or just "frames". We start with one stack frame at the very bottom, and we build up from there.

Posted by: Joos on January 20, 2004 11:36 AM

When a variable is finished with it's work, it does not go into retirement, and it is never mentioned again. Variables simply cease to exist, and the thirty-two bits of data that they held is released, so that some other variable may later use them.

Posted by: Phillipa on January 20, 2004 11:36 AM

Our next line looks familiar, except it starts with an asterisk. Again, we're using the star operator, and noting that this variable we're working with is a pointer. If we didn't, the computer would try to put the results of the right hand side of this statement (which evaluates to 6) into the pointer, overriding the value we need in the pointer, which is an address. This way, the computer knows to put the data not in the pointer, but into the place the pointer points to, which is in the Heap. So after this line, our int is living happily in the Heap, storing a value of 6, and our pointer tells us where that data is living.

Posted by: Randall on January 20, 2004 11:37 AM

This back and forth is an important concept to understand in C programming, especially on the Mac's RISC architecture. Almost every variable you work with can be represented in 32 bits of memory: thirty-two 1s and 0s define the data that a simple variable can hold. There are exceptions, like on the new 64-bit G5s and in the 128-bit world of AltiVec

Posted by: Mildred on January 20, 2004 11:37 AM

When a variable is finished with it's work, it does not go into retirement, and it is never mentioned again. Variables simply cease to exist, and the thirty-two bits of data that they held is released, so that some other variable may later use them.

Posted by: Beatrice on January 20, 2004 11:37 AM

Each Stack Frame represents a function. The bottom frame is always the main function, and the frames above it are the other functions that main calls. At any given time, the stack can show you the path your code has taken to get to where it is. The top frame represents the function the code is currently executing, and the frame below it is the function that called the current function, and the frame below that represents the function that called the function that called the current function, and so on all the way down to main, which is the starting point of any C program.

Posted by: Francis on January 20, 2004 11:37 AM

Since the Heap has no definite rules as to where it will create space for you, there must be some way of figuring out where your new space is. And the answer is, simply enough, addressing. When you create new space in the heap to hold your data, you get back an address that tells you where your new space is, so your bits can move in. This address is called a Pointer, and it's really just a hexadecimal number that points to a location in the heap. Since it's really just a number, it can be stored quite nicely into a variable.

Posted by: Leonard on January 20, 2004 11:37 AM

Note first that favoriteNumbers type changed. Instead of our familiar int, we're now using int*. The asterisk here is an operator, which is often called the "star operator". You will remember that we also use an asterisk as a sign for multiplication. The positioning of the asterisk changes its meaning. This operator effectively means "this is a pointer". Here it says that favoriteNumber will be not an int but a pointer to an int. And instead of simply going on to say what we're putting in that int, we have to take an extra step and create the space, which is what does. This function takes an argument that specifies how much space you need and then returns a pointer to that space. We've passed it the result of another function, , which we pass int, a type. In reality, is a macro, but for now we don't have to care: all we need to know is that it tells us the size of whatever we gave it, in this case an int. So when is done, it gives us an address in the heap where we can put an integer. It is important to remember that the data is stored in the heap, while the address of that data is stored in a pointer on the stack.

Posted by: Machutus on January 20, 2004 11:37 AM

We can see an example of this in our code we've written so far. In each function's block, we declare variables that hold our data. When each function ends, the variables within are disposed of, and the space they were using is given back to the computer to use. The variables live in the blocks of conditionals and loops we write, but they don't cascade into functions we call, because those aren't sub-blocks, but different sections of code entirely. Every variable we've written has a well-defined lifetime of one function.

Posted by: Rosanna on January 20, 2004 11:38 AM


  • カリビアンコム caribbeancom

  • カリビアン caribbean

  • 米国性動画通信 2345 2345.tv 外人 海外 洋物 洋もの ポルノ 無修正ビデオ

  • オナニーコム 0721.com 0721

  • コスチュームシアター costumetheater

  • DXLIVE DX LIVE ライブチャット

  • DXライブ DX ライブ デラックスライブ ビデオチャット

  • EXSHOT EX SHOT動画チャット

  • EXショット EX ショット アダルトチャット

  • Girls On Air GirlsOnAir

  • ガールズオンエアー GOA

  • 一本道 一本堂 1本道

  • HGMO HGMO H:G:M:O

  • 東京真夜中DX TOKYONIGHTS

  • URAYA URAYAOnlineTV うらや オンライン TV

  • X-GALLERY XGALLERY Xギャラリー

  • 日本人のおしっこEX JapanesePeeEX Japanese Pee EX

  • 赤外線盗撮の世界 XRAY

  • Erox EroxJapan Z EroxJapanZ エロックス エロックスジャパンZ

  • URAMOVIE 裏ムービー

  • HYPER裏ビデオ通信 ハイパー裏ビデオ通信 PINKEYES.COM

  • 出会い PURE21

  • エロアニメ TV エロアニメTV EroanimeTV Eroanime TV

  • ネットコミック NETCOMIC

  • 週間ドラムカン 文庫ドラムカン

  • JapaBeauty JapaBeauty.tv ジャパビューティー

  • eroika eroika.com エロイカ

  • 抜天市場 抜き天 抜店 nukiten

  • 画像

  • 動画

  • アイコラ

  • 盗撮

  • 無料

  • 写真集

  • 無修正

  • 覗き のぞき ノゾキ

  • サンプル SAMPLE

  • 壁紙

  • レイプ

  • パンチラ ぱんちら

  • コスプレ

  • 裏ビデオ

  • アダルト あだると

  • ダウンロード DOWNLOAD

  • AV女優タレントアイドル

  • 巨乳

  • ブルマ ぶるま

  • セーラー服 制服 ブルセラ

  • マンコ まんこ

  • セックス SEX

  • エッチ えっち

  • 熟女 人妻

  • オナニー おなにー

  • 女子校生 女子高生

  • エロ えろ ero

  • ヌード ヘアヌード nude

  • 99 BB 9BB 99B 99bb 99bb.com GON 裏ビデオ 無修正 有料 会員制

  • フリーセックス フリーセックスジャパン FreeSexJapan Free Sex Japan

  • 東京キュートガールズ TokyoCuteGirls Tokyo Cute Girls

  • 覗き屋 のぞきや のぞき屋 Nozokiaya

  • 直撃ドットコム Chokugeki.com

  • 熟まん 熟マン Jyukuman

  • Jハードコア Jhardcore J hardcore

  • JPムービーズ JPmovies JP movies

  • プリティーピンク プリティーピンクジャパン PrettyPinkJapan Pretty Pink Japan

  • JPチックス JPChicks

  • ハードポーン ハードポーンジャパン HardPornJapan Hard Porn Japan

  • J-SMUT JSMUT Jスマット

  • ヌキヌキ学園 ぬきぬき学園

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .

  • .


  • Posted by: julia on January 24, 2004 07:07 PM

    WHO CARES ASSCLOWNS..DONT WASTE TIME POSTING CRAP..JUST GO SEE SOME GOOD PORN

    Posted by: buggyprism on October 4, 2004 12:55 PM

    analvalley | backseatbangers | bangboat | bangbusbigcocksex | blackcockswhitesluts | herfirstasstomouth | herfirstbigcock | hugerealboobs | milfseeker | teensforcash | all-reality-pass | bare-foot-maniacs | big-tit-patrol | coeds-need-cash | i-spy-camel-toe | mr-chews-asian-beaver | please-bang-my-wife | reality-pass-plus | teeny-bopper-club | the-big-swallow | tinys-black-adventures | xxx-proposal | adultcams | allgangbang | allstarstuds | amateurpie | analvalley | backseatbangers | bang-boat | bangboat | bestmovies | bigcocksex | blackcockswhitesluts | cartoon69 | cheerchix | cyberfoldsweb | dopornstars | ebonyjoy | euroteensxxx | facialmag | fantasylatina | fetishhell | gangbangsquad | girlsgetcrazy | hardporn | herfirstanalsex | herfirstasstomouth | herfirstbigcock | herfirstlesbiansex | hirsutebeavers | hisfirstgaysex | hisfirsthugecock | hugerealboobs | indiachix | interracialjoy | iteens | justfacials | largegirlsxxx | lesboerotica | maturexrotica | milfseeker | musclemenxxx | mysextour | ohboys | pornoground | pornstudsearch | seeasians | sporterotica | successwithgirls | teensforcash | tittymax | trannyhouse | twinksforcash | ultravideos | voyeurgals | xxxsupersize | gangbus | girlsgetcrazy | milfseeker | rectalrooter | teens-for-cash | welivetogether | backroomfacials | backseatbanger | bang-boat | bangboat | bigcocksex | freshauditions | inthevip | milfseeker | teensforcash | xxxproposal | hotasiancherry | internationalbikini | karaamateurs | karasamateur | latinakiss | lesbianpink | majormelons | nastyblacksex | nastyboys | pregnantbabes | teensteam | wetlesbians | com | ebonyfantasy | exoticredheads | fantasytoons | firstlesbiankiss | fortbooty | foxybrunettes | girlsntoys | greatlookingass | justasianteens | justforladies | karasamateurs | adultmoviematrix | amateurmoviematrix | analmoviematrix | bigboobsgalore | cartoonsexonline | ebonyarousal | ebonymoviematrix | explicitlesbians | firsttimetwinks | gayblackhardcore | gayxxxarchive | hardcoremoviematrix | hardcoresexshack | homesexnetwork | hottestanalsex | interracialmoviematrix | interracialparadise | lesbianmoviematrix | maturebelle | maturemoviematrix | maturexxxarchive | milfsearch | milfsearcher | oralmoviematrix | petitegoddess | puregroupsex | ratemytranny | shemalesparadise | sinfulfacials | sluttytransexuals | teeneroticaclub | teenmoviematrix | theamateurlounge | xratedlatinos | xxxteentease | all-reality-pass | big-tit-patrol | coeds-need-cash | horny-spanish-flies | hornyspanishflies | i-spy-camel-toe | mr-chews-asian-beaver | please-bang-my-wife | reality-pass | teeny-bopper-club | tinys-black-adventures | all-reality-pass | allrealitypass | barefootmaniacs | big-tit-patrol | bigtitpatrol | horny-spanish-flies | hornyspanishflies | i-spy-camel-toe | ispycameltoe | mr-chews-asian-beaver | please-bang-my-wife | reality-pass-plus | teeny-bopper-club | tinys-black-adventures | tinysblackadventures | true-celebs | xxx-proposal | all-reality-pass | barefoot-maniacs | big-tit-patrol | horny-spanish-flies | i-spy-camel-toe | mr-chews-asian-beaver | please-bang-my-wife | reality-pass-plus | teeny-bopper-club | tinys-black-adventures | back-seat-bangers | bang-boat | bangboat | herfirstbigcock | milfseek | tittymax | trannyhouse | ultravideo | ultravideos | voyeurgals | backseatbangers | bangboat | bestmovies | cartoon69 | cheerchix | cyberfoldsweb | dopornstars | ebonyjoy | euroteensxxx | facialmag | fantasylatina | fetishhell | gangbangsquad | milfseeker | teensforcash | allamateurmovies | bangboat | bigcocksex | bignaturals | boysfirsttime | inthevip | mikeinbrazil | milf-riders | milfseeker | india-uncovered | interracial-sex-fest | kunt-fu | latina-time | latins-finest | lipstick-lesbo | man-hunter | mini-boobs | mission-upskirt | naughty-amateur | naughty-therapy | teens-for-cash | bangbus | backseatbangers | teensteam | cumfiesta | gangbus | milf-seeker | milfrider | milf | captainstabbin | backseatbangers | FreakCock | GangBangTryout | TrueCelebs | NudeCelebsRevue | CoedsNeedCash | BigTitPorn | GirlieZoo | OfficeGirlSex | CumshotParties | Threesomes | HotFarmGirls | GangBangModels | CampPorno | DoPornStars | USAEscorts |

    Posted by: campporno on December 21, 2004 11:45 AM

    fistbang | freshauditions | freshteens | girlforgirl | kinkymaturesluts | pimp4aday | shockingcocks | sugarmamas | trannytrouble | videoseekers | allrealitypass | barefootmaniacs | bigtitpatrol | coedsneedcash | hornyspanishflies | ispycameltoe | mrchewsasianbeaver | pleasebangmywife | realitypassplus | teenybopperclub | thebigswallow | tinysblackadventures | truecelebs | xxxproposal | absolutelymale | adultchatnetwork | asianheat | kara | karasamateurs | teenbody | teenfactory | upskirtschool | videoseekers | voyeurteens | nude-celebs-revue | office-girl-sex | old-babes-home | orgy-machine | orgy-movie-madness | soap-boys | street-strippers | sugar-mamas | sweet-cherrys | taboo-insertions | teen-body | teen-factory | upskirt-school | voyeur-teens | xxx-tryouts | strap-on-teens | teen-cumers | the-big-swallow | three-somes | tiny-tit-babes | tranny-a-gogo | true-celebs | gang-bang-tryout | gangbang-tryout | girlie-flashers | girlie-zoo | girls-are-nuts | hardcore-teen-flics | hentai-playground | suckmebitch | sugar-mamas | sugarmamas | tranny-trouble | video-seekers | wet-black-panties | x-rated-pornos | xxx-adult-stars | xxx-asians | xxx-gold | ebony-cheeks | ebonycheeks | fresh-auditions | freshauditions | indiauncovered | kinkymaturesluts | pimp-4-a-day | pimp4aday | suck-me-bitch | chicks-go-both-ways | fucked-for-free | gay-sugar-daddy | guys-in-the-city | horny-traveler | hot-bods-cool-rides | internet-hookups | milf-searcher | reality-pass | rub-and-tug | supermarket-whores | hidden-eyes | hot-asian-cherry | hot-little-package | international-bikini | just-asian-teens | just-for-ladies | latina-kiss | lesbian-pink | major-melons | my-kinky-wife | nasty-black-sex | nasty-boys | obey-me-slave | oral-addiction | ebony-cheeks | fist-bang | fresh-auditions | fresh-teens | kinky-mature-sluts | pimp-4-a-day | shocking-cocks | suck-me-bitch | super-bush | tranny-trouble | video-seekers | analvalley | backseatbangers | bang-boat | bangboat | bestmovies | bigcocksex | blackcockswhitesluts | cartoon69 | FootErotica | StraightGoesGay | RawXXX | GangBangLessons | SuperTwink | NaughtyTherapy | SquirtingChicks | MomsNeedCash | WaterBondage | HugeDicksLittleChicks | TwinksFromTheHood | XXXCasting | SoloGirls | NaughtyNati | TeenDirtBags | CumSwallowingLessons | Cocks | TittieFuckers | XXXTryouts | Her1stAnal | BangkokBangers | TrueCelebs | WickedWendy | AnalSexLessons | allamateurmovies | bignaturals | boysfirsttime | firsttimeauditions | inthevip | eurosexparties | megacockcravers | mikeinbrazil | nastyfetish | roundandbrown | topshelfpussy | trannysurprise | welivetogether | wivesinpantyhose | gay-hitchhiker | gay-super-cocks | gigant-gay-cock | girl-for-girl | girl-ranch | grande-girls | hardcore-toons | hot-nude-granny | india-uncovered | interracial-sex-fest | analvalley | bestmovies | kunt-fu | latina-time | latins-finest | man-hunter | mini-boobs | mission-upskirt | naughty-amateur | naughty-therapy | never-shot | barefootconfidential | barefootmaniacs | bigtitpatrol | hornyspanishflies | ispycameltoe | pinkcandyshavers | pumpthatass | texasdildomassacre | tinysblackadventures | vanillateensblackcream | oral-fantasies | perfect-orgy | pom-pom-porno | porn-wannabe | pregnant-bang | red-hair-sex | secret-fetishes | sexy-hardcore | shes-huge | slam-that-ass | slut-movies | soap-boys | street-strippers | sugar-mamas | sweet-cherrys | taboo-insertions | teen-body | teen-factory | upskirt-school | voyeur-teens | xxx-tryouts |

    Posted by: xxx-tryouts on January 9, 2005 07:30 PM

    Hello folks nice blog youre running

    Posted by: lolita on January 20, 2005 12:09 AM
    Post a comment
    Name:


    Email Address:


    URL:


    Comments:


    Remember info?