tungwaiyip.info

 

home

about me

links

my software

Media

Yucatán Photos

St Lucia Photos

Photo Album

Videos

Blog

< June 2005 >
SuMoTuWeThFrSa
    1 2 3 4
5 6 7 8 91011
12131415161718
19202122232425
2627282930  

past articles »

Click for San Francisco, California Forecast

San Francisco, USA

 

Google map scale

It always frustrate me to find maps don't come with scale. It is particular important if you try to judge whether a route is within walking distance. Google map is an incredible tool. But it needs to show the scale too!

So I have decided to make my measurements and come up with some reasonable estimate. I will use the zoom control as the scale. Up to 9 zoom levels were measured with level 1 being the most detail. The distance between the center of + mark and the - mark, is shown below. Beware that the projected images near the poles (e.g. Helsinki,Finland) seems significantly distorted.

LevelDistance
1230m
2450m
3870m
41.7km
53.3km
66.4km
712km
824km
947km

2005.06.24 [] - comments (4)

 

Python's half open index notation

Beginner programmers often wonder about Python's sequence indexing and slicing notation. Array index starts from 0. Slicing uses half open notations, where L[a:b] is a subsequence with index x where a <= x < b.

Why is the endpoint excluded? Isn't it more intuitive if array index starts from 1 and the endpoint is included, so that a 3 elements array is referenced as L[1:3] with items L[1], L[2], L[3]?

It turns out this notation is an elegant and deliberate design and it has some excellent properties.

We write programs to operate on arrays, to find their length, traverse the subsequences, split them or join them. The half open notation always show a simple pattern. But the inclusive notation often requires adding 1 or substracting 1 to the indexes in many operations. Thus it is more vulnerable to off-by-one-error. This article One True Way of array indexing discuss this at length. I have reproduce its example (with corrections) below:

Operation Half open Inclusive
length of a slice L[a:b] b-a (b-a+1)
first n characters of L L[:n] L[1:n]
last n characters of L L[-n:] L[len(L)-n+1:]
The identity slice L == L[0:len(L)] == L[:] L[1:len(L)]
The empty slice L[a:a] is empty for any a. perhaps L[a:a-1]?
A slice of length n, from point a L[a:a+n] L[a:a+n-1]
Split L[a:b] at index c L[a:b] == L[a:c]+L[c:b] L[a:c-1]+L[c:b]

Another important property is an empty sequence can be expressed by L[a:a], while there is no natural way to express an empty sequence with the inclusive notation. But do we really need to care about a special case? Absolutely! In fact failure to account for empty input is one of the most common error. Just like zero is a fundamental concept in mathematics, always think how you program can handle null input. An inferior approach is to represent empty sequence by None or null pointer. This creates a special case so that a variable need to be tested before dereferencing. Failure to do so contributes to unexpected exceptions. It is an elegant design that L[a:b] can also represent sequences with 0 length.

C++'s STL also choose this notation to represent a range. According to the literature this is crucial because "algorithms that operate on n things frequently require n+1 positions. Linear search, for example (find) must be able to return some value to indicate that the search was unsuccessful." I have seen so many people flunked link list or data structure exercises because they have trouble dealing with the end of a list. Often a good solution is shift the focus beyond the n concrete objects to the n+1 positions around them. I hope this help to make sense of the half open notation.

2005.06.16 [, ] - comments (0)

 

Mac goes Intel

This is my observation on Jobs' speech in the WWDC 05 Keynote.


Thanks Daniel for your coverage on the keynote. Reading this is as if I were there.

Jobs has made a very diplomatic presentation. Going Intel is so touchy that they have to introduce this with great care and sensitivity. The humor and cheerleading that is routine in this kind of event are markedly subdue. In place of it are lot more solemn and contemplative atmosphere. Making light joke on the bunny man on fire commercial and have the two CEOs embrace in front of the audience is a ritual for the past foes to make up. I think the ability to change without getting too entrenched or too religious is especially important for Apple to survive and to thrive.

Perhaps this can be a lesson for political adversaries too?

2005.06.15 [] - comments (0)

 

past articles »

 

BBC News

 

US and Poland sign defence deal

 

Sarkozy renews Afghan commitment

 

Deadly bombings hit Algerian town

 

Russia rejects UN Georgia draft

 

UK accused of Musharraf exit deal

 

Argentine disco blaze case begins

 

Civil trial opens of US ex-marine

 

Thousands affected by Nepal flood

Wed, 20 August, 2008, 11:00 GMT 12:00 UK

more »

 

Slashdot News for nerds, stuff that matters

 

Adobe Flash Ads Launching Clipboard Hijack Attacks (2008-08-20T01:54:00+00:00)

 

New Multi-GPU Technology With No Strings Attached (2008-08-20T00:08:00+00:00)

 

Judge Rules Man Cannot Be Forced To Decrypt HD (2008-08-19T22:21:00+00:00)

 

DPI and Net Neutrality's Overseas Weak Spot (2008-08-19T21:38:00+00:00)

 

IBM and AMD Create First 22nm SRAM Cell (2008-08-19T20:56:00+00:00)

 

Flagship Studios' Founder Discusses Its Demise (2008-08-19T20:10:00+00:00)

 

MIT Students' Gag Order Lifted (2008-08-19T19:22:00+00:00)

 

Support Grows For Blanket Music Licensing (2008-08-19T18:38:00+00:00)

more »

 

SF Gate

 

`Boomerang' Fay strengthens over Florida (19 Aug 2008)

 

NATO pulls its punches on penalty against Russia (19 Aug 2008)

 

Trace arsenic in water may be linked with diabetes (19 Aug 2008)

 

Russia moves toward pullback but shows strength (19 Aug 2008)

 

Researcher says bigfoot just a rubber gorilla suit (19 Aug 2008)

 

Grass fire forces closure of Highway 92 near Half Moon Bay (19 Aug 2008)

 

Calif. gay marriage ban campaigns get gifts (19 Aug 2008)

 

Bay home prices plunge; foreclosures boost sales (19 Aug 2008)

 

Hewlett-Packard 3Q profit jumps 14 pct (19 Aug 2008)

 

Sales, median prices in July for California homes (19 Aug 2008)

 

Intel unveils new chip design to challenge AMD (19 Aug 2008)

 

2Q profit reports from retailers show more strain (19 Aug 2008)

 

FDA warns General Electric over lax record keeping (19 Aug 2008)

 

Gold prices rise for 2nd day on weaker dollar (19 Aug 2008)

more »

 

Asia Times Online

 

US faces up to life without Musharraf (19 Aug 2008)

 

Georgian planning flaws led to failure (19 Aug 2008)

 

Confident Iran sings its own tune (19 Aug 2008)

 

In Afghanistan, blurred lines cost lives (19 Aug 2008)

 

China's dueling national identities (19 Aug 2008)

 

US setback over rendition 'poster child' (19 Aug 2008)

 

SUN WUKONG :China share values limp off the track (19 Aug 2008)

 

China turns tap on currency flows (19 Aug 2008)

 

Myanmar exchange scam fleeces UN (19 Aug 2008)

 

THE BEAR'S LAIR : The new cold war era (19 Aug 2008)

 

THE MOGAMBO GURU : Unemployment survival guide (19 Aug 2008)

more »

 


Site feed Updated: 2008-Aug-20 03:15