Tag: 2012

Melody FM 103

Tune in to the latest Chinese radio station, Melody FM by ASTRO in Malaysia using your own favourite media player by pointing to here http://1207.melody.rastream.com/melody?type=.flv&_=0.8441886627115309 Update (Oct 27, 2012): Melody FM has updated their stream url, you may get it here.

Why Stop 114A?

Sets and Mathematical Operations in Python

A description of matched sets mathematical operations in Python, taken from the Python Tutorial.

Hit FM Taipei 107.7

Using linux distro (e.g. Ubuntu, Fedora, or Crunchbang like me?), wish to listen to hitoradio Hit FM Taipei 107.7 (台北之音廣播有限公司) but can’t load it from their site or TuneIn? Worry not, you may use this link and play it with your favourite media player. mms://bcr.media.hinet.net/RA000036 Do take note that you need gstreamerX.XX-plugins-bad to play mms […]

else clause on loops

An interesting control flow for Python, for n in range(2, 10): for x in range(2, n): if n % x == 0: print n, ‘equals’, x, ‘*’, n/x break else: # loop fell through without finding a factor print n, ‘is a prime number’