Saturday, October 19, 2013

curly #contextfree #fractal


startshape START
CF::Background = [hue 28 sat 1]
shape START
{
SCENE [hue 30 sat 1 b 0.5]
}
shape SCENE
{
LINE [flip 90]
LINE [flip 180]
}
shape LINE
rule {
SQUARE []
LINE [x .2 s 0.996 r 1]
}
rule 0.02 {
SQUARE [r 90..0]
SQUARE [x 10..40 y 10..20 s 5..10 a -0.2..-0.9]
LINE [x 1 s 0.994]
}
rule 0.008 {
SQUARE []
SQUARE [x 1 s 2]
LINE [x 1 s 0.994 r 90]
}
rule 0.004 {
SQUARE [x 1 s .01]
LINE [x 1 s 0.994 r 90]
LINE []
}




Friday, October 4, 2013

Scroble with python / scroble.py

#!/usr/bin/env python
"""
usage 
python scroble.py <artist> <song> <timestamp>
"""
 
import sys
import time
import pylast
 
API_KEY = "api-key";
API_SECRET = "api-secret"
USERNAME = "lastfm-username"
PASSWORD = "lastfm-password"
 
 
 
 
def main(): 
  artist = sys.argv[1] 
  title = sys.argv[2]
  song_started = sys.argv[3]
  network = pylast.LastFMNetwork(api_key = API_KEY, api_secret = API_SECRET, username = USERNAME, password_hash = pylast.md5(PASSWORD))
  network.scrobble(artist = artist, title = title, timestamp = song_started)
 
if __name__ == "__main__":
  main()

#https://gist.github.com/hasantayyar/6826107