stargeek
PHP news website logo.
home    PHP scripts    articles    seo tools    links    search    contact    shop    realtors


The pleasures of browsing







The pleasures of browsing

The pleasures of browsing 07/19/2004 09:53 AM

I don't know Debbie Davidson, but I went to her LiveJournal blog because she dropped me a line about something I'd written. Thumbing through the entries, you not only get dropped into the stream of her life, but you find stories like this one about how 9/11 intersected the lives of several of her friends. We just haven't had anything quite like this before....




This is a GrokNews Entry: (what is grok?)





Similar Items

The pleasures of browsing

Grok Headline matches for The pleasures of browsing

Gaming pleasures to come


Gaming pleasures to come 07/13/2004 12:24 AM
News.bbc.co.uk - Mon Jul 12, 12:23 pm GMT

Guilty Pleasures


Guilty Pleasures 04/14/2005 12:30 PM
What's your guilty pleasure? It doesn't always have to be about finance.

Guilty pleasures on your PC


Guilty pleasures on your PC 05/31/2004 06:46 AM
News24.com May 31 2004 10:50AM GMT

iPod Guilty Pleasures


iPod Guilty Pleasures 09/11/2004 10:38 AM
What's cringe-worthy to one might be sweet audio succor to another. What's hidden on an iPod can often strip down any bravado or boasts of highfalutin taste. By Don Fernandez, Cox News Service (via MyAppleMenu)

Web Browsing on Your PSP


Web Browsing on Your PSP 03/27/2005 10:46 AM

Opera browsing, as seen on TV


Opera browsing, as seen on TV 09/09/2004 08:43 PM
Opera Software releases a new version of its browser, aimed at viewing Web pages on TV.

Browsing at Google


Browsing at Google 09/22/2004 09:59 AM
The rumors about Google becoming a Web browser begin to swirl in earnest.

Browsing for Alternatives


Browsing for Alternatives 08/19/2004 09:51 AM

Direct and Related Links for ' Browsing for Alternatives'

“Following the discovery that several major financial institutions’ Web sites were being used to spread an Internet Explorer exploit, The Register ran the story, “CERT recommends anything but IE.” CERT’s point is that enterprises and individual users can reduce their risk exposure by using browsers that aren’t as susceptible to Web-based exploits. So, why are we giving malware writers easy targets? Why aren’t we switching to more secure browsers? When Robert Morris released his famous…

Browsing the Web? Not Anymore


Browsing the Web? Not Anymore 07/09/2004 04:50 PM
I can't remember the last time I actually browsed the Web. You know, just sort of aimlessly following links in the hopes of encountering something unique or interesting. (I'm also glad that idea of calling it "surfing" seems to have become less popular.) Between the few sites I visit daily to get things done, links that come in via e-mail, and the various weblogs and news feeds I guess I'm spending enough time in my browser already. It's a far...

Tabbed Browsing


Tabbed Browsing 03/11/2003 09:44 AM

I've seen a lot of comments in various Mac forums where people have claimed that "Dave Hyatt said he doesn't like tabbed browsing!" or "Dave Hyatt hates tabbed browsing!" I find these posts perplexing, because I never said any such thing, and of course the opposite is true. I love tabbed browsing. I implemented tabbrowser in the Mozilla trunk. I implemented tabbed browsing in Chimera. I implemented the version used in Phoenix. Given how many times I've implemented it, I'm amazed that people would think that I am not a tabbed browsing devotee.

That said, I wanted to express some of my thoughts about the various UI decisions one has to make when designing a tabbed browsing system.

Target Audience

I think the most important question you have to answer before designing a multi-page system is "Who is my target audience?" In the case of Phoenix the target audience is experts and power users. I do not believe that tabs serve any useful purpose for novice users, because novice users don't ever use multiple views of Web data. They just browse from page to page.

The classic novice user Web setup is to have Windows IE maximized with the sidebar open. That kind of user simply doesn't need tabs. Tabs are total overkill for what that person wants to do with his/her Web browser.

That is why I think ideas like this, although extremely pretty, seem to be targeting an audience that IMO doesn't exist. A power user doesn't want thumbnails, since they wouldn't be easily distinguishable anyway once you opened several tabs, the overflow mechanism for such a system would be clumsy (or would use too much space, scrollbar anyone?), and you lose too much horizontal real estate. Sure, it's got a neat initial "whizzy" factor to it, but it's simply not as usable or as scalable as the classic tab strip model.

Bookmark Groups vs. Folder Options

This is something I've implemented three different ways in Phoenix, Mozilla, and Chimera. In both Chimera and Mozilla the bookmark group is a special entity that you have to make by taking a tab snapshot. I now hate this idea. The implementation is to just have a tagged special folder that when clicked loads all the bookmarks in tabs, a sort of one-click clustered loading. This complicates bookmark management and viewing, since you now have this third kind of entity along with regular folders and bookmarks.

I much prefer the system we came up with for Phoenix, which is borrowed somewhat from Opera. In this system, folder submenus pick up an extra "Open in Tabs" menu item, and you can just load any folder's children in tabs. No special new kind of bookmark group, and no special means required for creating bookmark groups. You just work with folders and can now load a single page of a group by drilling into a folder, or load all the pages in a group.

With the Chimera way, you'd end up having a Blogs group, and then you'd also have to bookmark individual blogs for when you didn't want to load the group. You had needless replication that is avoided by just making the operation available on folders instead.

Replace vs. Append?

When doing clustered loading, we took two approaches. One can be seen in Mozilla, and I personally hate it. The other can be seen in Phoenix and is my favorite choice. Mozilla actually appends the tabs loaded by a bookmark group to the end of the tabbed list. This means that if you click first on a News group and load tabs 1-5 and then click on a Blogs group, you'll end up with new tabs 6-10.

In Phoenix, you replace instead, so the News tabs go away and are replaced by tabs 6-10. The argument for append is basically that you end up with potential data loss in that you may lose access to the previous tabs by closing up some of the ones you replaced, e.g., if the second group has fewer tabs than the first. This is of course a solvable problem, though, and doesn't justify changing the default behavior to append.

Position of Tabs inside the Tab Strip

Chimera centers tabs within the tab strip. Everyone else puts them on the left. The only reason Chimera does this is because I couldn't figure out how to use the normal tab widget to make the tabs be left-aligned. Center-alignment for a dynamic tab system is of course awful, since for every tab you open, all of the tabs move.

It's much better to avoid moving all of the tabs around when a single new tab opens, and left-aligning the tabs inside the tab strip makes for a much less jarring experience.

Where do new tabs open?

A highly debated issue with tabs is "Where should new tabs open?" NetCaptor and the old Chimera (in early versions) use the following model. If you click to open a link in a new tab, then the new page will open just to the right of the current tab. Links will continue to open to the right if you keep opening them, so you may have a setup like this:

1 2 3 4

where 2 is the active tab, and you then open three more links from 2 and end up with:

1 2 7 6 5 3 4

The advantage of this approach is that similar pages stay together. The disadvantage is that the opening of new tabs is more jarring, since you do an insertion in many cases rather than an append.

A disadvantage is that you have to read the pages from right to left in order to preserve the original order. Because of this, when you *close* tabs, this model dictates that you move to the left.

You do have the advantage that when you finish with the child links, you conveniently end up back at the original document as you close up tabs.

The second model, and the one I favor (used in Phoenix, Chimera, and Mozilla now) is to always open new tabs on the far right. Usability testing at AOL showed that this was far and away what users expected to happen, and it lends a smoothness to the tab opening process, since you never move any other tabs.

You also get to read links from left to right instead of right to left, e.g., the previous example would result in:

1 2 3 4 5 6 7

In this model, in order to be able to browse the links you open effectively, when tabs are closed you need to move to the right. Note that when you finish with child links, you don't end up back at the previous page in this case, but in the common case, you do. Note that by far the common case is to simply have:

1

and that you'll open a few links, end up with:

1 2 3 4

and still end up back at 1 once you close up. The ability to easily read left to right, and to not shuffle the tabs around on the tab strip when you open new links more than makes up for the edge case where you may not end up back at the parent tab.

Close Boxes

I actually prefer Galeon's behavior here. Phoenix and Mozilla offer close boxes for the tab strip, but this UI frankly stinks, because the user expectation is that clicking on the X will actually close up the entire tab strip. In effect, the X should map to the "Close Other Tabs" command, but instead it maps to "Close Selected Tab." This is utterly confusing, and at least Chimera avoids the problem by not having a close box at all.

The right way IMO to do this is to have a close box for closing up the tab strip itself in the same place Phoenix and Mozilla have it, but to also have close boxes on the tabs themselves (the way Galeon does it). With this model, it's clear what the different close metaphors are, and you don't end up with user (even power user) confusion.

Background vs. Foreground

Despite the inconsistency with opening links in new windows, I strongly support the default in Phoenix, which is to open links in new tabs in the background by default. This option should be overridable with a modifier key (SHIFT in Phoenix) and also the default should be controllable via a pref. Phoenix, Moz and Chimera all have the same pref and modifier key, but only Phoenix defaults to background loading by default.

It's really interesting just how many different choices have been made by tabbed browsing implementers. Pick the browser that implements the system you like best I guess. :)


An Archaeology of Browsing...


An Archaeology of Browsing... 02/17/2004 10:30 PM

So here's a weird sensation. I'm trying to install a Photoshop upgrade at two in the morning, because i'm jetlagged and can't concentrate on work but can't sleep either so I'm procrastinating. And in order to install said upgrade I'm going to have to restart my browser. So I start the process of closing down windows and tabs and adding them to a little bookmarks stash and I'm about forty-five tabs down (and about half-way through the process) when I start finding clumps of windows that I opened during presentations at ETCon. One browser window is full tabs stuffed with ubicomp and networked objects sites, another is full of robot-related material. As I grab the URLs and stuff them in a folder for later, I start to realise how clearly I remember navigating to each of the sites and how I'd determined to keep them for later. Suddenly I'm back in the auditoria, next to Phil and Paul keeping notes and listening for the hum of the infinity of extension cords that litter the carpet around us.

If they'd all been hand-outs, I'd have them in my hands - little grubby bits of paper stacked in piles here and there, clogging up bags and boxes and bookcases. Every so often I'd glance inside them to find one thing in particular and a wave of nostalgia and association would fill my head. That is - at least - until I finally snapped and threw them all away. Now until this point I'd always assumed that the web was getting rid of interactions like that - that our relationships to sites were transitory and fleeting - but now I'm not so sure. The act of "saving" and the act of "having open" are gradually merging and I can foresee a time when I haven't closed my browser in months rather than weeks and in which I've managed to accumulate thousands of open windows across a whole range of applications. The stuff near the surface will be the stuff I've been working on recently, but I'll be able to do an archaeology of my own browsing when I'm bored and filter through the collected papers, throwing away the things that no longer have any relevance to my life. Will we start wanting to transfer documents in their open states between computers when we upgrade? Will we expect a computer desktop to be as persistent and never-changing as a wooden one? When someone famous dies, will the biographer go through their enormous accumulated browser cache to find out what they were interested in five or ten years ago?

Read the comments


Python Browsing Probe 0.2.0


Python Browsing Probe 0.2.0 05/12/2004 06:45 PM
A shell-like interpreter/Web browser for creating test scripts.

Python Browsing Probe 0.2.1


Python Browsing Probe 0.2.1 05/17/2004 04:36 PM
A shell-like interpreter/Web browser for creating test scripts.

Python Browsing Probe 0.2.2


Python Browsing Probe 0.2.2 05/21/2004 04:06 PM
A shell-like interpreter/Web browser for creating test scripts.

Google Goes Browsing By Name (PC World)


Google Goes Browsing By Name (PC World) 07/15/2004 08:54 AM
PC World - Toolbar now lets users navigate the Web without using URLs.

Python Browsing Probe 0.1.0


Python Browsing Probe 0.1.0 05/08/2004 07:35 AM
A shell-like interpreter/Web browser for creating test scripts.

Faster Browsing Tips


Faster Browsing Tips 08/12/2004 05:04 PM
WebDevInfo Aug 12 2004 8:01PM GMT

Python Browsing Probe 0.3.0


Python Browsing Probe 0.3.0 07/07/2004 12:59 AM
A shell-like interpreter/Web browser for creating test scripts.

Browsing will be nicer under Longhorn --
but how?


Browsing will be nicer under Longhorn --
but how?
12/30/2003 01:32 AM
Robert Scoble: “Using a Web browser on Longhorn will be far nicer than using it on Windows XP.” How so? This wasn't addressed at Microsoft's PDC. Robert won't say yet....

New MSN toolbar with tabbed browsing


New MSN toolbar with tabbed browsing 06/17/2005 05:11 PM
"Want to keep more than one website open at a time, but tired of managing multiple Internet Explorer windows? Tabbed browsing lets you have multiple pages open in a single Internet Explorer window."

contrary to the story's suggestion, even
browsing will be a


contrary to the story's suggestion, even
browsing will be a
08/08/2004 12:25 PM
TechTree Aug 8 2004 2:49PM GMT

Opera 8 aims for simpler browsing


Opera 8 aims for simpler browsing 04/19/2005 11:12 AM
New version of browser aims to attract more first-time users, but can it match Firefox's pizazz?

AOL Testing Mobile Browsing, Search


AOL Testing Mobile Browsing, Search 04/14/2005 03:07 PM
On the heels of Google adding local capabilities to its mobile search, AOL has begun beta testing its own mobile service that offers full Internet search queries, information on local interests and shopping destinations. Users simply add the AOL Mobile Search URL into their phone and they can begin to browse full Web sites.

"Homer Simpson uses tabbed browsing"


"Homer Simpson uses tabbed browsing" 12/19/2004 03:21 PM

Amazon Search Bar Will Track Your
Browsing


Amazon Search Bar Will Track Your
Browsing
04/17/2004 11:21 AM

One Million Browsing with Opera Mobile


One Million Browsing with Opera Mobile 09/20/2004 03:01 PM
theWHIR Sep 20 2004 7:17PM GMT

The State Of Mac Browsing: An
Embarrassment Of Riches


The State Of Mac Browsing: An
Embarrassment Of Riches
08/20/2004 12:58 PM
For me, Safari comes out on top. I'll stick with it, because the navigation and security tools are convenient and easy to use. By Rebecca Freed, PC World (via MyAppleMenu)

Yahoo! browsing for local partnerships


Yahoo! browsing for local partnerships 08/03/2004 04:11 AM
CHINAdaily Aug 3 2004 8:42AM GMT

Net phone browsing hits new high


Net phone browsing hits new high 08/06/2004 08:04 PM
The Euro 2004 football tournament had a big influence on June's top mobile ringtones.

IE's Tabbed Browsing Embarrassment


IE's Tabbed Browsing Embarrassment 06/17/2005 04:33 PM
Asa is smacking someone on the IE team pretty hard today: It's obviously a hack that's actually based on new windows for each tab. I can crash it at will. It's so flickery as to be completely unusable. It's filled with serious dataloss bugs. It's just crap, plain and simple. Anyone that makes any excuse for this embarrassment, please trackback me because I'm very interested in hearing how anyone can defend it. Yikes. At least there's a semi-amusing trail of...

CERT Recommends NonIE Browsing


CERT Recommends NonIE Browsing 06/30/2004 04:10 PM
"The U.S. Computer Emergency Response Team, the official U.S. body responsible for defending against online threats, also advised security administrators to consider moving to a non-Microsoft browser among six possible responses."

"Surf's Down as More Netizens Turn to
RSS for Browsing"


"Surf's Down as More Netizens Turn to
RSS for Browsing"
05/08/2004 09:06 AM

Explorer's rivals allow for tabbed
browsing


Explorer's rivals allow for tabbed
browsing
01/11/2004 07:12 PM
It has a built-in popup blocker and a built-in Google search box that spares you the need to navigate to the Google Web site. There's ...

TinyRoulette - an AppleScript for
chaotic browsing


TinyRoulette - an AppleScript for
chaotic browsing
03/06/2004 02:09 AM
I wrote this script (and a couple of other variations) to see what other people are using URL shortening services for. The script simply generates random strings of four characters and then opens a new browser window and conn...

10.3: Disabled AUTOMOUNT causes browsing
issues


10.3: Disabled AUTOMOUNT causes browsing
issues
11/16/2003 01:47 PM
After installing Panther I found that, although I could connect to remote servers via IP addresses, the Network Browser did not find any servers on our LAN. I traced the problem to a change that I made in the /etc/hostconfig ...

Surf's Down as More Netizens Turn to RSS
for Browsing


Surf's Down as More Netizens Turn to RSS
for Browsing
05/11/2004 06:18 AM
Surf's Down as More Netizens Turn to RSS for Browsing by J.D. Lasica
http://ojr.org/ojr/ workplace/1083806402.php

"Newsreader" software continues to improve, allowing infowarriors better ways to find and assemble what they are looking for on the Web. RSS may be to the Web what TiVo was to TV. J.D. Lasica reviews the latest tools.

oscommerce 2.2 file_manager.php file
browsing


oscommerce 2.2 file_manager.php file
browsing
05/17/2004 05:58 PM
Rene (May 17 2004)

10.3: Enable AppleTalk server browsing


10.3: Enable AppleTalk server browsing 10/30/2003 11:31 AM
For some reason, Panther's ability to browse a network for AppleTalk servers is turned off by default. To turn it back on, go to Applications -> Utilities -> Directory Access, and put a check in the box next to AppleTal...

Beyond browsing: Tools for the advanced
Web surfer


Beyond browsing: Tools for the advanced
Web surfer
06/26/2002 01:00 PM
ZDNet Jun 25 2002 0:07AM ET
Grok Description matches for The pleasures of browsing
GrokA matches for The pleasures of browsing

PreEmptive Solutions' Dotfuscator Will
Ship With Microsoft Visual Studio 2005


PreEmptive Solutions' Dotfuscator Will
Ship With Microsoft Visual Studio 2005
07/19/2004 09:50 AM
Microsoft Corp. and PreEmptive Solutions Inc., the leader in obfuscation, size reduction and optimization development tools, today announced the continued integration of the PreEmptive Dotfuscator® Community Edition into Microsoft® Visual Studio® 2005. By providing obfuscation tools in the box, PreEmptive and Microsoft will provide developers writing code that will run on the Microsoft .NET Framework with an extra layer of protection against reverse-engineering, or decompilation. This integration enables organizations to make code-level security part of their overall software development life cycle. The Dotfuscator Community Edition will be distributed with the beta and commercial releases of Microsoft Visual Studio 2005, significantly widening its community of users. Dotfuscator is available both in the box with Visual Studio 2005 and from the MSDN® Web site for download by MSDN subscribers.

PowerBook and iBook Confirmation?


PowerBook and iBook Confirmation? 04/16/2004 09:08 PM
MacNN joins the fray and provides their own confirmation that PowerBooks and iBooks will receive updates next week. According to the site, "Apple w...

GTA 4 Released Date Confirmation


GTA 4 Released Date Confirmation 10/30/2003 06:07 PM

Nintendo Announces Confirmation of
Next-Gen Console at E3 '05


Nintendo Announces Confirmation of
Next-Gen Console at E3 '05
06/03/2004 12:37 AM
ZDNet Jun 3 2004 4:42AM GMT

Confirmation of AT&T Wireless's $6.1
Billion 3G Commitment


Confirmation of AT&T Wireless's $6.1
Billion 3G Commitment
02/19/2004 02:39 AM
Internetnews.com confirms the $6.1 billion trigger that AT&T Wireless would have to pay DoCoMo: Internetnews.com confirms something the major media seems to have missed in the Cingular/AT&T Wireless deal: that DoCoMo would have to be paid $6.1 billion if AT&T Wireless didn't deploy 3G in four cities by 2005. This requirement will certainly push 3G rollout faster during 2004 with more alternatives--Verizon Wireless won't be the only speed demon in town. [link via TechDirt]...

Effective Order Confirmation Email


Effective Order Confirmation Email 05/02/2004 10:23 PM
"... order Confirmation emails is one of the most important touch points for keeping customers apprised of the status of their transactions...."

ABC News: Bolton Appears Headed for
Confirmation


ABC News: Bolton Appears Headed for
Confirmation
04/14/2005 04:23 AM
Bolton Appears Headed for Confirmation .. appears he will be confirmed

abcnews.go.com/Politics/wireStory?id=663831
track this site | 2 links


Democrats Don't Plan to Block
Confirmation of C.I.A. Nominee


Democrats Don't Plan to Block
Confirmation of C.I.A. Nominee
08/11/2004 10:51 PM
However, Democrats vowed to use Porter J. Goss's confirmation hearings to amplify their concerns over fatal intelligence failures.

MWSF: More Mini iPod Confirmation and
Detail?


MWSF: More Mini iPod Confirmation and
Detail?
12/29/2003 03:42 AM
Amidst the buzz surrounding the rumored "mini" iPods coming, MacRumors has received reliable confirmation that new iPods will be announced at MacWorld...

Site News: update on account
confirmation


Site News: update on account
confirmation
04/12/2005 04:38 PM
Spymac has updated the information provided in the email sent out to Spymac members over the last week. To allow Spymac to provide better service to active accounts, members will now be required to log in at least once every 30 days to keep their accounts active. (Using Spymac POP email access does not count as logging in.) Spymac will no longer be sending out emails every 4 weeks for account confirmation.

US Media Runs Pentagon Reports of Battle
Without Confirmation


US Media Runs Pentagon Reports of Battle
Without Confirmation
12/04/2003 06:06 AM
Coverage of Iraq Firefight Disputed .. writes

editorandpublisher.com/editorandpublisher/headlines/article_d isplay.jsp?vnu_content_id=2043555
track this site | 4 links


Gonzales Disavows Torture as
Confirmation Hearings Begin


Gonzales Disavows Torture as
Confirmation Hearings Begin
01/06/2005 03:18 PM
Alberto R. Gonzales's assurances on prisoner treatment and international treaties did little to placate Democrats.

"Code Access Security (CAS) ? "Guilty
until proven Innocent" (Partially
Trusted Code) "


"Code Access Security (CAS) ? "Guilty
until proven Innocent" (Partially
Trusted Code) "
06/22/2004 04:03 AM

"Code Snippets: Store, sort and share
source code, with tag goodness"


"Code Snippets: Store, sort and share
source code, with tag goodness"
04/09/2005 09:08 AM

Code Snippets: Store, sort and share
source code, with tag goodness


Code Snippets: Store, sort and share
source code, with tag goodness
04/08/2005 07:52 PM
Code Snippets: Store, sort and share source code, with tag goodness

bigbold.com/snippets
track this site | 5 links


OpenBase acquires Code Builder, RB
database code generator


OpenBase acquires Code Builder, RB
database code generator
03/23/2005 12:25 AM

CONCORD, NEW HAMPSHIRE, USA -- March 22, 2005 -- OpenBase International, Ltd., has acquired Code Builder, developed by Open Minded Solutions. Code Builder is a database application code generator for REALbasic, a cross-platform development environment for MacOS X, Windows and Linux platforms.


Returning Your Available Character Code
Sets And Code Pages Via T-SQL


Returning Your Available Character Code
Sets And Code Pages Via T-SQL
08/18/2004 10:37 AM

Code Repository and Code Packs


Code Repository and Code Packs 04/11/2005 03:02 PM

Lowes.com: Zip code, what zip code?


Lowes.com: Zip code, what zip code? 09/27/2004 02:45 AM

ZIP Codes and Postal Code Database
Subscription - Index [ZIP code, ZIP
codes, Canadian postal codes]


ZIP Codes and Postal Code Database
Subscription - Index [ZIP code, ZIP
codes, Canadian postal codes]
03/16/2003 07:18 AM
lookup zip code

track this site | 6 links


Code 3-D


Code 3-D 12/02/2003 12:27 AM
Code 3 has just added a cool new 3-D feature to their die-cast X-wing and Millennium Falcon models. If you missed seeing these amazing collectibles at the conventions last summer, you can finally see what the hoopla is all about. Make sure to check them out!

Bar Code 3 of 9 v3.1


Bar Code 3 of 9 v3.1 01/19/2004 04:17 PM
Bar Code 3 of 9 lets you print your own bar code 3/9 directly from Windows using TrueType fonts. You get both standard and human readable versions of bar code 3/9 each in six different aspect ratios. Our Bar39 utility program shows you how to use these fonts to make any bar code. Includes Full ASCII mode. [Shareware $95.00 667 KB]

Code 3 For '05


Code 3 For '05 12/19/2004 03:16 PM
The latest Code 3 newsletter has announced a trio of cool Trilogy collectibles for 2005. Joining Attack of the Clones' Republic Gunship, fans can look forward to exquisitely detailed die-cast versions of Return of the Jedi's All Terrain Scout Transport (AT-ST), A New Hope's Darth Vaders TIE Fighter, and The Empire Strikes Back's All Terrain Armored Transport (AT-AT)! For the latest details and updates on these items, watch Rebelscum or head on over to the Code 3 site and register for their newsletter.

XML-Code-0.4


XML-Code-0.4 05/02/2004 10:02 AM

zip code


zip code 02/10/2004 10:36 AM
zipcode

downloadzipcode.com
track this site | 6 links


What's in a code name?


What's in a code name? 04/09/2004 03:55 PM
While most technology companies do not have official policies on how they create product code names, they are almost always dreamed up by engineers with the understanding that the code names will be for internal use only. This is because employers know that a popular code name can help engineering teams build an emotional attachment to the product.

The art of the bar-code


The art of the bar-code 03/13/2003 11:28 AM
BarCodeArt: a gallery of meat and digital artwork inspired by and made from UPCs. Link Discuss (Thanks, Brian!)

DF-Code


DF-Code 12/14/2003 11:01 PM
Common Source Added

Sem@code


Sem@code 05/06/2004 01:45 AM

Semacode is an interesting implementation of an old idea reborn yet again (remember the Cat fiasco?) to take advantage of increasing number of camera phones to link real world to the cyberspace.  Check it out.


Bar Code 128 v3.1


Bar Code 128 v3.1 01/23/2004 06:35 PM
Bar Code 128 prints bar code 128 directly from any Windows program. You get subsets A, B, C, & UCC/EAN 128. Includes standard and human readable versions of code 128, each in 3 different aspect ratios. Bar Code 128 even calculates checksums and bar code layouts for you. [Shareware $95.00 712 KB]

The pleasures of browsing

The following phrases have been identified by the grok system as matching this entry: dotfuscator confirmation code

















Also check out:


Grok

Ipod Porn on the
Rise

Brief Abstract of
Wikipedia's
Mesothelioma Cancer
page

Get first aid
instructions in your
cell phone

IE is crap
JSPWiki gains
podcasting support

Online writing with
my sister-in-law

Arafat Scrambles to
Defuse Leadership
Crisis

Rover goes backward
to go forward

Youth killed sweet
shop OAP

Strike hits planning
service

Postmaster admits
500,000 theft

Court relief for
Bhopal victims

Judge warns of Spain
terror cells

BBC vows complaints
'openness'

Japan sets whaling
ultimatum

UK soldier killed in
Iraq crash

[SECURITY] [DSA
529-1] New
netkit-telnet-ssl
package fixes format
string vulnerability

[SECURITY] [DSA
530-1] New l2tpd
packages fix buffer
overflow

[SECURITY] [DSA
528-1] New ethereal
packages fix denial
of service

RE: The Impact of
RFC Guidelines on
DNS Spoofing Attacks

new utilman.exe
exploit (allinone
remote exploitation)

Is Microsoft
changing its
stripes?

PreEmptive
Solutions'
Dotfuscator Will
Ship With Microsoft
Visual Studio 2005

Capgemini and
Microsoft Expand
Global Alliance

How to get Service
Pack 2

OnMyCommandCM
Updated With
AppleScript Support

ARM Q2 profits swell
RISC OS rivals reach
rapprochement

US junk fax war hots
up

Satellites to
benefit from
exploding eggshells

Wanadoo unveils
wireless broadband
gizmo

UPDATE 2-Telsim says
no debt deal yet
with Motorola, Nokia

Apple Introduces 4G
iPod

Michelle Malkin: THE
$6 MILLION CUTTHROAT
PAYOFF

paid a $6M ransom



Are Blogs Ready For
Prime-Time? Blogads
Speaks

Telegraph | News |
The truth about
global warming -
it's the Sun that's
to blame

Microsoft lifts
curtain on
entertainment group

IBM boosts business
intelligence with
Alphablox

Toyota drives F1
software deal

Powell Takes a
Pounding

InfoSpace Rises on
Software Deal

Question Authority:
Ripe Pickings in
Blackberry Season

'System failure'
downs Vodafone
network

Chip fraud quartet
jailed for VAT scam

To Launch Faster,
Better High-Speed
Internet Service

Companies toy with
portable media
players

Apple unveils
new-generation iPod

False clicks hurt
advertisers

Hey Congress! You're
passing the wrong
bill

Sources - An At&t
Wireless 3g Launch
Very Soon

Docomo Brings Foma
To Athens

Huawei Completes
Etisalat UMTS

T- Mobile Launches
3G, GPRS and Wi-Fi
Service

what is grok?