diff --git a/Assignments/.DS_Store b/Assignments/.DS_Store
new file mode 100644
index 0000000..2d12a60
Binary files /dev/null and b/Assignments/.DS_Store differ
diff --git a/Assignments/10strip.py b/Assignments/10strip.py
new file mode 100644
index 0000000..61707db
--- /dev/null
+++ b/Assignments/10strip.py
@@ -0,0 +1,56 @@
+'''Hello Fellows,
+
+Write a program to read through the mbox-short.txt and figure out the distribution by hour of the day for each of the messages.
+You can pull the hour out from the 'From ' line by finding the time and then splitting the string a second time using a colon.
+
+From stephen.marquard@uct.ac.za Sat Jan 5 09:14:16 2008
+
+Once you have accumulated the counts for each hour, print out the counts, sorted by hour as shown below.
+
+
+Begin to write the program with the following code below:
+name = raw_input("Enter file:")
+if len(name) < 1 : name = "mbox-short.txt"
+handle = open(name)
+
+
+Happy Coding,
+Tunisia'''
+
+def openFile():
+ fname = raw_input("press enter: ")
+ if len(fname) < 1 : fname = "mbox-short.txt"
+ try:
+ fh = open(fname, 'r')
+ except:
+ print "Error opening file", fname
+ quit()
+ return fh
+
+def startsWith():
+ sw = raw_input("press enter: ")
+ if len(sw) < 1 : sw = "From"
+ return sw
+
+def countTimes(lines,s):
+ counts = dict()
+ for line in lines:
+ if line.startswith(s) and not line.startswith(s+':'):
+ line = line.strip().split()
+ str = line[5]
+ hour = str[0:str.find(":"):1]
+ counts[hour] = counts.get(hour,0) + 1
+ return counts
+
+def sortTimes(d):
+ lst = list()
+ for key, val in d.items():
+ lst.append((key,val))
+ lst.sort()
+ for val,key in lst:
+ print val,key
+
+fh = openFile()
+sw = startsWith()
+dictionary = countTimes(fh,sw)
+t = sortTimes(dictionary)
diff --git a/Assignments/Ages.db b/Assignments/Ages.db
new file mode 100644
index 0000000..00a3a61
Binary files /dev/null and b/Assignments/Ages.db differ
diff --git a/Assignments/Assignment_1 b/Assignments/Assignment_1
deleted file mode 100644
index 9707bfa..0000000
--- a/Assignments/Assignment_1
+++ /dev/null
@@ -1,8 +0,0 @@
-Hello Fellows!
-
-Please write a program that uses a print statement to say “hello world” as shown below.
-After writing the program, “hello world” should appear in your terminal.
-Please take a screenshot of your terminal and push up the screenshot to your GitHub repository of this course
-with the title of the screenshot being “Assignment 1: Hello World”.\
-
-Thank you!
diff --git a/Assignments/Assignment_10.2 b/Assignments/Assignment_10.2
deleted file mode 100644
index 80f8472..0000000
--- a/Assignments/Assignment_10.2
+++ /dev/null
@@ -1,18 +0,0 @@
-Hello Fellows,
-
-Write a program to read through the mbox-short.txt and figure out the distribution by hour of the day for each of the messages.
-You can pull the hour out from the 'From ' line by finding the time and then splitting the string a second time using a colon.
-
-From stephen.marquard@uct.ac.za Sat Jan 5 09:14:16 2008
-
-Once you have accumulated the counts for each hour, print out the counts, sorted by hour as shown below.
-
-
-Begin to write the program with the following code below:
-name = raw_input("Enter file:")
-if len(name) < 1 : name = "mbox-short.txt"
-handle = open(name)
-
-
-Happy Coding,
-Tunisia
diff --git a/Assignments/Assignment_10.2_Massawa_Lawson.py b/Assignments/Assignment_10.2_Massawa_Lawson.py
new file mode 100644
index 0000000..61707db
--- /dev/null
+++ b/Assignments/Assignment_10.2_Massawa_Lawson.py
@@ -0,0 +1,56 @@
+'''Hello Fellows,
+
+Write a program to read through the mbox-short.txt and figure out the distribution by hour of the day for each of the messages.
+You can pull the hour out from the 'From ' line by finding the time and then splitting the string a second time using a colon.
+
+From stephen.marquard@uct.ac.za Sat Jan 5 09:14:16 2008
+
+Once you have accumulated the counts for each hour, print out the counts, sorted by hour as shown below.
+
+
+Begin to write the program with the following code below:
+name = raw_input("Enter file:")
+if len(name) < 1 : name = "mbox-short.txt"
+handle = open(name)
+
+
+Happy Coding,
+Tunisia'''
+
+def openFile():
+ fname = raw_input("press enter: ")
+ if len(fname) < 1 : fname = "mbox-short.txt"
+ try:
+ fh = open(fname, 'r')
+ except:
+ print "Error opening file", fname
+ quit()
+ return fh
+
+def startsWith():
+ sw = raw_input("press enter: ")
+ if len(sw) < 1 : sw = "From"
+ return sw
+
+def countTimes(lines,s):
+ counts = dict()
+ for line in lines:
+ if line.startswith(s) and not line.startswith(s+':'):
+ line = line.strip().split()
+ str = line[5]
+ hour = str[0:str.find(":"):1]
+ counts[hour] = counts.get(hour,0) + 1
+ return counts
+
+def sortTimes(d):
+ lst = list()
+ for key, val in d.items():
+ lst.append((key,val))
+ lst.sort()
+ for val,key in lst:
+ print val,key
+
+fh = openFile()
+sw = startsWith()
+dictionary = countTimes(fh,sw)
+t = sortTimes(dictionary)
diff --git a/Assignments/Assignment_11_Massawa_Lawson.py b/Assignments/Assignment_11_Massawa_Lawson.py
new file mode 100644
index 0000000..a201e94
--- /dev/null
+++ b/Assignments/Assignment_11_Massawa_Lawson.py
@@ -0,0 +1,12 @@
+import re
+
+Fname = raw_input("Enter file name: ")
+f = open(Fname)
+fr = f.read()
+
+
+numbers = re.findall('[0-9]+', fr)
+
+numbers = map(int, numbers)
+
+print sum(numbers)
\ No newline at end of file
diff --git a/Assignments/Assignment_12_Massawa_Lawson.pdf b/Assignments/Assignment_12_Massawa_Lawson.pdf
new file mode 100644
index 0000000..e80616a
Binary files /dev/null and b/Assignments/Assignment_12_Massawa_Lawson.pdf differ
diff --git a/Assignments/Assignment_12_Massawa_Lawson.py b/Assignments/Assignment_12_Massawa_Lawson.py
new file mode 100644
index 0000000..558d0dc
--- /dev/null
+++ b/Assignments/Assignment_12_Massawa_Lawson.py
@@ -0,0 +1,30 @@
+import socket
+
+mysock=socket.socket(socket.AF_INET, socket.SOCK_STREAM)
+mysock.connect(('www.pythonlearn.com',80))
+mysock.send('GET http://www.pythonlearn.com/code/intro-short.txt HTTP/1.0\n\n')
+
+Etag = []
+while True:
+ data = mysock.recv(512)
+ #for line in data:
+ # if line.startswith('Etag'):
+ # print line
+ # Etag.append(line)
+ # ConLen = line.startswith('Content-Length')
+ # CacCon = line.startswith('Cache-Control')
+ # ConTyp = line.startswith('Content-Type')
+ if (len(data)<1):
+ break
+ print data, #"\n Assignment Data: \n"
+#print Etag, "\n", ConLen, "\n", CacCon, "\n", ConTyp
+
+mysock.close
+
+'''ETag: "20f7401b-1d3-521e9853a392b"
+
+Content-Length: 467
+
+Cache-Control: max-age=604800, public
+
+Content-Type: text/plain'''
diff --git a/Assignments/Assignment_13.1_Massawa_Lawson.py b/Assignments/Assignment_13.1_Massawa_Lawson.py
new file mode 100644
index 0000000..bd7453b
--- /dev/null
+++ b/Assignments/Assignment_13.1_Massawa_Lawson.py
@@ -0,0 +1,20 @@
+# Note - this code must run in Python 2.x and you must download
+# http://www.pythonlearn.com/code/BeautifulSoup.py
+# Into the same folder as this program
+
+import urllib
+from BeautifulSoup import*
+
+url = raw_input('Enter - ')
+html = urllib.urlopen(url).read()
+
+soup = BeautifulSoup(html)
+
+# Retrieve all of the anchor tags
+tags = soup('a')
+for tag in tags:
+ # Look at the parts of a tag
+ print 'TAG:',tag
+ print 'URL:',tag.get('href', None)
+ print 'Contents:',tag.contents[0]
+ print 'Attrs:',tag.attrs
\ No newline at end of file
diff --git a/Assignments/Assignment_13.2_Massawa_Lawson.py b/Assignments/Assignment_13.2_Massawa_Lawson.py
new file mode 100644
index 0000000..7c8c66d
--- /dev/null
+++ b/Assignments/Assignment_13.2_Massawa_Lawson.py
@@ -0,0 +1,15 @@
+# Note - this code must run in Python 2.x and you must download
+# http://www.pythonlearn.com/code/BeautifulSoup.py
+# Into the same folder as this program
+
+import urllib
+from BeautifulSoup import *
+
+url = raw_input('Enter - ')
+html = urllib.urlopen(url).read()
+soup = BeautifulSoup(html)
+
+# Retrieve all of the anchor tags
+tags = soup('a')
+for tag in tags:
+ print tag.get('href', None)
\ No newline at end of file
diff --git a/Assignments/Assignment_14_Massawa_Lawson.py b/Assignments/Assignment_14_Massawa_Lawson.py
new file mode 100644
index 0000000..d104d7c
--- /dev/null
+++ b/Assignments/Assignment_14_Massawa_Lawson.py
@@ -0,0 +1,25 @@
+import urllib
+import xml.etree.ElementTree as ET
+
+serviceurl = 'http://maps.googleapis.com/maps/api/geocode/xml?'
+
+while True:
+ address = raw_input('Enter location: ')
+ if len(address) < 1 : break
+
+ url = serviceurl + urllib.urlencode({'sensor':'false', 'address': address})
+ print 'Retrieving', url
+ uh = urllib.urlopen(url)
+ data = uh.read()
+ print 'Retrieved',len(data),'characters'
+ print data
+ tree = ET.fromstring(data)
+
+
+ results = tree.findall('result')
+ lat = results[0].find('geometry').find('location').find('lat').text
+ lng = results[0].find('geometry').find('location').find('lng').text
+ location = results[0].find('formatted_address').text
+
+ print 'lat',lat,'lng',lng
+ print location
\ No newline at end of file
diff --git a/Assignments/Assignment_15.1_Massawa_Lawson.py b/Assignments/Assignment_15.1_Massawa_Lawson.py
new file mode 100644
index 0000000..5a56b4c
--- /dev/null
+++ b/Assignments/Assignment_15.1_Massawa_Lawson.py
@@ -0,0 +1,23 @@
+
+import urllib
+import json
+
+
+serviceurl = 'http://maps.googleapis.com/maps/api/geocode/json?'
+#serviceurl = 'http://python-data.dr-chuck.net/geojson?'
+
+while True:
+ address = raw_input('\nEnter a location: ')
+ if len(address) < 1 : break
+
+ print 'Retrieving', serviceurl + urllib.urlencode({'sensor':'false', 'address': address})
+ print 'Retrieved',len(urllib.urlopen( serviceurl + urllib.urlencode({'sensor':'false', 'address': address})).read()),'characters'
+
+ try: js = json.loads(urllib.urlopen( serviceurl + urllib.urlencode({'sensor':'false', 'address': address})).read())
+ except: js = None
+ if 'status' not in js or js['status'] != 'OK':
+ print '==== Failure To Retrieve ===='
+ continue
+
+ place_id = js["results"][0]["place_id"]
+ print 'Place id', place_id
\ No newline at end of file
diff --git a/Assignments/Assignment_15.2_Massawa_Lawson.py b/Assignments/Assignment_15.2_Massawa_Lawson.py
new file mode 100644
index 0000000..a2da286
--- /dev/null
+++ b/Assignments/Assignment_15.2_Massawa_Lawson.py
@@ -0,0 +1,46 @@
+import urllib
+import xml.etree.ElementTree as ET
+import json
+
+serviceurl = 'http://maps.googleapis.com/maps/api/geocode/xml?'
+
+while True:
+ address = raw_input('Enter location: ')
+ if len(address) < 1 : break
+
+ url = serviceurl + urllib.urlencode({'sensor':'false', 'address': address})
+ print 'Retrieving', url
+ uh = urllib.urlopen(url)
+ data = uh.read()
+ print 'Retrieved',len(data),'characters'
+ print data
+ tree = ET.fromstring(data)
+
+
+ results = tree.findall('result')
+ lat = results[0].find('geometry').find('location').find('lat').text
+ lng = results[0].find('geometry').find('location').find('lng').text
+ location = results[0].find('formatted_address').text
+
+ print 'lat',lat,'lng',lng
+ print location
+
+input = '''
+[
+ { "id" : "001",
+ "x" : "2",
+ "name" : "Chuck"
+ } ,
+ { "id" : "009",
+ "x" : "7",
+ "name" : "Chuck"
+ }
+]'''
+
+info = json.loads(input)
+print 'User count:', len(info)
+
+for item in info:
+ print 'Name', item['name']
+ print 'Id', item['id']
+ print 'Attribute', item['x']
\ No newline at end of file
diff --git a/Assignments/Assignment_16.1_Massawa.Lawson.py b/Assignments/Assignment_16.1_Massawa.Lawson.py
new file mode 100644
index 0000000..adcc92b
--- /dev/null
+++ b/Assignments/Assignment_16.1_Massawa.Lawson.py
@@ -0,0 +1,31 @@
+'''********************************** Assignment_16.1_Massawa.Lawson Result ***********************************************
+First Row in the resulting record set: 416E6E65726F793137
+
+*************************************************************************************************************
+
+Instructions
+If you don't already have it, install the SQLite Browser from http://sqlitebrowser.org/.
+
+Then, create a SQLITE database or use an existing database and create a table in the database called "Ages":
+
+CREATE TABLE Ages (
+ name VARCHAR(128),
+ age INTEGER
+)
+Then make sure the table is empty by deleting any rows that you previously inserted, and insert these rows and only these rows with the following commands:
+
+DELETE FROM Ages;
+INSERT INTO Ages (name, age) VALUES ('Malakhy', 37);
+INSERT INTO Ages (name, age) VALUES ('Marlee', 23);
+INSERT INTO Ages (name, age) VALUES ('Timucin', 18);
+INSERT INTO Ages (name, age) VALUES ('Anneroy', 17);
+Once the inserts are done, run the following SQL command:
+SELECT hex(name || age) AS X FROM Ages ORDER BY X
+Find the first row in the resulting record set and enter the long string that looks like 53656C696E613333.
+Note: This assignment must be done using SQLite - in particular, the SELECT query above will not work in any other database. So you cannot use MySQL or Oracle for this assignment.
+
+********************************** Assignment_16.1_Massawa.Lawson Result ***********************************************
+First Row in the resulting record set: 416E6E65726F793137
+'''
+
+
diff --git a/Assignments/Assignment_16.2_Massawa_Lawson.py b/Assignments/Assignment_16.2_Massawa_Lawson.py
new file mode 100644
index 0000000..6263198
--- /dev/null
+++ b/Assignments/Assignment_16.2_Massawa_Lawson.py
@@ -0,0 +1,62 @@
+'''Counting Organizations
+This application will read the mailbox data (mbox.txt) count up the number email messages per organization (i.e. domain name of the email address) using a database with the following schema to maintain the counts.
+
+CREATE TABLE Counts (org TEXT, count INTEGER)
+When you have run the program on mbox.txt upload the resulting database file above for grading.
+If you run the program multiple times in testing or with dfferent files, make sure to empty out the data before each run.
+
+You can use this code as a starting point for your application: http://www.pythonlearn.com/code/emaildb.py
+
+The data file for this application is the same as in previous assignments: http://www.pythonlearn.com/code/mbox.txt.
+
+Because the sample code is using an UPDATE statement and committing the results to the database as each record is read in the loop, it might take as long as a few minutes to process all the data. The commit insists on completely writing all the data to disk every time it is called.
+
+The program can be speeded up greatly by moving the commit operation outside of the loop. In any database program, there is a balance between the number of operations you execute between commits and the importance of not losing the results of operations that have not yet been committed.
+'''
+
+import sqlite3
+import urllib
+conn = sqlite3.connect('emaildb.sqlite')
+cur = conn.cursor()
+
+cur.execute('''
+DROP TABLE IF EXISTS Counts''')
+
+cur.execute('''
+CREATE TABLE Counts (org TEXT, count INTEGER)''')
+
+fname = raw_input('Enter site name: ')
+if ( len(fname) < 1 ) : fname = ' http://www.pythonlearn.com/code/mbox.txt'
+fh = urllib.urlopen(fname)
+
+
+for line in fh:
+ if not line.startswith('From: ') : continue
+ pieces = line.split()
+ email = pieces[1]
+ print email
+ at_index = email.find('@')
+ org = email[at_index+1:]
+ cur.execute('SELECT count FROM Counts WHERE org = ? ', (org, ))
+ row = cur.fetchone()
+ if row is None:
+ cur.execute('''INSERT INTO Counts (org, count)
+ VALUES ( ?, 1 )''', ( org, ) )
+ else :
+ cur.execute('UPDATE Counts SET count=count+1 WHERE org = ?',
+ (org, ))
+ # This statement commits outstanding changes to disk each
+ # time through the loop - the program can be made faster
+ # by moving the commit so it runs only after the loop completes
+ conn.commit()
+
+# https://www.sqlite.org/lang_select.html
+sqlstr = 'SELECT org, count FROM Counts ORDER BY count DESC LIMIT 10'
+
+print
+print "Counts:"
+for row in cur.execute(sqlstr) :
+ print str(row[0]), row[1]
+
+cur.close()
+
diff --git a/Assignments/Assignment_17_Massawa_Lawson.py b/Assignments/Assignment_17_Massawa_Lawson.py
new file mode 100644
index 0000000..e740383
--- /dev/null
+++ b/Assignments/Assignment_17_Massawa_Lawson.py
@@ -0,0 +1,94 @@
+import xml.etree.ElementTree as ET
+import sqlite3
+
+conn = sqlite3.connect('trackdb.sqlite')
+cur = conn.cursor()
+
+# Make some fresh tables using executescript()
+cur.executescript('''
+DROP TABLE IF EXISTS Artist;
+DROP TABLE IF EXISTS Album;
+DROP TABLE IF EXISTS Track;
+DROP TABLE IF EXISTS Genre;
+
+CREATE TABLE Artist (
+ id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,
+ name TEXT UNIQUE
+);
+
+CREATE TABLE Genre (
+ id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,
+ name TEXT UNIQUE
+);
+
+CREATE TABLE Album (
+ id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,
+ artist_id INTEGER,
+ title TEXT UNIQUE
+);
+
+CREATE TABLE Track (
+ id INTEGER NOT NULL PRIMARY KEY
+ AUTOINCREMENT UNIQUE,
+ title TEXT UNIQUE,
+ album_id INTEGER,
+ genre_id INTEGER,
+ len INTEGER, rating INTEGER, count INTEGER
+);
+''')
+
+
+fname = raw_input('Enter file name: ')
+if ( len(fname) < 1 ) : fname = 'Library.xml'
+
+# Track ID369
+# NameAnother One Bites The Dust
+# ArtistQueen
+def lookup(d, key):
+ found = False
+ for child in d:
+ if found : return child.text
+ if child.tag == 'key' and child.text == key :
+ found = True
+ return None
+
+stuff = ET.parse(fname)
+all = stuff.findall('dict/dict/dict')
+print 'Dict count:', len(all)
+for entry in all:
+ if ( lookup(entry, 'Track ID') is None ) : continue
+
+ name = lookup(entry, 'Name')
+ artist = lookup(entry, 'Artist')
+ album = lookup(entry, 'Album')
+ count = lookup(entry, 'Play Count')
+ rating = lookup(entry, 'Rating')
+ length = lookup(entry, 'Total Time')
+ genre = lookup(entry, 'Genre')
+
+ if name is None or artist is None or album is None or genre is None :
+ continue
+
+ print name, artist, album, count, rating, length, genre
+
+ cur.execute('''INSERT OR IGNORE INTO Artist (name)
+ VALUES ( ? )''', ( artist, ) )
+ cur.execute('SELECT id FROM Artist WHERE name = ? ', (artist, ))
+ artist_id = cur.fetchone()[0]
+
+ cur.execute('''INSERT OR IGNORE INTO Genre (name)
+ VALUES ( ? )''', ( genre, ) )
+ cur.execute('SELECT id FROM Genre WHERE name = ? ', (genre, ))
+ genre_id = cur.fetchone()[0]
+
+ cur.execute('''INSERT OR IGNORE INTO Album (title, artist_id)
+ VALUES ( ?, ? )''', ( album, artist_id ) )
+ cur.execute('SELECT id FROM Album WHERE title = ? ', (album, ))
+ album_id = cur.fetchone()[0]
+
+ cur.execute('''INSERT OR REPLACE INTO Track
+ (title, album_id, genre_id, len, rating, count)
+ VALUES ( ?, ?, ?, ?, ?, ? )''',
+ ( name, album_id, genre_id, length, rating, count ) )
+
+ conn.commit()
diff --git a/Assignments/Assignment_18_Massawa_Lawson.py b/Assignments/Assignment_18_Massawa_Lawson.py
new file mode 100644
index 0000000..c2eff64
--- /dev/null
+++ b/Assignments/Assignment_18_Massawa_Lawson.py
@@ -0,0 +1,65 @@
+'''******************** Return from Select: 414A736932303630 *************************************'''
+
+import json
+import sqlite3
+
+conn = sqlite3.connect('rosterdb.sqlite')
+cur = conn.cursor()
+
+# Do some setup
+cur.executescript('''
+DROP TABLE IF EXISTS User;
+DROP TABLE IF EXISTS Member;
+DROP TABLE IF EXISTS Course;
+
+CREATE TABLE User (
+ id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,
+ name TEXT UNIQUE
+);
+
+CREATE TABLE Course (
+ id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,
+ title TEXT UNIQUE
+);
+
+CREATE TABLE Member (
+ user_id INTEGER,
+ course_id INTEGER,
+ role INTEGER,
+ PRIMARY KEY (user_id, course_id)
+)
+''')
+
+fname = raw_input('Enter file name: ')
+if ( len(fname) < 1 ) : fname = 'roster_data.json'
+
+# [
+# [ "Charley", "si110", 1 ],
+# [ "Mea", "si110", 0 ],
+
+str_data = open(fname).read()
+json_data = json.loads(str_data)
+
+for entry in json_data:
+
+ name = entry[0];
+ title = entry[1];
+ role = entry[2];
+
+ print name, title, role
+
+ cur.execute('''INSERT OR IGNORE INTO User (name)
+ VALUES ( ? )''', ( name, ) )
+ cur.execute('SELECT id FROM User WHERE name = ? ', (name, ))
+ user_id = cur.fetchone()[0]
+
+ cur.execute('''INSERT OR IGNORE INTO Course (title)
+ VALUES ( ? )''', ( title, ) )
+ cur.execute('SELECT id FROM Course WHERE title = ? ', (title, ))
+ course_id = cur.fetchone()[0]
+
+ cur.execute('''INSERT OR REPLACE INTO Member
+ (user_id, course_id, role) VALUES ( ?, ?, ? )''',
+ ( user_id, course_id, role ) )
+
+ conn.commit()
\ No newline at end of file
diff --git a/Assignments/Assignment_1_Massawa_Lawson.py b/Assignments/Assignment_1_Massawa_Lawson.py
new file mode 100644
index 0000000..e2c0856
--- /dev/null
+++ b/Assignments/Assignment_1_Massawa_Lawson.py
@@ -0,0 +1 @@
+print "hello world"
\ No newline at end of file
diff --git a/Assignments/Assignment_2_Massawa_Lawson.py b/Assignments/Assignment_2_Massawa_Lawson.py
new file mode 100644
index 0000000..69ab9c7
--- /dev/null
+++ b/Assignments/Assignment_2_Massawa_Lawson.py
@@ -0,0 +1,4 @@
+hours = raw_input('Enter Hours: ')
+rate = raw_input('Enter Rate: ')
+pay = float(hours) * float(rate)
+print 'Your Pay is ',pay
\ No newline at end of file
diff --git a/Assignments/Assignment_3.1 b/Assignments/Assignment_3.1
deleted file mode 100644
index 5a3abdb..0000000
--- a/Assignments/Assignment_3.1
+++ /dev/null
@@ -1,21 +0,0 @@
-Hello Fellows!
-
-Write a program to prompt the user for hours and rate per hour using raw_input to compute gross pay.
-Pay the hourly rate for the hours up to 40 and 1.5 times the hourly rate for all hours worked above 40 hours.
-Use 45 hours and a rate of 10.50 per hour to test the program (the pay should be 498.75).
-You should use raw_input to read a string and float() to convert the string to a number.
-
-
-Do not worry about error checking the user input - assume the user types numbers properly.
-
-Please begin writing the program with the code below:
-hrs = raw_input("Enter Hours:")
-h = float(hrs)
-
-
-
-Happy Coding,
-Tunisia
-
-
-In courtesy of Coursera.
diff --git a/Assignments/Assignment_3.1_Massawa_Lawson.py b/Assignments/Assignment_3.1_Massawa_Lawson.py
new file mode 100644
index 0000000..e779b8f
--- /dev/null
+++ b/Assignments/Assignment_3.1_Massawa_Lawson.py
@@ -0,0 +1,14 @@
+#input data from user for hours and rate
+hrs = raw_input("Enter Hours: ")
+h = float(hrs)
+rate = raw_input ("Enter rate per hour: ")
+r = float(rate)
+
+#calculate regular pay rate or overtime pay rate
+if h <=40:
+ pay = (h * r)
+else:
+ pay = (40*r)+((h-40)*(r*1.5))
+
+#print pay
+print "your pay is: " ,pay
\ No newline at end of file
diff --git a/Assignments/Assignment_3.3 b/Assignments/Assignment_3.3
deleted file mode 100644
index b10a23d..0000000
--- a/Assignments/Assignment_3.3
+++ /dev/null
@@ -1,23 +0,0 @@
-Hello Fellows!
-
-Write a program to prompt for a score between 0.0 and 1.0.
-If the score is out of range, print an error. If the score is between 0.0 and 1.0, print a grade using the following table:
-
-Score Grade
->= 0.9 A
->= 0.8 B
->= 0.7 C
->= 0.6 D
-< 0.6 F
-
-If the user enters a value out of range, print a suitable error message and exit. For the test, enter a score of 0.85.
-
-Please begin writing the program with the code below:
-score = raw_input("Enter Score: ")
-
-
-Happy Coding,
-Tunisia
-
-
-In courtesy of Coursera.
diff --git a/Assignments/Assignment_3.3_Massawa_Lawson.py b/Assignments/Assignment_3.3_Massawa_Lawson.py
new file mode 100644
index 0000000..b8896ed
--- /dev/null
+++ b/Assignments/Assignment_3.3_Massawa_Lawson.py
@@ -0,0 +1,23 @@
+userin = raw_input("enter a score between 0.0 and 1.0: ")
+num = float(userin)
+
+#thoughts on making a tuple and assigning grades based on position
+#gradetup = i.items.sort - serious guess work here
+
+# for ...,f,d,c,b,a in gradetup:
+# grade = ...,f,d,c,b,a - here I get lost...
+#print 'your grade is' grade
+
+if num > 1:
+ print " error grade out of range"
+elif num >= .9:
+ print "your grade is A"
+elif num >= .8:
+ print "your grade is B"
+elif num >= .7:
+ print 'your grade is C'
+elif num >= .6:
+ print 'your grade is D'
+
+else:
+ print 'your grade is F'
\ No newline at end of file
diff --git a/Assignments/Assignment_4.6 b/Assignments/Assignment_4.6
deleted file mode 100644
index 90cc793..0000000
--- a/Assignments/Assignment_4.6
+++ /dev/null
@@ -1,22 +0,0 @@
-Hello Fellows!
-
-Write a program to prompt the user for hours and rate per hour using raw_input to compute gross pay.
-Award time-and-a-half for the hourly rate for all hours worked above 40 hours.
-Put the logic to do the computation of time-and-a-half in a function called computepay() and use the function to do the computation.
-The function should return a value. Use 45 hours and a rate of 10.50 per hour to test the program (the pay should be 498.75).
-You should use raw_input to read a string and float() to convert the string to a number.
-Do not worry about error checking the user input unless you want to - you can assume the user types numbers properly.
-Do not name your variable sum or use the sum() function.
-
-Begin writing the program with the code below:
-def computepay(h,r):
- return 42.37
-
-hrs = raw_input("Enter Hours:")
-p = computepay(10,20)
-print "Pay",p
-
-
-
-Happy Coding,
-Tunisia
diff --git a/Assignments/Assignment_4.6_Massawa_Lawson.py b/Assignments/Assignment_4.6_Massawa_Lawson.py
new file mode 100644
index 0000000..0e74f4c
--- /dev/null
+++ b/Assignments/Assignment_4.6_Massawa_Lawson.py
@@ -0,0 +1,14 @@
+#input data from user for hours and rate
+def computepay(h,r):
+ if h <=40:
+ p = (h * r)
+ else:
+ p = (40*r)+((h-40)*(r*1.5))
+ return p
+hrs = raw_input("Enter Hours: ")
+h = float(hrs)
+rate = raw_input("Enter rate per hour: ")
+r = float(rate)
+
+p=computepay(h,r)
+print "your pay is: ",p
\ No newline at end of file
diff --git a/Assignments/Assignment_5.2 b/Assignments/Assignment_5.2
deleted file mode 100644
index 9c3adef..0000000
--- a/Assignments/Assignment_5.2
+++ /dev/null
@@ -1,21 +0,0 @@
-Hello Fellows!
-
-Write a program that repeatedly prompts a user for integer numbers until the user enters 'done'.
-Once 'done' is entered, print out the largest and smallest of the numbers.
-If the user enters anything other than a valid number catch it with a try/except and put out an appropriate message and ignore the number.
-
-
-Begin writing the program with the code below:
-largest = None
-smallest = None
-while True:
- num = raw_input("Enter a number: ")
- if num == "done" : break
- print num
-
-print "Maximum", largest
-
-
-
-Happy Coding,
-Tunisia
diff --git a/Assignments/Assignment_5.2_Massawa_Lawson.py b/Assignments/Assignment_5.2_Massawa_Lawson.py
new file mode 100644
index 0000000..221eb54
--- /dev/null
+++ b/Assignments/Assignment_5.2_Massawa_Lawson.py
@@ -0,0 +1,23 @@
+smallest = None
+largest = None
+
+while True:
+ num = raw_input('Enter two or more different numbers: ')
+ if num == 'done':
+ break
+ print num
+
+ try:
+ num = float(num)
+ except:
+ print 'Invalid input'
+ continue
+
+ if smallest == None or num < smallest:
+ smallest = num
+
+ if largest == None or num > largest:
+ largest = num
+
+print 'Maximum:', largest
+print 'Minimum:', smallest
diff --git a/Assignments/Assignment_6.5 b/Assignments/Assignment_6.5
deleted file mode 100644
index c2f5082..0000000
--- a/Assignments/Assignment_6.5
+++ /dev/null
@@ -1,12 +0,0 @@
-Hello Fellows!
-
-Write code using find() and string slicing (see section 6.10) to extract the number at the end of the line below.
-Convert the extracted value to a floating point number and print it out.
-
-Please use the line below:
-text = "X-DSPAM-Confidence: 0.8475";
-
-
-
-Happy Coding,
-Tunisia
diff --git a/Assignments/Assignment_6.5_Massawa_Lawson.py b/Assignments/Assignment_6.5_Massawa_Lawson.py
new file mode 100644
index 0000000..161fa72
--- /dev/null
+++ b/Assignments/Assignment_6.5_Massawa_Lawson.py
@@ -0,0 +1,7 @@
+text = "X-DSPAM-Confidence: 0.8475";
+print text
+print
+num = text[text.find('0'):]
+
+num = float(num)
+print "Floating point number ==", num
diff --git a/Assignments/Assignment_7.1 b/Assignments/Assignment_7.1
deleted file mode 100644
index eab2a65..0000000
--- a/Assignments/Assignment_7.1
+++ /dev/null
@@ -1,46 +0,0 @@
-Hello Fellows!
-
-Write a program that prompts for a file name, then opens that file and reads through the file,
-and print the contents of the file in upper case.
-Use the file words.txt to produce the output below.
-
-You can download the sample data at http://www.pythonlearn.com/code/words.txt
-
-Begin to write the program with the following code below:
-# Use words.txt as the file name
-fname = raw_input("Enter file name: ")
-fh = open(fname)
-
-
-
-Happy Coding,
-Tunisia
-
-P.S. The link: http://www.pythonlearn.com/code/words.txt, contains the following words:
-WRITING PROGRAMS OR PROGRAMMING IS A VERY CREATIVE
-AND REWARDING ACTIVITY YOU CAN WRITE PROGRAMS FOR
-MANY REASONS RANGING FROM MAKING YOUR LIVING TO SOLVING
-A DIFFICULT DATA ANALYSIS PROBLEM TO HAVING FUN TO HELPING
-SOMEONE ELSE SOLVE A PROBLEM THIS BOOK ASSUMES THAT
-{\EM EVERYONE} NEEDS TO KNOW HOW TO PROGRAM AND THAT ONCE
-YOU KNOW HOW TO PROGRAM, YOU WILL FIGURE OUT WHAT YOU WANT
-TO DO WITH YOUR NEWFOUND SKILLS
-
-WE ARE SURROUNDED IN OUR DAILY LIVES WITH COMPUTERS RANGING
-FROM LAPTOPS TO CELL PHONES WE CAN THINK OF THESE COMPUTERS
-AS OUR PERSONAL ASSISTANTS WHO CAN TAKE CARE OF MANY THINGS
-ON OUR BEHALF THE HARDWARE IN OUR CURRENT-DAY COMPUTERS
-IS ESSENTIALLY BUILT TO CONTINUOUSLY AS US THE QUESTION
-WHAT WOULD YOU LIKE ME TO DO NEXT
-
-OUR COMPUTERS ARE FAST AND HAVE VASTS AMOUNTS OF MEMORY AND
-COULD BE VERY HELPFUL TO US IF WE ONLY KNEW THE LANGUAGE TO
-SPEAK TO EXPLAIN TO THE COMPUTER WHAT WE WOULD LIKE IT TO
-DO NEXT IF WE KNEW THIS LANGUAGE WE COULD TELL THE
-COMPUTER TO DO TASKS ON OUR BEHALF THAT WERE REPTITIVE
-INTERESTINGLY, THE KINDS OF THINGS COMPUTERS CAN DO BEST
-ARE OFTEN THE KINDS OF THINGS THAT WE HUMANS FIND BORING
-AND MIND-NUMBING
-
-
-
diff --git a/Assignments/Assignment_7.1_Massawa_Lawson.py b/Assignments/Assignment_7.1_Massawa_Lawson.py
new file mode 100644
index 0000000..c4f537a
--- /dev/null
+++ b/Assignments/Assignment_7.1_Massawa_Lawson.py
@@ -0,0 +1,4 @@
+fname = raw_input("Enter a filename: ")
+if fname > None: fh = open('word.txt')
+for line in fh:
+ print str.upper(line.strip())
\ No newline at end of file
diff --git a/Assignments/Assignment_7.3 b/Assignments/Assignment_7.3
deleted file mode 100644
index eb69709..0000000
--- a/Assignments/Assignment_7.3
+++ /dev/null
@@ -1,16 +0,0 @@
-Hello Fellows!
-
-Write a program that prompts for a file name, then opens that file and reads through the file, looking for lines of the form:
-X-DSPAM-Confidence: 0.8475
-
-Count these lines and extract the floating point values from each of the lines and compute
-the average of those values and produce an output as shown below.
-Do not use the sum() function or a variable named sum in your solution.
-
-You can download the sample data at http://www.pythonlearn.com/code/mbox-short.txt
-when you are testing below enter mbox-short.txt as the file name.
-
-
-
-Happy Coding,
-Tunisia
diff --git a/Assignments/Assignment_7.3_Massawa_Lawson.py b/Assignments/Assignment_7.3_Massawa_Lawson.py
new file mode 100644
index 0000000..6660312
--- /dev/null
+++ b/Assignments/Assignment_7.3_Massawa_Lawson.py
@@ -0,0 +1,16 @@
+init = raw_input('Enter Filename: ')
+if init is not None:
+ fhand=open('mbox-short.txt')
+count=0
+spamAVG=0
+for line in fhand:
+ words=line.split()
+ if line.startswith('X-DSPAM-Confidence:'):
+ count +=1
+ spamAVG=spamAVG+float(words[1])
+ else:
+ continue
+if count is 0: print "'X-DSPAM-Confidence: 0.8475 occurence':" ,count
+else:
+ spamAVG=spamAVG/count
+ print "Count=",count,"Avg X-DSPAM-Confidence:" ,spamAVG
diff --git a/Assignments/Assignment_8.4 b/Assignments/Assignment_8.4
deleted file mode 100644
index 7f33a3c..0000000
--- a/Assignments/Assignment_8.4
+++ /dev/null
@@ -1,20 +0,0 @@
-Hello Fellows!
-
-Open the file romeo.txt and read it line by line. For each line, split the line into a list of words using the split() method.
-The program should build a list of words.
-For each word on each line check to see if the word is already in the list and if not append it to the list.
-When the program completes, sort and print the resulting words in alphabetical order.
-
-You can download the sample data at http://www.pythonlearn.com/code/romeo.txt
-
-
-Begin to write the program with the following code below:
-fname = raw_input("Enter file name: ")
-fh = open(fname)
-lst = list()
-for line in fh:
-print line.rstrip()
-
-
-Happy Coding!
-Tunisia
diff --git a/Assignments/Assignment_8.4_Massawa_Lawson.py b/Assignments/Assignment_8.4_Massawa_Lawson.py
new file mode 100644
index 0000000..37fd4ee
--- /dev/null
+++ b/Assignments/Assignment_8.4_Massawa_Lawson.py
@@ -0,0 +1,16 @@
+init = raw_input('Enter Filename: ')
+if init is not None:
+ fhand=open('mbox-short.txt.txt')
+count=0
+spamAVG=0
+for line in fhand:
+ words=line.split()
+ if line.startswith('X-DSPAM-Confidence:'):
+ count +=1
+ spamAVG=spamAVG+float(words[1])
+ else:
+ continue
+if count is 0: print "'X-DSPAM-Confidence: 0.8475 occurence':" ,count
+else:
+ spamAVG=spamAVG/count
+ print "Count=",count,"Avg X-DSPAM-Confidence:" ,spamAVG
diff --git a/Assignments/Assignment_8.5 b/Assignments/Assignment_8.5
deleted file mode 100644
index 053f1a1..0000000
--- a/Assignments/Assignment_8.5
+++ /dev/null
@@ -1,24 +0,0 @@
-Hello Fellows!
-
-Open the file mbox-short.txt and read it line by line. When you find a line that starts with 'From ' like the following line:
-From stephen.marquard@uct.ac.za Sat Jan 5 09:14:16 2008
-
-You will parse the From line using split() and print out the second word in the line (i.e. the entire address of the person
-who sent the message). Then print out a count at the end.
-Hint: make sure not to include the lines that start with 'From:'.
-
-You can download the sample data at http://www.pythonlearn.com/code/mbox-short.txt
-
-
-Begin to write the program with the following code below:
-fname = raw_input("Enter file name: ")
-if len(fname) < 1 : fname = "mbox-short.txt"
-
-fh = open(fname)
-count = 0
-
-print "There were", count, "lines in the file with From as the first word"
-
-
-Happy Coding!
-Tunisia
diff --git a/Assignments/Assignment_9.4 b/Assignments/Assignment_9.4
deleted file mode 100644
index 353763d..0000000
--- a/Assignments/Assignment_9.4
+++ /dev/null
@@ -1,16 +0,0 @@
-Hello Fellows!
-
-Write a program to read through the mbox-short.txt and figure out who has the sent the greatest number of mail messages.
-The program looks for 'From ' lines and takes the second word of those lines as the person who sent the mail.
-The program creates a Python dictionary that maps the sender's mail address to a count of the number of times they appear in the file.
-After the dictionary is produced, the program reads through the dictionary using a maximum loop to find the most prolific committer.
-
-Begin to write the program with the following code below:
-name = raw_input("Enter file:")
-if len(name) < 1 : name = "mbox-short.txt"
-handle = open(name)
-
-
-
-Happy Coding,
-Tunisia
diff --git a/Assignments/Assignment_9.4_Massawa_Lawson.py b/Assignments/Assignment_9.4_Massawa_Lawson.py
new file mode 100644
index 0000000..b714af2
--- /dev/null
+++ b/Assignments/Assignment_9.4_Massawa_Lawson.py
@@ -0,0 +1,20 @@
+import re
+fname = raw_input("Enter file:")
+if fname is not None:
+ fh = open('mbox-short.txt')
+
+count = dict()
+
+for line in fh:
+ if line.startswith('From '):
+ emails = line.split()
+ email = emails[1]
+ if email not in count:
+ count[email] = 1
+ else:
+ count[email] = count[email] + 1
+
+
+maximum = max(count, key=count.get)
+print (maximum, count[maximum])
+
diff --git a/Assignments/Library.xml b/Assignments/Library.xml
new file mode 100644
index 0000000..5384732
--- /dev/null
+++ b/Assignments/Library.xml
@@ -0,0 +1,14285 @@
+
+
+
+
+ Major Version1
+ Minor Version1
+ Date2015-11-24T11:12:10Z
+ Application Version12.3.1.23
+ Features5
+ Show Content Ratings
+ Music Folderfile:///Users/csev/Music/iTunes/iTunes%20Music/
+ Library Persistent IDB7006C9E9799282E
+ Tracks
+
+ 369
+
+ Track ID369
+ NameAnother One Bites The Dust
+ ArtistQueen
+ ComposerJohn Deacon
+ AlbumGreatest Hits
+ GenreRock
+ KindMPEG audio file
+ Size4344295
+ Total Time217103
+ Disc Number1
+ Disc Count1
+ Track Number3
+ Track Count17
+ Year1980
+ Date Modified2006-02-14T16:13:02Z
+ Date Added2006-02-14T16:12:53Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count55
+ Play Date3518868190
+ Play Date UTC2015-07-04T19:23:10Z
+ Skip Count1
+ Skip Date2015-10-14T23:31:47Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization1511
+ Compilation
+ Persistent ID21130E105F3B8845
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits/03%20Another%20One%20Bites%20The%20Dust.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 371
+
+ Track ID371
+ NameAsche Zu Asche
+ ArtistRammstein
+ ComposerChristoph Doom Schneider, Doktor Christian Lorenz, Oliver Riedel, Paul Landers, Richard Z. Kruspe-Bernstein & Till Lindemann
+ AlbumHerzeleid
+ GenreIndustrial
+ KindMPEG audio file
+ Size4638526
+ Total Time231810
+ Disc Number1
+ Disc Count1
+ Track Number4
+ Track Count11
+ Year1995
+ Date Modified2006-02-22T04:38:17Z
+ Date Added2006-02-14T16:13:04Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count79
+ Play Date3518869000
+ Play Date UTC2015-07-04T19:36:40Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization4576
+ Persistent ID21130E105F3B8846
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Rammstein/Herzeleid/04%20Asche%20Zu%20Asche.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 373
+
+ Track ID373
+ NameBeauty School Dropout
+ ArtistVarious
+ AlbumGrease
+ GenreSoundtrack
+ KindMPEG audio file
+ Size4801377
+ Total Time239960
+ Track Number6
+ Track Count24
+ Date Modified2006-02-14T16:13:26Z
+ Date Added2006-02-14T16:13:15Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count48
+ Play Date3516380131
+ Play Date UTC2015-06-06T00:15:31Z
+ Skip Count1
+ Skip Date2010-04-07T15:38:14Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization1401
+ Persistent ID21130E105F3B8847
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Various/Grease/06%20Beauty%20School%20Dropout.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 375
+
+ Track ID375
+ NameBlack Dog
+ ArtistLed Zeppelin
+ ComposerJimmy Page, Robert Plant, John Paul Jones
+ AlbumIV
+ GenreRock
+ KindMPEG audio file
+ Size5934629
+ Total Time296620
+ Disc Number1
+ Disc Count1
+ Track Number1
+ Track Count8
+ Year1971
+ Date Modified2014-11-05T23:44:14Z
+ Date Added2006-02-14T16:13:27Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count109
+ Play Date3516392326
+ Play Date UTC2015-06-06T03:38:46Z
+ Skip Count1
+ Skip Date2012-11-19T14:17:56Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization1364
+ Persistent ID21130E105F3B8848
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Led%20Zeppelin/IV/01%20Black%20Dog.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 377
+
+ Track ID377
+ NameBring The Boys Back Home
+ ArtistPink Floyd
+ ComposerRoger Waters
+ AlbumThe Wall [Disc 2]
+ GenreRock
+ KindMPEG audio file
+ Size1744588
+ Total Time87118
+ Disc Number2
+ Disc Count2
+ Track Number5
+ Track Count13
+ Year1979
+ Date Modified2006-02-14T16:13:53Z
+ Date Added2006-02-14T16:13:50Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count33
+ Play Date3514729354
+ Play Date UTC2015-05-17T21:42:34Z
+ Skip Count11
+ Skip Date2013-10-20T10:35:02Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization1445
+ Sort AlbumWall [Disc 2]
+ Persistent ID21130E105F3B8849
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%202%5D/2-05%20Bring%20The%20Boys%20Back%20Home.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 379
+
+ Track ID379
+ NameCircles
+ ArtistBryan Lee
+ AlbumBlues Is
+ GenreFunk
+ KindMPEG audio file
+ Size7109552
+ Total Time355369
+ Track Number1
+ Track Count12
+ Date Modified2009-03-31T14:14:37Z
+ Date Added2006-02-14T16:13:54Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count54
+ Play Date3493169662
+ Play Date UTC2014-09-10T08:54:22Z
+ Skip Count4
+ Skip Date2013-07-01T12:06:02Z
+ Rating60
+ Album Rating100
+ Album Rating Computed
+ Normalization1592
+ Persistent ID21130E105F3B884A
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Bryan%20Lee/Blues%20Is/01%20Circles.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 381
+
+ Track ID381
+ NameComfortably Numb
+ ArtistPink Floyd
+ ComposerDavid Gilmour
+ AlbumThe Wall [Disc 2]
+ GenreRock
+ KindMPEG audio file
+ Size7684826
+ Total Time384130
+ Disc Number2
+ Disc Count2
+ Track Number6
+ Track Count13
+ Year1979
+ Date Modified2006-02-14T16:14:28Z
+ Date Added2006-02-14T16:14:11Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count36
+ Play Date3514729795
+ Play Date UTC2015-05-17T21:49:55Z
+ Skip Count1
+ Skip Date2013-10-21T00:07:39Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization1595
+ Sort AlbumWall [Disc 2]
+ Persistent ID21130E105F3B884B
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%202%5D/2-06%20Comfortably%20Numb.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 383
+
+ Track ID383
+ NameCrazy Little Thing Called Love
+ ArtistQueen
+ ComposerFreddie Mercury
+ AlbumGreatest Hits
+ GenreRock
+ KindMPEG audio file
+ Size3274850
+ Total Time163631
+ Disc Number1
+ Disc Count1
+ Track Number9
+ Track Count17
+ Year1979
+ Date Modified2006-02-14T16:14:37Z
+ Date Added2006-02-14T16:14:30Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count38
+ Play Date3465751592
+ Play Date UTC2013-10-28T00:46:32Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization1258
+ Compilation
+ Persistent ID21130E105F3B884C
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits/09%20Crazy%20Little%20Thing%20Called%20Love.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 385
+
+ Track ID385
+ NameElectric Funeral
+ ArtistBlack Sabbath
+ ComposerTony Iommi, Ozzy Osbourne, Geezer Butler, Bill Ward
+ AlbumParanoid
+ GenreMetal
+ KindMPEG audio file
+ Size5862554
+ Total Time293015
+ Disc Number1
+ Disc Count1
+ Track Number5
+ Track Count8
+ Year1970
+ Date Modified2006-02-21T22:50:24Z
+ Date Added2006-02-14T16:14:38Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count44
+ Play Date3502701857
+ Play Date UTC2014-12-29T17:44:17Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization1188
+ Persistent ID21130E105F3B884D
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Black%20Sabbath/Paranoid/05%20Electric%20Funeral.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 387
+
+ Track ID387
+ NameFat Bottomed Girls
+ ArtistQueen
+ ComposerBrian May
+ AlbumGreatest Hits
+ GenreRock
+ KindMPEG audio file
+ Size5152514
+ Total Time257515
+ Disc Number1
+ Disc Count1
+ Track Number6
+ Track Count17
+ Year1978
+ Date Modified2006-02-14T16:15:04Z
+ Date Added2006-02-14T16:14:53Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count38
+ Play Date3465671648
+ Play Date UTC2013-10-27T02:34:08Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization3631
+ Compilation
+ Persistent ID21130E105F3B884E
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits/06%20Fat%20Bottomed%20Girls.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 389
+
+ Track ID389
+ NameFor Those About To Rock (We Salute You)
+ ArtistAC/DC
+ AlbumWho Made Who
+ GenreRock
+ KindMPEG audio file
+ Size7077218
+ Total Time353750
+ Disc Number1
+ Disc Count1
+ Track Number9
+ Track Count9
+ Year1981
+ Date Modified2006-02-22T04:16:01Z
+ Date Added2006-02-14T16:15:06Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count84
+ Play Date3489336536
+ Play Date UTC2014-07-28T00:08:56Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization11774
+ Compilation
+ Persistent ID21130E105F3B884F
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Who%20Made%20Who/09%20For%20Those%20About%20To%20Rock%20(We%20Salute%20You).mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 391
+
+ Track ID391
+ NameFour Sticks
+ ArtistLed Zeppelin
+ ComposerJimmy Page, Robert Plant
+ AlbumIV
+ GenreRock
+ KindMPEG audio file
+ Size5690630
+ Total Time284421
+ Disc Number1
+ Disc Count1
+ Track Number6
+ Track Count8
+ Year1971
+ Date Modified2006-02-14T16:15:38Z
+ Date Added2006-02-14T16:15:24Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count84
+ Play Date3503057548
+ Play Date UTC2015-01-02T20:32:28Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization897
+ Persistent ID21130E105F3B8850
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Led%20Zeppelin/IV/06%20Four%20Sticks.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 393
+
+ Track ID393
+ NameFurious Angels
+ ArtistRob Dougan
+ ComposerRob Dougan
+ AlbumThe Matrix Reloaded
+ GenreSoundtrack
+ KindMPEG audio file
+ Size6602318
+ Total Time330004
+ Disc Number1
+ Disc Count2
+ Track Number4
+ Track Count12
+ Year2003
+ Date Modified2006-02-14T16:15:54Z
+ Date Added2006-02-14T16:15:40Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count54
+ Play Date3501131153
+ Play Date UTC2014-12-11T13:25:53Z
+ Skip Count1
+ Skip Date2012-06-30T17:09:49Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization3425
+ Compilation
+ Sort AlbumMatrix Reloaded
+ Persistent ID21130E105F3B8851
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/The%20Matrix%20Reloaded/1-04%20Furious%20Angels.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 395
+
+ Track ID395
+ NameGelle
+ ArtistBryan Lee
+ AlbumBlues Is
+ GenreBlues/R&B
+ KindMPEG audio file
+ Size3998889
+ Total Time199836
+ Track Number6
+ Track Count12
+ Date Modified2006-02-14T16:16:04Z
+ Date Added2006-02-14T16:15:55Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count45
+ Play Date3493171048
+ Play Date UTC2014-09-10T09:17:28Z
+ Skip Count1
+ Skip Date2013-10-28T20:48:05Z
+ Rating60
+ Album Rating100
+ Album Rating Computed
+ Normalization1203
+ Persistent ID21130E105F3B8852
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Bryan%20Lee/Blues%20Is/06%20Gelle.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 397
+
+ Track ID397
+ NameGoing To California
+ ArtistLed Zeppelin
+ ComposerJimmy Page, Robert Plant
+ AlbumIV
+ GenreRock
+ KindMPEG audio file
+ Size4315553
+ Total Time215666
+ Disc Number1
+ Disc Count1
+ Track Number7
+ Track Count8
+ Year1971
+ Date Modified2006-02-14T16:16:15Z
+ Date Added2006-02-14T16:16:06Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count100
+ Play Date3502891530
+ Play Date UTC2014-12-31T22:25:30Z
+ Skip Count1
+ Skip Date2010-04-07T15:38:46Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization506
+ Persistent ID21130E105F3B8853
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Led%20Zeppelin/IV/07%20Going%20To%20California.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 399
+
+ Track ID399
+ NameGotta Move Fast
+ ArtistMichael Loceff
+ KindMPEG audio file
+ Size5752732
+ Total Time287529
+ Track Number9
+ Track Count13
+ Date Modified2006-02-14T13:16:30Z
+ Date Added2006-02-14T16:16:17Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count19
+ Play Date3462615302
+ Play Date UTC2013-09-21T17:35:02Z
+ Skip Count2
+ Skip Date2007-03-26T12:20:03Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization945
+ Persistent ID21130E105F3B8854
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Michael%20Loceff/Unknown%20Album/09%20Gotta%20Move%20Fast.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 401
+
+ Track ID401
+ NameGrease
+ ArtistVarious
+ AlbumGrease
+ GenreSoundtrack
+ KindMPEG audio file
+ Size4117999
+ Total Time205792
+ Track Number1
+ Track Count24
+ Date Modified2013-11-13T14:41:09Z
+ Date Added2006-02-14T16:16:31Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count42
+ Play Date3516436529
+ Play Date UTC2015-06-06T15:55:29Z
+ Skip Count1
+ Skip Date2014-02-02T16:42:49Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization1537
+ Persistent ID21130E105F3B8855
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Various/Grease/01%20Grease.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 403
+
+ Track ID403
+ NameHand of Doom
+ ArtistBlack Sabbath
+ ComposerTony Iommi, Ozzy Osbourne, Geezer Butler, Bill Ward
+ AlbumParanoid
+ GenreMetal
+ KindMPEG audio file
+ Size8594436
+ Total Time429609
+ Disc Number1
+ Disc Count1
+ Track Number6
+ Track Count8
+ Year1970
+ Date Modified2006-02-21T22:51:16Z
+ Date Added2006-02-14T16:16:41Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count36
+ Play Date3472741986
+ Play Date UTC2014-01-16T23:33:06Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization1462
+ Persistent ID21130E105F3B8856
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Black%20Sabbath/Paranoid/06%20Hand%20of%20Doom.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 405
+
+ Track ID405
+ NameHells Bells
+ ArtistAC/DC
+ AlbumWho Made Who
+ GenreRock
+ KindMPEG audio file
+ Size6261125
+ Total Time312946
+ Disc Number1
+ Disc Count1
+ Track Number6
+ Track Count9
+ Year1980
+ Date Modified2006-02-22T04:15:10Z
+ Date Added2006-02-14T16:17:07Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count82
+ Play Date3473354932
+ Play Date UTC2014-01-24T01:48:52Z
+ Skip Count1
+ Skip Date2014-11-15T01:09:30Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization11733
+ Compilation
+ Persistent ID21130E105F3B8857
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Who%20Made%20Who/06%20Hells%20Bells.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 407
+
+ Track ID407
+ NameHey You
+ ArtistPink Floyd
+ ComposerRoger Waters
+ AlbumThe Wall [Disc 2]
+ GenreRock
+ KindMPEG audio file
+ Size5648310
+ Total Time282305
+ Disc Number2
+ Disc Count2
+ Track Number1
+ Track Count13
+ Year1979
+ Date Modified2006-02-14T16:17:37Z
+ Date Added2006-02-14T16:17:24Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count23
+ Play Date3514729106
+ Play Date UTC2015-05-17T21:38:26Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization1309
+ Sort AlbumWall [Disc 2]
+ Persistent ID21130E105F3B8858
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%202%5D/2-01%20Hey%20You.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 409
+
+ Track ID409
+ NameI Worry
+ ArtistBryan Lee
+ AlbumBlues Is
+ GenreBlues/R&B
+ KindMPEG audio file
+ Size6828475
+ Total Time341315
+ Track Number11
+ Track Count12
+ Date Modified2006-02-14T16:17:56Z
+ Date Added2006-02-14T16:17:39Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count33
+ Play Date3493172455
+ Play Date UTC2014-09-10T09:40:55Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization1135
+ Persistent ID21130E105F3B8859
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Bryan%20Lee/Blues%20Is/11%20I%20Worry.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 411
+
+ Track ID411
+ NameIron Man
+ ArtistBlack Sabbath
+ ComposerTony Iommi, Ozzy Osbourne, Geezer Butler, Bill Ward
+ AlbumParanoid
+ GenreMetal
+ KindMPEG audio file
+ Size7172848
+ Total Time358530
+ Disc Number1
+ Disc Count1
+ Track Number4
+ Track Count8
+ Year1970
+ Date Modified2006-02-22T01:49:48Z
+ Date Added2006-02-14T16:17:58Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count39
+ Play Date3503420143
+ Play Date UTC2015-01-07T01:15:43Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization1981
+ Persistent ID21130E105F3B885A
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Black%20Sabbath/Paranoid/04%20Iron%20Man.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 413
+
+ Track ID413
+ NameIs There Anybody Out There?
+ ArtistPink Floyd
+ ComposerRoger Waters
+ AlbumThe Wall [Disc 2]
+ GenreRock
+ KindMPEG audio file
+ Size3215808
+ Total Time160679
+ Disc Number2
+ Disc Count2
+ Track Number2
+ Track Count13
+ Year1979
+ Date Modified2006-02-14T16:18:24Z
+ Date Added2006-02-14T16:18:17Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count26
+ Play Date3514729267
+ Play Date UTC2015-05-17T21:41:07Z
+ Skip Count1
+ Skip Date2013-10-22T01:05:01Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization693
+ Sort AlbumWall [Disc 2]
+ Persistent ID21130E105F3B885B
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%202%5D/2-02%20Is%20There%20Anybody%20Out%20There_.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 415
+
+ Track ID415
+ NameIt was a Very Good Year
+ ArtistFrank Sinatra
+ AlbumGreatest Hits
+ GenreEasy Listening
+ KindMPEG audio file
+ Size5379221
+ Total Time268852
+ Track Number3
+ Track Count12
+ Date Modified2006-02-14T16:18:40Z
+ Date Added2006-02-14T16:18:26Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count39
+ Play Date3468268859
+ Play Date UTC2013-11-26T05:00:59Z
+ Skip Count1
+ Skip Date2007-03-26T12:20:03Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization696
+ Persistent ID21130E105F3B885C
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Frank%20Sinatra/Greatest%20Hits/03%20It%20was%20a%20Very%20Good%20Year.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 417
+
+ Track ID417
+ NameIts Your Move
+ ArtistBryan Lee
+ AlbumBlues Is
+ GenreBlues/R&B
+ KindMPEG audio file
+ Size4902211
+ Total Time245002
+ Track Number5
+ Track Count12
+ Date Modified2006-02-14T16:18:53Z
+ Date Added2006-02-14T16:18:41Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count40
+ Play Date3493170848
+ Play Date UTC2014-09-10T09:14:08Z
+ Skip Count1
+ Skip Date2007-03-26T12:20:03Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization2614
+ Persistent ID21130E105F3B885D
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Bryan%20Lee/Blues%20Is/05%20Its%20Your%20Move.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 419
+
+ Track ID419
+ NameJack the Stripper/Fairies Wear Boots
+ ArtistBlack Sabbath
+ ComposerTony Iommi, Ozzy Osbourne, Geezer Butler, Bill Ward
+ AlbumParanoid
+ GenreMetal
+ KindMPEG audio file
+ Size7482166
+ Total Time373995
+ Disc Number1
+ Disc Count1
+ Track Number8
+ Track Count8
+ Year1970
+ Date Modified2006-02-22T01:52:11Z
+ Date Added2006-02-14T16:18:54Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count35
+ Play Date3472742511
+ Play Date UTC2014-01-16T23:41:51Z
+ Skip Count1
+ Skip Date2007-03-26T12:20:03Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization1752
+ Persistent ID21130E105F3B885E
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Black%20Sabbath/Paranoid/08%20Jack%20the%20Stripper_Fairies%20Wear%20Boots.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 421
+
+ Track ID421
+ NameKiller Queen
+ ArtistQueen
+ ComposerFreddie Mercury
+ AlbumGreatest Hits
+ GenreRock
+ KindMPEG audio file
+ Size3629575
+ Total Time181368
+ Disc Number1
+ Disc Count1
+ Track Number4
+ Track Count17
+ Year1974
+ Date Modified2006-02-14T16:19:21Z
+ Date Added2006-02-14T16:19:13Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count34
+ Play Date3462508015
+ Play Date UTC2013-09-20T11:46:55Z
+ Skip Count1
+ Skip Date2008-08-18T21:28:59Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization3266
+ Compilation
+ Persistent ID21130E105F3B885F
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits/04%20Killer%20Queen.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 423
+
+ Track ID423
+ NameLaichzeit
+ ArtistRammstein
+ ComposerChristoph Doom Schneider, Doktor Christian Lorenz, Oliver Riedel, Paul Landers, Richard Z. Kruspe-Bernstein & Till Lindemann
+ AlbumHerzeleid
+ GenreIndustrial
+ KindMPEG audio file
+ Size5259192
+ Total Time262844
+ Disc Number1
+ Disc Count1
+ Track Number10
+ Track Count11
+ Year1995
+ Date Modified2006-02-22T04:41:32Z
+ Date Added2006-02-14T16:19:23Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count41
+ Play Date3483455112
+ Play Date UTC2014-05-20T22:25:12Z
+ Skip Count1
+ Skip Date2013-09-20T23:58:48Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization3721
+ Persistent ID21130E105F3B8860
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Rammstein/Herzeleid/10%20Laichzeit.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 425
+
+ Track ID425
+ NameLet me Down Easy
+ ArtistBryan Lee
+ AlbumBlues Is
+ GenreBlues/R&B
+ KindMPEG audio file
+ Size6630998
+ Total Time331441
+ Track Number4
+ Track Count12
+ Date Modified2006-02-14T16:19:50Z
+ Date Added2006-02-14T16:19:36Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count43
+ Play Date3508728504
+ Play Date UTC2015-03-09T10:48:24Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization1929
+ Persistent ID21130E105F3B8861
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Bryan%20Lee/Blues%20Is/04%20Let%20me%20Down%20Easy.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 427
+
+ Track ID427
+ NameMisty Mountain Hop
+ ArtistLed Zeppelin
+ ComposerJimmy Page, Robert Plant, John Paul Jones
+ AlbumIV
+ GenreRock
+ KindMPEG audio file
+ Size5578850
+ Total Time278831
+ Disc Number1
+ Disc Count1
+ Track Number5
+ Track Count8
+ Year1971
+ Date Modified2006-02-14T16:20:13Z
+ Date Added2006-02-14T16:19:59Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count88
+ Play Date3492855896
+ Play Date UTC2014-09-06T17:44:56Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization1314
+ Persistent ID21130E105F3B8863
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Led%20Zeppelin/IV/05%20Misty%20Mountain%20Hop.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 429
+
+ Track ID429
+ NameNo Low Down
+ ArtistBryan Lee
+ AlbumBlues Is
+ GenreBlues/R&B
+ KindMPEG audio file
+ Size4917360
+ Total Time245760
+ Track Number9
+ Track Count12
+ Date Modified2006-02-14T16:20:34Z
+ Date Added2006-02-14T16:20:24Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count39
+ Play Date3493171889
+ Play Date UTC2014-09-10T09:31:29Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization2768
+ Persistent ID21130E105F3B8865
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Bryan%20Lee/Blues%20Is/09%20No%20Low%20Down.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 431
+
+ Track ID431
+ NameNow You Are Gone
+ ArtistAmerica
+ AlbumGreatest Hits
+ GenreEasy Listening
+ KindMPEG audio file
+ Size3753347
+ Total Time187559
+ Track Number2
+ Track Count12
+ Date Modified2006-02-14T16:20:44Z
+ Date Added2006-02-14T16:20:36Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count52
+ Play Date3528446011
+ Play Date UTC2015-10-23T15:53:31Z
+ Skip Count1
+ Skip Date2010-04-26T22:57:59Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization656
+ Persistent ID21130E105F3B8866
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/America/Greatest%20Hits/02%20Now%20You%20Are%20Gone.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 433
+
+ Track ID433
+ NameOutside The Wall
+ ArtistPink Floyd
+ ComposerRoger Waters
+ AlbumThe Wall [Disc 2]
+ GenreRock
+ KindMPEG audio file
+ Size2090965
+ Total Time104437
+ Disc Number2
+ Disc Count2
+ Track Number13
+ Track Count13
+ Year1979
+ Date Modified2006-02-14T16:20:59Z
+ Date Added2006-02-14T16:20:55Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count16
+ Play Date3514729899
+ Play Date UTC2015-05-17T21:51:39Z
+ Skip Count3
+ Skip Date2008-08-18T21:29:02Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization35
+ Sort AlbumWall [Disc 2]
+ Persistent ID21130E105F3B8868
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%202%5D/2-13%20Outside%20The%20Wall.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 435
+
+ Track ID435
+ NameParanoid
+ ArtistBlack Sabbath
+ ComposerTony Iommi, Ozzy Osbourne, Geezer Butler, Bill Ward
+ AlbumParanoid
+ GenreMetal
+ KindMPEG audio file
+ Size3460848
+ Total Time172930
+ Disc Number1
+ Disc Count1
+ Track Number2
+ Track Count8
+ Year1970
+ Date Modified2006-02-22T01:48:18Z
+ Date Added2006-02-14T16:21:00Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count36
+ Play Date3503420316
+ Play Date UTC2015-01-07T01:18:36Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization922
+ Persistent ID21130E105F3B8869
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Black%20Sabbath/Paranoid/02%20Paranoid.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 437
+
+ Track ID437
+ NamePlanet Caravan
+ ArtistBlack Sabbath
+ ComposerTony Iommi, Ozzy Osbourne, Geezer Butler, Bill Ward
+ AlbumParanoid
+ GenreMetal
+ KindMPEG audio file
+ Size5501017
+ Total Time274938
+ Disc Number1
+ Disc Count1
+ Track Number3
+ Track Count8
+ Year1970
+ Date Modified2006-02-22T01:48:59Z
+ Date Added2006-02-14T16:21:09Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count38
+ Play Date3503420591
+ Play Date UTC2015-01-07T01:23:11Z
+ Skip Count1
+ Skip Date2007-03-26T12:20:03Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization461
+ Persistent ID21130E105F3B886A
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Black%20Sabbath/Paranoid/03%20Planet%20Caravan.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 439
+
+ Track ID439
+ NamePretty Jeanie
+ ArtistBryan Lee
+ AlbumBlues Is
+ GenreBlues/R&B
+ KindMPEG audio file
+ Size4505673
+ Total Time225175
+ Track Number10
+ Track Count12
+ Date Modified2006-02-14T16:21:32Z
+ Date Added2006-02-14T16:21:23Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count34
+ Play Date3502812757
+ Play Date UTC2014-12-31T00:32:37Z
+ Skip Count1
+ Skip Date2013-10-21T00:07:34Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization4946
+ Persistent ID21130E105F3B886B
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Bryan%20Lee/Blues%20Is/10%20Pretty%20Jeanie.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 441
+
+ Track ID441
+ NameRammstein
+ ArtistRammstein
+ ComposerChristoph Doom Schneider, Doktor Christian Lorenz, Oliver Riedel, Paul Landers, Richard Z. Kruspe-Bernstein & Till Lindemann
+ AlbumHerzeleid
+ GenreIndustrial
+ KindMPEG audio file
+ Size5304122
+ Total Time265090
+ Disc Number1
+ Disc Count1
+ Track Number11
+ Track Count11
+ Year1995
+ Date Modified2011-11-18T19:28:29Z
+ Date Added2006-02-14T16:21:34Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count45
+ Play Date3489331767
+ Play Date UTC2014-07-27T22:49:27Z
+ Skip Count3
+ Skip Date2013-09-21T01:55:34Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization4060
+ Persistent ID21130E105F3B886C
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Rammstein/Herzeleid/11%20Rammstein.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 443
+
+ Track ID443
+ NameRat Salad
+ ArtistBlack Sabbath
+ ComposerTony Iommi, Ozzy Osbourne, Geezer Butler, Bill Ward
+ AlbumParanoid
+ GenreMetal
+ KindMPEG audio file
+ Size3006841
+ Total Time150230
+ Disc Number1
+ Disc Count1
+ Track Number7
+ Track Count8
+ Year1970
+ Date Modified2006-02-22T01:51:32Z
+ Date Added2006-02-14T16:21:47Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count46
+ Play Date3472742136
+ Play Date UTC2014-01-16T23:35:36Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization451
+ Persistent ID21130E105F3B886F
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Black%20Sabbath/Paranoid/07%20Rat%20Salad.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 445
+
+ Track ID445
+ NameRock & Roll
+ ArtistLed Zeppelin
+ ComposerJimmy Page, Robert Plant, John Paul Jones, John Bonham
+ AlbumIV
+ GenreRock
+ KindMPEG audio file
+ Size4420064
+ Total Time220891
+ Disc Number1
+ Disc Count1
+ Track Number2
+ Track Count8
+ Year1971
+ Date Modified2006-02-14T16:24:40Z
+ Date Added2006-02-14T16:24:31Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count109
+ Play Date3503062355
+ Play Date UTC2015-01-02T21:52:35Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization1425
+ Persistent ID21130E105F3B8871
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Led%20Zeppelin/IV/02%20Rock%20&%20Roll.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 447
+
+ Track ID447
+ NameRode Across the Desert
+ ArtistAmerica
+ AlbumGreatest Hits
+ GenreEasy Listening
+ KindMPEG audio file
+ Size4999916
+ Total Time249887
+ Track Number1
+ Track Count12
+ Date Modified2006-02-14T16:24:53Z
+ Date Added2006-02-14T16:24:42Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count60
+ Play Date3528445823
+ Play Date UTC2015-10-23T15:50:23Z
+ Skip Count2
+ Skip Date2014-02-26T14:21:42Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization964
+ Persistent ID21130E105F3B8872
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/America/Greatest%20Hits/01%20Rode%20Across%20the%20Desert.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 449
+
+ Track ID449
+ NameSandy
+ ArtistVarious
+ AlbumGrease
+ GenreSoundtrack
+ KindMPEG audio file
+ Size3116986
+ Total Time155742
+ Track Number5
+ Track Count24
+ Date Modified2006-02-14T16:25:01Z
+ Date Added2006-02-14T16:24:54Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count36
+ Play Date3478190630
+ Play Date UTC2014-03-21T00:03:50Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization1739
+ Persistent ID21130E105F3B8873
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Various/Grease/05%20Sandy.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 451
+
+ Track ID451
+ NameShake Your Foundations
+ ArtistAC/DC
+ AlbumWho Made Who
+ GenreRock
+ KindMPEG audio file
+ Size4677593
+ Total Time233769
+ Disc Number1
+ Disc Count1
+ Track Number7
+ Track Count9
+ Year1985
+ Date Modified2006-02-22T04:15:26Z
+ Date Added2006-02-14T16:25:02Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count85
+ Play Date3396883263
+ Play Date UTC2011-08-22T22:41:03Z
+ Skip Count1
+ Skip Date2007-09-22T13:56:48Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization13346
+ Compilation
+ Persistent ID21130E105F3B8874
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Who%20Made%20Who/07%20Shake%20Your%20Foundations.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 453
+
+ Track ID453
+ NameSister Golden Hair
+ ArtistAmerica
+ AlbumGreatest Hits
+ GenreEasy Listening
+ KindMPEG audio file
+ Size4043309
+ Total Time202057
+ Track Number10
+ Track Count12
+ Date Modified2006-02-14T16:25:26Z
+ Date Added2006-02-14T16:25:15Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count60
+ Play Date3528445364
+ Play Date UTC2015-10-23T15:42:44Z
+ Skip Count1
+ Skip Date2010-04-26T22:58:16Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization1246
+ Persistent ID21130E105F3B8875
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/America/Greatest%20Hits/10%20Sister%20Golden%20Hair.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 455
+
+ Track ID455
+ NameSomebody To Love
+ ArtistQueen
+ ComposerFreddie Mercury
+ AlbumGreatest Hits
+ GenreRock
+ KindMPEG audio file
+ Size5953955
+ Total Time297586
+ Disc Number1
+ Disc Count1
+ Track Number5
+ Track Count17
+ Year1976
+ Date Modified2006-02-14T16:25:45Z
+ Date Added2006-02-14T16:25:27Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count17
+ Play Date3460721056
+ Play Date UTC2013-08-30T19:24:16Z
+ Skip Count1
+ Skip Date2012-04-06T18:23:11Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization3193
+ Compilation
+ Persistent ID21130E105F3B8876
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits/05%20Somebody%20To%20Love.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 457
+
+ Track ID457
+ NameStairway To Heaven
+ ArtistLed Zeppelin
+ ComposerJimmy Page, Robert Plant
+ AlbumIV
+ GenreRock
+ KindMPEG audio file
+ Size9633560
+ Total Time481567
+ Disc Number1
+ Disc Count1
+ Track Number4
+ Track Count8
+ Year1971
+ Date Modified2006-02-14T16:26:12Z
+ Date Added2006-02-14T16:25:46Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count93
+ Play Date3502890835
+ Play Date UTC2014-12-31T22:13:55Z
+ Skip Count1
+ Skip Date2007-09-22T11:57:58Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization754
+ Persistent ID21130E105F3B8877
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Led%20Zeppelin/IV/04%20Stairway%20To%20Heaven.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 459
+
+ Track ID459
+ NameStrangers in the Night
+ ArtistFrank Sinatra
+ AlbumGreatest Hits
+ GenreEasy Listening
+ KindMPEG audio file
+ Size3171873
+ Total Time158484
+ Track Number1
+ Track Count12
+ Date Modified2006-02-14T16:26:23Z
+ Date Added2006-02-14T16:26:14Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count42
+ Play Date3468267921
+ Play Date UTC2013-11-26T04:45:21Z
+ Skip Count3
+ Skip Date2013-11-20T17:32:22Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization694
+ Persistent ID21130E105F3B8878
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Frank%20Sinatra/Greatest%20Hits/01%20Strangers%20in%20the%20Night.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 461
+
+ Track ID461
+ NameSummer Nights
+ ArtistVarious
+ AlbumGrease
+ GenreSoundtrack
+ KindMPEG audio file
+ Size4341614
+ Total Time216973
+ Track Number2
+ Track Count24
+ Date Modified2006-02-14T16:26:37Z
+ Date Added2006-02-14T16:26:24Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count35
+ Play Date3516437260
+ Play Date UTC2015-06-06T16:07:40Z
+ Skip Count1
+ Skip Date2014-02-02T16:42:54Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization3063
+ Persistent ID21130E105F3B8879
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Various/Grease/02%20Summer%20Nights.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 463
+
+ Track ID463
+ NameSummer Wind
+ ArtistFrank Sinatra
+ AlbumGreatest Hits
+ GenreEasy Listening
+ KindMPEG audio file
+ Size3553250
+ Total Time177554
+ Track Number2
+ Track Count12
+ Date Modified2006-02-14T16:26:49Z
+ Date Added2006-02-14T16:26:39Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count46
+ Play Date3468268099
+ Play Date UTC2013-11-26T04:48:19Z
+ Skip Count1
+ Skip Date2014-02-02T16:26:41Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization707
+ Persistent ID21130E105F3B887A
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Frank%20Sinatra/Greatest%20Hits/02%20Summer%20Wind.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 465
+
+ Track ID465
+ NameThats Life
+ ArtistFrank Sinatra
+ AlbumGreatest Hits
+ GenreEasy Listening
+ KindMPEG audio file
+ Size3801934
+ Total Time189988
+ Track Number7
+ Track Count12
+ Date Modified2006-02-14T16:27:13Z
+ Date Added2006-02-14T16:27:00Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count43
+ Play Date3468268288
+ Play Date UTC2013-11-26T04:51:28Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization1643
+ Persistent ID21130E105F3B887C
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Frank%20Sinatra/Greatest%20Hits/07%20Thats%20Life.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 467
+
+ Track ID467
+ NameThe Battle Of Evermore
+ ArtistLed Zeppelin
+ ComposerJimmy Page, Robert Plant
+ AlbumIV
+ GenreRock
+ KindMPEG audio file
+ Size7032813
+ Total Time351529
+ Disc Number1
+ Disc Count1
+ Track Number3
+ Track Count8
+ Year1971
+ Date Modified2006-02-14T16:27:33Z
+ Date Added2006-02-14T16:27:14Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count110
+ Play Date3516379891
+ Play Date UTC2015-06-06T00:11:31Z
+ Skip Count1
+ Skip Date2014-07-08T09:42:34Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization998
+ Sort NameBattle Of Evermore
+ Persistent ID21130E105F3B887D
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Led%20Zeppelin/IV/03%20The%20Battle%20Of%20Evermore.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 469
+
+ Track ID469
+ NameThe Blues "Is"
+ ArtistBryan Lee
+ AlbumBlues Is
+ GenreBlues/R&B
+ KindMPEG audio file
+ Size5046931
+ Total Time252238
+ Track Number12
+ Track Count12
+ Date Modified2006-02-14T16:27:46Z
+ Date Added2006-02-14T16:27:35Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count45
+ Play Date3493172718
+ Play Date UTC2014-09-10T09:45:18Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization2631
+ Sort NameBlues "Is"
+ Persistent ID21130E105F3B887E
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Bryan%20Lee/Blues%20Is/12%20The%20Blues%20_Is_.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 471
+
+ Track ID471
+ NameThere it Is
+ ArtistBryan Lee
+ AlbumBlues Is
+ GenreBlues/R&B
+ KindMPEG audio file
+ Size7910993
+ Total Time395441
+ Track Number7
+ Track Count12
+ Date Modified2006-02-14T16:28:06Z
+ Date Added2006-02-14T16:27:47Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count35
+ Play Date3493171443
+ Play Date UTC2014-09-10T09:24:03Z
+ Skip Count1
+ Skip Date2007-06-24T15:29:57Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization1684
+ Persistent ID21130E105F3B887F
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Bryan%20Lee/Blues%20Is/07%20There%20it%20Is.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 473
+
+ Track ID473
+ NameThink
+ ArtistBryan Lee
+ AlbumBlues Is
+ GenreBlues/R&B
+ KindMPEG audio file
+ Size6408946
+ Total Time320339
+ Track Number2
+ Track Count12
+ Date Modified2006-02-14T16:28:22Z
+ Date Added2006-02-14T16:28:08Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count41
+ Play Date3494419882
+ Play Date UTC2014-09-24T20:11:22Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization1944
+ Persistent ID21130E105F3B8880
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Bryan%20Lee/Blues%20Is/02%20Think.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 475
+
+ Track ID475
+ NameThis Town
+ ArtistFrank Sinatra
+ AlbumGreatest Hits
+ GenreEasy Listening
+ KindMPEG audio file
+ Size3703191
+ Total Time185051
+ Track Number11
+ Track Count12
+ Date Modified2006-02-14T16:28:32Z
+ Date Added2006-02-14T16:28:23Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count44
+ Play Date3468268474
+ Play Date UTC2013-11-26T04:54:34Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization3122
+ Persistent ID21130E105F3B8881
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Frank%20Sinatra/Greatest%20Hits/11%20This%20Town.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 477
+
+ Track ID477
+ NameTin Man
+ ArtistAmerica
+ AlbumGreatest Hits
+ GenreEasy Listening
+ KindMPEG audio file
+ Size4203689
+ Total Time210076
+ Track Number8
+ Track Count12
+ Date Modified2006-02-14T16:28:43Z
+ Date Added2006-02-14T16:28:34Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count50
+ Play Date3528445574
+ Play Date UTC2015-10-23T15:46:14Z
+ Skip Count2
+ Skip Date2010-04-26T22:58:08Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization591
+ Persistent ID21130E105F3B8884
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/America/Greatest%20Hits/08%20Tin%20Man.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 479
+
+ Track ID479
+ NameTrack 01
+ ArtistBilly Price
+ AlbumDanger Zone
+ GenreBlues/R&B
+ KindMPEG audio file
+ Size5238668
+ Total Time261825
+ Track Number1
+ Track Count12
+ Date Modified2013-11-15T19:10:20Z
+ Date Added2006-02-14T16:28:45Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count47
+ Play Date3498845410
+ Play Date UTC2014-11-15T02:30:10Z
+ Skip Count1
+ Skip Date2008-01-22T14:57:28Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization1000
+ Persistent ID21130E105F3B8885
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Billy%20Price/Danger%20Zone/01%20Track%2001.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 481
+
+ Track ID481
+ NameTrack 02
+ ArtistBilly Price
+ AlbumDanger Zone
+ GenreBlues/R&B
+ KindMPEG audio file
+ Size3311354
+ Total Time165459
+ Track Number2
+ Track Count12
+ Date Modified2006-02-14T16:29:19Z
+ Date Added2006-02-14T16:29:12Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count42
+ Play Date3498846039
+ Play Date UTC2014-11-15T02:40:39Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization562
+ Persistent ID21130E105F3B8887
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Billy%20Price/Danger%20Zone/02%20Track%2002.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 483
+
+ Track ID483
+ NameTrack 03
+ ArtistBilly Price
+ AlbumDanger Zone
+ GenreBlues/R&B
+ KindMPEG audio file
+ Size4131599
+ Total Time206471
+ Track Number3
+ Track Count12
+ Date Modified2006-02-14T16:29:43Z
+ Date Added2006-02-14T16:29:34Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count41
+ Play Date3498845616
+ Play Date UTC2014-11-15T02:33:36Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization393
+ Persistent ID21130E105F3B8889
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Billy%20Price/Danger%20Zone/03%20Track%2003.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 485
+
+ Track ID485
+ NameMessin with the Kid
+ ArtistThe Canettes Blues Band
+ AlbumSelf Titled
+ GenreBlues/R&B
+ KindMPEG audio file
+ Size4529707
+ Total Time226377
+ Track Number3
+ Track Count11
+ Date Modified2008-01-11T02:25:56Z
+ Date Added2006-02-14T16:29:44Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count23
+ Play Date3494418842
+ Play Date UTC2014-09-24T19:54:02Z
+ Skip Count1
+ Skip Date2007-03-26T12:20:03Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization3677
+ Sort ArtistCanettes Blues Band
+ Persistent ID21130E105F3B888C
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/The%20Canettes%20Blues%20Band/Self%20Titled/03%20Messin%20with%20the%20Kid.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 487
+
+ Track ID487
+ NameTrack 04
+ ArtistBilly Price
+ AlbumDanger Zone
+ GenreBlues/R&B
+ KindMPEG audio file
+ Size5145672
+ Total Time257175
+ Track Number4
+ Track Count12
+ Date Modified2006-02-14T16:30:37Z
+ Date Added2006-02-14T16:30:23Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count37
+ Play Date3498845873
+ Play Date UTC2014-11-15T02:37:53Z
+ Skip Count1
+ Skip Date2007-04-17T15:10:19Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization568
+ Persistent ID21130E105F3B888E
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Billy%20Price/Danger%20Zone/04%20Track%2004.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 489
+
+ Track ID489
+ NameStormy Monday
+ ArtistThe Canettes Blues Band
+ AlbumSelf Titled
+ GenreBlues/R&B
+ KindMPEG audio file
+ Size9285037
+ Total Time464143
+ Track Number4
+ Track Count11
+ Date Modified2011-04-06T22:33:27Z
+ Date Added2006-02-14T16:30:38Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count29
+ Play Date3489327568
+ Play Date UTC2014-07-27T21:39:28Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization3571
+ Sort ArtistCanettes Blues Band
+ Persistent ID21130E105F3B888F
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/The%20Canettes%20Blues%20Band/Self%20Titled/04%20Stormy%20Monday.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 491
+
+ Track ID491
+ NameTrack 05
+ ArtistBilly Price
+ AlbumDanger Zone
+ GenreBlues/R&B
+ KindMPEG audio file
+ Size4608072
+ Total Time230295
+ Track Number5
+ Track Count12
+ Date Modified2006-02-14T16:31:22Z
+ Date Added2006-02-14T16:31:12Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count42
+ Play Date3503062585
+ Play Date UTC2015-01-02T21:56:25Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization299
+ Persistent ID21130E105F3B8891
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Billy%20Price/Danger%20Zone/05%20Track%2005.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 493
+
+ Track ID493
+ NameTwenty Two Second Man
+ ArtistMichael Loceff
+ KindMPEG audio file
+ Size5029146
+ Total Time251350
+ Track Number8
+ Track Count13
+ Date Modified2006-02-14T16:31:50Z
+ Date Added2006-02-14T16:31:38Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count18
+ Play Date3460785422
+ Play Date UTC2013-08-31T13:17:02Z
+ Skip Count1
+ Skip Date2015-01-04T18:49:26Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization1523
+ Persistent ID21130E105F3B8893
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Michael%20Loceff/Unknown%20Album/08%20Twenty%20Two%20Second%20Man.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 495
+
+ Track ID495
+ NameWaiting on Ice
+ ArtistBryan Lee
+ AlbumBlues Is
+ GenreBlues/R&B
+ KindMPEG audio file
+ Size5789853
+ Total Time289384
+ Track Number3
+ Track Count12
+ Date Modified2006-02-14T13:32:04Z
+ Date Added2006-02-14T16:31:51Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count37
+ Play Date3493170271
+ Play Date UTC2014-09-10T09:04:31Z
+ Skip Count2
+ Skip Date2007-06-24T15:29:57Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization2655
+ Persistent ID21130E105F3B8894
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Bryan%20Lee/Blues%20Is/03%20Waiting%20on%20Ice.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 497
+
+ Track ID497
+ NameWar Pigs/Luke's Wall
+ ArtistBlack Sabbath
+ ComposerTony Iommi, Ozzy Osbourne, Geezer Butler, Bill Ward
+ AlbumParanoid
+ GenreMetal
+ KindMPEG audio file
+ Size9566199
+ Total Time478197
+ Disc Number1
+ Disc Count1
+ Track Number1
+ Track Count8
+ Year1970
+ Date Modified2006-02-22T01:47:52Z
+ Date Added2006-02-14T16:32:16Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count38
+ Play Date3503421069
+ Play Date UTC2015-01-07T01:31:09Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization1342
+ Persistent ID21130E105F3B8896
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Black%20Sabbath/Paranoid/01%20War%20Pigs_Luke's%20Wall.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 499
+
+ Track ID499
+ NameWe Are The Champions
+ ArtistQueen
+ ComposerFreddie Mercury
+ AlbumGreatest Hits
+ GenreRock
+ KindMPEG audio file
+ Size3639510
+ Total Time181864
+ Disc Number1
+ Disc Count1
+ Track Number2
+ Track Count17
+ Year1977
+ Date Modified2006-02-14T16:32:46Z
+ Date Added2006-02-14T16:32:39Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count24
+ Play Date3462548624
+ Play Date UTC2013-09-20T23:03:44Z
+ Skip Count2
+ Skip Date2007-11-06T14:11:40Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization4860
+ Compilation
+ Persistent ID21130E105F3B8899
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits/02%20We%20Are%20The%20Champions.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 501
+
+ Track ID501
+ NameWe Will Rock You
+ ArtistQueen
+ ComposerBrian May
+ AlbumGreatest Hits
+ GenreRock
+ KindMPEG audio file
+ Size2473394
+ Total Time123559
+ Disc Number1
+ Disc Count1
+ Track Number1
+ Track Count17
+ Year1977
+ Date Modified2006-02-14T16:32:52Z
+ Date Added2006-02-14T16:32:48Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count33
+ Play Date3465234431
+ Play Date UTC2013-10-22T01:07:11Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization5248
+ Compilation
+ Persistent ID21130E105F3B889A
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits/01%20We%20Will%20Rock%20You.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 503
+
+ Track ID503
+ NameWhen Somebody Loves You
+ ArtistFrank Sinatra
+ AlbumGreatest Hits
+ GenreEasy Listening
+ KindMPEG audio file
+ Size2347450
+ Total Time117263
+ Track Number10
+ Track Count12
+ Date Modified2006-02-14T16:32:59Z
+ Date Added2006-02-14T16:32:53Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count43
+ Play Date3516013813
+ Play Date UTC2015-06-01T18:30:13Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization3183
+ Persistent ID21130E105F3B889B
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Frank%20Sinatra/Greatest%20Hits/10%20When%20Somebody%20Loves%20You.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 505
+
+ Track ID505
+ NameWhen The Levee Breaks
+ ArtistLed Zeppelin
+ ComposerJimmy Page, Robert Plant, John Paul Jones, John Bonham, Memphis Minnie
+ AlbumIV
+ GenreRock
+ KindMPEG audio file
+ Size8554752
+ Total Time427624
+ Disc Number1
+ Disc Count1
+ Track Number8
+ Track Count8
+ Year1971
+ Date Modified2006-02-14T16:33:25Z
+ Date Added2006-02-14T16:33:01Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count83
+ Play Date3492859638
+ Play Date UTC2014-09-06T18:47:18Z
+ Skip Count7
+ Skip Date2014-04-23T00:19:53Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization1676
+ Persistent ID21130E105F3B889C
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Led%20Zeppelin/IV/08%20When%20The%20Levee%20Breaks.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 507
+
+ Track ID507
+ NameYou are the One that I Want
+ ArtistVarious
+ AlbumGrease
+ GenreSoundtrack
+ KindMPEG audio file
+ Size3400175
+ Total Time169900
+ Track Number4
+ Track Count24
+ Date Modified2006-02-14T16:33:42Z
+ Date Added2006-02-14T16:33:35Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count31
+ Play Date3516437429
+ Play Date UTC2015-06-06T16:10:29Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization2038
+ Persistent ID21130E105F3B88A0
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Various/Grease/04%20You%20are%20the%20One%20that%20I%20Want.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 509
+
+ Track ID509
+ NameYou Done Me Wrong
+ ArtistBryan Lee
+ AlbumBlues Is
+ GenreBlues/R&B
+ KindMPEG audio file
+ Size4004125
+ Total Time200097
+ Track Number8
+ Track Count12
+ Date Modified2006-02-14T16:33:52Z
+ Date Added2006-02-14T16:33:44Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count35
+ Play Date3493171643
+ Play Date UTC2014-09-10T09:27:23Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization1667
+ Persistent ID21130E105F3B88A1
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Bryan%20Lee/Blues%20Is/08%20You%20Done%20Me%20Wrong.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 511
+
+ Track ID511
+ NameYou Shook Me All Night Long
+ ArtistAC/DC
+ AlbumWho Made Who
+ GenreRock
+ KindMPEG audio file
+ Size4220977
+ Total Time210938
+ Disc Number1
+ Disc Count1
+ Track Number2
+ Track Count9
+ Year1980
+ Date Modified2008-11-19T19:04:59Z
+ Date Added2006-02-14T16:33:53Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count92
+ Play Date3473353841
+ Play Date UTC2014-01-24T01:30:41Z
+ Skip Count3
+ Skip Date2012-06-11T21:42:20Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization11387
+ Compilation
+ Persistent ID21130E105F3B88A2
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Who%20Made%20Who/02%20You%20Shook%20Me%20All%20Night%20Long.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 513
+
+ Track ID513
+ NameYou're My Best Friend
+ ArtistQueen
+ ComposerJohn Deacon
+ AlbumGreatest Hits
+ GenreRock
+ KindMPEG audio file
+ Size3455082
+ Total Time172643
+ Disc Number1
+ Disc Count1
+ Track Number8
+ Track Count17
+ Year1975
+ Date Modified2006-02-14T16:34:12Z
+ Date Added2006-02-14T16:34:05Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count31
+ Play Date3502814214
+ Play Date UTC2014-12-31T00:56:54Z
+ Skip Count1
+ Skip Date2007-03-26T12:20:03Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization3647
+ Compilation
+ Persistent ID21130E105F3B88A3
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits/08%20You're%20My%20Best%20Friend.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 515
+
+ Track ID515
+ NameZion
+ ArtistFluke
+ ComposerFluke
+ AlbumThe Matrix Reloaded
+ GenreSoundtrack
+ KindMPEG audio file
+ Size5472764
+ Total Time273528
+ Disc Number1
+ Disc Count2
+ Track Number11
+ Track Count12
+ Year2003
+ Date Modified2006-02-14T16:34:26Z
+ Date Added2006-02-14T16:34:14Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count47
+ Play Date3485865319
+ Play Date UTC2014-06-17T19:55:19Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization5005
+ Compilation
+ Sort AlbumMatrix Reloaded
+ Persistent ID21130E105F3B88A4
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/The%20Matrix%20Reloaded/1-11%20Zion.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 517
+
+ Track ID517
+ NameWho Made Who
+ ArtistAC/DC
+ AlbumWho Made Who
+ GenreRock
+ KindMPEG audio file
+ Size4146252
+ Total Time207203
+ Disc Number1
+ Disc Count1
+ Track Number1
+ Track Count9
+ Year1986
+ Date Modified2015-11-19T00:22:38Z
+ Date Added2006-02-22T04:12:56Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count110
+ Play Date3465066281
+ Play Date UTC2013-10-20T02:24:41Z
+ Skip Count2
+ Skip Date2014-11-15T01:09:23Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization13054
+ Compilation
+ Persistent ID0ADE6EBFF9C07306
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Who%20Made%20Who/01%20Who%20Made%20Who.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 519
+
+ Track ID519
+ NameD.T.
+ ArtistAC/DC
+ ComposerAngus Young/Malcolm Young
+ AlbumWho Made Who
+ GenreRock
+ KindMPEG audio file
+ Size3476498
+ Total Time173714
+ Disc Number1
+ Disc Count1
+ Track Number3
+ Track Count9
+ Year1986
+ Date Modified2014-11-07T19:09:50Z
+ Date Added2006-02-22T04:13:40Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count90
+ Play Date3489327974
+ Play Date UTC2014-07-27T21:46:14Z
+ Album Rating100
+ Album Rating Computed
+ Normalization5526
+ Compilation
+ Persistent ID0ADE6EBFF9C07307
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Who%20Made%20Who/03%20D.T..mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 521
+
+ Track ID521
+ NameSink the Pink
+ ArtistAC/DC
+ AlbumWho Made Who
+ GenreRock
+ KindMPEG audio file
+ Size5071510
+ Total Time253466
+ Disc Number1
+ Disc Count1
+ Track Number4
+ Track Count9
+ Year1985
+ Date Modified2006-02-22T04:14:16Z
+ Date Added2006-02-22T04:13:56Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count83
+ Play Date3473354268
+ Play Date UTC2014-01-24T01:37:48Z
+ Album Rating100
+ Album Rating Computed
+ Normalization12760
+ Compilation
+ Persistent ID0ADE6EBFF9C07308
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Who%20Made%20Who/04%20Sink%20the%20Pink.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 523
+
+ Track ID523
+ NameRide On
+ ArtistAC/DC
+ AlbumWho Made Who
+ GenreRock
+ KindMPEG audio file
+ Size7027553
+ Total Time351268
+ Disc Number1
+ Disc Count1
+ Track Number5
+ Track Count9
+ Year1976
+ Date Modified2009-11-20T14:48:27Z
+ Date Added2006-02-22T04:14:21Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count75
+ Play Date3473354619
+ Play Date UTC2014-01-24T01:43:39Z
+ Skip Count2
+ Skip Date2014-11-15T01:09:33Z
+ Album Rating100
+ Album Rating Computed
+ Normalization4409
+ Compilation
+ Persistent ID0ADE6EBFF9C07309
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Who%20Made%20Who/05%20Ride%20On.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 525
+
+ Track ID525
+ NameChase the Ace
+ ArtistAC/DC
+ ComposerAngus Young/Malcolm Young
+ AlbumWho Made Who
+ GenreRock
+ KindMPEG audio file
+ Size3630629
+ Total Time181420
+ Disc Number1
+ Disc Count1
+ Track Number8
+ Track Count9
+ Year1986
+ Date Modified2006-02-22T04:15:38Z
+ Date Added2006-02-22T04:15:28Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count93
+ Play Date3505752153
+ Play Date UTC2015-02-03T01:02:33Z
+ Skip Count1
+ Skip Date2007-09-22T13:56:49Z
+ Album Rating100
+ Album Rating Computed
+ Normalization9759
+ Compilation
+ Persistent ID0ADE6EBFF9C0730A
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Who%20Made%20Who/08%20Chase%20the%20Ace.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 527
+
+ Track ID527
+ NameWollt Ihr Das Bett In Flammen Sehen
+ ArtistRammstein
+ ComposerChristoph Doom Schneider, Doktor Christian Lorenz, Oliver Riedel, Paul Landers, Richard Z. Kruspe-Bernstein & Till Lindemann
+ AlbumHerzeleid
+ GenreIndustrial
+ KindMPEG audio file
+ Size6350090
+ Total Time317387
+ Disc Number1
+ Disc Count1
+ Track Number1
+ Track Count11
+ Year1995
+ Date Modified2010-04-07T22:17:41Z
+ Date Added2006-02-22T04:35:34Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count50
+ Play Date3514730586
+ Play Date UTC2015-05-17T22:03:06Z
+ Skip Count1
+ Skip Date2007-10-12T00:53:42Z
+ Album Rating100
+ Album Rating Computed
+ Normalization5418
+ Persistent ID0ADE6EBFF9C07318
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Rammstein/Herzeleid/01%20Wollt%20Ihr%20Das%20Bett%20In%20Flammen%20Sehen.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 529
+
+ Track ID529
+ NameDer Meister
+ ArtistRammstein
+ ComposerChristoph Doom Schneider, Doktor Christian Lorenz, Oliver Riedel, Paul Landers, Richard Z. Kruspe-Bernstein & Till Lindemann
+ AlbumHerzeleid
+ GenreIndustrial
+ KindMPEG audio file
+ Size5018344
+ Total Time250801
+ Disc Number1
+ Disc Count1
+ Track Number2
+ Track Count11
+ Year1995
+ Date Modified2006-02-22T04:37:12Z
+ Date Added2006-02-22T04:36:34Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count46
+ Play Date3514730849
+ Play Date UTC2015-05-17T22:07:29Z
+ Skip Count4
+ Skip Date2013-09-21T15:35:00Z
+ Album Rating100
+ Album Rating Computed
+ Normalization4358
+ Persistent ID0ADE6EBFF9C07319
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Rammstein/Herzeleid/02%20Der%20Meister.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 531
+
+ Track ID531
+ NameWeisses Fleisch
+ ArtistRammstein
+ ComposerChristoph Doom Schneider, Doktor Christian Lorenz, Oliver Riedel, Paul Landers, Richard Z. Kruspe-Bernstein & Till Lindemann
+ AlbumHerzeleid
+ GenreIndustrial
+ KindMPEG audio file
+ Size4320356
+ Total Time215902
+ Disc Number1
+ Disc Count1
+ Track Number3
+ Track Count11
+ Year1995
+ Date Modified2006-02-22T04:37:45Z
+ Date Added2006-02-22T04:37:14Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count52
+ Play Date3514731106
+ Play Date UTC2015-05-17T22:11:46Z
+ Skip Count2
+ Skip Date2013-10-22T01:05:06Z
+ Album Rating100
+ Album Rating Computed
+ Normalization4760
+ Persistent ID0ADE6EBFF9C0731A
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Rammstein/Herzeleid/03%20Weisses%20Fleisch.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 533
+
+ Track ID533
+ NameSeemann
+ ArtistRammstein
+ ComposerChristoph Doom Schneider, Doktor Christian Lorenz, Oliver Riedel, Paul Landers, Richard Z. Kruspe-Bernstein & Till Lindemann
+ AlbumHerzeleid
+ GenreIndustrial
+ KindMPEG audio file
+ Size5767009
+ Total Time288235
+ Disc Number1
+ Disc Count1
+ Track Number5
+ Track Count11
+ Year1995
+ Date Modified2006-02-22T01:38:55Z
+ Date Added2006-02-22T04:38:20Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count34
+ Play Date3514731626
+ Play Date UTC2015-05-17T22:20:26Z
+ Skip Count4
+ Skip Date2013-11-20T18:05:55Z
+ Album Rating100
+ Album Rating Computed
+ Normalization4105
+ Persistent ID0ADE6EBFF9C0731B
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Rammstein/Herzeleid/05%20Seemann.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 535
+
+ Track ID535
+ NameDu Riechst So Gut
+ ArtistRammstein
+ ComposerChristoph Doom Schneider, Doktor Christian Lorenz, Oliver Riedel, Paul Landers, Richard Z. Kruspe-Bernstein & Till Lindemann
+ AlbumHerzeleid
+ GenreIndustrial
+ KindMPEG audio file
+ Size5788962
+ Total Time289332
+ Disc Number1
+ Disc Count1
+ Track Number6
+ Track Count11
+ Year1995
+ Date Modified2006-02-22T01:39:31Z
+ Date Added2006-02-22T04:38:57Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count50
+ Play Date3514731915
+ Play Date UTC2015-05-17T22:25:15Z
+ Skip Count2
+ Skip Date2013-01-26T04:25:07Z
+ Album Rating100
+ Album Rating Computed
+ Normalization5072
+ Persistent ID0ADE6EBFF9C0731C
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Rammstein/Herzeleid/06%20Du%20Riechst%20So%20Gut.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 537
+
+ Track ID537
+ NameDas Alte Leid
+ ArtistRammstein
+ ComposerChristoph Doom Schneider, Doktor Christian Lorenz, Oliver Riedel, Paul Landers, Richard Z. Kruspe-Bernstein & Till Lindemann
+ AlbumHerzeleid
+ GenreIndustrial
+ KindMPEG audio file
+ Size6893937
+ Total Time344581
+ Disc Number1
+ Disc Count1
+ Track Number7
+ Track Count11
+ Year1995
+ Date Modified2006-02-22T04:40:11Z
+ Date Added2006-02-22T04:39:33Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count46
+ Play Date3483455746
+ Play Date UTC2014-05-20T22:35:46Z
+ Skip Count1
+ Skip Date2012-11-19T23:45:09Z
+ Album Rating100
+ Album Rating Computed
+ Normalization4354
+ Persistent ID0ADE6EBFF9C0731D
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Rammstein/Herzeleid/07%20Das%20Alte%20Leid.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 539
+
+ Track ID539
+ NameHeirate Mich
+ ArtistRammstein
+ ComposerChristoph Doom Schneider, Doktor Christian Lorenz, Oliver Riedel, Paul Landers, Richard Z. Kruspe-Bernstein & Till Lindemann
+ AlbumHerzeleid
+ GenreIndustrial
+ KindMPEG audio file
+ Size5697006
+ Total Time284734
+ Disc Number1
+ Disc Count1
+ Track Number8
+ Track Count11
+ Year1995
+ Date Modified2006-02-22T04:40:42Z
+ Date Added2006-02-22T04:40:13Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count39
+ Play Date3494418241
+ Play Date UTC2014-09-24T19:44:01Z
+ Skip Count1
+ Skip Date2013-10-20T15:36:01Z
+ Album Rating100
+ Album Rating Computed
+ Normalization3449
+ Persistent ID0ADE6EBFF9C0731E
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Rammstein/Herzeleid/08%20Heirate%20Mich.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 541
+
+ Track ID541
+ NameHerzeleid
+ ArtistRammstein
+ ComposerChristoph Doom Schneider, Doktor Christian Lorenz, Oliver Riedel, Paul Landers, Richard Z. Kruspe-Bernstein & Till Lindemann
+ AlbumHerzeleid
+ GenreIndustrial
+ KindMPEG audio file
+ Size4470815
+ Total Time223425
+ Disc Number1
+ Disc Count1
+ Track Number9
+ Track Count11
+ Year1995
+ Date Modified2006-02-22T04:41:05Z
+ Date Added2006-02-22T04:40:44Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count42
+ Play Date3501133343
+ Play Date UTC2014-12-11T14:02:23Z
+ Skip Count1
+ Skip Date2007-03-26T12:20:03Z
+ Album Rating100
+ Album Rating Computed
+ Normalization4572
+ Persistent ID0ADE6EBFF9C0731F
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Rammstein/Herzeleid/09%20Herzeleid.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 543
+
+ Track ID543
+ NameBaba O'Riley
+ ArtistThe Who
+ ComposerPete Townshend
+ AlbumWho's Next
+ GenreRock
+ KindMPEG audio file
+ Size5971179
+ Total Time298448
+ Disc Number1
+ Disc Count1
+ Track Number1
+ Track Count9
+ Year1971
+ Date Modified2006-02-22T11:29:27Z
+ Date Added2006-02-22T11:28:56Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count45
+ Play Date3516367502
+ Play Date UTC2015-06-05T20:45:02Z
+ Album Rating100
+ Album Rating Computed
+ Normalization2287
+ Sort ArtistWho
+ Persistent ID0ADE6EBFF9C07345
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/The%20Who/Who's%20Next/01%20Baba%20O'Riley.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 545
+
+ Track ID545
+ NameBargain
+ ArtistThe Who
+ ComposerPete Townshend
+ AlbumWho's Next
+ GenreRock
+ KindMPEG audio file
+ Size6635730
+ Total Time331676
+ Disc Number1
+ Disc Count1
+ Track Number2
+ Track Count9
+ Year1971
+ Date Modified2006-02-22T11:29:58Z
+ Date Added2006-02-22T11:29:29Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count37
+ Play Date3516377987
+ Play Date UTC2015-06-05T23:39:47Z
+ Skip Count1
+ Skip Date2007-03-26T12:20:03Z
+ Album Rating100
+ Album Rating Computed
+ Normalization2534
+ Sort ArtistWho
+ Persistent ID0ADE6EBFF9C07346
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/The%20Who/Who's%20Next/02%20Bargain.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 547
+
+ Track ID547
+ NameLove Ain't for Keeping
+ ArtistThe Who
+ ComposerPete Townshend
+ AlbumWho's Next
+ GenreRock
+ KindMPEG audio file
+ Size2613410
+ Total Time130560
+ Disc Number1
+ Disc Count1
+ Track Number3
+ Track Count9
+ Year1971
+ Date Modified2006-02-22T11:30:09Z
+ Date Added2006-02-22T11:30:00Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count24
+ Play Date3468350819
+ Play Date UTC2013-11-27T03:46:59Z
+ Album Rating100
+ Album Rating Computed
+ Normalization2465
+ Sort ArtistWho
+ Persistent ID0ADE6EBFF9C07347
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/The%20Who/Who's%20Next/03%20Love%20Ain't%20for%20Keeping.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 549
+
+ Track ID549
+ NameMy Wife
+ ArtistThe Who
+ ComposerJohn Entwistle
+ AlbumWho's Next
+ GenreRock
+ KindMPEG audio file
+ Size4277917
+ Total Time213786
+ Disc Number1
+ Disc Count1
+ Track Number4
+ Track Count9
+ Year1971
+ Date Modified2006-02-22T11:30:27Z
+ Date Added2006-02-22T11:30:11Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count17
+ Play Date3462550796
+ Play Date UTC2013-09-20T23:39:56Z
+ Album Rating100
+ Album Rating Computed
+ Normalization3053
+ Sort ArtistWho
+ Persistent ID0ADE6EBFF9C07348
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/The%20Who/Who's%20Next/04%20My%20Wife.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 551
+
+ Track ID551
+ NameThe Song Is Over
+ ArtistThe Who
+ ComposerPete Townshend
+ AlbumWho's Next
+ GenreRock
+ KindMPEG audio file
+ Size7518155
+ Total Time375797
+ Disc Number1
+ Disc Count1
+ Track Number5
+ Track Count9
+ Year1971
+ Date Modified2006-02-22T11:30:56Z
+ Date Added2006-02-22T11:30:28Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count14
+ Play Date3416571659
+ Play Date UTC2012-04-06T19:40:59Z
+ Skip Count1
+ Skip Date2012-04-06T18:23:33Z
+ Album Rating100
+ Album Rating Computed
+ Normalization1521
+ Sort ArtistWho
+ Sort NameSong Is Over
+ Persistent ID0ADE6EBFF9C07349
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/The%20Who/Who's%20Next/05%20The%20Song%20Is%20Over.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 553
+
+ Track ID553
+ NameGetting In Tune
+ ArtistThe Who
+ ComposerPete Townshend
+ AlbumWho's Next
+ GenreRock
+ KindMPEG audio file
+ Size5778399
+ Total Time288809
+ Disc Number1
+ Disc Count1
+ Track Number6
+ Track Count9
+ Year1971
+ Date Modified2006-02-22T08:31:17Z
+ Date Added2006-02-22T11:30:57Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count27
+ Play Date3462613748
+ Play Date UTC2013-09-21T17:09:08Z
+ Album Rating100
+ Album Rating Computed
+ Normalization1671
+ Sort ArtistWho
+ Persistent ID0ADE6EBFF9C0734A
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/The%20Who/Who's%20Next/06%20Getting%20In%20Tune.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 555
+
+ Track ID555
+ NameGoing Mobile
+ ArtistThe Who
+ ComposerPete Townshend
+ AlbumWho's Next
+ GenreRock
+ KindMPEG audio file
+ Size4440404
+ Total Time221910
+ Disc Number1
+ Disc Count1
+ Track Number7
+ Track Count9
+ Year1971
+ Date Modified2006-02-22T11:31:32Z
+ Date Added2006-02-22T11:31:18Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count28
+ Play Date3465205919
+ Play Date UTC2013-10-21T17:11:59Z
+ Skip Count3
+ Skip Date2013-07-01T19:39:07Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization2078
+ Sort ArtistWho
+ Persistent ID0ADE6EBFF9C0734B
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/The%20Who/Who's%20Next/07%20Going%20Mobile.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 557
+
+ Track ID557
+ NameBehind Blue Eyes
+ ArtistThe Who
+ ComposerPete Townshend
+ AlbumWho's Next
+ GenreRock
+ KindMPEG audio file
+ Size4433616
+ Total Time221570
+ Disc Number1
+ Disc Count1
+ Track Number8
+ Track Count9
+ Year1971
+ Date Modified2006-02-22T11:31:47Z
+ Date Added2006-02-22T11:31:34Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count43
+ Play Date3516380353
+ Play Date UTC2015-06-06T00:19:13Z
+ Album Rating100
+ Album Rating Computed
+ Normalization2095
+ Sort ArtistWho
+ Persistent ID0ADE6EBFF9C0734C
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/The%20Who/Who's%20Next/08%20Behind%20Blue%20Eyes.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 559
+
+ Track ID559
+ NameWon't Get Fooled Again
+ ArtistThe Who
+ ComposerPete Townshend
+ AlbumWho's Next
+ GenreRock
+ KindMPEG audio file
+ Size10224447
+ Total Time511111
+ Disc Number1
+ Disc Count1
+ Track Number9
+ Track Count9
+ Year1971
+ Date Modified2011-11-18T19:25:17Z
+ Date Added2006-02-22T11:31:48Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count21
+ Play Date3465751427
+ Play Date UTC2013-10-28T00:43:47Z
+ Skip Count2
+ Skip Date2013-10-21T00:07:27Z
+ Album Rating100
+ Album Rating Computed
+ Normalization2413
+ Sort ArtistWho
+ Persistent ID0ADE6EBFF9C0734D
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/The%20Who/Who's%20Next/09%20Won't%20Get%20Fooled%20Again.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 561
+
+ Track ID561
+ NameFolsom Prison Blues
+ ArtistJohnny Cash
+ ComposerJohnny Cash
+ AlbumThe Legend Of Johnny Cash
+ GenreCountry
+ KindMPEG audio file
+ Size3402330
+ Total Time170004
+ Disc Number1
+ Disc Count1
+ Track Number3
+ Track Count21
+ Year1956
+ Date Modified2006-04-10T05:07:56Z
+ Date Added2006-04-10T05:07:41Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count47
+ Play Date3494613442
+ Play Date UTC2014-09-27T01:57:22Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization3572
+ Compilation
+ Sort AlbumLegend Of Johnny Cash
+ Persistent ID9E95A5DBB5FB10B1
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/The%20Legend%20Of%20Johnny%20Cash/03%20Folsom%20Prison%20Blues.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 563
+
+ Track ID563
+ NameI Walk The Line
+ ArtistJohnny Cash
+ ComposerJohnny Cash
+ AlbumThe Legend Of Johnny Cash
+ GenreCountry
+ KindMPEG audio file
+ Size3316644
+ Total Time165720
+ Disc Number1
+ Disc Count1
+ Track Number4
+ Track Count21
+ Year1956
+ Date Modified2006-04-10T05:08:11Z
+ Date Added2006-04-10T05:07:57Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count33
+ Play Date3494614411
+ Play Date UTC2014-09-27T02:13:31Z
+ Skip Count1
+ Skip Date2014-03-21T00:21:18Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization4191
+ Compilation
+ Sort AlbumLegend Of Johnny Cash
+ Persistent ID9E95A5DBB5FB10B2
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/The%20Legend%20Of%20Johnny%20Cash/04%20I%20Walk%20The%20Line.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 565
+
+ Track ID565
+ NameGet Rhythm
+ ArtistJohnny Cash
+ ComposerJohnny Cash
+ AlbumThe Legend Of Johnny Cash
+ GenreCountry
+ KindMPEG audio file
+ Size2692835
+ Total Time134530
+ Disc Number1
+ Disc Count1
+ Track Number5
+ Track Count21
+ Year1956
+ Date Modified2006-04-10T05:08:23Z
+ Date Added2006-04-10T05:08:12Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count35
+ Play Date3494614164
+ Play Date UTC2014-09-27T02:09:24Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization5483
+ Compilation
+ Sort AlbumLegend Of Johnny Cash
+ Persistent ID9E95A5DBB5FB10B3
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/The%20Legend%20Of%20Johnny%20Cash/05%20Get%20Rhythm.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 567
+
+ Track ID567
+ NameBig River
+ ArtistJohnny Cash
+ ComposerJohnny Cash
+ AlbumThe Legend Of Johnny Cash
+ GenreCountry
+ KindMPEG audio file
+ Size3056459
+ Total Time152711
+ Disc Number1
+ Disc Count1
+ Track Number6
+ Track Count21
+ Year1958
+ Date Modified2006-04-10T05:08:42Z
+ Date Added2006-04-10T05:08:25Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count51
+ Play Date3516392025
+ Play Date UTC2015-06-06T03:33:45Z
+ Skip Count1
+ Skip Date2014-03-21T00:18:06Z
+ Album Rating100
+ Album Rating Computed
+ Normalization4384
+ Compilation
+ Sort AlbumLegend Of Johnny Cash
+ Persistent ID9E95A5DBB5FB10B4
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/The%20Legend%20Of%20Johnny%20Cash/06%20Big%20River.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 569
+
+ Track ID569
+ NameGuess Things Happen That Way
+ ArtistJohnny Cash
+ ComposerJack Clement
+ AlbumThe Legend Of Johnny Cash
+ GenreCountry
+ KindMPEG audio file
+ Size2229964
+ Total Time111386
+ Disc Number1
+ Disc Count1
+ Track Number7
+ Track Count21
+ Year1958
+ Date Modified2006-04-10T05:08:51Z
+ Date Added2006-04-10T05:08:43Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count35
+ Play Date3494614029
+ Play Date UTC2014-09-27T02:07:09Z
+ Skip Count1
+ Skip Date2014-03-21T00:18:10Z
+ Album Rating100
+ Album Rating Computed
+ Normalization4968
+ Compilation
+ Sort AlbumLegend Of Johnny Cash
+ Persistent ID9E95A5DBB5FB10B5
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/The%20Legend%20Of%20Johnny%20Cash/07%20Guess%20Things%20Happen%20That%20Way.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 571
+
+ Track ID571
+ NameRing Of Fire
+ ArtistJohnny Cash
+ ComposerJune Carter, Merle Kilgore
+ AlbumThe Legend Of Johnny Cash
+ GenreCountry
+ KindMPEG audio file
+ Size3144248
+ Total Time157100
+ Disc Number1
+ Disc Count1
+ Track Number8
+ Track Count21
+ Year1963
+ Date Modified2006-04-10T05:09:03Z
+ Date Added2006-04-10T05:08:52Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count30
+ Play Date3503057987
+ Play Date UTC2015-01-02T20:39:47Z
+ Skip Count1
+ Skip Date2014-03-21T00:20:55Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization4266
+ Compilation
+ Sort AlbumLegend Of Johnny Cash
+ Persistent ID9E95A5DBB5FB10B6
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/The%20Legend%20Of%20Johnny%20Cash/08%20Ring%20Of%20Fire.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 573
+
+ Track ID573
+ NameJackson
+ ArtistJohnny Cash
+ ComposerBilly Edd Wheeler, Jerry Lieber
+ AlbumThe Legend Of Johnny Cash
+ GenreCountry
+ KindMPEG audio file
+ Size3332852
+ Total Time166530
+ Disc Number1
+ Disc Count1
+ Track Number9
+ Track Count21
+ Year1967
+ Date Modified2006-04-10T05:09:16Z
+ Date Added2006-04-10T05:09:05Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count35
+ Play Date3494613765
+ Play Date UTC2014-09-27T02:02:45Z
+ Skip Count1
+ Skip Date2014-03-21T00:21:12Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization5348
+ Compilation
+ Sort AlbumLegend Of Johnny Cash
+ Persistent ID9E95A5DBB5FB10B7
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/The%20Legend%20Of%20Johnny%20Cash/09%20Jackson.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 575
+
+ Track ID575
+ NameA Boy Named Sue (live)
+ ArtistJohnny Cash
+ ComposerShel Silverstein
+ AlbumThe Legend Of Johnny Cash
+ GenreCountry
+ KindMPEG audio file
+ Size4523514
+ Total Time226063
+ Disc Number1
+ Disc Count1
+ Track Number10
+ Track Count21
+ Year1969
+ Date Modified2006-04-10T05:09:32Z
+ Date Added2006-04-10T05:09:17Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count37
+ Play Date3502897865
+ Play Date UTC2015-01-01T00:11:05Z
+ Album Rating100
+ Album Rating Computed
+ Normalization3758
+ Compilation
+ Sort AlbumLegend Of Johnny Cash
+ Sort NameBoy Named Sue (live)
+ Persistent ID9E95A5DBB5FB10B8
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/The%20Legend%20Of%20Johnny%20Cash/10%20A%20Boy%20Named%20Sue%20(live).mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 577
+
+ Track ID577
+ NameYou Raise Me Up
+ ArtistSelah
+ ComposerSelah
+ AlbumHiding Place
+ GenreGospel & Religious
+ KindMPEG audio file
+ Size6047466
+ Total Time302262
+ Disc Number1
+ Disc Count1
+ Track Number1
+ Track Count12
+ Year2004
+ Date Modified2006-07-30T14:50:45Z
+ Date Added2006-07-30T14:50:14Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count9
+ Play Date3489330119
+ Play Date UTC2014-07-27T22:21:59Z
+ Skip Count1
+ Skip Date2013-07-30T03:22:33Z
+ Normalization1904
+ Persistent IDAD380477BA4E871B
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Selah/Hiding%20Place/01%20You%20Raise%20Me%20Up.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 579
+
+ Track ID579
+ NameHold On, I'm Coming
+ ArtistThe Canettes Blues Band
+ AlbumOn Tap & In the Can
+ GenreBlues/R&B
+ KindMPEG audio file
+ Size5653546
+ Total Time282566
+ Track Number1
+ Track Count14
+ Date Modified2006-12-12T15:47:46Z
+ Date Added2006-12-12T21:47:17Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count34
+ Play Date3460724246
+ Play Date UTC2013-08-30T20:17:26Z
+ Skip Count2
+ Skip Date2008-04-11T14:24:20Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization4674
+ Sort ArtistCanettes Blues Band
+ Persistent IDD2ADA1732FE4BFB6
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/The%20Canettes%20Blues%20Band/On%20Tap%20&%20In%20the%20Can/01%20Hold%20On,%20I'm%20Coming.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 581
+
+ Track ID581
+ NameGot my Mojo Working
+ ArtistThe Canettes Blues Band
+ AlbumOn Tap & In the Can
+ GenreBlues/R&B
+ KindMPEG audio file
+ Size6212566
+ Total Time310517
+ Track Number2
+ Track Count14
+ Date Modified2006-12-12T15:48:15Z
+ Date Added2006-12-12T21:47:47Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count52
+ Play Date3462615015
+ Play Date UTC2013-09-21T17:30:15Z
+ Skip Count2
+ Skip Date2015-01-02T22:11:56Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization6231
+ Sort ArtistCanettes Blues Band
+ Persistent IDD2ADA1732FE4C040
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/The%20Canettes%20Blues%20Band/On%20Tap%20&%20In%20the%20Can/02%20Got%20my%20Mojo%20Working.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 583
+
+ Track ID583
+ NameSweet Home Chicago
+ ArtistThe Canettes Blues Band
+ AlbumOn Tap & In the Can
+ GenreBlues/R&B
+ KindMPEG audio file
+ Size7519210
+ Total Time375849
+ Track Number3
+ Track Count14
+ Date Modified2006-12-12T15:48:49Z
+ Date Added2006-12-12T21:48:17Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count27
+ Play Date3458499108
+ Play Date UTC2013-08-05T02:11:48Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization6114
+ Sort ArtistCanettes Blues Band
+ Persistent IDD2ADA1732FE4C042
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/The%20Canettes%20Blues%20Band/On%20Tap%20&%20In%20the%20Can/03%20Sweet%20Home%20Chicago.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 585
+
+ Track ID585
+ NameHeavy Love
+ ArtistThe Canettes Blues Band
+ AlbumOn Tap & In the Can
+ GenreBlues/R&B
+ KindMPEG audio file
+ Size5073096
+ Total Time253544
+ Track Number4
+ Track Count14
+ Date Modified2006-12-12T15:49:09Z
+ Date Added2006-12-12T21:48:50Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count28
+ Play Date3461041695
+ Play Date UTC2013-09-03T12:28:15Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization4109
+ Sort ArtistCanettes Blues Band
+ Persistent IDD2ADA1732FE4C044
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/The%20Canettes%20Blues%20Band/On%20Tap%20&%20In%20the%20Can/04%20Heavy%20Love.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 587
+
+ Track ID587
+ NameCold Cold Feeling
+ ArtistThe Canettes Blues Band
+ AlbumOn Tap & In the Can
+ GenreBlues/R&B
+ KindMPEG audio file
+ Size5240809
+ Total Time261929
+ Track Number5
+ Track Count14
+ Date Modified2006-12-12T15:49:29Z
+ Date Added2006-12-12T21:49:11Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count43
+ Play Date3462607121
+ Play Date UTC2013-09-21T15:18:41Z
+ Skip Count2
+ Skip Date2013-10-20T10:35:05Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization3238
+ Sort ArtistCanettes Blues Band
+ Persistent IDD2ADA1732FE4C046
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/The%20Canettes%20Blues%20Band/On%20Tap%20&%20In%20the%20Can/05%20Cold%20Cold%20Feeling.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 589
+
+ Track ID589
+ NameLonely Avenue
+ ArtistThe Canettes Blues Band
+ AlbumOn Tap & In the Can
+ GenreBlues/R&B
+ KindMPEG audio file
+ Size5842666
+ Total Time292022
+ Track Number6
+ Track Count14
+ Date Modified2006-12-12T12:49:50Z
+ Date Added2006-12-12T21:49:30Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count24
+ Play Date3489332620
+ Play Date UTC2014-07-27T23:03:40Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization3416
+ Sort ArtistCanettes Blues Band
+ Persistent IDD2ADA1732FE4C048
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/The%20Canettes%20Blues%20Band/On%20Tap%20&%20In%20the%20Can/06%20Lonely%20Avenue.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 591
+
+ Track ID591
+ NameGood Morning Little Schoolgirl
+ ArtistThe Canettes Blues Band
+ AlbumOn Tap & In the Can
+ GenreBlues/R&B
+ KindMPEG audio file
+ Size5575189
+ Total Time278648
+ Track Number7
+ Track Count14
+ Date Modified2006-12-12T15:50:09Z
+ Date Added2006-12-12T21:49:51Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count20
+ Play Date3460725197
+ Play Date UTC2013-08-30T20:33:17Z
+ Skip Count1
+ Skip Date2013-10-20T03:08:40Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization3857
+ Sort ArtistCanettes Blues Band
+ Persistent IDD2ADA1732FE4C04A
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/The%20Canettes%20Blues%20Band/On%20Tap%20&%20In%20the%20Can/07%20Good%20Morning%20Little%20Schoolgirl.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 593
+
+ Track ID593
+ NameDust My Broom
+ ArtistThe Canettes Blues Band
+ AlbumOn Tap & In the Can
+ GenreBlues/R&B
+ KindMPEG audio file
+ Size5988429
+ Total Time299311
+ Track Number8
+ Track Count14
+ Date Modified2006-12-12T15:50:28Z
+ Date Added2006-12-12T21:50:10Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count24
+ Play Date3462551095
+ Play Date UTC2013-09-20T23:44:55Z
+ Skip Count2
+ Skip Date2013-09-21T16:11:45Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization6499
+ Sort ArtistCanettes Blues Band
+ Persistent IDD2ADA1732FE4C04C
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/The%20Canettes%20Blues%20Band/On%20Tap%20&%20In%20the%20Can/08%20Dust%20My%20Broom.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 595
+
+ Track ID595
+ NameGimme' Some Lovin
+ ArtistThe Canettes Blues Band
+ AlbumOn Tap & In the Can
+ GenreBlues/R&B
+ KindMPEG audio file
+ Size4546997
+ Total Time227239
+ Track Number9
+ Track Count14
+ Date Modified2006-12-12T15:50:42Z
+ Date Added2006-12-12T21:50:29Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count35
+ Play Date3465120682
+ Play Date UTC2013-10-20T17:31:22Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization4198
+ Sort ArtistCanettes Blues Band
+ Persistent IDD2ADA1732FE4C04E
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/The%20Canettes%20Blues%20Band/On%20Tap%20&%20In%20the%20Can/09%20Gimme'%20Some%20Lovin.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 597
+
+ Track ID597
+ NameEverybody Needs Somebody to Love
+ ArtistThe Canettes Blues Band
+ AlbumOn Tap & In the Can
+ GenreBlues/R&B
+ KindMPEG audio file
+ Size3905968
+ Total Time195186
+ Track Number10
+ Track Count14
+ Date Modified2006-12-12T15:50:54Z
+ Date Added2006-12-12T21:50:44Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count24
+ Play Date3501133114
+ Play Date UTC2014-12-11T13:58:34Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization5205
+ Sort ArtistCanettes Blues Band
+ Persistent IDD2ADA1732FE4C050
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/The%20Canettes%20Blues%20Band/On%20Tap%20&%20In%20the%20Can/10%20Everybody%20Needs%20Somebody%20to%20Love.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 599
+
+ Track ID599
+ NameBlack Magic Woman
+ ArtistThe Canettes Blues Band
+ AlbumOn Tap & In the Can
+ GenreBlues/R&B
+ KindMPEG audio file
+ Size8855113
+ Total Time442644
+ Track Number11
+ Track Count14
+ Date Modified2008-01-11T14:55:17Z
+ Date Added2006-12-12T21:50:56Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count31
+ Play Date3516436187
+ Play Date UTC2015-06-06T15:49:47Z
+ Skip Count3
+ Skip Date2013-10-23T03:39:43Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization3312
+ Sort ArtistCanettes Blues Band
+ Persistent IDD2ADA1732FE4C052
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/The%20Canettes%20Blues%20Band/On%20Tap%20&%20In%20the%20Can/11%20Black%20Magic%20Woman.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 601
+
+ Track ID601
+ NameSteppin' Rooster
+ ArtistThe Canettes Blues Band
+ AlbumOn Tap & In the Can
+ GenreBlues/R&B
+ KindMPEG audio file
+ Size14099454
+ Total Time704862
+ Track Number12
+ Track Count14
+ Date Modified2006-12-12T15:52:01Z
+ Date Added2006-12-12T21:51:21Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count21
+ Play Date3508731912
+ Play Date UTC2015-03-09T11:45:12Z
+ Skip Count1
+ Skip Date2015-01-02T20:40:09Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization3035
+ Sort ArtistCanettes Blues Band
+ Persistent IDD2ADA1732FE4C054
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/The%20Canettes%20Blues%20Band/On%20Tap%20&%20In%20the%20Can/12%20Steppin'%20Rooster.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 603
+
+ Track ID603
+ NameOur Love is Drifting
+ ArtistThe Canettes Blues Band
+ AlbumOn Tap & In the Can
+ GenreBlues/R&B
+ KindMPEG audio file
+ Size5855213
+ Total Time292649
+ Track Number13
+ Track Count14
+ Date Modified2006-12-12T12:52:16Z
+ Date Added2006-12-12T21:52:02Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count15
+ Play Date3356035606
+ Play Date UTC2010-05-07T04:06:46Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization3107
+ Sort ArtistCanettes Blues Band
+ Persistent IDD2ADA1732FE4C056
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/The%20Canettes%20Blues%20Band/On%20Tap%20&%20In%20the%20Can/13%20Our%20Love%20is%20Drifting.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 605
+
+ Track ID605
+ NameDoin' 100
+ ArtistThe Canettes Blues Band
+ AlbumOn Tap & In the Can
+ GenreBlues/R&B
+ KindMPEG audio file
+ Size6881810
+ Total Time343980
+ Track Number14
+ Track Count14
+ Date Modified2006-12-12T15:53:32Z
+ Date Added2006-12-12T21:52:16Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count20
+ Play Date3462609763
+ Play Date UTC2013-09-21T16:02:43Z
+ Skip Count1
+ Skip Date2013-01-26T04:22:15Z
+ Rating100
+ Album Rating100
+ Album Rating Computed
+ Normalization2665
+ Sort ArtistCanettes Blues Band
+ Persistent IDD2ADA1732FE4C058
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/The%20Canettes%20Blues%20Band/On%20Tap%20&%20In%20the%20Can/14%20Doin'%20100.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 607
+
+ Track ID607
+ NameTrack 01
+ ArtistSinister Symphony
+ ComposerBrent Severance
+ KindMPEG audio file
+ Size5201018
+ Total Time259944
+ Track Number1
+ Track Count8
+ Date Modified2007-02-20T15:20:23Z
+ Date Added2007-02-11T17:24:34Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count7
+ Play Date3415096629
+ Play Date UTC2012-03-20T17:57:09Z
+ Skip Count2
+ Skip Date2013-10-21T00:07:42Z
+ Rating100
+ Normalization1299
+ Persistent ID2ECF7628A432E2E5
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Sinister%20Symphony/Unknown%20Album/01%20Track%2001.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 609
+
+ Track ID609
+ NameTrack 02
+ ArtistSinister Symphony
+ ComposerBrent Severance
+ KindMPEG audio file
+ Size4621099
+ Total Time230948
+ Track Number2
+ Track Count8
+ Date Modified2007-02-20T15:20:23Z
+ Date Added2007-02-11T17:25:20Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count14
+ Play Date3394735877
+ Play Date UTC2011-07-29T02:11:17Z
+ Rating100
+ Normalization1612
+ Persistent ID2ECF7628A432E2E9
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Sinister%20Symphony/Unknown%20Album/02%20Track%2002.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 611
+
+ Track ID611
+ NameTrack 03
+ ArtistSinister Symphony
+ ComposerBrent Severance
+ KindMPEG audio file
+ Size4132087
+ Total Time206497
+ Track Number3
+ Track Count8
+ Date Modified2007-02-20T15:20:23Z
+ Date Added2007-02-11T17:25:57Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count16
+ Play Date3394735651
+ Play Date UTC2011-07-29T02:07:31Z
+ Skip Count3
+ Skip Date2009-03-01T00:35:45Z
+ Rating100
+ Normalization1611
+ Persistent ID2ECF7628A432E2ED
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Sinister%20Symphony/Unknown%20Album/03%20Track%2003.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 613
+
+ Track ID613
+ NameTrack 04
+ ArtistSinister Symphony
+ ComposerBrent Severance
+ KindMPEG audio file
+ Size3779956
+ Total Time188891
+ Track Number4
+ Track Count8
+ Date Modified2007-02-20T15:20:23Z
+ Date Added2007-02-11T17:26:28Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count12
+ Play Date3489327798
+ Play Date UTC2014-07-27T21:43:18Z
+ Skip Count4
+ Skip Date2013-11-11T13:53:03Z
+ Rating100
+ Normalization1581
+ Persistent ID2ECF7628A432E2F1
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Sinister%20Symphony/Unknown%20Album/04%20Track%2004.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 615
+
+ Track ID615
+ NameTrack 05
+ ArtistSinister Symphony
+ ComposerBrent Severance
+ KindMPEG audio file
+ Size5175418
+ Total Time258664
+ Track Number5
+ Track Count8
+ Date Modified2007-02-20T15:20:23Z
+ Date Added2007-02-11T17:26:55Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count12
+ Play Date3394735265
+ Play Date UTC2011-07-29T02:01:05Z
+ Skip Count3
+ Skip Date2013-09-21T01:55:29Z
+ Rating100
+ Normalization1235
+ Persistent ID2ECF7628A432E2F5
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Sinister%20Symphony/Unknown%20Album/05%20Track%2005.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 617
+
+ Track ID617
+ NameTrack 06
+ ArtistSinister Symphony
+ ComposerBrent Severance
+ KindMPEG audio file
+ Size3729801
+ Total Time186383
+ Track Number6
+ Track Count8
+ Date Modified2007-02-20T15:20:23Z
+ Date Added2007-02-11T17:27:29Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count9
+ Play Date3489331345
+ Play Date UTC2014-07-27T22:42:25Z
+ Rating100
+ Normalization3393
+ Persistent ID2ECF7628A432E2F9
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Sinister%20Symphony/Unknown%20Album/06%20Track%2006.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 619
+
+ Track ID619
+ NameTrack 07
+ ArtistSinister Symphony
+ ComposerBrent Severance
+ KindMPEG audio file
+ Size3290944
+ Total Time164440
+ Track Number7
+ Track Count8
+ Date Modified2007-02-20T15:20:23Z
+ Date Added2007-02-11T17:27:52Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count11
+ Play Date3489335442
+ Play Date UTC2014-07-27T23:50:42Z
+ Skip Count1
+ Skip Date2008-02-06T06:20:16Z
+ Rating100
+ Normalization460
+ Persistent ID2ECF7628A432E2FD
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Sinister%20Symphony/Unknown%20Album/07%20Track%2007.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 621
+
+ Track ID621
+ NameTrack 08
+ ArtistSinister Symphony
+ ComposerBrent Severance
+ KindMPEG audio file
+ Size6237556
+ Total Time311771
+ Track Number8
+ Track Count8
+ Date Modified2007-02-20T15:20:23Z
+ Date Added2007-02-11T17:28:13Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count4
+ Play Date3394734670
+ Play Date UTC2011-07-29T01:51:10Z
+ Skip Count5
+ Skip Date2013-10-01T12:51:54Z
+ Normalization611
+ Persistent ID2ECF7628A432E301
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Sinister%20Symphony/Unknown%20Album/08%20Track%2008.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 623
+
+ Track ID623
+ NameMother Joy
+ ArtistMatt Ender
+ AlbumNatural Wonders Music Sampler 1999
+ GenreNew Age
+ KindMPEG audio file
+ Size5748117
+ Total Time287294
+ Disc Number1
+ Disc Count1
+ Track Number1
+ Track Count13
+ Date Modified2011-09-26T11:37:09Z
+ Date Added2007-03-26T12:19:29Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count463
+ Play Date3494827142
+ Play Date UTC2014-09-29T13:19:02Z
+ Skip Count6
+ Skip Date2013-10-19T00:24:39Z
+ Normalization1628
+ Compilation
+ Persistent IDDD108F7673595DD9
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Natural%20Wonders%20Music%20Sampler%201999/01%20Mother%20Joy.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 625
+
+ Track ID625
+ NameSoldier's Lament
+ ArtistSteve McDonald
+ AlbumNatural Wonders Music Sampler 1999
+ GenreNew Age
+ KindMPEG audio file
+ Size6946102
+ Total Time347193
+ Disc Number1
+ Disc Count1
+ Track Number2
+ Track Count13
+ Date Modified2007-03-26T12:20:41Z
+ Date Added2007-03-26T12:20:02Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count371
+ Play Date3502896971
+ Play Date UTC2014-12-31T23:56:11Z
+ Skip Count4
+ Skip Date2013-08-30T12:07:21Z
+ Normalization1886
+ Compilation
+ Persistent IDDD108F7673595DE0
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Natural%20Wonders%20Music%20Sampler%201999/02%20Soldier's%20Lament.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 627
+
+ Track ID627
+ NameDulaman
+ ArtistAltan
+ AlbumNatural Wonders Music Sampler 1999
+ GenreNew Age
+ KindMPEG audio file
+ Size4462362
+ Total Time223007
+ Disc Number1
+ Disc Count1
+ Track Number3
+ Track Count13
+ Date Modified2007-03-26T12:21:29Z
+ Date Added2007-03-26T12:20:42Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count403
+ Play Date3497334331
+ Play Date UTC2014-10-28T13:45:31Z
+ Skip Count4
+ Skip Date2012-06-30T17:40:16Z
+ Normalization1440
+ Compilation
+ Persistent IDDD108F7673595E7F
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Natural%20Wonders%20Music%20Sampler%201999/03%20Du%CC%81lama%CC%81n.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 629
+
+ Track ID629
+ NameThe Arrow
+ ArtistChris Spheeris
+ AlbumNatural Wonders Music Sampler 1999
+ GenreNew Age
+ KindMPEG audio file
+ Size6399614
+ Total Time319869
+ Disc Number1
+ Disc Count1
+ Track Number4
+ Track Count13
+ Date Modified2007-03-26T12:22:06Z
+ Date Added2007-03-26T12:21:30Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count416
+ Play Date3518868510
+ Play Date UTC2015-07-04T19:28:30Z
+ Skip Count3
+ Skip Date2014-03-08T17:49:59Z
+ Normalization1639
+ Compilation
+ Sort NameArrow
+ Persistent IDDD108F7673595F34
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Natural%20Wonders%20Music%20Sampler%201999/04%20The%20Arrow.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 631
+
+ Track ID631
+ NameSpanish Eyes
+ ArtistLa Esperanza
+ AlbumNatural Wonders Music Sampler 1999
+ GenreNew Age
+ KindMPEG audio file
+ Size5182831
+ Total Time259030
+ Disc Number1
+ Disc Count1
+ Track Number5
+ Track Count13
+ Date Modified2007-03-26T12:22:26Z
+ Date Added2007-03-26T12:22:07Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count375
+ Play Date3502885019
+ Play Date UTC2014-12-31T20:36:59Z
+ Skip Count3
+ Skip Date2010-04-26T22:56:36Z
+ Normalization1645
+ Compilation
+ Persistent IDDD108F7673595F38
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Natural%20Wonders%20Music%20Sampler%201999/05%20Spanish%20Eyes.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 633
+
+ Track ID633
+ NameBanana Bay
+ ArtistLuis Villegas
+ AlbumNatural Wonders Music Sampler 1999
+ GenreNew Age
+ KindMPEG audio file
+ Size3963434
+ Total Time198060
+ Disc Number1
+ Disc Count1
+ Track Number6
+ Track Count13
+ Date Modified2007-03-26T12:22:51Z
+ Date Added2007-03-26T12:22:27Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count403
+ Play Date3516367700
+ Play Date UTC2015-06-05T20:48:20Z
+ Skip Count3
+ Skip Date2010-04-26T22:56:43Z
+ Normalization2423
+ Compilation
+ Persistent IDDD108F7673595F3C
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Natural%20Wonders%20Music%20Sampler%201999/06%20Banana%20Bay.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 635
+
+ Track ID635
+ NameAguas De Marco
+ ArtistRosa Passos
+ AlbumNatural Wonders Music Sampler 1999
+ GenreNew Age
+ KindMPEG audio file
+ Size3590408
+ Total Time179408
+ Disc Number1
+ Disc Count1
+ Track Number7
+ Track Count13
+ Date Modified2007-03-26T12:23:04Z
+ Date Added2007-03-26T12:22:52Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count407
+ Play Date3518867406
+ Play Date UTC2015-07-04T19:10:06Z
+ Skip Count3
+ Skip Date2015-02-09T22:18:36Z
+ Normalization1649
+ Compilation
+ Persistent IDDD108F7673595F40
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Natural%20Wonders%20Music%20Sampler%201999/07%20Aguas%20De%20Marco.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 637
+
+ Track ID637
+ NameTamborea
+ ArtistEnergipsy
+ AlbumNatural Wonders Music Sampler 1999
+ GenreNew Age
+ KindMPEG audio file
+ Size4710008
+ Total Time235389
+ Disc Number1
+ Disc Count1
+ Track Number8
+ Track Count13
+ Date Modified2007-03-26T12:23:30Z
+ Date Added2007-03-26T12:23:05Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count355
+ Play Date3503063510
+ Play Date UTC2015-01-02T22:11:50Z
+ Skip Count1
+ Skip Date2010-04-26T22:56:21Z
+ Normalization3787
+ Compilation
+ Persistent IDDD108F7673595F44
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Natural%20Wonders%20Music%20Sampler%201999/08%20Tamborea.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 639
+
+ Track ID639
+ NameGone
+ ArtistHollie Smith
+ AlbumNatural Wonders Music Sampler 1999
+ GenreNew Age
+ KindMPEG audio file
+ Size3930513
+ Total Time196414
+ Disc Number1
+ Disc Count1
+ Track Number9
+ Track Count13
+ Date Modified2007-03-26T12:23:47Z
+ Date Added2007-03-26T12:23:36Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count362
+ Play Date3494829400
+ Play Date UTC2014-09-29T13:56:40Z
+ Skip Count6
+ Skip Date2010-04-26T22:56:25Z
+ Normalization1468
+ Compilation
+ Persistent IDDD108F7673595F48
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Natural%20Wonders%20Music%20Sampler%201999/09%20Gone.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 641
+
+ Track ID641
+ NameThe Immigrant
+ ArtistJoanie Madden
+ AlbumNatural Wonders Music Sampler 1999
+ GenreNew Age
+ KindMPEG audio file
+ Size7254867
+ Total Time362631
+ Disc Number1
+ Disc Count1
+ Track Number10
+ Track Count13
+ Date Modified2007-03-26T12:24:10Z
+ Date Added2007-03-26T12:23:49Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count350
+ Play Date3494830670
+ Play Date UTC2014-09-29T14:17:50Z
+ Skip Count1
+ Skip Date2010-04-26T22:56:29Z
+ Normalization3271
+ Compilation
+ Sort NameImmigrant
+ Persistent IDDD108F7673595F4C
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Natural%20Wonders%20Music%20Sampler%201999/10%20The%20Immigrant.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 643
+
+ Track ID643
+ NamePahrump-Big Water
+ ArtistCusco
+ AlbumNatural Wonders Music Sampler 1999
+ GenreNew Age
+ KindMPEG audio file
+ Size3834912
+ Total Time191634
+ Disc Number1
+ Disc Count1
+ Track Number11
+ Track Count13
+ Date Modified2007-03-26T12:24:22Z
+ Date Added2007-03-26T12:24:11Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count342
+ Play Date3494827532
+ Play Date UTC2014-09-29T13:25:32Z
+ Skip Count3
+ Skip Date2013-08-12T23:39:45Z
+ Normalization2537
+ Compilation
+ Persistent IDDD108F7673595F50
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Natural%20Wonders%20Music%20Sampler%201999/11%20Pahrump-Big%20Water.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 645
+
+ Track ID645
+ NameSeeker's Quest
+ ArtistCheryl Gunn
+ AlbumNatural Wonders Music Sampler 1999
+ GenreNew Age
+ KindMPEG audio file
+ Size4730915
+ Total Time236434
+ Disc Number1
+ Disc Count1
+ Track Number12
+ Track Count13
+ Date Modified2007-03-26T12:24:36Z
+ Date Added2007-03-26T12:24:23Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count337
+ Play Date3494829636
+ Play Date UTC2014-09-29T14:00:36Z
+ Skip Count3
+ Skip Date2010-04-26T22:57:18Z
+ Normalization1416
+ Compilation
+ Persistent IDDD108F7673595F54
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Natural%20Wonders%20Music%20Sampler%201999/12%20Seeker's%20Quest.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 647
+
+ Track ID647
+ NameFloating To Forever
+ ArtistDean Everson
+ AlbumNatural Wonders Music Sampler 1999
+ GenreNew Age
+ KindMPEG audio file
+ Size7035965
+ Total Time351686
+ Disc Number1
+ Disc Count1
+ Track Number13
+ Track Count13
+ Date Modified2007-03-26T12:24:56Z
+ Date Added2007-03-26T12:24:37Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count337
+ Play Date3502812532
+ Play Date UTC2014-12-31T00:28:52Z
+ Skip Count4
+ Skip Date2014-01-15T02:07:25Z
+ Normalization1392
+ Compilation
+ Persistent IDDD108F7673595F58
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Natural%20Wonders%20Music%20Sampler%201999/13%20Floating%20To%20Forever.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 649
+
+ Track ID649
+ NameOpen Road
+ ArtistJeff Bailey
+ ComposerJeff Bailey
+ AlbumRelaxing Jazz
+ GenreJazz
+ KindMPEG audio file
+ Size6373489
+ Total Time318563
+ Disc Number1
+ Disc Count1
+ Track Number10
+ Track Count12
+ Year2004
+ Date Modified2007-04-08T05:52:48Z
+ Date Added2007-04-08T05:52:31Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count10
+ Play Date3494417176
+ Play Date UTC2014-09-24T19:26:16Z
+ Normalization1029
+ Persistent IDCF18B3C628301AFD
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Jeff%20Bailey/Relaxing%20Jazz/10%20Open%20Road.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 651
+
+ Track ID651
+ Nameeniment-version-a
+ KindMPEG-4 video file
+ Size6493210
+ Total Time32032
+ Date Modified2007-06-03T15:40:58Z
+ Date Added2007-06-03T15:41:18Z
+ Bit Rate124
+ Sample Rate44100
+ Play Count28
+ Play Date3457182161
+ Play Date UTC2013-07-20T20:22:41Z
+ Artwork Count1
+ Persistent ID03E528C7E324652D
+ Track TypeFile
+ Has Video
+ HD
+ Video Width640
+ Video Height426
+ File Type1295275552
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Movies/eniment-version-a.m4v
+ File Folder Count3
+ Library Folder Count1
+
+ 653
+
+ Track ID653
+ NameRuby
+ ArtistKaiser Chiefs
+ ComposerKaiser Cheifs
+ AlbumYours Truly, Angry Mob
+ GenreAlternative & Punk
+ KindMPEG audio file
+ Size4102328
+ Total Time205008
+ Track Number1
+ Track Count15
+ Year2007
+ Date Modified2007-12-12T16:27:01Z
+ Date Added2007-11-30T23:55:34Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count13
+ Play Date3489335651
+ Play Date UTC2014-07-27T23:54:11Z
+ Skip Count1
+ Skip Date2013-10-28T12:04:32Z
+ Normalization11141
+ Persistent ID1BD284EFA469A00E
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Yours%20Truly,%20Angry%20Mob/01%20Ruby.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 655
+
+ Track ID655
+ NameThe Angry Mob
+ ArtistKaiser Chiefs
+ ComposerKaiser Cheifs
+ AlbumYours Truly, Angry Mob
+ GenreAlternative & Punk
+ KindMPEG audio file
+ Size5768417
+ Total Time288313
+ Track Number2
+ Track Count15
+ Year2007
+ Date Modified2007-12-12T16:27:01Z
+ Date Added2007-11-30T23:56:12Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count41
+ Play Date3518867694
+ Play Date UTC2015-07-04T19:14:54Z
+ Normalization11833
+ Sort NameAngry Mob
+ Persistent ID1BD284EFA469A013
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Yours%20Truly,%20Angry%20Mob/02%20The%20Angry%20Mob.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 657
+
+ Track ID657
+ NameHeat Dies Down
+ ArtistKaiser Chiefs
+ ComposerKaiser Cheifs
+ AlbumYours Truly, Angry Mob
+ GenreAlternative & Punk
+ KindMPEG audio file
+ Size4743372
+ Total Time237061
+ Track Number3
+ Track Count15
+ Year2007
+ Date Modified2007-12-12T16:27:01Z
+ Date Added2007-11-30T23:56:59Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count12
+ Play Date3494417665
+ Play Date UTC2014-09-24T19:34:25Z
+ Normalization14681
+ Persistent ID1BD284EFA469A018
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Yours%20Truly,%20Angry%20Mob/03%20Heat%20Dies%20Down.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 659
+
+ Track ID659
+ NameHighroyds
+ ArtistKaiser Chiefs
+ ComposerKaiser Cheifs
+ AlbumYours Truly, Angry Mob
+ GenreAlternative & Punk
+ KindMPEG audio file
+ Size3993658
+ Total Time199575
+ Track Number4
+ Track Count15
+ Year2007
+ Date Modified2007-12-12T16:27:01Z
+ Date Added2007-11-30T23:57:34Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count10
+ Play Date3489336999
+ Play Date UTC2014-07-28T00:16:39Z
+ Skip Count1
+ Skip Date2013-08-30T19:08:15Z
+ Normalization14877
+ Persistent ID1BD284EFA469A01D
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Yours%20Truly,%20Angry%20Mob/04%20Highroyds.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 661
+
+ Track ID661
+ NameLove's Not A Competition (But I'm Winning)
+ ArtistKaiser Chiefs
+ ComposerKaiser Cheifs
+ AlbumYours Truly, Angry Mob
+ GenreAlternative & Punk
+ KindMPEG audio file
+ Size3958132
+ Total Time197799
+ Track Number5
+ Track Count15
+ Year2007
+ Date Modified2007-12-12T16:27:01Z
+ Date Added2007-11-30T23:58:03Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count11
+ Play Date3465234119
+ Play Date UTC2013-10-22T01:01:59Z
+ Normalization5760
+ Persistent ID1BD284EFA469A022
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Yours%20Truly,%20Angry%20Mob/05%20Love's%20Not%20A%20Competition%20(But%20I'm%20Winning).mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 663
+
+ Track ID663
+ NameThank You Very Much
+ ArtistKaiser Chiefs
+ ComposerKaiser Cheifs
+ AlbumYours Truly, Angry Mob
+ GenreAlternative & Punk
+ KindMPEG audio file
+ Size3157217
+ Total Time157753
+ Track Number6
+ Track Count15
+ Year2007
+ Date Modified2007-12-12T16:27:01Z
+ Date Added2007-11-30T23:58:29Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count11
+ Play Date3467051865
+ Play Date UTC2013-11-12T02:57:45Z
+ Normalization15647
+ Persistent ID1BD284EFA469A027
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Yours%20Truly,%20Angry%20Mob/06%20Thank%20You%20Very%20Much.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 665
+
+ Track ID665
+ NameI Can Do It Without You
+ ArtistKaiser Chiefs
+ ComposerKaiser Cheifs
+ AlbumYours Truly, Angry Mob
+ GenreAlternative & Punk
+ KindMPEG audio file
+ Size4086132
+ Total Time204199
+ Track Number7
+ Track Count15
+ Year2007
+ Date Modified2007-12-12T16:27:01Z
+ Date Added2007-11-30T23:58:49Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count11
+ Play Date3465208044
+ Play Date UTC2013-10-21T17:47:24Z
+ Normalization13925
+ Persistent ID1BD284EFA469A02C
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Yours%20Truly,%20Angry%20Mob/07%20I%20Can%20Do%20It%20Without%20You.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 667
+
+ Track ID667
+ NameMy Kind Of Guy
+ ArtistKaiser Chiefs
+ ComposerKaiser Cheifs
+ AlbumYours Truly, Angry Mob
+ GenreAlternative & Punk
+ KindMPEG audio file
+ Size4934066
+ Total Time246595
+ Track Number8
+ Track Count15
+ Year2007
+ Date Modified2007-12-12T16:27:01Z
+ Date Added2007-11-30T23:59:13Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count10
+ Play Date3462544743
+ Play Date UTC2013-09-20T21:59:03Z
+ Skip Count1
+ Normalization9293
+ Persistent ID1BD284EFA469A031
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Yours%20Truly,%20Angry%20Mob/08%20My%20Kind%20Of%20Guy.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 669
+
+ Track ID669
+ NameEverything Is Average Nowadays
+ ArtistKaiser Chiefs
+ ComposerKaiser Cheifs
+ AlbumYours Truly, Angry Mob
+ GenreAlternative & Punk
+ KindMPEG audio file
+ Size3297234
+ Total Time164754
+ Track Number9
+ Track Count15
+ Year2007
+ Date Modified2007-12-12T16:27:01Z
+ Date Added2007-11-30T23:59:42Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count16
+ Play Date3462610959
+ Play Date UTC2013-09-21T16:22:39Z
+ Skip Count1
+ Skip Date2012-11-20T00:10:45Z
+ Normalization13794
+ Persistent ID1BD284EFA469A036
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Yours%20Truly,%20Angry%20Mob/09%20Everything%20Is%20Average%20Nowadays.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 671
+
+ Track ID671
+ NameLearnt My Lesson Well
+ ArtistKaiser Chiefs
+ ComposerKaiser Cheifs
+ AlbumYours Truly, Angry Mob
+ GenreAlternative & Punk
+ KindMPEG audio file
+ Size6521267
+ Total Time325955
+ Track Number10
+ Track Count15
+ Year2007
+ Date Modified2007-12-12T16:27:02Z
+ Date Added2007-12-01T00:00:02Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count9
+ Play Date3462546757
+ Play Date UTC2013-09-20T22:32:37Z
+ Normalization7808
+ Persistent ID1BD284EFA469A03B
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Yours%20Truly,%20Angry%20Mob/10%20Learnt%20My%20Lesson%20Well.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 673
+
+ Track ID673
+ NameTry Your Best
+ ArtistKaiser Chiefs
+ ComposerKaiser Cheifs
+ AlbumYours Truly, Angry Mob
+ GenreAlternative & Punk
+ KindMPEG audio file
+ Size4452369
+ Total Time222511
+ Track Number11
+ Track Count15
+ Year2007
+ Date Modified2007-12-12T16:27:02Z
+ Date Added2007-12-01T00:00:47Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count8
+ Play Date3465121624
+ Play Date UTC2013-10-20T17:47:04Z
+ Normalization7028
+ Persistent ID1BD284EFA469A040
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Yours%20Truly,%20Angry%20Mob/11%20Try%20Your%20Best.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 675
+
+ Track ID675
+ NameRetirement
+ ArtistKaiser Chiefs
+ ComposerKaiser Cheifs
+ AlbumYours Truly, Angry Mob
+ GenreAlternative & Punk
+ KindMPEG audio file
+ Size4750688
+ Total Time237426
+ Track Number12
+ Track Count15
+ Year2007
+ Date Modified2007-12-12T16:27:02Z
+ Date Added2007-12-01T00:01:15Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count10
+ Play Date3464362387
+ Play Date UTC2013-10-11T22:53:07Z
+ Normalization16567
+ Persistent ID1BD284EFA469A045
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Yours%20Truly,%20Angry%20Mob/12%20Retirement.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 677
+
+ Track ID677
+ NameThe Angry Mob [Live From Berlin]
+ ArtistKaiser Chiefs
+ ComposerKaiser Cheifs
+ AlbumYours Truly, Angry Mob
+ GenreAlternative & Punk
+ KindMPEG audio file
+ Size5583471
+ Total Time279066
+ Track Number13
+ Track Count15
+ Year2007
+ Date Modified2007-12-12T16:27:02Z
+ Date Added2007-12-01T00:01:40Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count40
+ Play Date3518867973
+ Play Date UTC2015-07-04T19:19:33Z
+ Normalization8417
+ Sort NameAngry Mob [Live From Berlin]
+ Persistent ID1BD284EFA469A04A
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Yours%20Truly,%20Angry%20Mob/13%20The%20Angry%20Mob%20%5BLive%20From%20Berlin%5D.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 679
+
+ Track ID679
+ NameI Like To Fight
+ ArtistKaiser Chiefs
+ ComposerKaiser Cheifs
+ AlbumYours Truly, Angry Mob
+ GenreAlternative & Punk
+ KindMPEG audio file
+ Size4373480
+ Total Time218566
+ Track Number14
+ Track Count15
+ Year2007
+ Date Modified2007-12-12T16:27:02Z
+ Date Added2007-12-01T00:02:08Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count8
+ Play Date3489338420
+ Play Date UTC2014-07-28T00:40:20Z
+ Normalization14787
+ Persistent ID1BD284EFA469A04F
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Yours%20Truly,%20Angry%20Mob/14%20I%20Like%20To%20Fight.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 681
+
+ Track ID681
+ NameFrom The Neck Down
+ ArtistKaiser Chiefs
+ ComposerKaiser Cheifs
+ AlbumYours Truly, Angry Mob
+ GenreAlternative & Punk
+ KindMPEG audio file
+ Size2946671
+ Total Time147226
+ Track Number15
+ Track Count15
+ Year2007
+ Date Modified2007-12-12T16:27:02Z
+ Date Added2007-12-01T00:02:32Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count15
+ Play Date3505752301
+ Play Date UTC2015-02-03T01:05:01Z
+ Normalization12005
+ Persistent ID1BD284EFA469A054
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Yours%20Truly,%20Angry%20Mob/15%20From%20The%20Neck%20Down.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 683
+
+ Track ID683
+ Nameruby_on_rails
+ KindMPEG-4 video file
+ Size51202652
+ Total Time1207920
+ Date Modified2010-08-16T20:33:56Z
+ Date Added2007-12-27T15:43:30Z
+ Bit Rate106
+ Artwork Count1
+ Persistent IDD4D578A35EB69088
+ Track TypeFile
+ Has Video
+ HD
+ Video Width480
+ Video Height288
+ Locationfile://localhost/Users/csev/Desktop/publish/media/2007/ruby_on_rails.mp4
+ File Folder Count5
+ Library Folder Count3
+
+ 685
+
+ Track ID685
+ NameAcceleratorBlues
+ ArtistThe Canettes Blues Band
+ KindMPEG audio file
+ Size8079282
+ Total Time336457
+ Date Modified2008-01-11T02:31:53Z
+ Date Added2008-01-11T02:30:36Z
+ Bit Rate192
+ Sample Rate44100
+ Play Count71
+ Play Date3518867227
+ Play Date UTC2015-07-04T19:07:07Z
+ Skip Count4
+ Skip Date2014-10-17T01:54:12Z
+ Sort ArtistCanettes Blues Band
+ Persistent IDA9ADCB45BD7DF0F0
+ Track TypeFile
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/The%20Canettes%20Blues%20Band/Unknown%20Album/AcceleratorBlues.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 687
+
+ Track ID687
+ NameHenryFordBlues
+ ArtistThe Canettes Blues Band
+ KindMPEG audio file
+ Size7164578
+ Total Time298344
+ Date Modified2008-01-11T02:31:48Z
+ Date Added2008-01-11T02:31:08Z
+ Bit Rate192
+ Sample Rate44100
+ Play Count4
+ Play Date3464981822
+ Play Date UTC2013-10-19T02:57:02Z
+ Sort ArtistCanettes Blues Band
+ Persistent IDA9ADCB45BD7DF0F5
+ Track TypeFile
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/The%20Canettes%20Blues%20Band/Unknown%20Album/HenryFordBlues.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 689
+
+ Track ID689
+ NameSteppinOut
+ ArtistThe Canettes Blues Band
+ KindMPEG audio file
+ Size4629866
+ Total Time192731
+ Date Modified2008-01-11T02:31:58Z
+ Date Added2008-01-11T02:31:21Z
+ Bit Rate192
+ Sample Rate44100
+ Play Count8
+ Play Date3464352347
+ Play Date UTC2013-10-11T20:05:47Z
+ Skip Count1
+ Skip Date2013-09-21T00:05:43Z
+ Sort ArtistCanettes Blues Band
+ Persistent IDA9ADCB45BD7DF0FA
+ Track TypeFile
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/The%20Canettes%20Blues%20Band/Unknown%20Album/SteppinOut.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 691
+
+ Track ID691
+ NameLittleRedRooster
+ ArtistThe Canettes Blues Band
+ KindMPEG audio file
+ Size9333787
+ Total Time388728
+ Date Modified2008-01-11T02:31:42Z
+ Date Added2008-01-11T02:31:29Z
+ Bit Rate192
+ Sample Rate44100
+ Play Count13
+ Play Date3454674169
+ Play Date UTC2013-06-21T19:42:49Z
+ Sort ArtistCanettes Blues Band
+ Persistent IDA9ADCB45BD7DF0FF
+ Track TypeFile
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/The%20Canettes%20Blues%20Band/Unknown%20Album/LittleRedRooster.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 693
+
+ Track ID693
+ Namefln_iphone
+ KindMPEG-4 video file
+ Size74974645
+ Total Time582382
+ Date Modified2010-08-16T20:31:33Z
+ Date Added2008-02-22T17:20:41Z
+ Bit Rate123
+ Play Count1
+ Play Date3294432235
+ Play Date UTC2008-05-24T04:03:55Z
+ Artwork Count1
+ Persistent ID924DD8D7A2E71F93
+ Track TypeFile
+ Has Video
+ HD
+ Video Width480
+ Video Height360
+ File Type1295275600
+ Locationfile://localhost/Users/csev/Desktop/publish/media/2002/fln_iphone.m4v
+ File Folder Count5
+ Library Folder Count3
+
+ 695
+
+ Track ID695
+ Namemojo-di
+ KindMPEG-4 video file
+ Size43418208
+ Total Time335469
+ Date Modified2010-08-16T20:34:58Z
+ Date Added2008-04-19T04:43:42Z
+ Bit Rate127
+ Play Count10
+ Play Date3298462240
+ Play Date UTC2008-07-09T19:30:40Z
+ Artwork Count1
+ Persistent ID958234F25CEB55A6
+ Track TypeFile
+ Has Video
+ HD
+ Video Width480
+ Video Height360
+ File Type1295275600
+ Locationfile://localhost/Users/csev/Desktop/publish/media/2008/mojo-di.m4v
+ File Folder Count5
+ Library Folder Count3
+
+ 697
+
+ Track ID697
+ Nameetudes-500
+ KindMPEG-4 video file
+ Size131521731
+ Total Time1020987
+ Date Modified2010-08-16T20:34:09Z
+ Date Added2008-05-24T14:38:24Z
+ Bit Rate122
+ Play Count1
+ Play Date3294740538
+ Play Date UTC2008-05-27T17:42:18Z
+ Artwork Count1
+ Persistent IDBED2D4763936C2A7
+ Track TypeFile
+ Has Video
+ HD
+ Video Width480
+ Video Height360
+ File Type1295275600
+ Locationfile://localhost/Users/csev/Desktop/publish/media/2008/etudes-500.m4v
+ File Folder Count5
+ Library Folder Count3
+
+ 699
+
+ Track ID699
+ Namejmw-iphone
+ KindMPEG-4 video file
+ Size41567727
+ Total Time334401
+ Date Modified2010-08-16T20:33:52Z
+ Date Added2008-05-24T14:38:59Z
+ Bit Rate125
+ Play Count4
+ Play Date3457182507
+ Play Date UTC2013-07-20T20:28:27Z
+ Artwork Count1
+ Persistent IDBED2D4763936C2B1
+ Track TypeFile
+ Has Video
+ HD
+ Video Width480
+ Video Height320
+ File Type1295275552
+ Locationfile://localhost/Users/csev/Desktop/publish/media/2007/jmw-iphone.m4v
+ File Folder Count5
+ Library Folder Count3
+
+ 701
+
+ Track ID701
+ NameBomb Squad (TECH)
+ ArtistBrent
+ ComposerBrent
+ AlbumBrent's Album
+ KindMPEG audio file
+ Size4996007
+ Total Time208065
+ Year2008
+ BPM120
+ Date Modified2008-06-13T12:24:18Z
+ Date Added2008-07-07T02:26:10Z
+ Bit Rate192
+ Sample Rate44100
+ Play Count4
+ Play Date3443807301
+ Play Date UTC2013-02-16T02:08:21Z
+ Skip Count14
+ Skip Date2013-11-11T21:20:49Z
+ Normalization1244
+ Persistent IDFB3C822328B558DD
+ Track TypeFile
+ File Type1297101600
+ Locationfile://localhost/Users/csev/Music/brent/Bomb%20Squad%20(TECH).mp3
+ File Folder Count2
+ Library Folder Count2
+
+ 703
+
+ Track ID703
+ NameBYURY ME
+ ArtistBrent
+ ComposerBrent
+ AlbumPeanut Butter & Jam
+ KindMPEG audio file
+ Size6620936
+ Total Time274076
+ Year2008
+ BPM120
+ Date Modified2008-05-20T20:51:40Z
+ Date Added2008-07-07T02:26:10Z
+ Bit Rate192
+ Sample Rate44100
+ Play Count4
+ Play Date3489334987
+ Play Date UTC2014-07-27T23:43:07Z
+ Skip Count14
+ Skip Date2013-09-21T15:00:16Z
+ Normalization1258
+ Artwork Count1
+ Persistent IDFB3C822328B558DF
+ Track TypeFile
+ File Type1297101600
+ Locationfile://localhost/Users/csev/Music/brent/BYURY%20ME.mp3
+ File Folder Count2
+ Library Folder Count2
+
+ 705
+
+ Track ID705
+ NameCharlie and the Rising Moon
+ ArtistCharlie And The Rising Moon
+ ComposerBrent
+ AlbumCharlie and The Rising Moon
+ KindMPEG audio file
+ Size2588803
+ Total Time161645
+ Year2008
+ BPM120
+ Date Modified2008-04-30T19:55:38Z
+ Date Added2008-07-07T02:26:10Z
+ Bit Rate128
+ Sample Rate44100
+ Skip Count14
+ Skip Date2013-11-12T02:57:50Z
+ Normalization1212
+ Persistent IDFB3C822328B558E0
+ Track TypeFile
+ File Type1297101600
+ Locationfile://localhost/Users/csev/Music/brent/Charlie%20and%20the%20Rising%20Moon.mp3
+ File Folder Count2
+ Library Folder Count2
+
+ 707
+
+ Track ID707
+ Nameclay techno
+ ArtistBrent
+ ComposerBrent
+ AlbumBrent's Album
+ KindMPEG audio file
+ Size6627923
+ Total Time276062
+ Year2008
+ BPM120
+ Date Modified2008-06-04T17:55:38Z
+ Date Added2008-07-07T02:26:10Z
+ Bit Rate192
+ Sample Rate44100
+ Play Count5
+ Play Date3438100510
+ Play Date UTC2012-12-12T00:55:10Z
+ Skip Count8
+ Skip Date2013-09-21T15:12:52Z
+ Normalization1033
+ Persistent IDFB3C822328B558E1
+ Track TypeFile
+ File Type1297101600
+ Locationfile://localhost/Users/csev/Music/brent/clay%20techno.mp3
+ File Folder Count2
+ Library Folder Count2
+
+ 709
+
+ Track ID709
+ NameCloud Nine Times Over
+ ArtistCharlie And The Rising Moon
+ ComposerBrent
+ AlbumCharlie and The Rising Moon
+ KindMPEG audio file
+ Size2164569
+ Total Time135131
+ Year2008
+ BPM120
+ Date Modified2008-04-30T19:56:46Z
+ Date Added2008-07-07T02:26:10Z
+ Bit Rate128
+ Sample Rate44100
+ Play Count3
+ Play Date3452342969
+ Play Date UTC2013-05-25T20:09:29Z
+ Skip Count6
+ Skip Date2013-08-01T23:46:44Z
+ Normalization1287
+ Persistent IDFB3C822328B558E2
+ Track TypeFile
+ File Type1297101600
+ Locationfile://localhost/Users/csev/Music/brent/Cloud%20Nine%20Times%20Over.mp3
+ File Folder Count2
+ Library Folder Count2
+
+ 711
+
+ Track ID711
+ NameDepression in Session
+ ArtistBrent
+ ComposerBrent
+ AlbumPeanut Butter and Jam
+ KindMPEG audio file
+ Size5119527
+ Total Time213211
+ Year2008
+ BPM120
+ Date Modified2008-05-21T19:55:06Z
+ Date Added2008-07-07T02:26:10Z
+ Bit Rate192
+ Sample Rate44100
+ Play Count4
+ Play Date3438102571
+ Play Date UTC2012-12-12T01:29:31Z
+ Skip Count7
+ Skip Date2013-09-21T15:34:55Z
+ Normalization1205
+ Persistent IDFB3C822328B558E3
+ Track TypeFile
+ File Type1297101600
+ Locationfile://localhost/Users/csev/Music/brent/Depression%20in%20Session.mp3
+ File Folder Count2
+ Library Folder Count2
+
+ 713
+
+ Track ID713
+ NameHeavy
+ ArtistBrent
+ ComposerBrent
+ AlbumBrent's Album
+ KindMPEG audio file
+ Size4515760
+ Total Time188055
+ Year2008
+ BPM120
+ Date Modified2008-06-27T07:46:44Z
+ Date Added2008-07-07T02:26:10Z
+ Bit Rate192
+ Sample Rate44100
+ Play Count2
+ Play Date3311360805
+ Play Date UTC2008-12-06T03:26:45Z
+ Skip Count3
+ Skip Date2013-10-28T00:53:25Z
+ Normalization1138
+ Persistent IDFB3C822328B558E4
+ Track TypeFile
+ File Type1297101600
+ Locationfile://localhost/Users/csev/Music/brent/Heavy.mp3
+ File Folder Count2
+ Library Folder Count2
+
+ 715
+
+ Track ID715
+ NameHi metal man
+ ArtistBrent
+ ComposerBrent
+ AlbumBrent's Album
+ KindMPEG audio file
+ Size6246118
+ Total Time260153
+ Year2008
+ BPM120
+ Date Modified2008-06-04T17:55:46Z
+ Date Added2008-07-07T02:26:10Z
+ Bit Rate192
+ Sample Rate44100
+ Play Count4
+ Play Date3489339165
+ Play Date UTC2014-07-28T00:52:45Z
+ Skip Count2
+ Skip Date2013-11-12T13:05:37Z
+ Normalization1202
+ Persistent IDFB3C822328B558E5
+ Track TypeFile
+ File Type1297101600
+ Locationfile://localhost/Users/csev/Music/brent/Hi%20metal%20man.mp3
+ File Folder Count2
+ Library Folder Count2
+
+ 717
+
+ Track ID717
+ NameMistro
+ ArtistBrent
+ ComposerBrent
+ AlbumBrent's Album
+ KindMPEG audio file
+ Size4277938
+ Total Time178076
+ Year2008
+ BPM120
+ Date Modified2008-05-24T18:28:30Z
+ Date Added2008-07-07T02:26:10Z
+ Bit Rate192
+ Sample Rate44100
+ Play Count5
+ Play Date3459349587
+ Play Date UTC2013-08-14T22:26:27Z
+ Skip Count2
+ Skip Date2013-09-21T01:52:26Z
+ Normalization1206
+ Persistent IDFB3C822328B558E6
+ Track TypeFile
+ File Type1297101600
+ Locationfile://localhost/Users/csev/Music/brent/Mistro.mp3
+ File Folder Count2
+ Library Folder Count2
+
+ 719
+
+ Track ID719
+ NamePirate spirit
+ ArtistBrent
+ ComposerBrent
+ AlbumBrent's Album
+ KindMPEG audio file
+ Size4335616
+ Total Time180480
+ Year2008
+ BPM120
+ Date Modified2008-06-16T10:25:28Z
+ Date Added2008-07-07T02:26:10Z
+ Bit Rate192
+ Sample Rate44100
+ Play Count3
+ Play Date3367333081
+ Play Date UTC2010-09-14T22:18:01Z
+ Skip Count3
+ Skip Date2013-09-18T23:16:27Z
+ Normalization1214
+ Persistent IDFB3C822328B558E7
+ Track TypeFile
+ File Type1297101600
+ Locationfile://localhost/Users/csev/Music/brent/Pirate%20spirit.mp3
+ File Folder Count2
+ Library Folder Count2
+
+ 721
+
+ Track ID721
+ NameRun Away (New)
+ ArtistBrent
+ ComposerBrent
+ AlbumBrent's Album
+ KindMPEG audio file
+ Size3709305
+ Total Time154383
+ Year2008
+ BPM120
+ Date Modified2008-05-23T18:09:18Z
+ Date Added2008-07-07T02:26:10Z
+ Bit Rate192
+ Sample Rate44100
+ Play Count1
+ Play Date3311361999
+ Play Date UTC2008-12-06T03:46:39Z
+ Skip Count1
+ Skip Date2013-09-20T11:43:52Z
+ Normalization1206
+ Persistent IDFB3C822328B558E8
+ Track TypeFile
+ File Type1297101600
+ Locationfile://localhost/Users/csev/Music/brent/Run%20Away%20(New).mp3
+ File Folder Count2
+ Library Folder Count2
+
+ 723
+
+ Track ID723
+ NameStar Gaze (Inspired)
+ ArtistCharlie And The Rising Moon
+ ComposerBrent
+ AlbumCharlie and The Rising Moon
+ KindMPEG audio file
+ Size2906438
+ Total Time181498
+ Year2008
+ BPM120
+ Date Modified2008-04-30T19:55:02Z
+ Date Added2008-07-07T02:26:10Z
+ Bit Rate128
+ Sample Rate44100
+ Skip Count3
+ Skip Date2015-01-02T17:24:36Z
+ Normalization1238
+ Persistent IDFB3C822328B558E9
+ Track TypeFile
+ File Type1297101600
+ Locationfile://localhost/Users/csev/Music/brent/Star%20Gaze%20(Inspired).mp3
+ File Folder Count2
+ Library Folder Count2
+
+ 725
+
+ Track ID725
+ NameThe Dictator (New
+ ArtistBrent
+ ComposerBrent
+ AlbumPeanut Butter & Jam
+ KindMPEG audio file
+ Size3454364
+ Total Time143830
+ Year2008
+ BPM120
+ Date Modified2008-05-25T11:18:14Z
+ Date Added2008-07-07T02:26:11Z
+ Bit Rate192
+ Sample Rate44100
+ Play Count5
+ Play Date3442000922
+ Play Date UTC2013-01-26T04:22:02Z
+ Skip Count8
+ Skip Date2013-10-20T22:55:47Z
+ Normalization1269
+ Sort NameDictator (New
+ Persistent IDFB3C822328B558EA
+ Track TypeFile
+ File Type1297101600
+ Locationfile://localhost/Users/csev/Music/brent/The%20Dictator%20(New.mp3
+ File Folder Count2
+ Library Folder Count2
+
+ 727
+
+ Track ID727
+ NameTown From Town
+ ArtistBrent
+ ComposerBrent
+ AlbumBrent's Album
+ KindMPEG audio file
+ Size2068200
+ Total Time86073
+ Year2008
+ BPM120
+ Date Modified2008-05-31T20:02:24Z
+ Date Added2008-07-07T02:26:11Z
+ Bit Rate192
+ Sample Rate44100
+ Play Count4
+ Play Date3489334708
+ Play Date UTC2014-07-27T23:38:28Z
+ Skip Count1
+ Skip Date2013-10-28T12:04:27Z
+ Normalization1214
+ Persistent IDFB3C822328B558EB
+ Track TypeFile
+ File Type1297101600
+ Locationfile://localhost/Users/csev/Music/brent/Town%20From%20Town.mp3
+ File Folder Count2
+ Library Folder Count2
+
+ 731
+
+ Track ID731
+ NameThe Wisdom of Crowds: Why the Many Are Smarter than the Few Part 1 of 3
+ ArtistJames Surowiecki
+ Album ArtistJames Surowiecki
+ AlbumThe Wisdom of Crowds: Why the Many Are Smarter than the Few (Abridged Nonfiction)
+ GenreBusiness
+ KindProtected AAC audio file
+ Size34033717
+ Total Time8586749
+ Disc Number1
+ Disc Count1
+ Track Number1
+ Track Count3
+ Year2009
+ Date Modified2009-01-08T06:25:40Z
+ Date Added2009-01-08T06:25:23Z
+ Bit Rate32
+ Sample Rate24000
+ Play Count15
+ Play Date3378747452
+ Play Date UTC2011-01-25T01:57:32Z
+ Release Date2009-01-01T00:00:00Z
+ Normalization741
+ Artwork Count1
+ Sort AlbumWisdom of Crowds: Why the Many Are Smarter than the Few (Abridged Nonfiction)
+ Sort NameWisdom of Crowds: Why the Many Are Smarter than the Few Part 1 of 3
+ Persistent ID85E3BEC9D2F62A47
+ Track TypeFile
+ Protected
+ Purchased
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/James%20Surowiecki/The%20Wisdom%20of%20Crowds_%20Why%20the%20Many%20Are%20Smarter%20than%20the%20Few%20(Abridged%20Nonfiction)/01%20The%20Wisdom%20of%20Crowds_%20Why%20the%20Many%20Are%20Smarter%20than%20the%20Few%20Part%201%20of%203.m4b
+ File Folder Count4
+ Library Folder Count1
+
+ 733
+
+ Track ID733
+ NameThe Wisdom of Crowds: Why the Many Are Smarter than the Few Part 2 of 3
+ ArtistJames Surowiecki
+ Album ArtistJames Surowiecki
+ AlbumThe Wisdom of Crowds: Why the Many Are Smarter than the Few (Abridged Nonfiction)
+ GenreBusiness
+ KindProtected AAC audio file
+ Size33466501
+ Total Time8443432
+ Disc Number1
+ Disc Count1
+ Track Number2
+ Track Count3
+ Year2009
+ Date Modified2009-01-08T06:25:45Z
+ Date Added2009-01-08T06:25:23Z
+ Bit Rate32
+ Sample Rate24000
+ Play Count9
+ Play Date3411534540
+ Play Date UTC2012-02-08T13:29:00Z
+ Release Date2009-01-01T00:00:00Z
+ Normalization674
+ Artwork Count1
+ Sort AlbumWisdom of Crowds: Why the Many Are Smarter than the Few (Abridged Nonfiction)
+ Sort NameWisdom of Crowds: Why the Many Are Smarter than the Few Part 2 of 3
+ Persistent ID85E3BEC9D2F62A4C
+ Track TypeFile
+ Protected
+ Purchased
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/James%20Surowiecki/The%20Wisdom%20of%20Crowds_%20Why%20the%20Many%20Are%20Smarter%20than%20the%20Few%20(Abridged%20Nonfiction)/02%20The%20Wisdom%20of%20Crowds_%20Why%20the%20Many%20Are%20Smarter%20than%20the%20Few%20Part%202%20of%203.m4b
+ File Folder Count4
+ Library Folder Count1
+
+ 735
+
+ Track ID735
+ NameThe Wisdom of Crowds: Why the Many Are Smarter than the Few Part 3 of 3
+ ArtistJames Surowiecki
+ Album ArtistJames Surowiecki
+ AlbumThe Wisdom of Crowds: Why the Many Are Smarter than the Few (Abridged Nonfiction)
+ GenreBusiness
+ KindProtected AAC audio file
+ Size16549445
+ Total Time4168829
+ Disc Number1
+ Disc Count1
+ Track Number3
+ Track Count3
+ Year2009
+ Date Modified2009-01-08T06:25:31Z
+ Date Added2009-01-08T06:25:23Z
+ Bit Rate32
+ Sample Rate24000
+ Play Count3
+ Play Date3347027187
+ Play Date UTC2010-01-22T22:46:27Z
+ Release Date2009-01-01T00:00:00Z
+ Normalization649
+ Artwork Count1
+ Sort AlbumWisdom of Crowds: Why the Many Are Smarter than the Few (Abridged Nonfiction)
+ Sort NameWisdom of Crowds: Why the Many Are Smarter than the Few Part 3 of 3
+ Persistent ID85E3BEC9D2F62A4F
+ Track TypeFile
+ Protected
+ Purchased
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/James%20Surowiecki/The%20Wisdom%20of%20Crowds_%20Why%20the%20Many%20Are%20Smarter%20than%20the%20Few%20(Abridged%20Nonfiction)/03%20The%20Wisdom%20of%20Crowds_%20Why%20the%20Many%20Are%20Smarter%20than%20the%20Few%20Part%203%20of%203.m4b
+ File Folder Count4
+ Library Folder Count1
+
+ 737
+
+ Track ID737
+ NameThe Wisdom of Crowds: Why the Many Are Smarter Than the Few (Unabridged) Part 1 of 5
+ ArtistJames Surowiecki
+ Album ArtistJames Surowiecki
+ AlbumThe Wisdom of Crowds: Why the Many Are Smarter Than the Few (Unabridged)
+ GenreNonfiction
+ KindProtected AAC audio file
+ Size31405519
+ Total Time7920893
+ Disc Number1
+ Disc Count1
+ Track Number1
+ Track Count5
+ Year2009
+ Date Modified2009-01-08T17:53:30Z
+ Date Added2009-01-08T17:53:09Z
+ Bit Rate32
+ Sample Rate24000
+ Play Count4
+ Play Date3411484703
+ Play Date UTC2012-02-07T23:38:23Z
+ Release Date2009-01-01T00:00:00Z
+ Normalization951
+ Artwork Count1
+ Sort AlbumWisdom of Crowds: Why the Many Are Smarter Than the Few (Unabridged)
+ Sort NameWisdom of Crowds: Why the Many Are Smarter Than the Few (Unabridged) Part 1 of 5
+ Persistent ID10DCC84281424795
+ Track TypeFile
+ Protected
+ Purchased
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/James%20Surowiecki/The%20Wisdom%20of%20Crowds_%20Why%20the%20Many%20Are%20Smarter%20Than%20the%20Few%20(Unabridged)/01%20The%20Wisdom%20of%20Crowds_%20Why%20the%20Many%20Are%20Smarter%20Than%20the%20Few%20(Unabridged)%20Part%201%20of%205.m4b
+ File Folder Count4
+ Library Folder Count1
+
+ 739
+
+ Track ID739
+ NameThe Wisdom of Crowds: Why the Many Are Smarter Than the Few (Unabridged) Part 2 of 5
+ ArtistJames Surowiecki
+ Album ArtistJames Surowiecki
+ AlbumThe Wisdom of Crowds: Why the Many Are Smarter Than the Few (Unabridged)
+ GenreNonfiction
+ KindProtected AAC audio file
+ Size31409279
+ Total Time7921106
+ Disc Number1
+ Disc Count1
+ Track Number2
+ Track Count5
+ Year2009
+ Date Modified2009-01-08T17:53:25Z
+ Date Added2009-01-08T17:53:09Z
+ Bit Rate32
+ Sample Rate24000
+ Release Date2009-01-01T00:00:00Z
+ Normalization1004
+ Artwork Count1
+ Sort AlbumWisdom of Crowds: Why the Many Are Smarter Than the Few (Unabridged)
+ Sort NameWisdom of Crowds: Why the Many Are Smarter Than the Few (Unabridged) Part 2 of 5
+ Persistent ID10DCC84281424799
+ Track TypeFile
+ Protected
+ Purchased
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/James%20Surowiecki/The%20Wisdom%20of%20Crowds_%20Why%20the%20Many%20Are%20Smarter%20Than%20the%20Few%20(Unabridged)/02%20The%20Wisdom%20of%20Crowds_%20Why%20the%20Many%20Are%20Smarter%20Than%20the%20Few%20(Unabridged)%20Part%202%20of%205.m4b
+ File Folder Count4
+ Library Folder Count1
+
+ 741
+
+ Track ID741
+ NameThe Wisdom of Crowds: Why the Many Are Smarter Than the Few (Unabridged) Part 3 of 5
+ ArtistJames Surowiecki
+ Album ArtistJames Surowiecki
+ AlbumThe Wisdom of Crowds: Why the Many Are Smarter Than the Few (Unabridged)
+ GenreNonfiction
+ KindProtected AAC audio file
+ Size31585647
+ Total Time7965736
+ Disc Number1
+ Disc Count1
+ Track Number3
+ Track Count5
+ Year2009
+ Date Modified2009-01-08T17:53:20Z
+ Date Added2009-01-08T17:53:09Z
+ Bit Rate32
+ Sample Rate24000
+ Release Date2009-01-01T00:00:00Z
+ Normalization970
+ Artwork Count1
+ Sort AlbumWisdom of Crowds: Why the Many Are Smarter Than the Few (Unabridged)
+ Sort NameWisdom of Crowds: Why the Many Are Smarter Than the Few (Unabridged) Part 3 of 5
+ Persistent ID10DCC8428142479C
+ Track TypeFile
+ Protected
+ Purchased
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/James%20Surowiecki/The%20Wisdom%20of%20Crowds_%20Why%20the%20Many%20Are%20Smarter%20Than%20the%20Few%20(Unabridged)/03%20The%20Wisdom%20of%20Crowds_%20Why%20the%20Many%20Are%20Smarter%20Than%20the%20Few%20(Unabridged)%20Part%203%20of%205.m4b
+ File Folder Count4
+ Library Folder Count1
+
+ 743
+
+ Track ID743
+ NameThe Wisdom of Crowds: Why the Many Are Smarter Than the Few (Unabridged) Part 4 of 5
+ ArtistJames Surowiecki
+ Album ArtistJames Surowiecki
+ AlbumThe Wisdom of Crowds: Why the Many Are Smarter Than the Few (Unabridged)
+ GenreNonfiction
+ KindProtected AAC audio file
+ Size38264415
+ Total Time9653330
+ Disc Number1
+ Disc Count1
+ Track Number4
+ Track Count5
+ Year2009
+ Date Modified2009-01-08T17:53:40Z
+ Date Added2009-01-08T17:53:09Z
+ Bit Rate32
+ Sample Rate24000
+ Play Count1
+ Play Date3347250411
+ Play Date UTC2010-01-25T12:46:51Z
+ Release Date2009-01-01T00:00:00Z
+ Normalization953
+ Artwork Count1
+ Sort AlbumWisdom of Crowds: Why the Many Are Smarter Than the Few (Unabridged)
+ Sort NameWisdom of Crowds: Why the Many Are Smarter Than the Few (Unabridged) Part 4 of 5
+ Persistent ID10DCC8428142479F
+ Track TypeFile
+ Protected
+ Purchased
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/James%20Surowiecki/The%20Wisdom%20of%20Crowds_%20Why%20the%20Many%20Are%20Smarter%20Than%20the%20Few%20(Unabridged)/04%20The%20Wisdom%20of%20Crowds_%20Why%20the%20Many%20Are%20Smarter%20Than%20the%20Few%20(Unabridged)%20Part%204%20of%205.m4b
+ File Folder Count4
+ Library Folder Count1
+
+ 745
+
+ Track ID745
+ NameThe Wisdom of Crowds: Why the Many Are Smarter Than the Few (Unabridged) Part 5 of 5
+ ArtistJames Surowiecki
+ Album ArtistJames Surowiecki
+ AlbumThe Wisdom of Crowds: Why the Many Are Smarter Than the Few (Unabridged)
+ GenreNonfiction
+ KindProtected AAC audio file
+ Size3006127
+ Total Time746536
+ Disc Number1
+ Disc Count1
+ Track Number5
+ Track Count5
+ Year2009
+ Date Modified2009-01-08T17:53:31Z
+ Date Added2009-01-08T17:53:09Z
+ Bit Rate32
+ Sample Rate24000
+ Release Date2009-01-01T00:00:00Z
+ Normalization980
+ Artwork Count1
+ Sort AlbumWisdom of Crowds: Why the Many Are Smarter Than the Few (Unabridged)
+ Sort NameWisdom of Crowds: Why the Many Are Smarter Than the Few (Unabridged) Part 5 of 5
+ Persistent ID10DCC842814247A2
+ Track TypeFile
+ Protected
+ Purchased
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/James%20Surowiecki/The%20Wisdom%20of%20Crowds_%20Why%20the%20Many%20Are%20Smarter%20Than%20the%20Few%20(Unabridged)/05%20The%20Wisdom%20of%20Crowds_%20Why%20the%20Many%20Are%20Smarter%20Than%20the%20Few%20(Unabridged)%20Part%205%20of%205.m4b
+ File Folder Count4
+ Library Folder Count1
+
+ 747
+
+ Track ID747
+ Namesquirrel
+ KindMPEG-4 video file
+ Size6258535
+ Total Time60160
+ Date Modified2010-08-16T20:36:55Z
+ Date Added2009-04-15T16:09:51Z
+ Bit Rate123
+ Play Count9
+ Play Date3457182948
+ Play Date UTC2013-07-20T20:35:48Z
+ Artwork Count1
+ Persistent ID673C9179D73A4C38
+ Track TypeFile
+ Has Video
+ HD
+ Video Width320
+ Video Height240
+ File Type1295275600
+ Locationfile://localhost/Users/csev/Desktop/teach/shared/lectures/Open-Source-and-Intellectual-Property/squirrel.m4v
+ File Folder Count6
+ Library Folder Count3
+
+ 751
+
+ Track ID751
+ Name09-08-29-fm-live-1400
+ KindMPEG-4 video file
+ Size178362647
+ Total Time1379645
+ Date Modified2010-08-16T20:35:13Z
+ Date Added2009-09-03T15:38:30Z
+ Bit Rate127
+ Artwork Count1
+ Persistent ID8BE6AFD303764817
+ Track TypeFile
+ Has Video
+ HD
+ Video Width480
+ Video Height360
+ Locationfile://localhost/Users/csev/Desktop/publish/media/2009/09-08-29-fm-live-1400.m4v
+ File Folder Count5
+ Library Folder Count3
+
+ 753
+
+ Track ID753
+ Name09-09-03-fm-acoustic
+ KindMPEG-4 video file
+ Size19658986
+ Total Time151098
+ Date Modified2010-08-16T20:35:31Z
+ Date Added2009-09-03T15:44:26Z
+ Bit Rate127
+ Play Count3
+ Play Date3348154459
+ Play Date UTC2010-02-04T23:54:19Z
+ Artwork Count1
+ Persistent ID2E2DD845FA11214A
+ Track TypeFile
+ Has Video
+ HD
+ Video Width480
+ Video Height360
+ File Type1295275600
+ Locationfile://localhost/Users/csev/Desktop/publish/media/2009/09-09-03-fm-acoustic.m4v
+ File Folder Count5
+ Library Folder Count3
+
+ 755
+
+ Track ID755
+ Nameedu2020
+ KindMPEG-4 video file
+ Size119910967
+ Total Time925378
+ Date Modified2010-08-16T20:32:54Z
+ Date Added2009-09-23T00:40:24Z
+ Bit Rate128
+ Play Count1
+ Play Date3338755712
+ Play Date UTC2009-10-19T04:08:32Z
+ Artwork Count1
+ Persistent IDA889BC0992F19A30
+ Track TypeFile
+ Has Video
+ HD
+ Video Width480
+ Video Height360
+ File Type1295275600
+ Locationfile:///Users/csev/Desktop/publish/media/2006/edu2020.m4v
+ File Folder Count5
+ Library Folder Count3
+
+ 757
+
+ Track ID757
+ NameLTI-And-Moodle
+ KindMPEG-4 video file
+ Size76529828
+ Total Time201800
+ Date Modified2010-08-16T20:35:53Z
+ Date Added2009-10-05T14:04:23Z
+ Bit Rate122
+ Play Count2
+ Play Date3457182719
+ Play Date UTC2013-07-20T20:31:59Z
+ Artwork Count1
+ Persistent IDE0CA8917AA8FD104
+ Track TypeFile
+ Has Video
+ HD
+ Video Width960
+ Video Height540
+ Locationfile://localhost/Users/csev/Desktop/publish/media/2009/LTI-And-Moodle.m4v
+ File Folder Count5
+ Library Folder Count3
+
+ 759
+
+ Track ID759
+ Namesmallplanet-di
+ KindMPEG-4 video file
+ Size237691027
+ Total Time1832733
+ Date Modified2010-08-16T20:36:10Z
+ Date Added2010-01-02T20:54:38Z
+ Bit Rate128
+ Artwork Count1
+ Persistent IDC0567644DAFD9364
+ Track TypeFile
+ Has Video
+ HD
+ Video Width480
+ Video Height360
+ File Type1295275600
+ Locationfile://localhost/Users/csev/Desktop/publish/media/2009/smallplanet-di.m4v
+ File Folder Count5
+ Library Folder Count3
+
+ 761
+
+ Track ID761
+ Namebeautiful-mind
+ KindMPEG-4 video file
+ Size32045106
+ Total Time267350
+ Date Modified2010-01-08T02:43:50Z
+ Date Added2010-01-08T02:43:28Z
+ Bit Rate128
+ Play Count2
+ Play Date3403465541
+ Play Date UTC2011-11-07T04:05:41Z
+ Artwork Count1
+ Persistent ID1F35F2DBC91F7B2E
+ Track TypeFile
+ Has Video
+ HD
+ Video Width480
+ Video Height258
+ File Type1295275600
+ Locationfile://localhost/Users/csev/Desktop/teach/special/nash/x2.m4v
+ File Folder Count5
+ Library Folder Count3
+
+ 777
+
+ Track ID777
+ Namesteering-wheel-ipad-1400
+ KindQuickTime movie file
+ Size16673069
+ Total Time86720
+ Date Modified2010-08-16T20:36:53Z
+ Date Added2010-04-21T17:37:17Z
+ Bit Rate122
+ Play Count13
+ Play Date3474362492
+ Play Date UTC2014-02-04T17:41:32Z
+ Artwork Count1
+ Persistent IDB2289117ABE0CA2A
+ Track TypeFile
+ Has Video
+ HD
+ Video Width640
+ Video Height480
+ File Type1299148630
+ Locationfile://localhost/Users/csev/Desktop/publish/media/2010/steering-wheel-ipad-1400.mov
+ File Folder Count5
+ Library Folder Count3
+
+ 779
+
+ Track ID779
+ NameMisty
+ ArtistDavid Osborne
+ AlbumMoonlight And Love Songs
+ GenreClassical
+ KindMPEG audio file
+ Size4988454
+ Total Time249312
+ Disc Number1
+ Disc Count1
+ Track Number1
+ Track Count14
+ Date Modified2010-03-22T02:49:02Z
+ Date Added2010-04-22T11:09:30Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count302
+ Play Date3502702412
+ Play Date UTC2014-12-29T17:53:32Z
+ Skip Count3
+ Skip Date2014-04-19T03:15:14Z
+ Normalization1236
+ Persistent ID63FA72AAB79FADC7
+ Track TypeFile
+ File Type1297106739
+ Locationfile://localhost/Users/csev/Music/albums/Moonlight/01%20Misty.mp3
+ File Folder Count3
+ Library Folder Count2
+
+ 781
+
+ Track ID781
+ NameMy Funny Valentine
+ ArtistDavid Osborne
+ AlbumMoonlight And Love Songs
+ GenreClassical
+ KindMPEG audio file
+ Size4719928
+ Total Time235885
+ Disc Number1
+ Disc Count1
+ Track Number2
+ Track Count14
+ Date Modified2010-03-22T02:49:28Z
+ Date Added2010-04-22T11:09:30Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count301
+ Play Date3502702648
+ Play Date UTC2014-12-29T17:57:28Z
+ Skip Count1
+ Skip Date2013-08-30T17:19:41Z
+ Normalization1271
+ Persistent ID2A019632F72B3E7C
+ Track TypeFile
+ File Type1297106739
+ Locationfile://localhost/Users/csev/Music/albums/Moonlight/02%20My%20Funny%20Valentine.mp3
+ File Folder Count3
+ Library Folder Count2
+
+ 783
+
+ Track ID783
+ NameSince I Don't Have You
+ ArtistDavid Osborne
+ AlbumMoonlight And Love Songs
+ GenreClassical
+ KindMPEG audio file
+ Size5039149
+ Total Time251846
+ Disc Number1
+ Disc Count1
+ Track Number3
+ Track Count14
+ Date Modified2010-03-22T02:49:52Z
+ Date Added2010-04-22T11:09:30Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count288
+ Play Date3502705727
+ Play Date UTC2014-12-29T18:48:47Z
+ Skip Count1
+ Skip Date2013-08-30T17:19:56Z
+ Normalization1526
+ Persistent ID5571112CEB62967F
+ Track TypeFile
+ File Type1297106739
+ Locationfile://localhost/Users/csev/Music/albums/Moonlight/03%20Since%20I%20Don't%20Have%20You.mp3
+ File Folder Count3
+ Library Folder Count2
+
+ 785
+
+ Track ID785
+ NameTenderly
+ ArtistDavid Osborne
+ AlbumMoonlight And Love Songs
+ GenreClassical
+ KindMPEG audio file
+ Size4550122
+ Total Time227395
+ Disc Number1
+ Disc Count1
+ Track Number4
+ Track Count14
+ Date Modified2010-03-22T02:50:12Z
+ Date Added2010-04-22T11:09:30Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count284
+ Play Date3502705954
+ Play Date UTC2014-12-29T18:52:34Z
+ Normalization1228
+ Persistent ID51530ECF30B5AE4F
+ Track TypeFile
+ File Type1297106739
+ Locationfile://localhost/Users/csev/Music/albums/Moonlight/04%20Tenderly.mp3
+ File Folder Count3
+ Library Folder Count2
+
+ 787
+
+ Track ID787
+ NameWhen I Fall In Love
+ ArtistDavid Osborne
+ AlbumMoonlight And Love Songs
+ GenreClassical
+ KindMPEG audio file
+ Size3757578
+ Total Time187768
+ Disc Number1
+ Disc Count1
+ Track Number5
+ Track Count14
+ Date Modified2010-03-22T02:50:28Z
+ Date Added2010-04-22T11:09:30Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count281
+ Play Date3502707632
+ Play Date UTC2014-12-29T19:20:32Z
+ Normalization1240
+ Persistent ID47A3FCE104CB5B48
+ Track TypeFile
+ File Type1297106739
+ Locationfile://localhost/Users/csev/Music/albums/Moonlight/05%20When%20I%20Fall%20In%20Love.mp3
+ File Folder Count3
+ Library Folder Count2
+
+ 789
+
+ Track ID789
+ NameUnforgettable
+ ArtistDavid Osborne
+ AlbumMoonlight And Love Songs
+ GenreClassical
+ KindMPEG audio file
+ Size5460756
+ Total Time272927
+ Disc Number1
+ Disc Count1
+ Track Number6
+ Track Count14
+ Date Modified2010-03-22T02:50:50Z
+ Date Added2010-04-22T11:09:30Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count280
+ Play Date3502891210
+ Play Date UTC2014-12-31T22:20:10Z
+ Normalization1245
+ Persistent ID1F6E415BC7F8FEC9
+ Track TypeFile
+ File Type1297106739
+ Locationfile://localhost/Users/csev/Music/albums/Moonlight/06%20Unforgettable.mp3
+ File Folder Count3
+ Library Folder Count2
+
+ 791
+
+ Track ID791
+ NameThe Way You Look Tonight
+ ArtistDavid Osborne
+ AlbumMoonlight And Love Songs
+ GenreClassical
+ KindMPEG audio file
+ Size4946677
+ Total Time247222
+ Disc Number1
+ Disc Count1
+ Track Number7
+ Track Count14
+ Date Modified2010-03-22T02:51:08Z
+ Date Added2010-04-22T11:09:30Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count277
+ Play Date3502814550
+ Play Date UTC2014-12-31T01:02:30Z
+ Normalization1236
+ Sort NameWay You Look Tonight
+ Persistent IDEB64D7C8EAA3D2AE
+ Track TypeFile
+ File Type1297106739
+ Locationfile://localhost/Users/csev/Music/albums/Moonlight/07%20The%20Way%20You%20Look%20Tonight.mp3
+ File Folder Count3
+ Library Folder Count2
+
+ 793
+
+ Track ID793
+ NameI've Grown Accustomed To Your Face
+ ArtistDavid Osborne
+ AlbumMoonlight And Love Songs
+ GenreClassical
+ KindMPEG audio file
+ Size2962948
+ Total Time148035
+ Disc Number1
+ Disc Count1
+ Track Number8
+ Track Count14
+ Date Modified2010-03-22T02:51:20Z
+ Date Added2010-04-22T11:09:30Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count280
+ Play Date3502708300
+ Play Date UTC2014-12-29T19:31:40Z
+ Normalization1270
+ Persistent IDD12BA1831DE7F885
+ Track TypeFile
+ File Type1297106739
+ Locationfile://localhost/Users/csev/Music/albums/Moonlight/08%20I've%20Grown%20Accustomed%20To%20Your%20Face.mp3
+ File Folder Count3
+ Library Folder Count2
+
+ 795
+
+ Track ID795
+ NameSmoke Gets In Your Eyes
+ ArtistDavid Osborne
+ AlbumMoonlight And Love Songs
+ GenreClassical
+ KindMPEG audio file
+ Size3972309
+ Total Time198504
+ Disc Number1
+ Disc Count1
+ Track Number9
+ Track Count14
+ Date Modified2010-03-22T02:51:34Z
+ Date Added2010-04-22T11:09:30Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count277
+ Play Date3502884760
+ Play Date UTC2014-12-31T20:32:40Z
+ Normalization1590
+ Persistent IDD64E4275F7620258
+ Track TypeFile
+ File Type1297106739
+ Locationfile://localhost/Users/csev/Music/albums/Moonlight/09%20Smoke%20Gets%20In%20Your%20Eyes.mp3
+ File Folder Count3
+ Library Folder Count2
+
+ 797
+
+ Track ID797
+ NameFly Me To The Moon
+ ArtistDavid Osborne
+ AlbumMoonlight And Love Songs
+ GenreClassical
+ KindMPEG audio file
+ Size3653088
+ Total Time182543
+ Disc Number1
+ Disc Count1
+ Track Number10
+ Track Count14
+ Date Modified2010-03-22T02:51:46Z
+ Date Added2010-04-22T11:09:30Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count275
+ Play Date3502731260
+ Play Date UTC2014-12-30T01:54:20Z
+ Normalization1152
+ Persistent IDA03FC6024E87B87B
+ Track TypeFile
+ File Type1297106739
+ Locationfile://localhost/Users/csev/Music/albums/Moonlight/10%20Fly%20Me%20To%20The%20Moon.mp3
+ File Folder Count3
+ Library Folder Count2
+
+ 799
+
+ Track ID799
+ NameUnchained Melody
+ ArtistDavid Osborne
+ AlbumMoonlight And Love Songs
+ GenreClassical
+ KindMPEG audio file
+ Size5189609
+ Total Time259369
+ Disc Number1
+ Disc Count1
+ Track Number11
+ Track Count14
+ Date Modified2010-03-22T02:52:06Z
+ Date Added2010-04-22T11:09:30Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count265
+ Play Date3502731519
+ Play Date UTC2014-12-30T01:58:39Z
+ Normalization1286
+ Persistent ID0A9D507FFE1FF7F5
+ Track TypeFile
+ File Type1297106739
+ Locationfile://localhost/Users/csev/Music/albums/Moonlight/11%20Unchained%20Melody.mp3
+ File Folder Count3
+ Library Folder Count2
+
+ 801
+
+ Track ID801
+ NameThese Foolish Things Remind Me Of You
+ ArtistDavid Osborne
+ AlbumMoonlight And Love Songs
+ GenreClassical
+ KindMPEG audio file
+ Size3696471
+ Total Time184711
+ Disc Number1
+ Disc Count1
+ Track Number12
+ Track Count14
+ Date Modified2010-03-22T02:54:04Z
+ Date Added2010-04-22T11:09:30Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count267
+ Play Date3502731704
+ Play Date UTC2014-12-30T02:01:44Z
+ Normalization1236
+ Persistent ID58145C5B70CC20BF
+ Track TypeFile
+ File Type1297106739
+ Locationfile://localhost/Users/csev/Music/albums/Moonlight/12%20These%20Foolish%20Things%20Remind%20Me%20Of%20You.mp3
+ File Folder Count3
+ Library Folder Count2
+
+ 803
+
+ Track ID803
+ NameLa Vie En Rose
+ ArtistDavid Osborne
+ AlbumMoonlight And Love Songs
+ GenreClassical
+ KindMPEG audio file
+ Size5537558
+ Total Time276767
+ Disc Number1
+ Disc Count1
+ Track Number13
+ Track Count14
+ Date Modified2010-03-22T02:54:20Z
+ Date Added2010-04-22T11:09:30Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count259
+ Play Date3502731981
+ Play Date UTC2014-12-30T02:06:21Z
+ Normalization1255
+ Persistent IDB0930E7ABC4BB695
+ Track TypeFile
+ File Type1297106739
+ Locationfile://localhost/Users/csev/Music/albums/Moonlight/13%20La%20Vie%20En%20Rose.mp3
+ File Folder Count3
+ Library Folder Count2
+
+ 805
+
+ Track ID805
+ NameAs Time Goes By
+ ArtistDavid Osborne
+ AlbumMoonlight And Love Songs
+ GenreClassical
+ KindMPEG audio file
+ Size5161918
+ Total Time257985
+ Disc Number1
+ Disc Count1
+ Track Number14
+ Track Count14
+ Date Modified2010-03-22T02:54:36Z
+ Date Added2010-04-22T11:09:30Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count290
+ Play Date3518868768
+ Play Date UTC2015-07-04T19:32:48Z
+ Normalization1273
+ Persistent IDA6B8E8FCD26506AA
+ Track TypeFile
+ File Type1297106739
+ Locationfile://localhost/Users/csev/Music/albums/Moonlight/14%20As%20Time%20Goes%20By.mp3
+ File Folder Count3
+ Library Folder Count2
+
+ 817
+
+ Track ID817
+ Namemarissa-excerpt-1400
+ KindQuickTime movie file
+ Size14146281
+ Total Time127062
+ Date Modified2010-08-16T20:34:36Z
+ Date Added2010-12-08T21:20:16Z
+ Bit Rate95
+ Play Count2
+ Play Date3457182833
+ Play Date UTC2013-07-20T20:33:53Z
+ Artwork Count1
+ Persistent IDEADE74BBD7546249
+ Track TypeFile
+ Has Video
+ HD
+ Video Width640
+ Video Height480
+ File Type1299148630
+ Locationfile://localhost/Users/csev/Desktop/publish/media/2008/marissa-excerpt-1400.mov
+ File Folder Count5
+ Library Folder Count3
+
+ 821
+
+ Track ID821
+ NamePilot
+ ArtistFairly Legal
+ Album ArtistFairly Legal
+ AlbumFairly Legal, Season 1
+ GenreDrama
+ KindProtected MPEG-4 video file
+ Size929081228
+ Total Time3847006
+ Disc Number1
+ Disc Count1
+ Track Number1
+ Year2011
+ Date Modified2015-01-04T18:19:13Z
+ Date Added2011-02-15T11:54:06Z
+ Bit Rate122
+ Play Count1
+ Release Date2011-01-20T08:00:00Z
+ Artwork Count1
+ SeriesFairly Legal
+ Season1
+ EpisodeCJG01
+ Episode Order1
+ Sort AlbumFairly Legal, Season 1
+ Persistent IDA98AB8D02586BE0C
+ Content Ratingus-tv|TV-PG|400|
+ Track TypeFile
+ Protected
+ Purchased
+ Has Video
+ HD
+ Video Width640
+ Video Height480
+ TV Show
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/TV%20Shows/Fairly%20Legal/01%20Pilot.m4v
+ File Folder Count4
+ Library Folder Count1
+
+ 827
+
+ Track ID827
+ Name02-1995-timbl-800
+ KindMPEG-4 video file
+ Size16905007
+ Total Time82449
+ Date Modified2011-04-07T02:55:58Z
+ Date Added2011-04-07T02:55:58Z
+ Bit Rate129
+ Play Count2
+ Play Date3385015693
+ Play Date UTC2011-04-07T14:08:13Z
+ Artwork Count1
+ Persistent ID2D0093414224D62E
+ Track TypeFile
+ Has Video
+ HD
+ Video Width480
+ Video Height360
+ File Type1295275552
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Movies/02-1995-timbl-800.m4v
+ File Folder Count3
+ Library Folder Count1
+
+ 829
+
+ Track ID829
+ Name03-1997-larry-smarr-mini
+ KindMPEG-4 video file
+ Size34485203
+ Total Time171964
+ Date Modified2011-04-07T02:57:21Z
+ Date Added2011-04-07T02:57:21Z
+ Bit Rate102
+ Play Count2
+ Play Date3385015868
+ Play Date UTC2011-04-07T14:11:08Z
+ Artwork Count1
+ Persistent IDC224160C1E0E3DD3
+ Track TypeFile
+ Has Video
+ HD
+ Video Width640
+ Video Height480
+ File Type1295275552
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Movies/03-1997-larry-smarr-mini.m4v
+ File Folder Count3
+ Library Folder Count1
+
+ 831
+
+ Track ID831
+ Name04-2010-nsfnet-dvh-1400-short
+ KindMPEG-4 video file
+ Size34667870
+ Total Time169537
+ Date Modified2011-04-07T03:00:45Z
+ Date Added2011-04-07T03:00:45Z
+ Bit Rate125
+ Play Count2
+ Play Date3385016042
+ Play Date UTC2011-04-07T14:14:02Z
+ Artwork Count1
+ Persistent ID59C4478F66BE12EA
+ Track TypeFile
+ Has Video
+ HD
+ Video Width640
+ Video Height480
+ File Type1295275552
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Movies/04-2010-nsfnet-dvh-1400-short.m4v
+ File Folder Count3
+ Library Folder Count1
+
+ 833
+
+ Track ID833
+ Name05-1999-cailliau-1400CAPTIONED-short
+ KindMPEG-4 video file
+ Size24121372
+ Total Time119255
+ Date Modified2011-04-07T03:02:58Z
+ Date Added2011-04-07T03:02:58Z
+ Bit Rate109
+ Play Count2
+ Play Date3385016167
+ Play Date UTC2011-04-07T14:16:07Z
+ Artwork Count1
+ Persistent IDB6A4C492BC8159C0
+ Track TypeFile
+ Has Video
+ HD
+ Video Width640
+ Video Height480
+ File Type1295275552
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Movies/05-1999-cailliau-1400CAPTIONED-short.m4v
+ File Folder Count3
+ Library Folder Count1
+
+ 835
+
+ Track ID835
+ Name06-2006-kunz-1400CAPTIONED-short
+ KindMPEG-4 video file
+ Size29042609
+ Total Time142804
+ Date Modified2011-04-07T03:09:14Z
+ Date Added2011-04-07T03:09:15Z
+ Bit Rate117
+ Play Count1
+ Play Date3384977739
+ Play Date UTC2011-04-07T03:35:39Z
+ Artwork Count1
+ Persistent IDFFE97D632179A9E0
+ Track TypeFile
+ Has Video
+ HD
+ Video Width640
+ Video Height480
+ File Type1295275552
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Movies/06-2006-kunz-1400CAPTIONED-short.m4v
+ File Folder Count3
+ Library Folder Count1
+
+ 837
+
+ Track ID837
+ Name07-2008-hardin-1400CAPTIONED-short
+ KindMPEG-4 video file
+ Size39182645
+ Total Time191785
+ Date Modified2011-04-07T03:12:54Z
+ Date Added2011-04-07T03:12:54Z
+ Bit Rate126
+ Play Count1
+ Play Date3385015344
+ Play Date UTC2011-04-07T14:02:24Z
+ Artwork Count1
+ Persistent ID5C6B502FAF0F6184
+ Track TypeFile
+ Has Video
+ HD
+ Video Width640
+ Video Height480
+ File Type1295275552
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Movies/07-2008-hardin-1400CAPTIONED-short.m4v
+ File Folder Count3
+ Library Folder Count1
+
+ 839
+
+ Track ID839
+ Name08-1999-cailliau-1400CAPTIONED-short-II
+ KindMPEG-4 video file
+ Size10096403
+ Total Time49794
+ Date Modified2011-04-07T03:13:52Z
+ Date Added2011-04-07T03:13:52Z
+ Bit Rate108
+ Play Count1
+ Play Date3385015401
+ Play Date UTC2011-04-07T14:03:21Z
+ Artwork Count1
+ Persistent ID374824304B7F35AF
+ Track TypeFile
+ Has Video
+ HD
+ Video Width640
+ Video Height480
+ File Type1295275552
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Movies/08-1999-cailliau-1400CAPTIONED-short-II.m4v
+ File Folder Count3
+ Library Folder Count1
+
+ 841
+
+ Track ID841
+ Name09-2008-hardin-1400CAPTIONED-short-II
+ KindMPEG-4 video file
+ Size11191407
+ Total Time54720
+ Date Modified2011-04-07T03:15:39Z
+ Date Added2011-04-07T03:15:39Z
+ Bit Rate125
+ Play Count1
+ Play Date3385015472
+ Play Date UTC2011-04-07T14:04:32Z
+ Artwork Count1
+ Persistent ID0CCCF96D4D180AE3
+ Track TypeFile
+ Has Video
+ HD
+ Video Width640
+ Video Height480
+ File Type1295275552
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Movies/09-2008-hardin-1400CAPTIONED-short-II.m4v
+ File Folder Count3
+ Library Folder Count1
+
+ 843
+
+ Track ID843
+ Name10-1997-bezos-1400-short
+ KindMPEG-4 video file
+ Size22485593
+ Total Time109877
+ Date Modified2011-04-07T03:17:53Z
+ Date Added2011-04-07T03:17:53Z
+ Bit Rate126
+ Play Count2
+ Play Date3425313404
+ Play Date UTC2012-07-16T23:56:44Z
+ Artwork Count1
+ Persistent ID6D98FA50FCBB1DBD
+ Track TypeFile
+ Has Video
+ HD
+ Video Width640
+ Video Height480
+ File Type1295275552
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Movies/10-1997-bezos-1400-short.m4v
+ File Folder Count3
+ Library Folder Count1
+
+ 845
+
+ Track ID845
+ Name04-LTI-And-Moodle
+ KindMPEG-4 video file
+ Size76529828
+ Total Time201800
+ Date Modified2010-08-16T20:35:52Z
+ Date Added2011-04-12T14:44:49Z
+ Bit Rate125
+ Artwork Count1
+ Persistent ID00440A343624FBEF
+ Track TypeFile
+ Has Video
+ HD
+ Video Width960
+ Video Height540
+ Locationfile://localhost/Users/csev/Desktop/publish/talks/chuck-talks/2011/2011-04-13-excellent/04-LTI-And-Moodle.m4v
+ File Folder Count7
+ Library Folder Count3
+
+ 851
+
+ Track ID851
+ Name2011-06-05-moodle-ipad
+ KindQuickTime movie file
+ Size67673426
+ Total Time50693
+ Date Modified2011-06-06T01:20:36Z
+ Date Added2011-06-11T13:07:52Z
+ Play Count1
+ Play Date3436852730
+ Play Date UTC2012-11-27T14:18:50Z
+ Artwork Count1
+ Persistent ID080F074DBA9AAA2E
+ Track TypeFile
+ Has Video
+ HD
+ Video Width1280
+ Video Height720
+ File Type1299148630
+ Locationfile://localhost/Users/csev/Desktop/publish/media/2011/2011-06-05-moodle-ipad.mov
+ File Folder Count5
+ Library Folder Count3
+
+ 855
+
+ Track ID855
+ NameMary_poppins
+ KindMPEG-4 video file
+ Size1619661503
+ Total Time7782206
+ Date Modified2011-09-25T01:37:50Z
+ Date Added2011-09-26T05:08:14Z
+ Bit Rate156
+ Play Count1
+ Play Date3399844118
+ Play Date UTC2011-09-26T05:08:38Z
+ Artwork Count1
+ Persistent ID0D2FCCA4F5CBCF07
+ Track TypeFile
+ Has Video
+ HD
+ Video Width672
+ Video Height478
+ Locationfile://localhost/Volumes/TOSHIBA/Mary_poppins.m4v
+ File Folder Count-1
+ Library Folder Count-1
+
+ 857
+
+ Track ID857
+ Namespace cowboy
+ KindMPEG audio file
+ Size980167
+ Total Time48901
+ Year2008
+ BPM84
+ Date Modified2011-09-26T16:14:40Z
+ Date Added2011-09-26T16:14:39Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count2
+ Play Date3416573961
+ Play Date UTC2012-04-06T20:19:21Z
+ Normalization1804
+ Persistent ID5A8A14DB9666D67C
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Unknown%20Artist/Unknown%20Album/space%20cowboy.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 859
+
+ Track ID859
+ NameGeorgeTonSupercomputing
+ KindMPEG-4 video file
+ Size69318015
+ Total Time181347
+ Date Modified2011-10-06T19:23:44Z
+ Date Added2011-10-07T00:28:13Z
+ Bit Rate120
+ Play Count1
+ Play Date3400777708
+ Play Date UTC2011-10-07T00:28:28Z
+ Artwork Count1
+ Persistent ID405DDBE13094F904
+ Track TypeFile
+ Has Video
+ HD
+ Video Width720
+ Video Height540
+ Locationfile://localhost/Users/csev/Downloads/GeorgeTonSupercomputing.m4v
+ File Folder Count2
+ Library Folder Count3
+
+ 861
+
+ Track ID861
+ Name2011-10-08-smarr-05-1400
+ KindQuickTime movie file
+ Size132547654
+ Total Time690057
+ Date Modified2011-10-08T17:35:21Z
+ Date Added2011-10-11T15:34:44Z
+ Bit Rate114
+ Play Count1
+ Play Date3401247494
+ Play Date UTC2011-10-12T10:58:14Z
+ Artwork Count1
+ Persistent ID6299A2896CB66726
+ Track TypeFile
+ Has Video
+ HD
+ Video Width640
+ Video Height480
+ Locationfile://localhost/Users/csev/Desktop/publish/media/2011/2011-10-08-smarr-05-1400.mov
+ File Folder Count5
+ Library Folder Count3
+
+ 867
+
+ Track ID867
+ NameJobs2a
+ Artistcsev
+ Composercsev
+ Albumcsev's Album
+ KindMPEG audio file
+ Size4332691
+ Total Time541074
+ Year2012
+ BPM120
+ Date Modified2012-01-21T17:45:30Z
+ Date Added2012-01-22T03:07:57Z
+ Bit Rate64
+ Sample Rate44100
+ Normalization1368
+ Persistent ID7E5C60CFE0150783
+ Track TypeFile
+ Locationfile://localhost/Users/csev/Desktop/ieee/columns/2012-01-Jobs/2012-01-IEEE-Steve.mp3
+ File Folder Count5
+ Library Folder Count3
+
+ 873
+
+ Track ID873
+ Namehte postal service - the impor
+ ArtistThe Postal Service
+ Albumunreleased demo
+ GenreElectronic
+ KindMPEG audio file
+ Size3879312
+ Total Time193959
+ Year2006
+ Date Modified2012-02-19T06:18:14Z
+ Date Added2012-02-19T12:18:35Z
+ Bit Rate160
+ Sample Rate44100
+ CommentsComment
+ Skip Count1
+ Skip Date2012-04-05T04:19:46Z
+ Sort ArtistPostal Service
+ Persistent ID85C537CB24DC3AFE
+ Track TypeFile
+ Locationfile://localhost/Users/csev/postal%2520service%2520-%2520importance%2520of%2520being.mp3
+ File Folder Count1
+ Library Folder Count3
+
+ 877
+
+ Track ID877
+ Name2012-06-Bletchley-IEEE
+ KindQuickTime movie file
+ Size276854286
+ Total Time1490488
+ Date Modified2012-05-24T17:28:38Z
+ Date Added2012-06-11T11:18:28Z
+ Bit Rate114
+ Artwork Count1
+ Persistent ID35D5EA0419D09F91
+ Track TypeFile
+ Has Video
+ HD
+ Video Width960
+ Video Height540
+ File Type1299148630
+ Locationfile://localhost/Users/csev/Desktop/publish/media/2012/2012-06-Bletchley-IEEE.mov
+ File Folder Count5
+ Library Folder Count3
+
+ 879
+
+ Track ID879
+ Name2012-05-The-Best-Taco-In-The-World
+ KindQuickTime movie file
+ Size26753540
+ Total Time142608
+ Date Modified2012-05-22T14:32:14Z
+ Date Added2012-06-11T11:18:31Z
+ Bit Rate107
+ Play Count3
+ Play Date3442342656
+ Play Date UTC2013-01-30T03:17:36Z
+ Artwork Count1
+ Persistent ID75F48759FDDDC216
+ Track TypeFile
+ Has Video
+ HD
+ Video Width960
+ Video Height540
+ File Type1299148630
+ Locationfile://localhost/Users/csev/Desktop/publish/media/2012/2012-05-The-Best-Taco-In-The-World.mov
+ File Folder Count5
+ Library Folder Count3
+
+ 885
+
+ Track ID885
+ Name2012-10-30-Andorra-Video
+ KindQuickTime movie file
+ Size3587383
+ Total Time37130
+ Date Modified2012-10-30T17:53:20Z
+ Date Added2012-10-30T22:59:27Z
+ Bit Rate94
+ Play Count3
+ Play Date3488657196
+ Play Date UTC2014-07-20T03:26:36Z
+ Artwork Count1
+ Persistent IDE43B3467D29CEA57
+ Track TypeFile
+ Has Video
+ HD
+ Video Width512
+ Video Height288
+ File Type1299148630
+ Locationfile://localhost/Users/csev/Desktop/publish/media/2012/2012-10-30-Andorra-Video.mov
+ File Folder Count5
+ Library Folder Count3
+
+ 887
+
+ Track ID887
+ NameWinter Wonderland
+ ArtistBing Crosby
+ ComposerFrank Siatra & Bing Crosby
+ AlbumSeasons Greatings
+ GenreHoliday
+ KindMPEG audio file
+ Size2897142
+ Total Time144744
+ Disc Number1
+ Disc Count1
+ Track Number1
+ Track Count12
+ Year2007
+ Date Modified2012-11-22T14:06:56Z
+ Date Added2012-11-22T14:06:42Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count163
+ Play Date3530008410
+ Play Date UTC2015-11-10T18:53:30Z
+ Normalization1658
+ Persistent ID790FC8E37767D7AA
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Bing%20Crosby/Seasons%20Greatings/01%20Winter%20Wonderland.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 889
+
+ Track ID889
+ NameJingle Bells
+ ArtistFrank Sinatra
+ ComposerFrank Siatra & Bing Crosby
+ AlbumSeasons Greatings
+ GenreHoliday
+ KindMPEG audio file
+ Size2437384
+ Total Time121756
+ Disc Number1
+ Disc Count1
+ Track Number2
+ Track Count12
+ Year1957
+ Date Modified2012-11-22T14:07:08Z
+ Date Added2012-11-22T14:06:57Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count271
+ Play Date3495815263
+ Play Date UTC2014-10-10T23:47:43Z
+ Skip Count1
+ Skip Date2013-11-27T19:01:10Z
+ Normalization1797
+ Persistent ID943A913D9CD9664F
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Frank%20Sinatra/Seasons%20Greatings/02%20Jingle%20Bells.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 891
+
+ Track ID891
+ NameWhite Christmas
+ ArtistBing Crosby
+ ComposerFrank Siatra & Bing Crosby
+ AlbumSeasons Greatings
+ GenreHoliday
+ KindMPEG audio file
+ Size1914936
+ Total Time95634
+ Disc Number1
+ Disc Count1
+ Track Number3
+ Track Count12
+ Year2007
+ Date Modified2012-11-22T14:07:18Z
+ Date Added2012-11-22T14:07:10Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count158
+ Play Date3501748756
+ Play Date UTC2014-12-18T16:59:16Z
+ Normalization1076
+ Persistent IDCC828327804C14BB
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Bing%20Crosby/Seasons%20Greatings/03%20White%20Christmas.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 893
+
+ Track ID893
+ NameThe Christmas Song
+ ArtistFrank Sinatra
+ ComposerFrank Siatra & Bing Crosby
+ AlbumSeasons Greatings
+ GenreHoliday
+ KindMPEG audio file
+ Size4194908
+ Total Time209632
+ Disc Number1
+ Disc Count1
+ Track Number4
+ Track Count12
+ Year2007
+ Date Modified2012-11-22T14:07:37Z
+ Date Added2012-11-22T14:07:19Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count272
+ Play Date3503058751
+ Play Date UTC2015-01-02T20:52:31Z
+ Skip Count2
+ Skip Date2013-07-01T12:05:53Z
+ Normalization1004
+ Sort NameChristmas Song
+ Persistent IDBFE8770720032426
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Frank%20Sinatra/Seasons%20Greatings/04%20The%20Christmas%20Song.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 895
+
+ Track ID895
+ NameLittle Drummer Boy
+ ArtistBing Crosby
+ ComposerFrank Siatra & Bing Crosby
+ AlbumSeasons Greatings
+ GenreHoliday
+ KindMPEG audio file
+ Size3568490
+ Total Time178311
+ Disc Number1
+ Disc Count1
+ Track Number5
+ Track Count12
+ Year1962
+ Date Modified2012-11-22T14:07:52Z
+ Date Added2012-11-22T14:07:38Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count154
+ Play Date3503046272
+ Play Date UTC2015-01-02T17:24:32Z
+ Skip Count1
+ Skip Date2013-07-30T03:22:26Z
+ Normalization1011
+ Persistent ID15F8671BEF8A869D
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Bing%20Crosby/Seasons%20Greatings/05%20Little%20Drummer%20Boy.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 897
+
+ Track ID897
+ NameSilent Night
+ ArtistFrank Sinatra
+ ComposerFrank Siatra & Bing Crosby
+ AlbumSeasons Greatings
+ GenreHoliday
+ KindMPEG audio file
+ Size2983343
+ Total Time149054
+ Disc Number1
+ Disc Count1
+ Track Number6
+ Track Count12
+ Year2007
+ Date Modified2012-11-22T14:08:05Z
+ Date Added2012-11-22T14:07:55Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count257
+ Play Date3495815602
+ Play Date UTC2014-10-10T23:53:22Z
+ Normalization841
+ Persistent IDB362AA0F8EF9D629
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Frank%20Sinatra/Seasons%20Greatings/06%20Silent%20Night.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 899
+
+ Track ID899
+ NameLet It Snow
+ ArtistBing Crosby
+ ComposerFrank Siatra & Bing Crosby
+ AlbumSeasons Greatings
+ GenreHoliday
+ KindMPEG audio file
+ Size2504777
+ Total Time125126
+ Disc Number1
+ Disc Count1
+ Track Number7
+ Track Count12
+ Year2007
+ Date Modified2012-11-22T14:08:14Z
+ Date Added2012-11-22T14:08:06Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count154
+ Play Date3501747959
+ Play Date UTC2014-12-18T16:45:59Z
+ Normalization1072
+ Persistent ID422F95CB083BA37E
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Bing%20Crosby/Seasons%20Greatings/07%20Let%20It%20Snow.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 901
+
+ Track ID901
+ NameMistletoe And Holly
+ ArtistFrank Sinatra
+ ComposerFrank Siatra & Bing Crosby
+ AlbumSeasons Greatings
+ GenreHoliday
+ KindMPEG audio file
+ Size2772280
+ Total Time138501
+ Disc Number1
+ Disc Count1
+ Track Number8
+ Track Count12
+ Year2007
+ Date Modified2012-11-22T14:08:25Z
+ Date Added2012-11-22T14:08:15Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count257
+ Play Date3495815141
+ Play Date UTC2014-10-10T23:45:41Z
+ Normalization1310
+ Persistent ID8D3344562905E9C3
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Frank%20Sinatra/Seasons%20Greatings/08%20Mistletoe%20And%20Holly.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 903
+
+ Track ID903
+ NameO Holy Night
+ ArtistBing Crosby
+ ComposerFrank Siatra & Bing Crosby
+ AlbumSeasons Greatings
+ GenreHoliday
+ KindMPEG audio file
+ Size4282671
+ Total Time214021
+ Disc Number1
+ Disc Count1
+ Track Number9
+ Track Count12
+ Year2007
+ Date Modified2012-11-22T14:08:40Z
+ Date Added2012-11-22T14:08:26Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count150
+ Play Date3501748337
+ Play Date UTC2014-12-18T16:52:17Z
+ Normalization2469
+ Persistent IDE7A2DB8DE5F630D0
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Bing%20Crosby/Seasons%20Greatings/09%20O%20Holy%20Night.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 905
+
+ Track ID905
+ NameHave Yourself A Merry Little Christmas
+ ArtistFrank Sinatra
+ ComposerFrank Siatra & Bing Crosby
+ AlbumSeasons Greatings
+ GenreHoliday
+ KindMPEG audio file
+ Size4167239
+ Total Time208248
+ Disc Number1
+ Disc Count1
+ Track Number10
+ Track Count12
+ Year2007
+ Date Modified2012-11-22T14:08:55Z
+ Date Added2012-11-22T14:08:41Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count252
+ Play Date3495814793
+ Play Date UTC2014-10-10T23:39:53Z
+ Normalization1120
+ Persistent IDBF1D2FCB64067EDB
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Frank%20Sinatra/Seasons%20Greatings/10%20Have%20Yourself%20A%20Merry%20Little%20Christmas.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 907
+
+ Track ID907
+ NameDo You Hear What I Hear
+ ArtistBing Crosby
+ ComposerFrank Siatra & Bing Crosby
+ AlbumSeasons Greatings
+ GenreHoliday
+ KindMPEG audio file
+ Size3296822
+ Total Time164728
+ Disc Number1
+ Disc Count1
+ Track Number11
+ Track Count12
+ Year2007
+ Date Modified2012-11-22T14:09:06Z
+ Date Added2012-11-22T14:08:55Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count155
+ Play Date3501748123
+ Play Date UTC2014-12-18T16:48:43Z
+ Skip Count2
+ Skip Date2013-07-01T12:47:02Z
+ Normalization2718
+ Persistent IDFBE7B8E169AA4DF8
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Bing%20Crosby/Seasons%20Greatings/11%20Do%20You%20Hear%20What%20I%20Hear.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 909
+
+ Track ID909
+ NameI'll Be Home For Christmas
+ ArtistFrank Sinatra
+ ComposerFrank Siatra & Bing Crosby
+ AlbumSeasons Greatings
+ GenreHoliday
+ KindMPEG audio file
+ Size3819799
+ Total Time190876
+ Disc Number1
+ Disc Count1
+ Track Number12
+ Track Count12
+ Year2007
+ Date Modified2012-11-22T14:09:18Z
+ Date Added2012-11-22T14:09:06Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count249
+ Play Date3501663269
+ Play Date UTC2014-12-17T17:14:29Z
+ Normalization1156
+ Persistent IDF1A06CC26CF3641B
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Frank%20Sinatra/Seasons%20Greatings/12%20I'll%20Be%20Home%20For%20Christmas.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 911
+
+ Track ID911
+ NameTrack 01
+ ArtistKaiser Chiefs
+ KindMPEG audio file
+ Size4102328
+ Total Time205008
+ Track Number1
+ Track Count15
+ Date Modified2012-11-22T14:13:45Z
+ Date Added2012-11-22T14:13:27Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count2
+ Play Date3465115641
+ Play Date UTC2013-10-20T16:07:21Z
+ Normalization11141
+ Persistent ID0924A19522563F9F
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Unknown%20Album/01%20Track%2001.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 913
+
+ Track ID913
+ NameTrack 02
+ ArtistKaiser Chiefs
+ KindMPEG audio file
+ Size5768417
+ Total Time288313
+ Track Number2
+ Track Count15
+ Date Modified2012-11-22T11:14:10Z
+ Date Added2012-11-22T14:13:47Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count1
+ Play Date3465206596
+ Play Date UTC2013-10-21T17:23:16Z
+ Skip Count1
+ Skip Date2013-08-05T02:12:45Z
+ Normalization11833
+ Persistent ID127E6A3C8C70799C
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Unknown%20Album/02%20Track%2002%201.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 915
+
+ Track ID915
+ NameTrack 03
+ ArtistKaiser Chiefs
+ KindMPEG audio file
+ Size4743372
+ Total Time237061
+ Track Number3
+ Track Count15
+ Date Modified2012-11-22T14:14:28Z
+ Date Added2012-11-22T14:14:11Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count3
+ Play Date3478665276
+ Play Date UTC2014-03-26T11:54:36Z
+ Normalization14683
+ Persistent ID28D19AE188208CF7
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Unknown%20Album/03%20Track%2003.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 917
+
+ Track ID917
+ NameTrack 04
+ ArtistKaiser Chiefs
+ KindMPEG audio file
+ Size3993658
+ Total Time199575
+ Track Number4
+ Track Count15
+ Date Modified2012-11-22T14:14:43Z
+ Date Added2012-11-22T14:14:29Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count3
+ Play Date3508732112
+ Play Date UTC2015-03-09T11:48:32Z
+ Normalization14874
+ Persistent IDE3ACC4EE4B0B441A
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Unknown%20Album/04%20Track%2004.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 919
+
+ Track ID919
+ NameTrack 05
+ ArtistKaiser Chiefs
+ KindMPEG audio file
+ Size3958132
+ Total Time197799
+ Track Number5
+ Track Count15
+ Date Modified2012-11-22T14:14:57Z
+ Date Added2012-11-22T14:14:44Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count1
+ Play Date3458313675
+ Play Date UTC2013-08-02T22:41:15Z
+ Normalization5759
+ Persistent ID8CF2F83F505537C1
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Unknown%20Album/05%20Track%2005.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 921
+
+ Track ID921
+ NameTrack 06
+ ArtistKaiser Chiefs
+ KindMPEG audio file
+ Size3157217
+ Total Time157753
+ Track Number6
+ Track Count15
+ Date Modified2012-11-22T14:15:07Z
+ Date Added2012-11-22T14:14:58Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count2
+ Play Date3494411579
+ Play Date UTC2014-09-24T17:52:59Z
+ Normalization15646
+ Persistent IDAF30E07D93F489BE
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Unknown%20Album/06%20Track%2006.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 923
+
+ Track ID923
+ NameTrack 07
+ ArtistKaiser Chiefs
+ KindMPEG audio file
+ Size4086132
+ Total Time204199
+ Track Number7
+ Track Count15
+ Date Modified2012-11-22T14:15:21Z
+ Date Added2012-11-22T14:15:08Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count3
+ Play Date3489334336
+ Play Date UTC2014-07-27T23:32:16Z
+ Normalization13926
+ Persistent ID77583966E1A66E6C
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Unknown%20Album/07%20Track%2007.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 925
+
+ Track ID925
+ NameTrack 08
+ ArtistKaiser Chiefs
+ KindMPEG audio file
+ Size4934066
+ Total Time246595
+ Track Number8
+ Track Count15
+ Date Modified2012-11-22T14:15:36Z
+ Date Added2012-11-22T14:15:21Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count1
+ Play Date3460722958
+ Play Date UTC2013-08-30T19:55:58Z
+ Normalization9294
+ Persistent ID9BB34B1C0E0E80BC
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Unknown%20Album/08%20Track%2008.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 927
+
+ Track ID927
+ NameTrack 09
+ ArtistKaiser Chiefs
+ KindMPEG audio file
+ Size3297234
+ Total Time164754
+ Track Number9
+ Track Count15
+ Date Modified2012-11-22T14:15:46Z
+ Date Added2012-11-22T14:15:37Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count1
+ Play Date3460785888
+ Play Date UTC2013-08-31T13:24:48Z
+ Normalization13795
+ Persistent ID8732E9995F9EA91B
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Unknown%20Album/09%20Track%2009.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 929
+
+ Track ID929
+ NameTrack 10
+ ArtistKaiser Chiefs
+ KindMPEG audio file
+ Size6521267
+ Total Time325955
+ Track Number10
+ Track Count15
+ Date Modified2012-11-22T14:16:04Z
+ Date Added2012-11-22T14:15:47Z
+ Bit Rate160
+ Sample Rate44100
+ Skip Count1
+ Skip Date2013-10-20T22:55:43Z
+ Normalization7808
+ Persistent IDF519DCD62587AC1F
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Unknown%20Album/10%20Track%2010.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 931
+
+ Track ID931
+ NameTrack 11
+ ArtistKaiser Chiefs
+ KindMPEG audio file
+ Size4452369
+ Total Time222511
+ Track Number11
+ Track Count15
+ Date Modified2012-11-22T14:16:17Z
+ Date Added2012-11-22T14:16:05Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count2
+ Play Date3462550274
+ Play Date UTC2013-09-20T23:31:14Z
+ Normalization7028
+ Persistent IDAE939DC9EB8755BD
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Unknown%20Album/11%20Track%2011.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 933
+
+ Track ID933
+ NameTrack 12
+ ArtistKaiser Chiefs
+ KindMPEG audio file
+ Size4750688
+ Total Time237426
+ Track Number12
+ Track Count15
+ Date Modified2012-11-22T14:16:29Z
+ Date Added2012-11-22T14:16:17Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count1
+ Play Date3460791538
+ Play Date UTC2013-08-31T14:58:58Z
+ Normalization16567
+ Persistent ID9FF957DBFC527AEF
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Unknown%20Album/12%20Track%2012.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 935
+
+ Track ID935
+ NameTrack 13
+ ArtistKaiser Chiefs
+ KindMPEG audio file
+ Size5583471
+ Total Time279066
+ Track Number13
+ Track Count15
+ Date Modified2012-11-22T14:16:44Z
+ Date Added2012-11-22T14:16:30Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count1
+ Play Date3460720759
+ Play Date UTC2013-08-30T19:19:19Z
+ Skip Count1
+ Skip Date2013-10-28T12:04:24Z
+ Normalization8416
+ Persistent IDC1C230D5766DD632
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Unknown%20Album/13%20Track%2013.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 937
+
+ Track ID937
+ NameTrack 14
+ ArtistKaiser Chiefs
+ KindMPEG audio file
+ Size4373480
+ Total Time218566
+ Track Number14
+ Track Count15
+ Date Modified2012-11-22T14:16:55Z
+ Date Added2012-11-22T14:16:44Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count3
+ Play Date3465791933
+ Play Date UTC2013-10-28T11:58:53Z
+ Skip Count1
+ Skip Date2014-12-31T23:56:18Z
+ Normalization14789
+ Persistent IDD846A63E415C4D2F
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Unknown%20Album/14%20Track%2014.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 939
+
+ Track ID939
+ NameTrack 15
+ ArtistKaiser Chiefs
+ KindMPEG audio file
+ Size2946671
+ Total Time147226
+ Track Number15
+ Track Count15
+ Date Modified2012-11-22T14:17:02Z
+ Date Added2012-11-22T14:16:55Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count1
+ Play Date3489329811
+ Play Date UTC2014-07-27T22:16:51Z
+ Normalization12006
+ Persistent IDB7B1F59AB92A525F
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Unknown%20Album/15%20Track%2015.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 941
+
+ Track ID941
+ NameVoices
+ ArtistDisturbed
+ AlbumThe Sickness
+ GenreAlternative
+ KindMPEG audio file
+ Size3837495
+ Total Time191764
+ Disc Number1
+ Disc Count1
+ Track Number1
+ Track Count12
+ Year2000
+ Date Modified2012-11-22T14:19:03Z
+ Date Added2012-11-22T14:18:29Z
+ Bit Rate160
+ Sample Rate44100
+ Skip Count2
+ Skip Date2013-10-20T14:54:43Z
+ Normalization12233
+ Sort AlbumSickness
+ Persistent ID388E9367135284BD
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Disturbed/The%20Sickness/01%20Voices.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 943
+
+ Track ID943
+ NameThe Game
+ ArtistDisturbed
+ AlbumThe Sickness
+ GenreAlternative
+ KindMPEG audio file
+ Size4544893
+ Total Time227134
+ Disc Number1
+ Disc Count1
+ Track Number2
+ Track Count12
+ Year2000
+ Date Modified2012-11-22T14:19:42Z
+ Date Added2012-11-22T14:19:05Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count1
+ Play Date3455531095
+ Play Date UTC2013-07-01T17:44:55Z
+ Skip Count4
+ Skip Date2013-10-20T14:54:46Z
+ Normalization9507
+ Sort AlbumSickness
+ Sort NameGame
+ Persistent IDDFB4111A1E57C372
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Disturbed/The%20Sickness/02%20The%20Game.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 945
+
+ Track ID945
+ NameStupify
+ ArtistDisturbed
+ AlbumThe Sickness
+ GenreAlternative
+ KindMPEG audio file
+ Size5486867
+ Total Time274233
+ Disc Number1
+ Disc Count1
+ Track Number3
+ Track Count12
+ Year2000
+ Date Modified2012-11-22T14:20:26Z
+ Date Added2012-11-22T14:19:45Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count1
+ Play Date3459352283
+ Play Date UTC2013-08-14T23:11:23Z
+ Normalization9925
+ Sort AlbumSickness
+ Persistent ID55ED76DA2BFF6624
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Disturbed/The%20Sickness/03%20Stupify.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 947
+
+ Track ID947
+ NameDown With The Sickness
+ ArtistDisturbed
+ AlbumThe Sickness
+ GenreAlternative
+ KindMPEG audio file
+ Size5576744
+ Total Time278726
+ Disc Number1
+ Disc Count1
+ Track Number4
+ Track Count12
+ Year2002
+ Date Modified2012-11-22T14:21:06Z
+ Date Added2012-11-22T14:20:27Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count1
+ Play Date3489335273
+ Play Date UTC2014-07-27T23:47:53Z
+ Skip Count4
+ Skip Date2013-09-21T16:02:49Z
+ Normalization12485
+ Sort AlbumSickness
+ Persistent ID7AF372EDA349F0B8
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Disturbed/The%20Sickness/04%20Down%20With%20The%20Sickness.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 949
+
+ Track ID949
+ NameViolence Fetish
+ ArtistDisturbed
+ AlbumThe Sickness
+ GenreAlternative
+ KindMPEG audio file
+ Size4078875
+ Total Time203833
+ Disc Number1
+ Disc Count1
+ Track Number5
+ Track Count12
+ Year2000
+ Date Modified2012-11-22T14:21:33Z
+ Date Added2012-11-22T14:21:07Z
+ Bit Rate160
+ Sample Rate44100
+ Normalization12486
+ Sort AlbumSickness
+ Persistent ID165FEE20C2AC00BC
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Disturbed/The%20Sickness/05%20Violence%20Fetish.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 951
+
+ Track ID951
+ NameFear
+ ArtistDisturbed
+ AlbumThe Sickness
+ GenreAlternative
+ KindMPEG audio file
+ Size4542277
+ Total Time227004
+ Disc Number1
+ Disc Count1
+ Track Number6
+ Track Count12
+ Year2000
+ Date Modified2012-11-22T14:22:02Z
+ Date Added2012-11-22T14:21:35Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count4
+ Play Date3503058242
+ Play Date UTC2015-01-02T20:44:02Z
+ Skip Count3
+ Skip Date2015-01-02T20:40:13Z
+ Normalization13959
+ Sort AlbumSickness
+ Persistent ID3C1381CEB227AC81
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Disturbed/The%20Sickness/06%20Fear.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 953
+
+ Track ID953
+ NameNumb
+ ArtistDisturbed
+ AlbumThe Sickness
+ GenreAlternative
+ KindMPEG audio file
+ Size4501003
+ Total Time224940
+ Disc Number1
+ Disc Count1
+ Track Number7
+ Track Count12
+ Year2000
+ Date Modified2012-11-22T14:22:30Z
+ Date Added2012-11-22T14:22:04Z
+ Bit Rate160
+ Sample Rate44100
+ Normalization11924
+ Sort AlbumSickness
+ Persistent IDC62901EAC7D4458B
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Disturbed/The%20Sickness/07%20Numb.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 955
+
+ Track ID955
+ NameWant
+ ArtistDisturbed
+ AlbumThe Sickness
+ GenreAlternative
+ KindMPEG audio file
+ Size4658260
+ Total Time232803
+ Disc Number1
+ Disc Count1
+ Track Number8
+ Track Count12
+ Year2000
+ Date Modified2012-11-22T14:22:57Z
+ Date Added2012-11-22T14:22:32Z
+ Bit Rate160
+ Sample Rate44100
+ Skip Count1
+ Skip Date2015-01-02T17:24:40Z
+ Normalization9280
+ Sort AlbumSickness
+ Persistent ID9824EDCAF7E7DABC
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Disturbed/The%20Sickness/08%20Want.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 957
+
+ Track ID957
+ NameConflict
+ ArtistDisturbed
+ AlbumThe Sickness
+ GenreAlternative
+ KindMPEG audio file
+ Size5508811
+ Total Time275330
+ Disc Number1
+ Disc Count1
+ Track Number9
+ Track Count12
+ Year2000
+ Date Modified2012-11-22T14:23:28Z
+ Date Added2012-11-22T14:22:59Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count5
+ Play Date3455512053
+ Play Date UTC2013-07-01T12:27:33Z
+ Skip Count4
+ Skip Date2013-08-31T14:42:27Z
+ Normalization6411
+ Sort AlbumSickness
+ Persistent IDF2424180800EC631
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Disturbed/The%20Sickness/09%20Conflict.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 959
+
+ Track ID959
+ NameShout 2000
+ ArtistDisturbed
+ AlbumThe Sickness
+ GenreAlternative
+ KindMPEG audio file
+ Size5158251
+ Total Time257802
+ Disc Number1
+ Disc Count1
+ Track Number10
+ Track Count12
+ Year2000
+ Date Modified2012-11-22T14:23:56Z
+ Date Added2012-11-22T14:23:29Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count1
+ Play Date3489337563
+ Play Date UTC2014-07-28T00:26:03Z
+ Normalization9017
+ Sort AlbumSickness
+ Persistent ID4950B0350327DA5F
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Disturbed/The%20Sickness/10%20Shout%202000.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 961
+
+ Track ID961
+ NameDroppin' Plates
+ ArtistDisturbed
+ AlbumThe Sickness
+ GenreAlternative
+ KindMPEG audio file
+ Size4588264
+ Total Time229302
+ Disc Number1
+ Disc Count1
+ Track Number11
+ Track Count12
+ Year2000
+ Date Modified2012-11-22T14:24:19Z
+ Date Added2012-11-22T14:23:57Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count4
+ Play Date3462558129
+ Play Date UTC2013-09-21T01:42:09Z
+ Skip Count4
+ Skip Date2013-10-01T12:51:51Z
+ Normalization10727
+ Sort AlbumSickness
+ Persistent IDCF835D7A86A33ACD
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Disturbed/The%20Sickness/11%20Droppin'%20Plates.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 963
+
+ Track ID963
+ NameMeaning Of Life
+ ArtistDisturbed
+ AlbumThe Sickness
+ GenreAlternative
+ KindMPEG audio file
+ Size4854191
+ Total Time242599
+ Disc Number1
+ Disc Count1
+ Track Number12
+ Track Count12
+ Year2000
+ Date Modified2012-11-22T14:24:44Z
+ Date Added2012-11-22T14:24:21Z
+ Bit Rate160
+ Sample Rate44100
+ Play Count3
+ Play Date3514730216
+ Play Date UTC2015-05-17T21:56:56Z
+ Skip Count3
+ Skip Date2015-01-02T20:32:32Z
+ Normalization9509
+ Sort AlbumSickness
+ Persistent ID0243D082FE465BE4
+ Track TypeFile
+ File Type1297106739
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Disturbed/The%20Sickness/12%20Meaning%20Of%20Life.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 969
+
+ Track ID969
+ Nameedu2020
+ Album Artistcsev
+ Composercsev
+ KindMPEG-4 video file
+ Size131553994
+ Total Time805680
+ Date Modified2013-06-24T18:27:59Z
+ Date Added2013-06-24T18:28:00Z
+ Bit Rate113
+ Artwork Count1
+ Persistent ID3A537CB4F308FE01
+ Track TypeFile
+ Has Video
+ HD
+ Video Width640
+ Video Height480
+ File Type1295275552
+ Locationfile://localhost/Users/csev/Movies/Final%20Cut%20Projects/edu2020/Shared%20Items/edu2020%20(854%20x%20480).m4v
+ File Folder Count5
+ Library Folder Count3
+
+ 975
+
+ Track ID975
+ NamePY4INF-01-Intro.mp3
+ ArtistRecording by Dr. Chuck
+ Composerwww.dr-chuck.com
+ AlbumPython for Informatics's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size27428698
+ Total Time3428075
+ Year2013
+ BPM120
+ Date Modified2013-09-19T01:05:22Z
+ Date Added2013-09-19T01:05:22Z
+ Bit Rate64
+ Sample Rate44100
+ Play Count1
+ Play Date3478279267
+ Play Date UTC2014-03-22T00:41:07Z
+ Release Date2013-09-18T01:04:00Z
+ Normalization1219
+ Persistent IDF1E78679D13EA1CA
+ Track TypeFile
+ Podcast
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-01-Intro.mp3.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 979
+
+ Track ID979
+ Nameted_03
+ KindMPEG-4 video file
+ Size92225345
+ Total Time745700
+ Date Modified2013-10-28T23:23:11Z
+ Date Added2013-10-28T23:41:18Z
+ Bit Rate102
+ Play Count1
+ Play Date3465826205
+ Play Date UTC2013-10-28T21:30:05Z
+ Artwork Count1
+ Persistent ID3D2626D371D964A7
+ Track TypeFile
+ Has Video
+ HD
+ Video Width700
+ Video Height520
+ Locationfile://localhost/Users/csev/Desktop/Ted_Talk/ted_03.mp4
+ File Folder Count3
+ Library Folder Count3
+
+ 981
+
+ Track ID981
+ NamePomp and Circumstance Marches No. 1
+ ArtistEdward Elgar
+ KindMPEG audio file
+ Size1811545
+ Total Time113214
+ Date Modified2013-07-29T19:37:16Z
+ Date Added2013-10-29T02:18:15Z
+ Bit Rate128
+ Sample Rate22050
+ Persistent ID45FF8770212BC170
+ Track TypeFile
+ Locationfile://localhost/Volumes/2012-09-3TB-02/Final_Cut_Events/2013-07-IHTS-Graduation/Original%20Media/Pomp_and_circumstances_No._1.mp3
+ File Folder Count-1
+ Library Folder Count-1
+
+ 985
+
+ Track ID985
+ NameEben Upton: Raspberry Pi
+ ArtistIEEE Computer Society
+ Composerwww.dr-chuck.com
+ AlbumComputing Conversations
+ GenrePodcast
+ KindMPEG audio file
+ Size5297597
+ Total Time661368
+ Year2013
+ BPM120
+ Date Modified2013-10-30T19:16:08Z
+ Date Added2013-10-30T19:16:08Z
+ Bit Rate64
+ Sample Rate44100
+ Play Count2
+ Play Date3473250339
+ Play Date UTC2014-01-22T20:45:39Z
+ Release Date2013-10-09T16:41:01Z
+ Normalization1226
+ Persistent ID1F6783087E9632C0
+ Track TypeFile
+ Podcast
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/Eben%20Upton_%20Raspberry%20Pi.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 987
+
+ Track ID987
+ NameAndrew Tanenbaum: Writing the Book on Networks
+ ArtistIEEE Computer Society
+ ComposerIEEE Computer Society
+ AlbumComputing Conversations
+ GenrePodcast
+ KindMPEG audio file
+ Size4694648
+ Total Time535040
+ Track Number23
+ Year2013
+ Date Modified2013-12-10T14:28:01Z
+ Date Added2013-12-10T14:28:01Z
+ Bit Rate64
+ Sample Rate44100
+ CommentsAuthor Charles Severance provides an audio recording of his Computing Conversations column, in which he discusses his interview with Andrew Tanenbaum about how he came to write one of the key books in the computer science field.
+ Play Count4
+ Play Date3473251834
+ Play Date UTC2014-01-22T21:10:34Z
+ Release Date2013-12-05T16:41:01Z
+ Normalization1220
+ Artwork Count1
+ Persistent ID6E218AB3EEC3E3DA
+ Track TypeFile
+ Podcast
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/23%20Andrew%20Tanenbaum_%20Writing%20the%20Book%20on%20Networks.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 989
+
+ Track ID989
+ NameMassimo Banzi: Building Arduino
+ ArtistIEEE Computer Society
+ AlbumComputing Conversations
+ GenrePodcast
+ KindMPEG audio file
+ Size4664244
+ Total Time567745
+ Track Number25
+ Year2013
+ Date Modified2013-12-30T12:31:12Z
+ Date Added2013-12-30T12:31:12Z
+ Bit Rate64
+ Sample Rate44100
+ CommentsAuthor Charles Severance interviews Massimo Banzi about the origins and evolution of the Arduino microcontroller.
+ Play Count1
+ Play Date3472068695
+ Play Date UTC2014-01-09T04:31:35Z
+ Release Date2013-12-26T16:41:01Z
+ Normalization1242
+ Artwork Count1
+ Persistent IDF2841F3ED97D8344
+ Track TypeFile
+ Podcast
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/25%20Massimo%20Banzi_%20Building%20Arduino.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 993
+
+ Track ID993
+ NamePY4INF-04-Functions.mp3
+ ArtistRecording by Dr. Chuck
+ Composerwww.dr-chuck.com
+ AlbumPython for Informatics's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size13474503
+ Total Time1683800
+ Year2013
+ BPM120
+ Date Modified2014-01-21T12:02:20Z
+ Date Added2014-01-21T12:00:58Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2013-09-18T00:57:00Z
+ Normalization1204
+ Persistent ID310E6C20ACED8C82
+ Track TypeFile
+ Podcast
+ Unplayed
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-04-Functions.mp3.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 995
+
+ Track ID995
+ NamePY4INF-02-Expressions.mp3
+ ArtistRecording by Dr. Chuck
+ Composerwww.dr-chuck.com
+ AlbumPython for Informatics's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size20631428
+ Total Time2578416
+ Year2013
+ BPM120
+ Date Modified2014-01-21T12:02:49Z
+ Date Added2014-01-21T12:00:58Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2013-09-18T01:03:00Z
+ Normalization1245
+ Persistent ID4767561A00D1C40D
+ Track TypeFile
+ Podcast
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-02-Expressions.mp3.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 997
+
+ Track ID997
+ NamePY4INF-03-Conditional.mp3
+ ArtistRecording by Dr. Chuck
+ Composerwww.dr-chuck.com
+ AlbumPython for Informatics's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size18372567
+ Total Time2296058
+ Year2013
+ BPM120
+ Date Modified2014-01-21T12:02:53Z
+ Date Added2014-01-21T12:00:58Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2013-09-18T01:00:00Z
+ Normalization1338
+ Persistent ID4767561A00D1C40E
+ Track TypeFile
+ Podcast
+ Unplayed
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-03-Conditional.mp3.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 999
+
+ Track ID999
+ NamePY4INF-05-Iterations.mp3
+ ArtistRecording by Dr. Chuck
+ Composerwww.dr-chuck.com
+ AlbumPython for Informatics's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size22438474
+ Total Time2804297
+ Year2013
+ BPM120
+ Date Modified2014-01-21T12:02:25Z
+ Date Added2014-01-21T12:00:58Z
+ Bit Rate64
+ Sample Rate44100
+ Play Count1
+ Play Date3493779457
+ Play Date UTC2014-09-17T10:17:37Z
+ Release Date2013-09-18T00:51:00Z
+ Normalization1275
+ Persistent ID3E357E3D0B7033FA
+ Track TypeFile
+ Podcast
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-05-Iterations.mp3.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1001
+
+ Track ID1001
+ NamePY4INF-06-Strings.mp3
+ ArtistRecording by Dr. Chuck
+ Composerwww.dr-chuck.com
+ AlbumPython for Informatics's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size13426856
+ Total Time1677844
+ Year2013
+ BPM120
+ Date Modified2014-01-21T12:02:29Z
+ Date Added2014-01-21T12:00:58Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2013-09-18T00:47:00Z
+ Normalization1236
+ Persistent ID2E78073036022C57
+ Track TypeFile
+ Podcast
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-06-Strings.mp3.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1003
+
+ Track ID1003
+ NamePY4INF-07-Files.mp3
+ ArtistRecording by Dr. Chuck
+ Composerwww.dr-chuck.com
+ AlbumPython for Informatics's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size11833805
+ Total Time1478713
+ Year2013
+ BPM120
+ Date Modified2014-01-21T12:02:51Z
+ Date Added2014-01-21T12:00:58Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2013-09-18T00:44:00Z
+ Normalization1194
+ Persistent ID2E78073036022C58
+ Track TypeFile
+ Podcast
+ Unplayed
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-07-Files.mp3.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1005
+
+ Track ID1005
+ NamePY4INF-08-Lists.mp3
+ ArtistRecording by Dr. Chuck
+ Composerwww.dr-chuck.com
+ AlbumPython for Informatics's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size13093952
+ Total Time1636231
+ Year2013
+ BPM120
+ Date Modified2014-01-21T12:02:33Z
+ Date Added2014-01-21T12:00:58Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2013-09-18T00:40:00Z
+ Normalization1322
+ Persistent ID2E78073036022C59
+ Track TypeFile
+ Podcast
+ Unplayed
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-08-Lists.mp3.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1007
+
+ Track ID1007
+ NamePY4INF-09-Dictionaries.mp3
+ ArtistRecording by Dr. Chuck
+ Composerwww.dr-chuck.com
+ AlbumPython for Informatics's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size18039663
+ Total Time2254445
+ Year2013
+ BPM120
+ Date Modified2014-01-21T12:02:36Z
+ Date Added2014-01-21T12:00:58Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2013-09-18T00:36:00Z
+ Normalization1221
+ Persistent ID1BC9BE00CF9EEA8C
+ Track TypeFile
+ Podcast
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-09-Dictionaries.mp3.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1009
+
+ Track ID1009
+ NamePY4INF-10-Tuples.mp3
+ ArtistRecording by Dr. Chuck
+ Composerwww.dr-chuck.com
+ AlbumPython for Informatics's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size12784871
+ Total Time1597596
+ Year2013
+ BPM120
+ Date Modified2014-01-21T12:02:21Z
+ Date Added2014-01-21T12:00:58Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2013-09-18T00:33:00Z
+ Normalization1227
+ Persistent ID1BC9BE00CF9EEA8D
+ Track TypeFile
+ Podcast
+ Unplayed
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-10-Tuples.mp3.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1011
+
+ Track ID1011
+ NamePY4INF-11-Regex.mp3
+ ArtistRecording by Dr. Chuck
+ Composerwww.dr-chuck.com
+ AlbumPython for Informatics's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size16993720
+ Total Time2123702
+ Year2013
+ BPM120
+ Date Modified2014-01-21T12:02:40Z
+ Date Added2014-01-21T12:00:58Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2013-09-18T00:28:00Z
+ Normalization1225
+ Persistent ID1BC9BE00CF9EEA8E
+ Track TypeFile
+ Podcast
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-11-Regex.mp3.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1013
+
+ Track ID1013
+ NameJohn C. Hollar: History of Computing
+ ArtistIEEE Computer Society
+ Composerwww.dr-chuck.com
+ AlbumComputing Conversations
+ GenrePodcast
+ KindMPEG audio file
+ Size5563923
+ Total Time694073
+ Year2013
+ BPM120
+ Date Modified2014-01-21T12:02:40Z
+ Date Added2014-01-21T12:00:58Z
+ Bit Rate64
+ Sample Rate44100
+ Play Count1
+ Play Date3473249670
+ Play Date UTC2014-01-22T20:34:30Z
+ Release Date2013-08-30T16:41:01Z
+ Normalization1221
+ Persistent ID6940CC0AFBC026D1
+ Track TypeFile
+ Podcast
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/John%20C.%20Hollar_%20History%20of%20Computing.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1015
+
+ Track ID1015
+ NameBob Metcalfe: Ethernet at Forty
+ ArtistIEEE Computer Society
+ Composerwww.dr-chuck.com
+ AlbumComputing Conversations
+ GenrePodcast
+ KindMPEG audio file
+ Size8255238
+ Total Time1031392
+ Year2013
+ BPM120
+ Date Modified2014-01-21T12:02:46Z
+ Date Added2014-01-21T12:00:58Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2013-05-02T16:41:01Z
+ Normalization925
+ Persistent ID37FD8B2D955DE218
+ Track TypeFile
+ Podcast
+ Unplayed
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/Bob%20Metcalfe_%20Ethernet%20at%20Forty.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1017
+
+ Track ID1017
+ NameGordon Bell: Building Blocks of Computing
+ ArtistIEEE Computer Society
+ AlbumComputing Conversations
+ GenrePodcast
+ KindMPEG audio file
+ Size17853387
+ Total Time744620
+ Date Modified2014-01-21T12:02:43Z
+ Date Added2014-01-21T12:00:58Z
+ Bit Rate192
+ Sample Rate44100
+ Play Count1
+ Play Date3473247179
+ Play Date UTC2014-01-22T19:52:59Z
+ Release Date2013-06-11T16:41:01Z
+ Persistent ID5541983A9859581E
+ Track TypeFile
+ Podcast
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/Gordon%20Bell_%20Building%20Blocks%20of%20Computing.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1019
+
+ Track ID1019
+ NameIan Horrocks: Standardizing OWL
+ ArtistIEEE Computer Society
+ Composerwww.dr-chuck.com
+ AlbumComputing Conversations
+ GenrePodcast
+ KindMPEG audio file
+ Size4584359
+ Total Time572212
+ Year2013
+ BPM120
+ Date Modified2014-01-21T12:02:23Z
+ Date Added2014-01-21T12:00:58Z
+ Bit Rate64
+ Sample Rate44100
+ Play Count1
+ Play Date3473250919
+ Play Date UTC2014-01-22T20:55:19Z
+ Release Date2013-10-28T16:41:01Z
+ Normalization1249
+ Persistent ID6940CC0AFBC026D0
+ Track TypeFile
+ Podcast
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/Ian%20Horrocks_%20Standardizing%20OWL.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1021
+
+ Track ID1021
+ NameKatie Hafner: The Origins of the Internet
+ ArtistIEEE Computer Society
+ Composerwww.dr-chuck.com
+ AlbumComputing Conversations
+ GenrePodcast
+ KindMPEG audio file
+ Size5235635
+ Total Time652460
+ Year2013
+ BPM120
+ Date Modified2014-01-21T12:02:30Z
+ Date Added2014-01-21T12:00:58Z
+ Bit Rate64
+ Sample Rate44100
+ Play Count1
+ Play Date3473247844
+ Play Date UTC2014-01-22T20:04:04Z
+ Release Date2013-07-03T16:41:01Z
+ Normalization1019
+ Persistent ID2BCE5A289A2FA257
+ Track TypeFile
+ Podcast
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/Katie%20Hafner_%20The%20Origins%20of%20the%20Internet.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1023
+
+ Track ID1023
+ NameLarry Smarr: Building Mosaic
+ ArtistIEEE Computer Society
+ Composerwww.dr-chuck.com
+ AlbumComputing Conversations
+ GenrePodcast
+ KindMPEG audio file
+ Size7161648
+ Total Time894693
+ Year2013
+ BPM120
+ Date Modified2014-01-21T12:02:31Z
+ Date Added2014-01-21T12:00:58Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2013-04-11T16:41:01Z
+ Normalization1259
+ Persistent ID37FD8B2D955DE219
+ Track TypeFile
+ Podcast
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/Larry%20Smarr_%20Building%20Mosaic.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1025
+
+ Track ID1025
+ NameLen Kleinrock: The Theory of Packets
+ ArtistIEEE Computer Society
+ Composerwww.dr-chuck.com
+ AlbumComputing Conversations
+ GenrePodcast
+ KindMPEG audio file
+ Size5404595
+ Total Time674742
+ Year2013
+ BPM120
+ Date Modified2014-01-21T12:02:45Z
+ Date Added2014-01-21T12:00:58Z
+ Bit Rate64
+ Sample Rate44100
+ Play Count1
+ Play Date3473248521
+ Play Date UTC2014-01-22T20:15:21Z
+ Release Date2013-08-01T16:41:01Z
+ Normalization840
+ Persistent ID2BCE5A289A2FA256
+ Track TypeFile
+ Podcast
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/Len%20Kleinrock_%20The%20Theory%20of%20Packets.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1027
+
+ Track ID1027
+ NameMitchell Baker: The Mozilla Foundation
+ ArtistIEEE Computer Society
+ Composerwww.dr-chuck.com
+ AlbumComputing Conversations
+ GenrePodcast
+ KindMPEG audio file
+ Size7958069
+ Total Time994246
+ Year2013
+ BPM120
+ Date Modified2014-01-21T12:02:37Z
+ Date Added2014-01-21T12:00:58Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2013-02-04T16:41:01Z
+ Normalization1246
+ Persistent ID41C7959271984BC3
+ Track TypeFile
+ Podcast
+ Unplayed
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/Mitchell%20Baker_%20The%20Mozilla%20Foundation.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1029
+
+ Track ID1029
+ NamePooja Sankar: Building the Piazza Collaboration System
+ ArtistIEEE Computer Society
+ Composerwww.dr-chuck.com
+ AlbumComputing Conversations
+ GenrePodcast
+ KindMPEG audio file
+ Size3977775
+ Total Time496404
+ Year2013
+ BPM120
+ Date Modified2014-01-21T12:02:20Z
+ Date Added2014-01-21T12:00:58Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2013-03-07T16:41:01Z
+ Normalization1240
+ Persistent ID41C7959271984BC2
+ Track TypeFile
+ Podcast
+ Unplayed
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/Pooja%20Sankar_%20Building%20the%20Piazza%20Collaboration%20System.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1031
+
+ Track ID1031
+ NameVan Jacobson: Content-Centric Networking
+ ArtistIEEE Computer Society
+ Composerwww.dr-chuck.com
+ AlbumComputing Conversations
+ GenrePodcast
+ KindMPEG audio file
+ Size6246108
+ Total Time780251
+ Year2012
+ BPM120
+ Date Modified2014-01-21T12:02:34Z
+ Date Added2014-01-21T12:00:58Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2013-01-28T16:41:01Z
+ Normalization1219
+ Persistent ID41C7959271984BC4
+ Track TypeFile
+ Podcast
+ Unplayed
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/Van%20Jacobson_%20Content-Centric%20Networking.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1033
+
+ Track ID1033
+ NameThe Apache Software Foundation
+ ArtistIEEE Computer Society
+ Composerwww.dr-chuck.com
+ AlbumComputing Conversations
+ GenrePodcast
+ KindMPEG audio file
+ Size4343976
+ Total Time542484
+ Year2012
+ BPM120
+ Date Modified2014-01-21T12:02:19Z
+ Date Added2014-01-21T12:00:58Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2012-10-26T16:41:01Z
+ Normalization1210
+ Sort NameApache Software Foundation
+ Persistent ID22246A353E3A9DB6
+ Track TypeFile
+ Podcast
+ Unplayed
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/The%20Apache%20Software%20Foundation.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1035
+
+ Track ID1035
+ NameA Brief History of Packets
+ ArtistIEEE Computer Society
+ Composerwww.dr-chuck.com
+ AlbumComputing Conversations
+ GenrePodcast
+ KindMPEG audio file
+ Size8041243
+ Total Time1004643
+ Year2012
+ BPM120
+ Date Modified2014-01-21T12:02:27Z
+ Date Added2014-01-21T12:00:58Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2013-01-25T16:41:01Z
+ Normalization1259
+ Sort NameBrief History of Packets
+ Persistent ID46A3064562F73143
+ Track TypeFile
+ Podcast
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/A%20Brief%20History%20of%20Packets.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1037
+
+ Track ID1037
+ NameDiscovering JavaScript Object Notation
+ ArtistIEEE Computer Society
+ Composerwww.dr-chuck.com
+ AlbumComputing Conversations
+ GenrePodcast
+ KindMPEG audio file
+ Size5211868
+ Total Time650971
+ Year2012
+ BPM120
+ Date Modified2014-01-21T12:02:43Z
+ Date Added2014-01-21T12:00:58Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2012-03-29T16:41:01Z
+ Normalization1237
+ Persistent ID4F725C997CF65057
+ Track TypeFile
+ Podcast
+ Unplayed
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/Discovering%20JavaScript%20Object%20Notation.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1039
+
+ Track ID1039
+ NameInventing PHP
+ ArtistIEEE Computer Society
+ Composerwww.dr-chuck.com
+ AlbumComputing Conversations
+ GenrePodcast
+ KindMPEG audio file
+ Size3963424
+ Total Time494915
+ Year2012
+ BPM120
+ Date Modified2014-01-21T12:02:51Z
+ Date Added2014-01-21T12:00:58Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2013-01-01T16:41:01Z
+ Normalization1246
+ Persistent ID46A3064562F73144
+ Track TypeFile
+ Podcast
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/Inventing%20PHP.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1041
+
+ Track ID1041
+ NameMonash Museum of Computing History
+ ArtistIEEE Computer Society
+ Composerwww.dr-chuck.com
+ AlbumComputing Conversations
+ GenrePodcast
+ KindMPEG audio file
+ Size2905360
+ Total Time362657
+ Year2012
+ BPM120
+ Date Modified2014-01-21T12:02:27Z
+ Date Added2014-01-21T12:00:58Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2012-02-29T16:41:01Z
+ Normalization1226
+ Persistent ID4F725C997CF65058
+ Track TypeFile
+ Podcast
+ Unplayed
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/Monash%20Museum%20of%20Computing%20History.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1043
+
+ Track ID1043
+ NameThe Rise of JavaScript
+ ArtistIEEE Computer Society
+ Composerwww.dr-chuck.com
+ AlbumComputing Conversations
+ GenrePodcast
+ KindMPEG audio file
+ Size4213155
+ Total Time526132
+ Year2012
+ BPM120
+ Date Modified2014-01-21T12:02:44Z
+ Date Added2014-01-21T12:00:58Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2012-02-02T16:41:01Z
+ Normalization1239
+ Sort NameRise of JavaScript
+ Persistent ID09EA490CF8DB8906
+ Track TypeFile
+ Podcast
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/The%20Rise%20of%20JavaScript.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1045
+
+ Track ID1045
+ Namelo_and_behold_audio
+ KindAIFF audio file
+ Size6380550
+ Total Time33116
+ Date Modified2014-02-01T18:48:47Z
+ Date Added2014-02-01T18:48:59Z
+ Bit Rate1536
+ Sample Rate48000
+ Persistent IDC1633CED6E1BE0E3
+ Track TypeFile
+ Locationfile://localhost/Users/csev/Downloads/lo_and_behold_audio.aif
+ File Folder Count2
+ Library Folder Count3
+
+ 1049
+
+ Track ID1049
+ Name1996-02-tci07
+ KindMPEG-4 video file
+ Size757506768
+ Total Time3600096
+ Date Modified2014-02-16T19:30:31Z
+ Date Added2014-02-16T19:30:34Z
+ Bit Rate125
+ Artwork Count1
+ Season1
+ Episode Order1
+ Persistent IDBE1A5B3835536BFC
+ Track TypeFile
+ Has Video
+ HD
+ Video Width720
+ Video Height540
+ Movie
+ Locationfile://localhost/Users/csev/Desktop/1996-02-tci07.mp4
+ File Folder Count2
+ Library Folder Count3
+
+ 1051
+
+ Track ID1051
+ NameJoseph Hardin: NCSA Mosaic
+ ArtistIEEE Computer Society
+ Composerwww.dr-chuck.com
+ AlbumComputing Conversations
+ GenrePodcast
+ KindMPEG audio file
+ Size6771745
+ Total Time845635
+ Year2014
+ BPM120
+ Date Modified2014-02-23T01:31:07Z
+ Date Added2014-02-23T01:31:07Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2014-01-24T16:41:01Z
+ Normalization1236
+ Persistent ID2CC979F35F50460A
+ Track TypeFile
+ Podcast
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/Joseph%20Hardin_%20NCSA%20Mosaic.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1053
+
+ Track ID1053
+ NameLen Kleinrock on the Internet's First Two Packets
+ ArtistIEEE Computer Society
+ Composerwww.dr-chuck.com
+ AlbumComputing Conversations
+ GenrePodcast
+ KindMPEG audio file
+ Size9518455
+ Total Time594390
+ Year2014
+ Date Modified2014-03-01T14:05:28Z
+ Date Added2014-03-01T14:05:28Z
+ Bit Rate128
+ Sample Rate44100
+ Play Count1
+ Play Date3477964201
+ Play Date UTC2014-03-18T09:10:01Z
+ Release Date2014-02-27T19:18:50Z
+ Persistent ID2A34A05BB7658C62
+ Track TypeFile
+ Podcast
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/Len%20Kleinrock%20on%20the%20Internet_s%20First%20Two%20Packets.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1059
+
+ Track ID1059
+ NameSPOOKTAKULA INSTRUMENTAL
+ KindWAV audio file
+ Size25507424
+ Total Time144599
+ Date Modified2005-04-01T00:45:28Z
+ Date Added2014-03-19T20:47:01Z
+ Bit Rate1411
+ Sample Rate44100
+ Persistent IDBBBB8369D8720604
+ Track TypeFile
+ Locationfile://localhost/Users/csev/Desktop/SPOOKTAKULA/SPOOKTAKULA%20INSTRUMENTAL.wav
+ File Folder Count3
+ Library Folder Count3
+
+ 1061
+
+ Track ID1061
+ NamePomp and Circumstance Marches No. 1
+ ArtistEdward Elgar
+ KindMPEG audio file
+ Size1811545
+ Total Time113214
+ Date Modified2013-07-29T19:37:16Z
+ Date Added2014-03-23T18:39:15Z
+ Bit Rate128
+ Sample Rate22050
+ Play Count1
+ Play Date3478430463
+ Play Date UTC2014-03-23T18:41:03Z
+ Persistent IDFA5947D141B87C20
+ Track TypeFile
+ Locationfile://localhost/Users/csev/Desktop/Ted_Talk/Pomp_and_circumstances_No._1.mp3
+ File Folder Count3
+ Library Folder Count3
+
+ 1065
+
+ Track ID1065
+ NameDoug Van Houweling on Building the NSFNet
+ ArtistIEEE Computer Society
+ AlbumComputing Conversations
+ GenrePodcast
+ KindMPEG audio file
+ Size12349489
+ Total Time773146
+ Year2014
+ Date Modified2014-04-01T19:07:32Z
+ Date Added2014-04-01T19:07:32Z
+ Bit Rate128
+ Sample Rate44100
+ CommentsAuthor Charles Severance provides an audio recording of his Computing Conversations column, in which he discusses his interview with Doug Van Houweling about how the NSFNet went from connecting a few supercomputers to becoming the Internet.
+ Release Date2014-03-28T21:48:19Z
+ Persistent IDE7A71BF22B44AD36
+ Track TypeFile
+ Podcast
+ Unplayed
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/Doug%20Van%20Houweling%20on%20Building%20the%20NSFNet.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1067
+
+ Track ID1067
+ NameComputing Conversations: Nathaniel Borenstein on MIME
+ ArtistIEEE Computer Society
+ AlbumComputing Conversations
+ GenrePodcast
+ KindMPEG audio file
+ Size10921598
+ Total Time682135
+ Track Number29
+ Year2014
+ Date Modified2014-05-01T20:02:46Z
+ Date Added2014-05-01T20:02:46Z
+ Bit Rate128
+ Sample Rate44100
+ CommentsAuthor Charles Severance provides an audio recording of his Computing Conversations column, in which he discusses his interview with Nathaniel Borenstein about how email evolved from plaintext to multimedia. Subscribe to the Computing Conversations podcas
+ Release Date2014-04-29T20:40:33Z
+ Persistent ID89C402EDE24BDE0B
+ Track TypeFile
+ Podcast
+ Unplayed
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/29%20Computing%20Conversations_%20Nathaniel%20Borenstein%20on%20MIME.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1071
+
+ Track ID1071
+ NameYou Don't Mess Around With Jim
+ ArtistJim Croce
+ Album ArtistJim Croce
+ ComposerJim Croce
+ AlbumClassic Hits
+ GenreFolk
+ KindMPEG audio file
+ Size7400073
+ Total Time184398
+ Track Number1
+ Year2004
+ Date Modified2014-05-27T22:27:40Z
+ Date Added2014-05-27T22:28:03Z
+ Bit Rate320
+ Sample Rate44100
+ Comments 000005A9 000006AA 00001C77 00001D3A 000138C5 00015FA7 00005F83 000067A1 000138C5 00015FA7
+ Normalization1747
+ Artwork Count1
+ Persistent ID7C7A96684196636B
+ Track TypeFile
+ Locationfile://localhost/Users/csev/Downloads/tumblr_m88hv5jmry1r8l80fo1.mp3
+ File Folder Count2
+ Library Folder Count3
+
+ 1073
+
+ Track ID1073
+ NameAndrew S. Tanenbaum on MINIX
+ ArtistIEEE Computer Society
+ AlbumComputing Conversations
+ GenrePodcast
+ KindMPEG audio stream
+ Size9666560
+ Total Time603000
+ Date Added2014-07-05T13:38:34Z
+ Release Date2014-07-02T23:27:35Z
+ Persistent IDDC6923BFD366B289
+ Track TypeURL
+ Podcast
+ Unplayed
+ Locationhttp://media.computer.org/sponsored/podcast/computingconversations/conversations-0030.mp3
+
+ 1075
+
+ Track ID1075
+ NameComputing Conversations: Elizabeth Fong on SQL Standards
+ ArtistIEEE Computer Society
+ Album ArtistCharles Severance
+ AlbumComputing Conversations
+ GenrePodcast
+ KindMPEG audio file
+ Size8541331
+ Total Time533577
+ Track Number31
+ Year2014
+ Date Modified2014-07-29T01:19:55Z
+ Date Added2014-07-29T04:19:55Z
+ Bit Rate128
+ Sample Rate44100
+ Release Date2014-07-28T16:28:32Z
+ Persistent ID1629CE9F85E22EC6
+ Track TypeFile
+ Podcast
+ Unplayed
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/31%20Computing%20Conversations_%20Elizabeth%20Fong%20on%20SQL%20Standards.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1077
+
+ Track ID1077
+ NameNii Quaynor on Bringing the Internet to Africa
+ ArtistIEEE Computer Society
+ Album ArtistCharles Severance
+ AlbumComputing Conversations
+ GenrePodcast
+ KindMPEG audio file
+ Size10777413
+ Total Time673332
+ Track Number32
+ Year2014
+ Date Modified2014-09-07T23:10:45Z
+ Date Added2014-09-07T23:10:45Z
+ Bit Rate128
+ Sample Rate44100
+ CommentsAuthor Charles Severance provides an audio recording of his Computing Conversations column, in which he discusses his interview with Nii Quaynor about how the story of bringing the Internet to Africa is one of cooperation and collaboration for the common
+ Play Count1
+ Play Date3521442593
+ Play Date UTC2015-08-03T14:29:53Z
+ Release Date2014-09-05T18:06:49Z
+ Persistent ID5E87242239FAD32B
+ Track TypeFile
+ Podcast
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/32%20Nii%20Quaynor%20on%20Bringing%20the%20Internet%20to%20Africa.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1081
+
+ Track ID1081
+ NamePHP-09-Transactions.mp3
+ ArtistCreated by Sakai
+ AlbumSI 664 W14's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size17291008
+ Total Time1728888
+ Year2014
+ Date Modified2014-09-10T01:03:12Z
+ Date Added2014-09-10T01:03:12Z
+ Bit Rate80
+ Sample Rate24000
+ Release Date2014-04-07T08:12:43Z
+ Normalization9242
+ Persistent ID669B2607B542AE7F
+ Track TypeFile
+ Podcast
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/SI%20664%20W14's%20official%20Podcast_/PHP-09-Transactions.mp3.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1083
+
+ Track ID1083
+ NamePHP-01-Intro.mp3
+ ArtistCreated by Sakai
+ AlbumSI 664 W14's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size22508361
+ Total Time2250624
+ Year2014
+ Date Modified2014-09-10T01:04:04Z
+ Date Added2014-09-10T01:04:04Z
+ Bit Rate80
+ Sample Rate24000
+ Release Date2014-01-10T03:59:03Z
+ Normalization5184
+ Persistent ID053DD88CF9AB70FF
+ Track TypeFile
+ Podcast
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/SI%20664%20W14's%20official%20Podcast_/PHP-01-Intro.mp3.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1085
+
+ Track ID1085
+ NamePHP-02-Install.mp3
+ ArtistCreated by Sakai
+ AlbumSI 664 W14's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size21960923
+ Year2014
+ Date Modified2014-09-10T01:04:10Z
+ Date Added2014-09-10T01:04:10Z
+ Bit Rate80
+ Sample Rate24000
+ Play Count1
+ Play Date3493137000
+ Play Date UTC2014-09-09T23:50:00Z
+ Release Date2014-01-10T03:59:49Z
+ Normalization7881
+ Persistent ID24596F2775701A18
+ Track TypeURL
+ Podcast
+ Locationhttps://ctools.umich.edu/access/content/group/8923c6aa-794f-43f0-8ea2-dc6f96556d6b/Podcasts/PHP-02-Install.mp3
+
+ 1087
+
+ Track ID1087
+ NamePHP-04-Expressions.mp3
+ ArtistCreated by Sakai
+ AlbumSI 664 W14's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size21682767
+ Total Time2168064
+ Year2014
+ Date Modified2014-09-10T01:04:14Z
+ Date Added2014-09-10T01:04:14Z
+ Bit Rate80
+ Sample Rate24000
+ Release Date2014-01-20T19:50:23Z
+ Normalization10766
+ Persistent IDD83C94DC9C9BE8A9
+ Track TypeFile
+ Podcast
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/SI%20664%20W14's%20official%20Podcast_/PHP-04-Expressions.mp3.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1089
+
+ Track ID1089
+ NamePHP-05-Functions.mp3
+ ArtistCreated by Sakai
+ AlbumSI 664 W14's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size14470043
+ Total Time1446792
+ Year2014
+ Date Modified2014-09-10T01:04:18Z
+ Date Added2014-09-10T01:04:18Z
+ Bit Rate80
+ Sample Rate24000
+ Release Date2014-01-24T03:22:01Z
+ Normalization6829
+ Persistent ID9B02D519721057C4
+ Track TypeFile
+ Podcast
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/SI%20664%20W14's%20official%20Podcast_/PHP-05-Functions.mp3.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1091
+
+ Track ID1091
+ NamePHP-06-Strings.mp3
+ ArtistCreated by Sakai
+ AlbumSI 664 W14's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size4179081
+ Total Time417696
+ Year2014
+ Date Modified2014-09-10T01:04:19Z
+ Date Added2014-09-10T01:04:19Z
+ Bit Rate80
+ Sample Rate24000
+ Release Date2014-01-24T03:23:48Z
+ Normalization7497
+ Persistent IDCD849613725FDD25
+ Track TypeFile
+ Podcast
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/SI%20664%20W14's%20official%20Podcast_/PHP-06-Strings.mp3.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1093
+
+ Track ID1093
+ NamePHP-12-Sessions.mp3
+ ArtistCreated by Sakai
+ AlbumSI 664 W14's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size36245244
+ Total Time3624312
+ Year2014
+ Date Modified2014-09-10T01:04:36Z
+ Date Added2014-09-10T01:04:36Z
+ Bit Rate80
+ Sample Rate24000
+ Release Date2014-01-31T02:08:58Z
+ Normalization10310
+ Persistent IDF76EB49D48392640
+ Track TypeFile
+ Podcast
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/SI%20664%20W14's%20official%20Podcast_/PHP-12-Sessions.mp3.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1095
+
+ Track ID1095
+ NamePHP-06-Objects.mp3
+ ArtistCreated by Sakai
+ AlbumSI 664 W14's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size24555802
+ Total Time2455368
+ Year2014
+ Date Modified2014-09-10T01:04:42Z
+ Date Added2014-09-10T01:04:42Z
+ Bit Rate80
+ Sample Rate24000
+ Release Date2014-01-31T02:09:55Z
+ Normalization10951
+ Persistent ID767D57825686AAE6
+ Track TypeFile
+ Podcast
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/SI%20664%20W14's%20official%20Podcast_/PHP-06-Objects.mp3.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1097
+
+ Track ID1097
+ NameSI664-13-JSON-A.mp3
+ ArtistCreated by Sakai
+ AlbumSI 664 W14's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size44078844
+ Total Time4407672
+ Year2014
+ Date Modified2014-09-10T01:04:51Z
+ Date Added2014-09-10T01:04:51Z
+ Bit Rate80
+ Sample Rate24000
+ Release Date2014-04-06T22:38:55Z
+ Normalization8596
+ Persistent IDE4B5B892D930B9A0
+ Track TypeFile
+ Podcast
+ Unplayed
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/SI%20664%20W14's%20official%20Podcast_/SI664-13-JSON-A.mp3.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1099
+
+ Track ID1099
+ NamePHP-13-JavaScript.mp3
+ ArtistCreated by Sakai
+ AlbumSI 664 W14's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size36503006
+ Total Time3650088
+ Year2014
+ Date Modified2014-09-10T01:04:58Z
+ Date Added2014-09-10T01:04:58Z
+ Bit Rate80
+ Sample Rate24000
+ Release Date2014-03-17T03:02:37Z
+ Normalization9816
+ Persistent ID635C92C15F68D490
+ Track TypeFile
+ Podcast
+ Unplayed
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/SI%20664%20W14's%20official%20Podcast_/PHP-13-JavaScript.mp3.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1101
+
+ Track ID1101
+ NamePHP-09-Database-Design.mp3
+ ArtistCreated by Sakai
+ AlbumSI 664 W14's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size35912851
+ Total Time3591072
+ Year2014
+ Date Modified2014-09-10T01:05:04Z
+ Date Added2014-09-10T01:05:04Z
+ Bit Rate80
+ Sample Rate24000
+ Release Date2014-03-12T21:52:18Z
+ Normalization11163
+ Persistent ID5D83691DA7FE1967
+ Track TypeFile
+ Podcast
+ Unplayed
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/SI%20664%20W14's%20official%20Podcast_/PHP-09-Database-Design.mp3.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1103
+
+ Track ID1103
+ NamePHP-Tsugi-Install.mp3
+ ArtistCreated by Sakai
+ AlbumSI 664 W14's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size31818686
+ Total Time3181656
+ Year2014
+ Date Modified2014-09-10T01:05:12Z
+ Date Added2014-09-10T01:05:12Z
+ Bit Rate80
+ Sample Rate24000
+ Release Date2014-03-12T21:51:54Z
+ Normalization9106
+ Persistent ID53D0E500674D75B9
+ Track TypeFile
+ Podcast
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/SI%20664%20W14's%20official%20Podcast_/PHP-Tsugi-Install.mp3.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1105
+
+ Track ID1105
+ NamePHP-10-MySQL-PDO.mp3
+ ArtistCreated by Sakai
+ AlbumSI 664 W14's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size45368981
+ Total Time4536685
+ Year2014
+ Date Modified2014-09-10T01:05:22Z
+ Date Added2014-09-10T01:05:22Z
+ Bit Rate80
+ Sample Rate22050
+ Release Date2014-02-08T02:26:04Z
+ Normalization9520
+ Persistent ID08C480C4919E107B
+ Track TypeFile
+ Podcast
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/SI%20664%20W14's%20official%20Podcast_/PHP-10-MySQL-PDO.mp3.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1107
+
+ Track ID1107
+ NamePHP-08-MySQL.mp3
+ ArtistCreated by Sakai
+ AlbumSI 664 W14's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size39948681
+ Total Time3994656
+ Year2014
+ Date Modified2014-09-10T01:05:30Z
+ Date Added2014-09-10T01:05:30Z
+ Bit Rate80
+ Sample Rate24000
+ Release Date2014-02-08T02:25:03Z
+ Normalization9148
+ Persistent IDC919BEB9B368C650
+ Track TypeFile
+ Podcast
+ Unplayed
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/SI%20664%20W14's%20official%20Podcast_/PHP-08-MySQL.mp3.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1109
+
+ Track ID1109
+ NameSI664-13-JSON-B.mp3
+ ArtistCreated by Sakai
+ AlbumSI 664 W14's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size14848284
+ Total Time1484616
+ Year2014
+ Date Modified2014-09-10T01:05:33Z
+ Date Added2014-09-10T01:05:33Z
+ Bit Rate80
+ Sample Rate24000
+ Release Date2014-04-07T07:12:13Z
+ Normalization10264
+ Persistent ID312EF22908A05C5D
+ Track TypeFile
+ Podcast
+ Unplayed
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/SI%20664%20W14's%20official%20Podcast_/SI664-13-JSON-B.mp3.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1111
+
+ Track ID1111
+ NameIMS-Learning-Tools-Interoperability.mp3
+ ArtistCreated by Sakai
+ AlbumSI 664 W14's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size21860624
+ Total Time2185848
+ Year2014
+ Date Modified2014-09-10T01:05:40Z
+ Date Added2014-09-10T01:05:39Z
+ Bit Rate80
+ Sample Rate24000
+ Release Date2014-04-07T07:53:14Z
+ Normalization8200
+ Persistent IDDA074294FB02E8D3
+ Track TypeFile
+ Podcast
+ Unplayed
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/SI%20664%20W14's%20official%20Podcast_/IMS-Learning-Tools-Interoperability.mp3.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1117
+
+ Track ID1117
+ NameAn Interview with Don Waters
+ ArtistMatt Pasiewicz
+ ComposerMatt Pasiewicz
+ AlbumCNI Event Coverage
+ GenreSpeech
+ KindMPEG audio file
+ Size16934912
+ Total Time1411082
+ Year2006
+ Date Modified2014-10-21T12:54:43Z
+ Date Added2014-10-21T12:54:46Z
+ Bit Rate96
+ Sample Rate44100
+ Play Count2
+ Play Date3504632233
+ Play Date UTC2015-01-21T01:57:13Z
+ Skip Count1
+ Skip Date2015-01-04T18:49:16Z
+ Sort NameInterview with Don Waters
+ Persistent ID33C07CCB3CD3A749
+ Track TypeFile
+ Locationfile://localhost/Users/csev/Desktop/DON_WATERS_CNI.mp3
+ File Folder Count2
+ Library Folder Count3
+
+ 1119
+
+ Track ID1119
+ NamePooja-Interview-Audio
+ KindMPEG audio file
+ Size24182596
+ Total Time1209129
+ Date Modified2012-12-19T00:55:24Z
+ Date Added2014-11-10T14:50:19Z
+ Bit Rate160
+ Sample Rate44100
+ Persistent ID032C4B63DF7378E6
+ Track TypeFile
+ Locationfile:///Users/csev/Desktop/ieee/columns/2013/2013-03-Pooja/Pooja-Interview-Audio.mp3
+ File Folder Count6
+ Library Folder Count3
+
+ 1121
+
+ Track ID1121
+ NamePY4INF-11-Regex.mp3
+ ArtistRecording by Dr. Chuck
+ Composerwww.dr-chuck.com
+ AlbumPython for Informatics's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size16993720
+ Total Time2123702
+ Year2013
+ BPM120
+ Date Modified2014-11-15T14:14:51Z
+ Date Added2014-11-15T14:14:51Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2013-09-18T00:28:00Z
+ Normalization1225
+ Persistent ID911E8F5C37D8978F
+ Track TypeFile
+ Podcast
+ Unplayed
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-11-Regex.mp3%201.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1123
+
+ Track ID1123
+ NamePY4INF-10-Tuples.mp3
+ ArtistRecording by Dr. Chuck
+ Composerwww.dr-chuck.com
+ AlbumPython for Informatics's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size12784871
+ Total Time1597596
+ Year2013
+ BPM120
+ Date Modified2014-11-15T14:15:13Z
+ Date Added2014-11-15T14:15:13Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2013-09-18T00:33:00Z
+ Normalization1227
+ Persistent ID2169E6D5E8459480
+ Track TypeFile
+ Podcast
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-10-Tuples.mp3%201.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1125
+
+ Track ID1125
+ NamePY4INF-09-Dictionaries.mp3
+ ArtistRecording by Dr. Chuck
+ Composerwww.dr-chuck.com
+ AlbumPython for Informatics's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size18039663
+ Total Time2254445
+ Year2013
+ BPM120
+ Date Modified2014-11-15T14:15:38Z
+ Date Added2014-11-15T14:15:38Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2013-09-18T00:36:00Z
+ Normalization1221
+ Persistent ID0544AD415E39EFDD
+ Track TypeFile
+ Podcast
+ Unplayed
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-09-Dictionaries.mp3%201.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1127
+
+ Track ID1127
+ NamePY4INF-08-Lists.mp3
+ ArtistRecording by Dr. Chuck
+ Composerwww.dr-chuck.com
+ AlbumPython for Informatics's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size13093952
+ Total Time1636231
+ Year2013
+ BPM120
+ Date Modified2014-11-15T14:16:09Z
+ Date Added2014-11-15T14:16:09Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2013-09-18T00:40:00Z
+ Normalization1322
+ Persistent IDA34F05948F31EAFE
+ Track TypeFile
+ Podcast
+ Unplayed
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-08-Lists.mp3%201.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1129
+
+ Track ID1129
+ NamePY4INF-07-Files.mp3
+ ArtistRecording by Dr. Chuck
+ Composerwww.dr-chuck.com
+ AlbumPython for Informatics's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size11833805
+ Total Time1478713
+ Year2013
+ BPM120
+ Date Modified2014-11-15T14:16:28Z
+ Date Added2014-11-15T14:16:28Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2013-09-18T00:44:00Z
+ Normalization1194
+ Persistent ID3E5DA2AEF473E009
+ Track TypeFile
+ Podcast
+ Unplayed
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-07-Files.mp3%201.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1131
+
+ Track ID1131
+ NamePY4INF-06-Strings.mp3
+ ArtistRecording by Dr. Chuck
+ Composerwww.dr-chuck.com
+ AlbumPython for Informatics's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size13426856
+ Total Time1677844
+ Year2013
+ BPM120
+ Date Modified2014-11-15T14:16:42Z
+ Date Added2014-11-15T14:16:42Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2013-09-18T00:47:00Z
+ Normalization1236
+ Persistent ID82F688E0188BE912
+ Track TypeFile
+ Podcast
+ Unplayed
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-06-Strings.mp3%201.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1133
+
+ Track ID1133
+ NamePY4INF-05-Iterations.mp3
+ ArtistRecording by Dr. Chuck
+ Composerwww.dr-chuck.com
+ AlbumPython for Informatics's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size22438474
+ Total Time2804297
+ Year2013
+ BPM120
+ Date Modified2014-11-15T14:17:06Z
+ Date Added2014-11-15T14:17:06Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2013-09-18T00:51:00Z
+ Normalization1275
+ Persistent ID474F607E00631CF0
+ Track TypeFile
+ Podcast
+ Unplayed
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-05-Iterations.mp3%201.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1135
+
+ Track ID1135
+ NamePY4INF-04-Functions.mp3
+ ArtistRecording by Dr. Chuck
+ Composerwww.dr-chuck.com
+ AlbumPython for Informatics's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size13474503
+ Total Time1683800
+ Year2013
+ BPM120
+ Date Modified2014-11-15T14:17:21Z
+ Date Added2014-11-15T14:17:21Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2013-09-18T00:57:00Z
+ Normalization1204
+ Persistent ID32D0CB0DDC1C1671
+ Track TypeFile
+ Podcast
+ Unplayed
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-04-Functions.mp3%201.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1137
+
+ Track ID1137
+ NamePY4INF-03-Conditional.mp3
+ ArtistRecording by Dr. Chuck
+ Composerwww.dr-chuck.com
+ AlbumPython for Informatics's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size18372567
+ Total Time2296058
+ Year2013
+ BPM120
+ Date Modified2014-11-15T14:17:45Z
+ Date Added2014-11-15T14:17:45Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2013-09-18T01:00:00Z
+ Normalization1338
+ Persistent ID82FAEF71E0FF7D55
+ Track TypeFile
+ Podcast
+ Unplayed
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-03-Conditional.mp3%201.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1139
+
+ Track ID1139
+ NamePY4INF-02-Expressions.mp3
+ ArtistRecording by Dr. Chuck
+ Composerwww.dr-chuck.com
+ AlbumPython for Informatics's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size20631428
+ Total Time2578416
+ Year2013
+ BPM120
+ Date Modified2014-11-15T14:18:17Z
+ Date Added2014-11-15T14:18:17Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2013-09-18T01:03:00Z
+ Normalization1245
+ Persistent ID7CE111FA768BF10F
+ Track TypeFile
+ Podcast
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-02-Expressions.mp3%201.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1141
+
+ Track ID1141
+ NamePY4INF-01-Intro.mp3
+ ArtistRecording by Dr. Chuck
+ Composerwww.dr-chuck.com
+ AlbumPython for Informatics's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size27428698
+ Total Time3428075
+ Year2013
+ BPM120
+ Date Modified2014-11-15T14:18:53Z
+ Date Added2014-11-15T14:18:53Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2013-09-18T01:04:00Z
+ Normalization1219
+ Persistent ID12C6FAF33972EE43
+ Track TypeFile
+ Podcast
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-01-Intro.mp3%201.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1145
+
+ Track ID1145
+ NamePy4Inf-11-Regex.mp3
+ ArtistRecording by Dr. Chuck
+ Composerwww.dr-chuck.com
+ AlbumPython for Informatics's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size16993720
+ Total Time2123702
+ Year2013
+ BPM120
+ Date Modified2014-12-11T01:25:20Z
+ Date Added2014-12-11T01:25:20Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2013-09-18T00:28:00Z
+ Normalization1225
+ Persistent ID48DD99EF7B5CAD27
+ Track TypeFile
+ Podcast
+ Unplayed
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/Py4Inf-11-Regex.mp3%202.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1147
+
+ Track ID1147
+ NamePy4Inf-10-Tuples.mp3
+ ArtistRecording by Dr. Chuck
+ Composerwww.dr-chuck.com
+ AlbumPython for Informatics's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size12784871
+ Total Time1597596
+ Year2013
+ BPM120
+ Date Modified2014-12-11T01:25:52Z
+ Date Added2014-12-11T01:25:52Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2013-09-18T00:33:00Z
+ Normalization1227
+ Persistent IDF0F18F03E98B789B
+ Track TypeFile
+ Podcast
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/Py4Inf-10-Tuples.mp3%202.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1149
+
+ Track ID1149
+ NamePy4Inf-09-Dictionaries.mp3
+ ArtistRecording by Dr. Chuck
+ Composerwww.dr-chuck.com
+ AlbumPython for Informatics's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size18039663
+ Total Time2254445
+ Year2013
+ BPM120
+ Date Modified2014-12-11T01:26:50Z
+ Date Added2014-12-11T01:26:50Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2013-09-18T00:36:00Z
+ Normalization1221
+ Persistent IDE896D5414DC16048
+ Track TypeFile
+ Podcast
+ Unplayed
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/Py4Inf-09-Dictionaries.mp3%202.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1151
+
+ Track ID1151
+ NamePy4Inf-08-Lists.mp3
+ ArtistRecording by Dr. Chuck
+ Composerwww.dr-chuck.com
+ AlbumPython for Informatics's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size13093952
+ Total Time1636231
+ Year2013
+ BPM120
+ Date Modified2014-12-11T01:27:28Z
+ Date Added2014-12-11T01:27:28Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2013-09-18T00:40:00Z
+ Normalization1322
+ Persistent ID851EC5CE786B93BF
+ Track TypeFile
+ Podcast
+ Unplayed
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/Py4Inf-08-Lists.mp3%202.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1153
+
+ Track ID1153
+ NamePy4Inf-07-Files.mp3
+ ArtistRecording by Dr. Chuck
+ Composerwww.dr-chuck.com
+ AlbumPython for Informatics's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size11833805
+ Total Time1478713
+ Year2013
+ BPM120
+ Date Modified2014-12-11T01:27:52Z
+ Date Added2014-12-11T01:27:52Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2013-09-18T00:44:00Z
+ Normalization1194
+ Persistent IDD1096CD161D685AF
+ Track TypeFile
+ Podcast
+ Unplayed
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/Py4Inf-07-Files.mp3%202.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1155
+
+ Track ID1155
+ NamePy4Inf-06-Strings.mp3
+ ArtistRecording by Dr. Chuck
+ Composerwww.dr-chuck.com
+ AlbumPython for Informatics's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size13426856
+ Total Time1677844
+ Year2013
+ BPM120
+ Date Modified2014-12-11T01:28:26Z
+ Date Added2014-12-11T01:28:26Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2013-09-18T00:47:00Z
+ Normalization1236
+ Persistent IDA8AA9D9C7593CA16
+ Track TypeFile
+ Podcast
+ Unplayed
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/Py4Inf-06-Strings.mp3%202.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1157
+
+ Track ID1157
+ NamePy4Inf-05-Iterations.mp3
+ ArtistRecording by Dr. Chuck
+ Composerwww.dr-chuck.com
+ AlbumPython for Informatics's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size22438474
+ Total Time2804297
+ Year2013
+ BPM120
+ Date Modified2014-12-11T01:29:55Z
+ Date Added2014-12-11T01:29:55Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2013-09-18T00:51:00Z
+ Normalization1275
+ Persistent ID25B25A8733234ACF
+ Track TypeFile
+ Podcast
+ Unplayed
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/Py4Inf-05-Iterations.mp3%202.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1159
+
+ Track ID1159
+ NamePy4Inf-04-Functions.mp3
+ ArtistRecording by Dr. Chuck
+ Composerwww.dr-chuck.com
+ AlbumPython for Informatics's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size13474503
+ Total Time1683800
+ Year2013
+ BPM120
+ Date Modified2014-12-11T01:30:25Z
+ Date Added2014-12-11T01:30:25Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2013-09-18T00:57:00Z
+ Normalization1204
+ Persistent ID2B78100D527C4417
+ Track TypeFile
+ Podcast
+ Unplayed
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/Py4Inf-04-Functions.mp3%202.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1161
+
+ Track ID1161
+ NamePy4Inf-03-Conditional.mp3
+ ArtistRecording by Dr. Chuck
+ Composerwww.dr-chuck.com
+ AlbumPython for Informatics's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size18372567
+ Total Time2296058
+ Year2013
+ BPM120
+ Date Modified2014-12-11T01:31:34Z
+ Date Added2014-12-11T01:31:34Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2013-09-18T01:00:00Z
+ Normalization1338
+ Persistent ID2644C306C5CC7947
+ Track TypeFile
+ Podcast
+ Unplayed
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/Py4Inf-03-Conditional.mp3%202.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1163
+
+ Track ID1163
+ NamePy4Inf-02-Expressions.mp3
+ ArtistRecording by Dr. Chuck
+ Composerwww.dr-chuck.com
+ AlbumPython for Informatics's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size20631428
+ Total Time2578416
+ Year2013
+ BPM120
+ Date Modified2014-12-11T01:32:46Z
+ Date Added2014-12-11T01:32:46Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2013-09-18T01:03:00Z
+ Normalization1245
+ Persistent ID0EBCA97AC97E9C82
+ Track TypeFile
+ Podcast
+ Unplayed
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/Py4Inf-02-Expressions.mp3%202.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1165
+
+ Track ID1165
+ NamePy4Inf-01-Intro.mp3
+ ArtistRecording by Dr. Chuck
+ Composerwww.dr-chuck.com
+ AlbumPython for Informatics's official Podcast.
+ GenrePodcast
+ KindMPEG audio file
+ Size27428698
+ Total Time3428075
+ Year2013
+ BPM120
+ Date Modified2014-12-11T01:34:13Z
+ Date Added2014-12-11T01:34:13Z
+ Bit Rate64
+ Sample Rate44100
+ Release Date2013-09-18T01:04:00Z
+ Normalization1219
+ Persistent IDAFD4F92B8EA0A3E7
+ Track TypeFile
+ Podcast
+ Unplayed
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/Py4Inf-01-Intro.mp3%202.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1175
+
+ Track ID1175
+ NamePython 1994 Workshop 2-HD (1080p)
+ KindMPEG-4 video file
+ Size26790760
+ Total Time40033
+ Date Modified2015-01-20T14:24:15Z
+ Date Added2015-01-20T14:24:15Z
+ Bit Rate105
+ Artwork Count1
+ Persistent ID5549223E93B9DB8A
+ Track TypeFile
+ Has Video
+ HD
+ Video Width1920
+ Video Height1080
+ File Type1295275552
+ Locationfile:///Users/csev/Desktop/NoBackup/Python%201994%20Workshop%202-HD%20(1080p).m4v
+ File Folder Count3
+ Library Folder Count3
+
+ 1177
+
+ Track ID1177
+ NamePython 1994 Workshop 2-HD (1080p)
+ KindMPEG-4 video file
+ Size26790760
+ Total Time40033
+ Date Modified2015-01-20T14:29:30Z
+ Date Added2015-01-20T14:29:31Z
+ Bit Rate105
+ Artwork Count1
+ Persistent IDD8AAE1A4EE4201BF
+ Track TypeFile
+ Has Video
+ HD
+ Video Width1920
+ Video Height1080
+ File Type1295275552
+ Locationfile:///Users/csev/Desktop/NoBackup/Python%201994%20Workshop%202-HD%20(1080p).m4v
+ File Folder Count3
+ Library Folder Count3
+
+ 1183
+
+ Track ID1183
+ NameIan Foster on the Globus Project
+ ArtistIEEE Computer Society
+ Album ArtistCharles Severance
+ AlbumComputing Conversations
+ GenrePodcast
+ KindMPEG audio file
+ Size12907054
+ Total Time538305
+ Track Number33
+ Year2015
+ Date Modified2015-02-06T19:14:08Z
+ Date Added2015-02-06T19:14:08Z
+ Bit Rate192
+ Sample Rate44100
+ CommentsAuthor Charles Severance provides an audio recording of his Computing Conversations column, in which he discusses his interview with Ian Foster about how the Globus project helps move large amounts of data efficiently and safely, allowing scientists to fo
+ Play Count1
+ Play Date3506877497
+ Play Date UTC2015-02-16T01:38:17Z
+ Release Date2015-02-05T18:12:51Z
+ Persistent IDD3D337E7943E6045
+ Track TypeFile
+ Podcast
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/33%20Ian%20Foster%20on%20the%20Globus%20Project.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1185
+
+ Track ID1185
+ NameKhan Academy and Computer Science
+ ArtistIEEE Computer Society
+ Album ArtistCharles Severance
+ AlbumComputing Conversations
+ GenrePodcast
+ KindMPEG audio file
+ Size8945498
+ Total Time558837
+ Track Number34
+ Year2015
+ Date Modified2015-02-06T13:14:15Z
+ Date Added2015-02-06T19:14:15Z
+ Bit Rate128
+ Sample Rate44100
+ CommentsAuthor Charles Severance provides an audio recording of his column in which he discusses his interview with John Resig and Pamela Fox regarding the somewhat recent addition of computer science to the topics
+ Play Count1
+ Play Date3506876670
+ Play Date UTC2015-02-16T01:24:30Z
+ Release Date2015-02-05T22:40:06Z
+ Persistent ID2D09494B09676912
+ Track TypeFile
+ Podcast
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/34%20Khan%20Academy%20and%20Computer%20Science.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1187
+
+ Track ID1187
+ NameGuido van Rossumon the Early Years of Python
+ ArtistIEEE Computer Society
+ Album ArtistCharles Severance
+ AlbumComputing Conversations
+ GenrePodcast
+ KindMPEG audio file
+ Size11240660
+ Total Time701884
+ Track Number35
+ Year2015
+ Date Modified2015-02-06T19:14:22Z
+ Date Added2015-02-06T19:14:22Z
+ Bit Rate128
+ Sample Rate44100
+ CommentsAuthor Charles Severance provides an audio recording of his column in which he discusses his interview with Guido van Rossum about the birth of the general-purpose, high-level Python programming language.
+ Play Count1
+ Play Date3506876007
+ Play Date UTC2015-02-16T01:13:27Z
+ Release Date2015-02-05T22:44:14Z
+ Persistent IDA94394BB6ABFB98B
+ Track TypeFile
+ Podcast
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/35%20Guido%20van%20Rossumon%20the%20Early%20Years%20of%20Python.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1193
+
+ Track ID1193
+ NameGuido van Rossum on the Modern Era of Python
+ ArtistIEEE Computer Society
+ AlbumComputing Conversations
+ GenrePodcast
+ KindMPEG audio file
+ Size11869958
+ Total Time741616
+ Year2015
+ Date Modified2015-05-13T09:53:00Z
+ Date Added2015-05-13T09:53:00Z
+ Bit Rate128
+ Sample Rate44100
+ Release Date2015-05-11T22:44:14Z
+ Normalization1244
+ Persistent ID3F226136F2058D37
+ Track TypeFile
+ Podcast
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/Guido%20van%20Rossum%20on%20the%20Modern%20Era%20of%20Python.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1195
+
+ Track ID1195
+ NameJohn Resig on Building jQuery
+ ArtistIEEE Computer Society
+ Album ArtistCharles Severance
+ AlbumComputing Conversations
+ GenrePodcast
+ KindMPEG audio file
+ Size14307705
+ Total Time595983
+ Year2015
+ Date Modified2015-05-13T09:53:04Z
+ Date Added2015-05-13T09:53:04Z
+ Bit Rate192
+ Sample Rate44100
+ CommentsAuthor Charles Severance provides an audio recording of his column in which he discusses his interview with John Resig about the JavaScript library jQuery and how it came to play a key role in the browser software ecosystem. From Computer's May 2015 issue
+ Release Date2015-05-11T22:44:14Z
+ Persistent ID2B6E0CE4321184B7
+ Track TypeFile
+ Podcast
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/John%20Resig%20on%20Building%20jQuery.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1201
+
+ Track ID1201
+ NameRoy T. Fielding on Understanding the REST Style
+ ArtistIEEE Computer Society
+ Album ArtistCharles Severance
+ AlbumComputing Conversations
+ GenrePodcast
+ KindMPEG audio file
+ Size16411711
+ Total Time683650
+ Track Number38
+ Year2015
+ Date Modified2015-06-15T01:47:22Z
+ Date Added2015-06-15T01:47:22Z
+ Bit Rate192
+ Sample Rate44100
+ CommentsAuthor Charles Severance provides an audio recording of his Computing Conversations column in which he discusses his interview with Roy T. Fielding about his PhD dissertation, which defined the Representational State Transfer architectural style. From Com
+ Play Count1
+ Play Date3521440617
+ Play Date UTC2015-08-03T13:56:57Z
+ Release Date2015-06-12T22:44:14Z
+ Persistent IDA060EC817AD4F1E0
+ Track TypeFile
+ Podcast
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/38%20Roy%20T.%20Fielding%20on%20Understanding%20the%20REST%20Style.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1203
+
+ Track ID1203
+ Name01-packets
+ KindMPEG-4 video file
+ Size3247026
+ Total Time770538
+ Date Modified2015-05-21T22:32:08Z
+ Date Added2015-06-21T16:37:05Z
+ Bit Rate31
+ Persistent IDD82285C0CADF2EEF
+ Track TypeFile
+ Locationfile:///Applications/MAMP/htdocs/net-intro/book/audio/01-packets.mp4
+ File Folder Count7
+ Library Folder Count5
+
+ 1205
+
+ Track ID1205
+ Name02-architecture
+ KindMPEG-4 video file
+ Size4179143
+ Total Time995289
+ Date Modified2015-05-21T22:32:14Z
+ Date Added2015-06-21T16:37:05Z
+ Bit Rate31
+ Persistent ID7F8830615EB07E67
+ Track TypeFile
+ Locationfile:///Applications/MAMP/htdocs/net-intro/book/audio/02-architecture.mp4
+ File Folder Count7
+ Library Folder Count5
+
+ 1207
+
+ Track ID1207
+ Name03-link-layer
+ KindMPEG-4 video file
+ Size2793695
+ Total Time662617
+ Date Modified2015-05-21T22:32:18Z
+ Date Added2015-06-21T16:37:05Z
+ Bit Rate31
+ Persistent ID24CA170AE53EB8B3
+ Track TypeFile
+ Locationfile:///Applications/MAMP/htdocs/net-intro/book/audio/03-link-layer.mp4
+ File Folder Count7
+ Library Folder Count5
+
+ 1209
+
+ Track ID1209
+ Name04-internet-layer
+ KindMPEG-4 video file
+ Size6445932
+ Total Time1540688
+ Date Modified2015-05-21T22:32:26Z
+ Date Added2015-06-21T16:37:05Z
+ Bit Rate31
+ Persistent IDA23E13A0F14D3382
+ Track TypeFile
+ Locationfile:///Applications/MAMP/htdocs/net-intro/book/audio/04-internet-layer.mp4
+ File Folder Count7
+ Library Folder Count5
+
+ 1211
+
+ Track ID1211
+ Name05-dns
+ KindMPEG-4 video file
+ Size1158178
+ Total Time276532
+ Date Modified2015-05-21T22:32:28Z
+ Date Added2015-06-21T16:37:05Z
+ Bit Rate31
+ Persistent IDD65BB5251D56C647
+ Track TypeFile
+ Locationfile:///Applications/MAMP/htdocs/net-intro/book/audio/05-dns.mp4
+ File Folder Count7
+ Library Folder Count5
+
+ 1213
+
+ Track ID1213
+ Name06-transport-layer
+ KindMPEG-4 video file
+ Size2747826
+ Total Time652004
+ Date Modified2015-05-21T22:32:31Z
+ Date Added2015-06-21T16:37:05Z
+ Bit Rate31
+ Persistent IDF3D95B4DBCF6B3F5
+ Track TypeFile
+ Locationfile:///Applications/MAMP/htdocs/net-intro/book/audio/06-transport-layer.mp4
+ File Folder Count7
+ Library Folder Count5
+
+ 1215
+
+ Track ID1215
+ Name07-application-layer
+ KindMPEG-4 video file
+ Size4897176
+ Total Time1168282
+ Date Modified2015-05-21T22:32:38Z
+ Date Added2015-06-21T16:37:05Z
+ Bit Rate31
+ Persistent IDEA268C5731134645
+ Track TypeFile
+ Locationfile:///Applications/MAMP/htdocs/net-intro/book/audio/07-application-layer.mp4
+ File Folder Count7
+ Library Folder Count5
+
+ 1217
+
+ Track ID1217
+ Name08-secure-transport
+ KindMPEG-4 video file
+ Size3176578
+ Total Time754382
+ Date Modified2015-05-21T22:32:42Z
+ Date Added2015-06-21T16:37:05Z
+ Bit Rate31
+ Persistent ID4BBC8C30F4B0C29C
+ Track TypeFile
+ Locationfile:///Applications/MAMP/htdocs/net-intro/book/audio/08-secure-transport.mp4
+ File Folder Count7
+ Library Folder Count5
+
+ 1219
+
+ Track ID1219
+ Name09-OSI
+ KindMPEG-4 video file
+ Size2022391
+ Total Time478074
+ Date Modified2015-05-21T22:32:45Z
+ Date Added2015-06-21T16:37:05Z
+ Bit Rate31
+ Persistent ID1FD751530A6B65B9
+ Track TypeFile
+ Locationfile:///Applications/MAMP/htdocs/net-intro/book/audio/09-OSI.mp4
+ File Folder Count7
+ Library Folder Count5
+
+ 1221
+
+ Track ID1221
+ Name10-wrap-up
+ KindMPEG-4 video file
+ Size1085037
+ Total Time258967
+ Date Modified2015-05-21T22:32:46Z
+ Date Added2015-06-21T16:37:05Z
+ Bit Rate31
+ Persistent IDA0B46BB975E8A270
+ Track TypeFile
+ Locationfile:///Applications/MAMP/htdocs/net-intro/book/audio/10-wrap-up.mp4
+ File Folder Count7
+ Library Folder Count5
+
+ 1223
+
+ Track ID1223
+ Name2015-08-Jain-01
+ KindWAV audio file
+ Size31507878
+ Total Time714463
+ Date Modified2015-06-26T15:24:05Z
+ Date Added2015-06-26T15:26:25Z
+ Bit Rate352
+ Sample Rate22050
+ Play Count1
+ Play Date3518163853
+ Play Date UTC2015-06-26T15:44:13Z
+ Persistent ID792FEEF72151F0C7
+ Track TypeFile
+ File Type1463899717
+ Locationfile:///Users/csev/Desktop/NoBackup/2015-08-Jain-01.wav
+ File Folder Count3
+ Library Folder Count3
+
+ 1225
+
+ Track ID1225
+ Name2015-08-Jain-01
+ KindAIFF audio file
+ Size126031426
+ Total Time714463
+ Date Modified2015-06-26T15:27:35Z
+ Date Added2015-06-26T15:27:39Z
+ Bit Rate1411
+ Sample Rate44100
+ Persistent IDDA1E0BCD91D02474
+ Track TypeFile
+ File Type1095321158
+ Locationfile:///Users/csev/Desktop/NoBackup/2015-08-Jain-01.aif
+ File Folder Count3
+ Library Folder Count3
+
+ 1227
+
+ Track ID1227
+ NameAnil Jain: 25 Years of Biometric Recognition
+ ArtistIEEE Computer Society
+ Album ArtistCharles Severance
+ AlbumComputing Conversations
+ GenrePodcast
+ KindMPEG audio file
+ Size15876933
+ Total Time661368
+ Track Number39
+ Year2015
+ Date Modified2015-08-20T18:41:39Z
+ Date Added2015-08-20T18:41:39Z
+ Bit Rate192
+ Sample Rate44100
+ CommentsAuthor Charles Severance provides an audio recording of his Computing Conversations column in which he discusses his interview with Anil Jain about the evolution of the biometric recognition field. From Computer's August 2015 issue: www.computer.org/csdl/
+ Release Date2015-08-12T09:18:14Z
+ Persistent ID71379AB8AAA86A2F
+ Track TypeFile
+ Podcast
+ Unplayed
+ Locationfile:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/39%20Anil%20Jain_%2025%20Years%20of%20Biometric%20Recognition.mp3
+ File Folder Count4
+ Library Folder Count1
+
+ 1231
+
+ Track ID1231
+ NameWaste Management
+ ArtistUndercover Boss
+ AlbumUndercover Boss, Season 1
+ GenreReality TV
+ KindPurchased MPEG-4 video file
+ Size530299729
+ Total Time2565232
+ Disc Number1
+ Disc Count1
+ Track Number1
+ Track Count9
+ Year2010
+ Date Modified2015-01-06T18:11:06Z
+ Date Added2011-01-30T01:26:11Z
+ Play Count1
+ Release Date2010-02-07T08:00:00Z
+ Artwork Count1
+ SeriesUndercover Boss
+ Season1
+ Episode101
+ Episode Order1
+ Sort AlbumUndercover Boss, Season 1
+ Sort ArtistUndercover Boss
+ Sort NameWaste Management
+ Persistent ID391D47CC7EC038FB
+ Content Ratingus-tv|TV-PG|400|
+ Track TypeRemote
+ Purchased
+ Has Video
+ HD
+ TV Show
+
+ 1233
+
+ Track ID1233
+ NameSleep Like a Baby Tonight
+ ArtistU2
+ Album ArtistU2
+ AlbumSongs of Innocence
+ GenreRock
+ KindPurchased AAC audio file
+ Size10414554
+ Total Time301641
+ Disc Number1
+ Disc Count1
+ Track Number9
+ Track Count11
+ Year2014
+ Date Modified2014-09-08T01:49:11Z
+ Date Added2014-09-08T01:49:11Z
+ Bit Rate256
+ Sample Rate44100
+ Release Date2014-09-09T07:00:00Z
+ Artwork Count1
+ Sort AlbumSongs of Innocence
+ Sort ArtistU2
+ Sort NameSleep Like a Baby Tonight
+ Persistent ID62E58E8086A3DC15
+ Track TypeRemote
+ Purchased
+
+ 1235
+
+ Track ID1235
+ NameEvergreen
+ ArtistThe Black Crowes
+ Album ArtistThe Black Crowes
+ ComposerChris Robinson & Rich Robinson
+ AlbumWarpaint
+ GenreRock
+ KindPurchased AAC audio file
+ Size4281743
+ Total Time261373
+ Disc Number1
+ Disc Count1
+ Track Number4
+ Track Count12
+ Year2008
+ Date Modified2015-01-06T18:11:06Z
+ Date Added2008-03-10T03:44:03Z
+ Bit Rate128
+ Sample Rate44100
+ Release Date2008-02-29T08:00:00Z
+ Artwork Count1
+ Sort AlbumWarpaint
+ Sort Album ArtistBlack Crowes
+ Sort ArtistBlack Crowes
+ Sort NameEvergreen
+ Persistent IDF3AB0518196E263E
+ Track TypeRemote
+ Purchased
+
+ 1237
+
+ Track ID1237
+ NameOh Josephine
+ ArtistThe Black Crowes
+ Album ArtistThe Black Crowes
+ ComposerChris Robinson & Rich Robinson
+ AlbumWarpaint
+ GenreRock
+ KindPurchased AAC audio file
+ Size6600622
+ Total Time398907
+ Disc Number1
+ Disc Count1
+ Track Number3
+ Track Count12
+ Year2008
+ Date Modified2015-01-06T18:11:06Z
+ Date Added2008-03-10T03:44:00Z
+ Bit Rate128
+ Sample Rate44100
+ Release Date2008-02-29T08:00:00Z
+ Artwork Count1
+ Sort AlbumWarpaint
+ Sort Album ArtistBlack Crowes
+ Sort ArtistBlack Crowes
+ Sort NameOh Josephine
+ Persistent ID6746AAB2FE222857
+ Track TypeRemote
+ Purchased
+
+ 1239
+
+ Track ID1239
+ NameMovin' On Down the Line
+ ArtistThe Black Crowes
+ Album ArtistThe Black Crowes
+ ComposerChris Robinson & Rich Robinson
+ AlbumWarpaint
+ GenreRock
+ KindPurchased AAC audio file
+ Size5657162
+ Total Time342693
+ Disc Number1
+ Disc Count1
+ Track Number7
+ Track Count12
+ Year2008
+ Date Modified2015-01-06T18:11:06Z
+ Date Added2008-03-10T03:44:16Z
+ Bit Rate128
+ Sample Rate44100
+ Release Date2008-02-29T08:00:00Z
+ Artwork Count1
+ Sort AlbumWarpaint
+ Sort Album ArtistBlack Crowes
+ Sort ArtistBlack Crowes
+ Sort NameMovin' On Down the Line
+ Persistent ID22967588F96A0239
+ Track TypeRemote
+ Purchased
+
+ 1241
+
+ Track ID1241
+ NameWounded Bird
+ ArtistThe Black Crowes
+ Album ArtistThe Black Crowes
+ ComposerChris Robinson & Rich Robinson
+ AlbumWarpaint
+ GenreRock
+ KindPurchased AAC audio file
+ Size4320806
+ Total Time263453
+ Disc Number1
+ Disc Count1
+ Track Number8
+ Track Count12
+ Year2008
+ Date Modified2015-01-06T18:11:06Z
+ Date Added2008-03-10T03:44:26Z
+ Bit Rate128
+ Sample Rate44100
+ Release Date2008-02-29T08:00:00Z
+ Artwork Count1
+ Sort AlbumWarpaint
+ Sort Album ArtistBlack Crowes
+ Sort ArtistBlack Crowes
+ Sort NameWounded Bird
+ Persistent ID383A5BCF1861134B
+ Track TypeRemote
+ Purchased
+
+ 1243
+
+ Track ID1243
+ NameVolcano
+ ArtistU2
+ Album ArtistU2
+ AlbumSongs of Innocence
+ GenreRock
+ KindPurchased AAC audio file
+ Size6904386
+ Total Time194116
+ Disc Number1
+ Disc Count1
+ Track Number6
+ Track Count11
+ Year2014
+ Date Modified2014-09-08T01:49:11Z
+ Date Added2014-09-08T01:49:11Z
+ Bit Rate256
+ Sample Rate44100
+ Release Date2014-09-09T07:00:00Z
+ Artwork Count1
+ Sort AlbumSongs of Innocence
+ Sort ArtistU2
+ Sort NameVolcano
+ Persistent IDD99D9ECBEE314F47
+ Track TypeRemote
+ Purchased
+
+ 1245
+
+ Track ID1245
+ NameWee Who See the Deep
+ ArtistThe Black Crowes
+ Album ArtistThe Black Crowes
+ ComposerChris Robinson & Rich Robinson
+ AlbumWarpaint
+ GenreRock
+ KindPurchased AAC audio file
+ Size4735085
+ Total Time290520
+ Disc Number1
+ Disc Count1
+ Track Number5
+ Track Count12
+ Year2008
+ Date Modified2015-01-06T18:11:06Z
+ Date Added2008-03-10T03:44:04Z
+ Bit Rate128
+ Sample Rate44100
+ Release Date2008-02-29T08:00:00Z
+ Artwork Count1
+ Sort AlbumWarpaint
+ Sort Album ArtistBlack Crowes
+ Sort ArtistBlack Crowes
+ Sort NameWee Who See the Deep
+ Persistent IDC8E459A642C4E723
+ Track TypeRemote
+ Purchased
+
+ 1247
+
+ Track ID1247
+ NameCedarwood Road
+ ArtistU2
+ Album ArtistU2
+ AlbumSongs of Innocence
+ GenreRock
+ KindPurchased AAC audio file
+ Size9336108
+ Total Time265268
+ Disc Number1
+ Disc Count1
+ Track Number8
+ Track Count11
+ Year2014
+ Date Modified2014-09-08T01:49:11Z
+ Date Added2014-09-08T01:49:11Z
+ Bit Rate256
+ Sample Rate44100
+ Release Date2014-09-09T07:00:00Z
+ Artwork Count1
+ Sort AlbumSongs of Innocence
+ Sort ArtistU2
+ Sort NameCedarwood Road
+ Persistent ID96677BCF4E5577FE
+ Track TypeRemote
+ Purchased
+
+ 1249
+
+ Track ID1249
+ NameLocust Street
+ ArtistThe Black Crowes
+ Album ArtistThe Black Crowes
+ ComposerChris Robinson & Rich Robinson
+ AlbumWarpaint
+ GenreRock
+ KindPurchased AAC audio file
+ Size4203564
+ Total Time255240
+ Disc Number1
+ Disc Count1
+ Track Number6
+ Track Count12
+ Year2008
+ Date Modified2015-01-06T18:11:06Z
+ Date Added2008-03-10T03:44:07Z
+ Bit Rate128
+ Sample Rate44100
+ Release Date2008-02-29T08:00:00Z
+ Artwork Count1
+ Sort AlbumWarpaint
+ Sort Album ArtistBlack Crowes
+ Sort ArtistBlack Crowes
+ Sort NameLocust Street
+ Persistent ID81379B7604AE19D4
+ Track TypeRemote
+ Purchased
+
+ 1251
+
+ Track ID1251
+ NameRaised By Wolves
+ ArtistU2
+ Album ArtistU2
+ AlbumSongs of Innocence
+ GenreRock
+ KindPurchased AAC audio file
+ Size8636426
+ Total Time245599
+ Disc Number1
+ Disc Count1
+ Track Number7
+ Track Count11
+ Year2014
+ Date Modified2014-09-08T01:49:11Z
+ Date Added2014-09-08T01:49:11Z
+ Bit Rate256
+ Sample Rate44100
+ Release Date2014-09-09T07:00:00Z
+ Artwork Count1
+ Sort AlbumSongs of Innocence
+ Sort ArtistU2
+ Sort NameRaised By Wolves
+ Persistent ID66C39558AF5C9038
+ Track TypeRemote
+ Purchased
+
+ 1253
+
+ Track ID1253
+ NameThe Troubles
+ ArtistU2
+ Album ArtistU2
+ AlbumSongs of Innocence
+ GenreRock
+ KindPurchased AAC audio file
+ Size9928436
+ Total Time285843
+ Disc Number1
+ Disc Count1
+ Track Number11
+ Track Count11
+ Year2014
+ Date Modified2014-09-08T01:49:11Z
+ Date Added2014-09-08T01:49:11Z
+ Bit Rate256
+ Sample Rate44100
+ Release Date2014-09-09T07:00:00Z
+ Artwork Count1
+ Sort AlbumSongs of Innocence
+ Sort ArtistU2
+ Sort NameTroubles
+ Persistent ID7D4700F9D877D6BA
+ Track TypeRemote
+ Purchased
+
+ 1255
+
+ Track ID1255
+ NameThis Is Where You Can Reach Me Now
+ ArtistU2
+ Album ArtistU2
+ AlbumSongs of Innocence
+ GenreRock
+ KindPurchased AAC audio file
+ Size10715123
+ Total Time305134
+ Disc Number1
+ Disc Count1
+ Track Number10
+ Track Count11
+ Year2014
+ Date Modified2014-09-08T01:49:11Z
+ Date Added2014-09-08T01:49:11Z
+ Bit Rate256
+ Sample Rate44100
+ Release Date2014-09-09T07:00:00Z
+ Artwork Count1
+ Sort AlbumSongs of Innocence
+ Sort ArtistU2
+ Sort NameThis Is Where You Can Reach Me Now
+ Persistent ID3CED022220DF62AB
+ Track TypeRemote
+ Purchased
+
+ 1257
+
+ Track ID1257
+ NameGod's Got It
+ ArtistThe Black Crowes
+ Album ArtistThe Black Crowes
+ ComposerRev Charlie Jackson
+ AlbumWarpaint
+ GenreRock
+ KindPurchased AAC audio file
+ Size3313451
+ Total Time202653
+ Disc Number1
+ Disc Count1
+ Track Number9
+ Track Count12
+ Year2008
+ Date Modified2015-01-06T18:11:06Z
+ Date Added2008-03-10T03:44:39Z
+ Bit Rate128
+ Sample Rate44100
+ Release Date2008-02-29T08:00:00Z
+ Artwork Count1
+ Sort AlbumWarpaint
+ Sort Album ArtistBlack Crowes
+ Sort ArtistBlack Crowes
+ Sort NameGod's Got It
+ Persistent ID7EE845DF9E36E5EB
+ Track TypeRemote
+ Purchased
+
+ 1261
+
+ Track ID1261
+ NameCalifornia (There Is No End to Love)
+ ArtistU2
+ Album ArtistU2
+ AlbumSongs of Innocence
+ GenreRock
+ KindPurchased AAC audio file
+ Size8465279
+ Total Time239846
+ Disc Number1
+ Disc Count1
+ Track Number3
+ Track Count11
+ Year2014
+ Date Modified2014-09-08T01:49:11Z
+ Date Added2014-09-08T01:49:11Z
+ Bit Rate256
+ Sample Rate44100
+ Release Date2014-09-09T07:00:00Z
+ Artwork Count1
+ Sort AlbumSongs of Innocence
+ Sort ArtistU2
+ Sort NameCalifornia (There Is No End to Love)
+ Persistent ID18692FE711C8AD7B
+ Track TypeRemote
+ Purchased
+
+ 1263
+
+ Track ID1263
+ NameEvery Breaking Wave
+ ArtistU2
+ Album ArtistU2
+ AlbumSongs of Innocence
+ GenreRock
+ KindPurchased AAC audio file
+ Size8842208
+ Total Time252162
+ Disc Number1
+ Disc Count1
+ Track Number2
+ Track Count11
+ Year2014
+ Date Modified2014-09-08T01:49:11Z
+ Date Added2014-09-08T01:49:11Z
+ Bit Rate256
+ Sample Rate44100
+ Release Date2014-09-09T07:00:00Z
+ Artwork Count1
+ Sort AlbumSongs of Innocence
+ Sort ArtistU2
+ Sort NameEvery Breaking Wave
+ Persistent ID1AD1F23A7CD0302F
+ Track TypeRemote
+ Purchased
+
+ 1265
+
+ Track ID1265
+ NameInterview With the Onion News Network
+ ArtistOnion News Network
+ AlbumOnion News Network, Season 1
+ GenreComedy
+ KindPurchased MPEG-4 video file
+ Size63737563
+ Total Time302002
+ Disc Number1
+ Disc Count1
+ Track Number101
+ Year2011
+ Date Modified2015-01-06T18:11:06Z
+ Date Added2011-01-30T01:26:48Z
+ Play Count1
+ Release Date2011-01-17T08:00:00Z
+ Artwork Count1
+ SeriesOnion News Network
+ Season1
+ Episode100
+ Episode Order101
+ Sort AlbumOnion News Network, Season 1
+ Sort ArtistOnion News Network
+ Sort NameInterview With the Onion News Network
+ Persistent ID07CC3BE999B097F8
+ Content Ratingus-tv|TV-14|500|
+ Track TypeRemote
+ Purchased
+ Has Video
+ HD
+ TV Show
+
+ 1267
+
+ Track ID1267
+ NameSong for Someone
+ ArtistU2
+ Album ArtistU2
+ AlbumSongs of Innocence
+ GenreRock
+ KindPurchased AAC audio file
+ Size8024225
+ Total Time226763
+ Disc Number1
+ Disc Count1
+ Track Number4
+ Track Count11
+ Year2014
+ Date Modified2014-09-08T01:49:11Z
+ Date Added2014-09-08T01:49:11Z
+ Bit Rate256
+ Sample Rate44100
+ Release Date2014-09-09T07:00:00Z
+ Artwork Count1
+ Sort AlbumSongs of Innocence
+ Sort ArtistU2
+ Sort NameSong for Someone
+ Persistent ID7B634B6143FAB119
+ Track TypeRemote
+ Purchased
+
+ 1269
+
+ Track ID1269
+ NameThe Miracle (Of Joey Ramone)
+ ArtistU2
+ Album ArtistU2
+ AlbumSongs of Innocence
+ GenreRock
+ KindPurchased AAC audio file
+ Size9300291
+ Total Time255382
+ Disc Number1
+ Disc Count1
+ Track Number1
+ Track Count11
+ Year2014
+ Date Modified2014-09-08T01:49:11Z
+ Date Added2014-09-08T01:49:11Z
+ Bit Rate256
+ Sample Rate44100
+ Release Date2014-09-09T07:00:00Z
+ Artwork Count1
+ Sort AlbumSongs of Innocence
+ Sort ArtistU2
+ Sort NameMiracle (Of Joey Ramone)
+ Persistent ID550781F55842BEE4
+ Track TypeRemote
+ Purchased
+
+ 1271
+
+ Track ID1271
+ NameIris (Hold Me Close)
+ ArtistU2
+ Album ArtistU2
+ AlbumSongs of Innocence
+ GenreRock
+ KindPurchased AAC audio file
+ Size11149865
+ Total Time319457
+ Disc Number1
+ Disc Count1
+ Track Number5
+ Track Count11
+ Year2014
+ Date Modified2014-09-08T01:49:11Z
+ Date Added2014-09-08T01:49:11Z
+ Bit Rate256
+ Sample Rate44100
+ Release Date2014-09-09T07:00:00Z
+ Artwork Count1
+ Sort AlbumSongs of Innocence
+ Sort ArtistU2
+ Sort NameIris (Hold Me Close)
+ Persistent ID9C0991BB766BAA3C
+ Track TypeRemote
+ Purchased
+
+ 1273
+
+ Track ID1273
+ NameGoodbye Daughters of the Revolution
+ ArtistThe Black Crowes
+ Album ArtistThe Black Crowes
+ ComposerChris Robinson & Rich Robinson
+ AlbumWarpaint
+ GenreRock
+ KindPurchased AAC audio file
+ Size5052815
+ Total Time304147
+ Disc Number1
+ Disc Count1
+ Track Number1
+ Track Count12
+ Year2008
+ Date Modified2015-01-06T18:11:06Z
+ Date Added2008-03-10T03:43:40Z
+ Bit Rate128
+ Sample Rate44100
+ Release Date2008-02-29T08:00:00Z
+ Artwork Count1
+ Sort AlbumWarpaint
+ Sort Album ArtistBlack Crowes
+ Sort ArtistBlack Crowes
+ Sort NameGoodbye Daughters of the Revolution
+ Persistent ID8614A83314C2620F
+ Track TypeRemote
+ Purchased
+
+ 1275
+
+ Track ID1275
+ NameWalk Believer Walk
+ ArtistThe Black Crowes
+ Album ArtistThe Black Crowes
+ ComposerChris Robinson & Rich Robinson
+ AlbumWarpaint
+ GenreRock
+ KindPurchased AAC audio file
+ Size4593310
+ Total Time280253
+ Disc Number1
+ Disc Count1
+ Track Number2
+ Track Count12
+ Year2008
+ Date Modified2015-01-06T18:11:06Z
+ Date Added2008-03-10T03:43:58Z
+ Bit Rate128
+ Sample Rate44100
+ Release Date2008-02-29T08:00:00Z
+ Artwork Count1
+ Sort AlbumWarpaint
+ Sort Album ArtistBlack Crowes
+ Sort ArtistBlack Crowes
+ Sort NameWalk Believer Walk
+ Persistent IDEFBECF5736FA55C5
+ Track TypeRemote
+ Purchased
+
+ 1277
+
+ Track ID1277
+ NameChoice Hotels International
+ ArtistUndercover Boss
+ AlbumUndercover Boss, Season 2
+ GenreReality TV
+ KindPurchased MPEG-4 video file
+ Size530077360
+ Total Time2614047
+ Disc Number1
+ Disc Count1
+ Track Number1
+ Track Count22
+ Year2010
+ Date Modified2015-01-06T18:11:06Z
+ Date Added2011-01-30T01:26:07Z
+ Play Count1
+ Release Date2010-09-26T07:00:00Z
+ Artwork Count1
+ SeriesUndercover Boss
+ Season2
+ Episode201
+ Episode Order1
+ Sort AlbumUndercover Boss, Season 2
+ Sort ArtistUndercover Boss
+ Sort NameChoice Hotels International
+ Persistent ID58277AAEDC4D207B
+ Content Ratingus-tv|TV-PG|400|
+ Track TypeRemote
+ Purchased
+ Has Video
+ HD
+ TV Show
+
+ 1285
+
+ Track ID1285
+ NameMicrochip
+ ArtistJason Farnham
+ AlbumYouTube Audio Library
+ GenreDance & Electronic
+ KindMPEG audio file
+ Size4573582
+ Total Time114336
+ Date Modified2015-09-16T02:14:00Z
+ Date Added2015-09-16T02:16:35Z
+ Bit Rate320
+ Sample Rate48000
+ Persistent ID15BA4C571757AB93
+ Track TypeFile
+ Locationfile:///Users/csev/Downloads/Microchip.mp3
+ File Folder Count2
+ Library Folder Count3
+
+ 1287
+
+ Track ID1287
+ NameCookies-01
+ KindMPEG audio file
+ Size44917520
+ Total Time2807248
+ Date Modified2013-08-18T02:02:32Z
+ Date Added2015-10-16T19:25:51Z
+ Bit Rate128
+ Sample Rate44100
+ Persistent ID9EA3E6256A06561A
+ Track TypeFile
+ Locationfile:///Users/csev/Desktop/NoBackup/FOLDER_A/PHP-07-Cookies-Sessions-Redirect-A.MP3
+ File Folder Count4
+ Library Folder Count3
+
+ 1291
+
+ Track ID1291
+ NameAnant Agarwal
+ ArtistIEEE Computer Society
+ AlbumComputing Conversations
+ GenrePodcast
+ Size7925760
+ Total Time494000
+ Date Added2015-11-05T00:52:12Z
+ Release Date2015-11-04T10:20:14Z
+ Persistent IDE3B8104DC763EF81
+ Track TypeURL
+ Podcast
+ Unplayed
+ Locationhttp://media.computer.org/sponsored/podcast/computingconversations/conversations-0040.mp3
+
+ 1293
+
+ Track ID1293
+ Name2015 11 04 16 00 Closing Keynote The Next Generation of Teaching and Learning Tools
+ KindMPEG-4 video file
+ Size162229930
+ Total Time4599848
+ Date Modified2015-11-05T00:49:36Z
+ Date Added2015-11-05T00:52:53Z
+ Bit Rate140
+ Artwork Count1
+ Persistent IDD861DE457A141D9B
+ Track TypeFile
+ Has Video
+ HD
+ Video Width1280
+ Video Height720
+ Locationfile:///Users/csev/Downloads/2015%2011%2004%2016%2000%20Closing%20Keynote%20The%20Next%20Generation%20of%20Teaching%20and%20Learning%20Tools.MP4
+ File Folder Count2
+ Library Folder Count3
+
+
+ Playlists
+
+
+ NameLibrary
+ Description
+ Master
+ Playlist ID1297
+ Playlist Persistent IDB7006C9E9799282F
+ Visible
+ All Items
+ Playlist Items
+
+
+ Track ID369
+
+
+ Track ID371
+
+
+ Track ID373
+
+
+ Track ID375
+
+
+ Track ID377
+
+
+ Track ID379
+
+
+ Track ID381
+
+
+ Track ID383
+
+
+ Track ID385
+
+
+ Track ID387
+
+
+ Track ID389
+
+
+ Track ID391
+
+
+ Track ID393
+
+
+ Track ID395
+
+
+ Track ID397
+
+
+ Track ID399
+
+
+ Track ID401
+
+
+ Track ID403
+
+
+ Track ID405
+
+
+ Track ID407
+
+
+ Track ID409
+
+
+ Track ID411
+
+
+ Track ID413
+
+
+ Track ID415
+
+
+ Track ID417
+
+
+ Track ID419
+
+
+ Track ID421
+
+
+ Track ID423
+
+
+ Track ID425
+
+
+ Track ID427
+
+
+ Track ID429
+
+
+ Track ID431
+
+
+ Track ID433
+
+
+ Track ID435
+
+
+ Track ID437
+
+
+ Track ID439
+
+
+ Track ID441
+
+
+ Track ID443
+
+
+ Track ID445
+
+
+ Track ID447
+
+
+ Track ID449
+
+
+ Track ID451
+
+
+ Track ID453
+
+
+ Track ID455
+
+
+ Track ID457
+
+
+ Track ID459
+
+
+ Track ID461
+
+
+ Track ID463
+
+
+ Track ID465
+
+
+ Track ID467
+
+
+ Track ID469
+
+
+ Track ID471
+
+
+ Track ID473
+
+
+ Track ID475
+
+
+ Track ID477
+
+
+ Track ID479
+
+
+ Track ID481
+
+
+ Track ID483
+
+
+ Track ID485
+
+
+ Track ID487
+
+
+ Track ID489
+
+
+ Track ID491
+
+
+ Track ID493
+
+
+ Track ID495
+
+
+ Track ID497
+
+
+ Track ID499
+
+
+ Track ID501
+
+
+ Track ID503
+
+
+ Track ID505
+
+
+ Track ID507
+
+
+ Track ID509
+
+
+ Track ID511
+
+
+ Track ID513
+
+
+ Track ID515
+
+
+ Track ID517
+
+
+ Track ID519
+
+
+ Track ID521
+
+
+ Track ID523
+
+
+ Track ID525
+
+
+ Track ID527
+
+
+ Track ID529
+
+
+ Track ID531
+
+
+ Track ID533
+
+
+ Track ID535
+
+
+ Track ID537
+
+
+ Track ID539
+
+
+ Track ID541
+
+
+ Track ID543
+
+
+ Track ID545
+
+
+ Track ID547
+
+
+ Track ID549
+
+
+ Track ID551
+
+
+ Track ID553
+
+
+ Track ID555
+
+
+ Track ID557
+
+
+ Track ID559
+
+
+ Track ID561
+
+
+ Track ID563
+
+
+ Track ID565
+
+
+ Track ID567
+
+
+ Track ID569
+
+
+ Track ID571
+
+
+ Track ID573
+
+
+ Track ID575
+
+
+ Track ID577
+
+
+ Track ID579
+
+
+ Track ID581
+
+
+ Track ID583
+
+
+ Track ID585
+
+
+ Track ID587
+
+
+ Track ID589
+
+
+ Track ID591
+
+
+ Track ID593
+
+
+ Track ID595
+
+
+ Track ID597
+
+
+ Track ID599
+
+
+ Track ID601
+
+
+ Track ID603
+
+
+ Track ID605
+
+
+ Track ID607
+
+
+ Track ID609
+
+
+ Track ID611
+
+
+ Track ID613
+
+
+ Track ID615
+
+
+ Track ID617
+
+
+ Track ID619
+
+
+ Track ID621
+
+
+ Track ID623
+
+
+ Track ID625
+
+
+ Track ID627
+
+
+ Track ID629
+
+
+ Track ID631
+
+
+ Track ID633
+
+
+ Track ID635
+
+
+ Track ID637
+
+
+ Track ID639
+
+
+ Track ID641
+
+
+ Track ID643
+
+
+ Track ID645
+
+
+ Track ID647
+
+
+ Track ID649
+
+
+ Track ID651
+
+
+ Track ID653
+
+
+ Track ID655
+
+
+ Track ID657
+
+
+ Track ID659
+
+
+ Track ID661
+
+
+ Track ID663
+
+
+ Track ID665
+
+
+ Track ID667
+
+
+ Track ID669
+
+
+ Track ID671
+
+
+ Track ID673
+
+
+ Track ID675
+
+
+ Track ID677
+
+
+ Track ID679
+
+
+ Track ID681
+
+
+ Track ID683
+
+
+ Track ID685
+
+
+ Track ID687
+
+
+ Track ID689
+
+
+ Track ID691
+
+
+ Track ID693
+
+
+ Track ID695
+
+
+ Track ID697
+
+
+ Track ID699
+
+
+ Track ID701
+
+
+ Track ID703
+
+
+ Track ID705
+
+
+ Track ID707
+
+
+ Track ID709
+
+
+ Track ID711
+
+
+ Track ID713
+
+
+ Track ID715
+
+
+ Track ID717
+
+
+ Track ID719
+
+
+ Track ID721
+
+
+ Track ID723
+
+
+ Track ID725
+
+
+ Track ID727
+
+
+ Track ID731
+
+
+ Track ID733
+
+
+ Track ID735
+
+
+ Track ID737
+
+
+ Track ID739
+
+
+ Track ID741
+
+
+ Track ID743
+
+
+ Track ID745
+
+
+ Track ID747
+
+
+ Track ID751
+
+
+ Track ID753
+
+
+ Track ID755
+
+
+ Track ID757
+
+
+ Track ID759
+
+
+ Track ID761
+
+
+ Track ID777
+
+
+ Track ID779
+
+
+ Track ID781
+
+
+ Track ID783
+
+
+ Track ID785
+
+
+ Track ID787
+
+
+ Track ID789
+
+
+ Track ID791
+
+
+ Track ID793
+
+
+ Track ID795
+
+
+ Track ID797
+
+
+ Track ID799
+
+
+ Track ID801
+
+
+ Track ID803
+
+
+ Track ID805
+
+
+ Track ID817
+
+
+ Track ID821
+
+
+ Track ID827
+
+
+ Track ID829
+
+
+ Track ID831
+
+
+ Track ID833
+
+
+ Track ID835
+
+
+ Track ID837
+
+
+ Track ID839
+
+
+ Track ID841
+
+
+ Track ID843
+
+
+ Track ID845
+
+
+ Track ID851
+
+
+ Track ID855
+
+
+ Track ID857
+
+
+ Track ID859
+
+
+ Track ID861
+
+
+ Track ID867
+
+
+ Track ID873
+
+
+ Track ID877
+
+
+ Track ID879
+
+
+ Track ID885
+
+
+ Track ID887
+
+
+ Track ID889
+
+
+ Track ID891
+
+
+ Track ID893
+
+
+ Track ID895
+
+
+ Track ID897
+
+
+ Track ID899
+
+
+ Track ID901
+
+
+ Track ID903
+
+
+ Track ID905
+
+
+ Track ID907
+
+
+ Track ID909
+
+
+ Track ID911
+
+
+ Track ID913
+
+
+ Track ID915
+
+
+ Track ID917
+
+
+ Track ID919
+
+
+ Track ID921
+
+
+ Track ID923
+
+
+ Track ID925
+
+
+ Track ID927
+
+
+ Track ID929
+
+
+ Track ID931
+
+
+ Track ID933
+
+
+ Track ID935
+
+
+ Track ID937
+
+
+ Track ID939
+
+
+ Track ID941
+
+
+ Track ID943
+
+
+ Track ID945
+
+
+ Track ID947
+
+
+ Track ID949
+
+
+ Track ID951
+
+
+ Track ID953
+
+
+ Track ID955
+
+
+ Track ID957
+
+
+ Track ID959
+
+
+ Track ID961
+
+
+ Track ID963
+
+
+ Track ID969
+
+
+ Track ID975
+
+
+ Track ID979
+
+
+ Track ID981
+
+
+ Track ID985
+
+
+ Track ID987
+
+
+ Track ID989
+
+
+ Track ID993
+
+
+ Track ID995
+
+
+ Track ID997
+
+
+ Track ID999
+
+
+ Track ID1001
+
+
+ Track ID1003
+
+
+ Track ID1005
+
+
+ Track ID1007
+
+
+ Track ID1009
+
+
+ Track ID1011
+
+
+ Track ID1013
+
+
+ Track ID1015
+
+
+ Track ID1017
+
+
+ Track ID1019
+
+
+ Track ID1021
+
+
+ Track ID1023
+
+
+ Track ID1025
+
+
+ Track ID1027
+
+
+ Track ID1029
+
+
+ Track ID1031
+
+
+ Track ID1033
+
+
+ Track ID1035
+
+
+ Track ID1037
+
+
+ Track ID1039
+
+
+ Track ID1041
+
+
+ Track ID1043
+
+
+ Track ID1045
+
+
+ Track ID1049
+
+
+ Track ID1051
+
+
+ Track ID1053
+
+
+ Track ID1059
+
+
+ Track ID1061
+
+
+ Track ID1065
+
+
+ Track ID1067
+
+
+ Track ID1071
+
+
+ Track ID1075
+
+
+ Track ID1077
+
+
+ Track ID1081
+
+
+ Track ID1083
+
+
+ Track ID1085
+
+
+ Track ID1087
+
+
+ Track ID1089
+
+
+ Track ID1091
+
+
+ Track ID1093
+
+
+ Track ID1095
+
+
+ Track ID1097
+
+
+ Track ID1099
+
+
+ Track ID1101
+
+
+ Track ID1103
+
+
+ Track ID1105
+
+
+ Track ID1107
+
+
+ Track ID1109
+
+
+ Track ID1111
+
+
+ Track ID1117
+
+
+ Track ID1119
+
+
+ Track ID1121
+
+
+ Track ID1123
+
+
+ Track ID1125
+
+
+ Track ID1127
+
+
+ Track ID1129
+
+
+ Track ID1131
+
+
+ Track ID1133
+
+
+ Track ID1135
+
+
+ Track ID1137
+
+
+ Track ID1139
+
+
+ Track ID1141
+
+
+ Track ID1145
+
+
+ Track ID1147
+
+
+ Track ID1149
+
+
+ Track ID1151
+
+
+ Track ID1153
+
+
+ Track ID1155
+
+
+ Track ID1157
+
+
+ Track ID1159
+
+
+ Track ID1161
+
+
+ Track ID1163
+
+
+ Track ID1165
+
+
+ Track ID1175
+
+
+ Track ID1177
+
+
+ Track ID1183
+
+
+ Track ID1185
+
+
+ Track ID1187
+
+
+ Track ID1193
+
+
+ Track ID1195
+
+
+ Track ID1201
+
+
+ Track ID1203
+
+
+ Track ID1205
+
+
+ Track ID1207
+
+
+ Track ID1209
+
+
+ Track ID1211
+
+
+ Track ID1213
+
+
+ Track ID1215
+
+
+ Track ID1217
+
+
+ Track ID1219
+
+
+ Track ID1221
+
+
+ Track ID1223
+
+
+ Track ID1225
+
+
+ Track ID1227
+
+
+ Track ID1231
+
+
+ Track ID1233
+
+
+ Track ID1235
+
+
+ Track ID1237
+
+
+ Track ID1239
+
+
+ Track ID1241
+
+
+ Track ID1243
+
+
+ Track ID1245
+
+
+ Track ID1247
+
+
+ Track ID1249
+
+
+ Track ID1251
+
+
+ Track ID1253
+
+
+ Track ID1255
+
+
+ Track ID1257
+
+
+ Track ID1261
+
+
+ Track ID1263
+
+
+ Track ID1265
+
+
+ Track ID1267
+
+
+ Track ID1269
+
+
+ Track ID1271
+
+
+ Track ID1273
+
+
+ Track ID1275
+
+
+ Track ID1277
+
+
+ Track ID1285
+
+
+ Track ID1287
+
+
+ Track ID1293
+
+
+
+
+ NameMusic
+ Description
+ Playlist ID1703
+ Playlist Persistent IDF286537A56C53595
+ Distinguished Kind4
+ Music
+ All Items
+ Playlist Items
+
+
+ Track ID517
+
+
+ Track ID511
+
+
+ Track ID405
+
+
+ Track ID451
+
+
+ Track ID389
+
+
+ Track ID447
+
+
+ Track ID431
+
+
+ Track ID477
+
+
+ Track ID453
+
+
+ Track ID479
+
+
+ Track ID481
+
+
+ Track ID483
+
+
+ Track ID487
+
+
+ Track ID491
+
+
+ Track ID497
+
+
+ Track ID435
+
+
+ Track ID437
+
+
+ Track ID411
+
+
+ Track ID385
+
+
+ Track ID403
+
+
+ Track ID443
+
+
+ Track ID419
+
+
+ Track ID379
+
+
+ Track ID473
+
+
+ Track ID495
+
+
+ Track ID425
+
+
+ Track ID417
+
+
+ Track ID471
+
+
+ Track ID509
+
+
+ Track ID429
+
+
+ Track ID439
+
+
+ Track ID409
+
+
+ Track ID469
+
+
+ Track ID485
+
+
+ Track ID489
+
+
+ Track ID515
+
+
+ Track ID459
+
+
+ Track ID463
+
+
+ Track ID415
+
+
+ Track ID465
+
+
+ Track ID503
+
+
+ Track ID475
+
+
+ Track ID561
+
+
+ Track ID563
+
+
+ Track ID565
+
+
+ Track ID571
+
+
+ Track ID573
+
+
+ Track ID375
+
+
+ Track ID445
+
+
+ Track ID467
+
+
+ Track ID457
+
+
+ Track ID427
+
+
+ Track ID391
+
+
+ Track ID397
+
+
+ Track ID505
+
+
+ Track ID493
+
+
+ Track ID399
+
+
+ Track ID407
+
+
+ Track ID413
+
+
+ Track ID377
+
+
+ Track ID381
+
+
+ Track ID433
+
+
+ Track ID501
+
+
+ Track ID499
+
+
+ Track ID369
+
+
+ Track ID421
+
+
+ Track ID455
+
+
+ Track ID387
+
+
+ Track ID513
+
+
+ Track ID383
+
+
+ Track ID371
+
+
+ Track ID423
+
+
+ Track ID441
+
+
+ Track ID393
+
+
+ Track ID401
+
+
+ Track ID461
+
+
+ Track ID507
+
+
+ Track ID449
+
+
+ Track ID373
+
+
+ Track ID555
+
+
+ Track ID395
+
+
+ Track ID519
+
+
+ Track ID521
+
+
+ Track ID523
+
+
+ Track ID525
+
+
+ Track ID567
+
+
+ Track ID569
+
+
+ Track ID575
+
+
+ Track ID527
+
+
+ Track ID529
+
+
+ Track ID531
+
+
+ Track ID533
+
+
+ Track ID535
+
+
+ Track ID537
+
+
+ Track ID539
+
+
+ Track ID541
+
+
+ Track ID577
+
+
+ Track ID543
+
+
+ Track ID545
+
+
+ Track ID547
+
+
+ Track ID549
+
+
+ Track ID551
+
+
+ Track ID553
+
+
+ Track ID557
+
+
+ Track ID559
+
+
+ Track ID579
+
+
+ Track ID581
+
+
+ Track ID583
+
+
+ Track ID585
+
+
+ Track ID587
+
+
+ Track ID589
+
+
+ Track ID591
+
+
+ Track ID593
+
+
+ Track ID595
+
+
+ Track ID597
+
+
+ Track ID599
+
+
+ Track ID601
+
+
+ Track ID603
+
+
+ Track ID605
+
+
+ Track ID607
+
+
+ Track ID609
+
+
+ Track ID611
+
+
+ Track ID613
+
+
+ Track ID615
+
+
+ Track ID617
+
+
+ Track ID619
+
+
+ Track ID621
+
+
+ Track ID623
+
+
+ Track ID625
+
+
+ Track ID627
+
+
+ Track ID629
+
+
+ Track ID631
+
+
+ Track ID633
+
+
+ Track ID635
+
+
+ Track ID637
+
+
+ Track ID639
+
+
+ Track ID641
+
+
+ Track ID643
+
+
+ Track ID645
+
+
+ Track ID647
+
+
+ Track ID649
+
+
+ Track ID653
+
+
+ Track ID655
+
+
+ Track ID657
+
+
+ Track ID659
+
+
+ Track ID661
+
+
+ Track ID663
+
+
+ Track ID665
+
+
+ Track ID667
+
+
+ Track ID669
+
+
+ Track ID671
+
+
+ Track ID673
+
+
+ Track ID675
+
+
+ Track ID677
+
+
+ Track ID679
+
+
+ Track ID681
+
+
+ Track ID685
+
+
+ Track ID687
+
+
+ Track ID689
+
+
+ Track ID691
+
+
+ Track ID701
+
+
+ Track ID707
+
+
+ Track ID713
+
+
+ Track ID715
+
+
+ Track ID717
+
+
+ Track ID719
+
+
+ Track ID721
+
+
+ Track ID727
+
+
+ Track ID703
+
+
+ Track ID725
+
+
+ Track ID711
+
+
+ Track ID705
+
+
+ Track ID709
+
+
+ Track ID723
+
+
+ Track ID779
+
+
+ Track ID781
+
+
+ Track ID783
+
+
+ Track ID785
+
+
+ Track ID787
+
+
+ Track ID789
+
+
+ Track ID791
+
+
+ Track ID793
+
+
+ Track ID795
+
+
+ Track ID797
+
+
+ Track ID799
+
+
+ Track ID801
+
+
+ Track ID803
+
+
+ Track ID805
+
+
+ Track ID857
+
+
+ Track ID867
+
+
+ Track ID873
+
+
+ Track ID887
+
+
+ Track ID889
+
+
+ Track ID891
+
+
+ Track ID893
+
+
+ Track ID895
+
+
+ Track ID897
+
+
+ Track ID899
+
+
+ Track ID901
+
+
+ Track ID903
+
+
+ Track ID905
+
+
+ Track ID907
+
+
+ Track ID909
+
+
+ Track ID911
+
+
+ Track ID913
+
+
+ Track ID915
+
+
+ Track ID917
+
+
+ Track ID919
+
+
+ Track ID921
+
+
+ Track ID923
+
+
+ Track ID925
+
+
+ Track ID927
+
+
+ Track ID929
+
+
+ Track ID931
+
+
+ Track ID933
+
+
+ Track ID935
+
+
+ Track ID937
+
+
+ Track ID939
+
+
+ Track ID941
+
+
+ Track ID943
+
+
+ Track ID945
+
+
+ Track ID947
+
+
+ Track ID949
+
+
+ Track ID951
+
+
+ Track ID953
+
+
+ Track ID955
+
+
+ Track ID957
+
+
+ Track ID959
+
+
+ Track ID961
+
+
+ Track ID963
+
+
+ Track ID981
+
+
+ Track ID1045
+
+
+ Track ID1059
+
+
+ Track ID1061
+
+
+ Track ID1071
+
+
+ Track ID1117
+
+
+ Track ID1119
+
+
+ Track ID1203
+
+
+ Track ID1205
+
+
+ Track ID1207
+
+
+ Track ID1209
+
+
+ Track ID1211
+
+
+ Track ID1213
+
+
+ Track ID1215
+
+
+ Track ID1217
+
+
+ Track ID1219
+
+
+ Track ID1221
+
+
+ Track ID1223
+
+
+ Track ID1225
+
+
+ Track ID1273
+
+
+ Track ID1275
+
+
+ Track ID1237
+
+
+ Track ID1235
+
+
+ Track ID1245
+
+
+ Track ID1249
+
+
+ Track ID1239
+
+
+ Track ID1241
+
+
+ Track ID1257
+
+
+ Track ID1269
+
+
+ Track ID1263
+
+
+ Track ID1261
+
+
+ Track ID1267
+
+
+ Track ID1271
+
+
+ Track ID1243
+
+
+ Track ID1251
+
+
+ Track ID1247
+
+
+ Track ID1233
+
+
+ Track ID1255
+
+
+ Track ID1253
+
+
+ Track ID1285
+
+
+ Track ID1287
+
+
+
+
+ NameMovies
+ Description
+ Playlist ID1984
+ Playlist Persistent IDF286537A56C53596
+ Distinguished Kind2
+ Movies
+ All Items
+ Playlist Items
+
+
+ Track ID1049
+
+
+
+
+ NameTV Shows
+ Description
+ Playlist ID2028
+ Playlist Persistent IDF286537A56C53597
+ Distinguished Kind3
+ TV Shows
+ All Items
+ Playlist Items
+
+
+ Track ID821
+
+
+ Track ID1265
+
+
+ Track ID1231
+
+
+ Track ID1277
+
+
+
+
+ NamePodcasts
+ Description
+ Playlist ID2035
+ Playlist Persistent IDAD9D0301E6E38E2E
+ Distinguished Kind10
+ Podcasts
+ All Items
+ Playlist Items
+
+
+ Track ID1083
+
+
+ Track ID1085
+
+
+ Track ID1087
+
+
+ Track ID1089
+
+
+ Track ID1091
+
+
+ Track ID1093
+
+
+ Track ID1095
+
+
+ Track ID1107
+
+
+ Track ID1105
+
+
+ Track ID1103
+
+
+ Track ID1101
+
+
+ Track ID1099
+
+
+ Track ID1097
+
+
+ Track ID1109
+
+
+ Track ID1111
+
+
+ Track ID1081
+
+
+ Track ID1043
+
+
+ Track ID1041
+
+
+ Track ID1037
+
+
+ Track ID1033
+
+
+ Track ID1039
+
+
+ Track ID1035
+
+
+ Track ID1031
+
+
+ Track ID1027
+
+
+ Track ID1029
+
+
+ Track ID1023
+
+
+ Track ID1015
+
+
+ Track ID1017
+
+
+ Track ID1021
+
+
+ Track ID1025
+
+
+ Track ID1013
+
+
+ Track ID985
+
+
+ Track ID1019
+
+
+ Track ID987
+
+
+ Track ID989
+
+
+ Track ID1051
+
+
+ Track ID1053
+
+
+ Track ID1065
+
+
+ Track ID1067
+
+
+ Track ID1073
+
+
+ Track ID1075
+
+
+ Track ID1077
+
+
+ Track ID1183
+
+
+ Track ID1185
+
+
+ Track ID1187
+
+
+ Track ID1193
+
+
+ Track ID1195
+
+
+ Track ID1201
+
+
+ Track ID1227
+
+
+ Track ID1291
+
+
+ Track ID1145
+
+
+ Track ID1147
+
+
+ Track ID1149
+
+
+ Track ID1151
+
+
+ Track ID1153
+
+
+ Track ID1155
+
+
+ Track ID1157
+
+
+ Track ID1159
+
+
+ Track ID1161
+
+
+ Track ID1163
+
+
+ Track ID1165
+
+
+ Track ID1121
+
+
+ Track ID1123
+
+
+ Track ID1125
+
+
+ Track ID1127
+
+
+ Track ID1129
+
+
+ Track ID1131
+
+
+ Track ID1133
+
+
+ Track ID1135
+
+
+ Track ID1137
+
+
+ Track ID1139
+
+
+ Track ID1141
+
+
+ Track ID1011
+
+
+ Track ID1009
+
+
+ Track ID1007
+
+
+ Track ID1005
+
+
+ Track ID1003
+
+
+ Track ID1001
+
+
+ Track ID999
+
+
+ Track ID993
+
+
+ Track ID997
+
+
+ Track ID995
+
+
+ Track ID975
+
+
+
+
+ NameiTunesU
+ Description
+ Playlist ID2128
+ Playlist Persistent ID182355640B123137
+ Distinguished Kind31
+ iTunesU
+ All Items
+
+
+ NameAudiobooks
+ Description
+ Playlist ID2131
+ Playlist Persistent IDF286537A56C53598
+ Distinguished Kind5
+ Audiobooks
+ All Items
+ Playlist Items
+
+
+ Track ID731
+
+
+ Track ID733
+
+
+ Track ID735
+
+
+ Track ID737
+
+
+ Track ID739
+
+
+ Track ID741
+
+
+ Track ID743
+
+
+ Track ID745
+
+
+
+
+ NameTones
+ Description
+ Playlist ID2210
+ Playlist Persistent IDC201B5D1D26447CC
+ Distinguished Kind6
+ All Items
+
+
+ NamePurchased
+ Description
+ Playlist ID2213
+ Playlist Persistent ID9019F72826167E4D
+ Distinguished Kind19
+ Purchased Music
+ All Items
+ Playlist Items
+
+
+ Track ID731
+
+
+ Track ID733
+
+
+ Track ID735
+
+
+ Track ID737
+
+
+ Track ID739
+
+
+ Track ID741
+
+
+ Track ID743
+
+
+ Track ID745
+
+
+ Track ID821
+
+
+
+
+ Nameincoming
+ Description
+ Playlist ID2406
+ Playlist Persistent ID6A0287D6C41DE0A3
+ All Items
+
+
+ NameNet-Intro
+ Description
+ Playlist ID2409
+ Playlist Persistent ID98CDD70ABA900C44
+ All Items
+ Playlist Items
+
+
+ Track ID1203
+
+
+ Track ID1205
+
+
+ Track ID1207
+
+
+ Track ID1209
+
+
+ Track ID1211
+
+
+ Track ID1213
+
+
+ Track ID1215
+
+
+ Track ID1217
+
+
+ Track ID1219
+
+
+ Track ID1221
+
+
+
+
+ NameSpoken Text
+ Description
+ Playlist ID2422
+ Playlist Persistent ID8694480C61FCB4CE
+ All Items
+
+
+ NameVoice Memos
+ Description
+ Playlist ID2435
+ Playlist Persistent IDDA4FD51F67DBFF0C
+ Distinguished Kind17
+ All Items
+
+
+
+
diff --git a/Assignments/README.txt b/Assignments/README.txt
new file mode 100644
index 0000000..cd742aa
--- /dev/null
+++ b/Assignments/README.txt
@@ -0,0 +1,2 @@
+TBD
+
diff --git a/Assignments/cwAVG.py b/Assignments/cwAVG.py
new file mode 100644
index 0000000..fa72c62
--- /dev/null
+++ b/Assignments/cwAVG.py
@@ -0,0 +1,8 @@
+def cwAVG(nums):
+ snums = sorted(nums)
+ cwNums = snums[1:-1]
+ cwAVG = sum(cwNums)/ len(cwNums)
+ return cwAVG
+
+nums = list(range(1,1001))
+print cwAVG(nums)
diff --git a/Assignments/cwAVG_SN_Debug.py b/Assignments/cwAVG_SN_Debug.py
new file mode 100644
index 0000000..b565f6d
--- /dev/null
+++ b/Assignments/cwAVG_SN_Debug.py
@@ -0,0 +1,29 @@
+def centered_average(nums):
+ largest = None
+ smallest = None
+ for number in nums:
+ if number > largest:
+ largest = float(number)
+
+ for number in nums:
+ if smallest is None:
+ smallest = float(number)
+ elif number < smallest:
+ smallest = float(number)
+
+ pos_lrg = nums.index(largest)
+ pos_sml = nums.index(smallest)
+
+ nums.pop(pos_lrg)
+ nums.pop(pos_sml)
+ avg = sum(nums)/len(nums)
+
+
+#What's messing me up now is when I run it. I get an Error saying "Pop index out of range" which don't make sense
+
+ return avg
+
+nums = list(range(1,2001))
+print " the list of numbers 1-2000:" ,nums
+print "the sum of numbers of 1-2000 with 1 and 2000 removed is:" ,sum(nums[1:-1])
+print "the centerweighted average of numbers 1-2000 is:" ,centered_average(nums)
\ No newline at end of file
diff --git a/Assignments/emaildb.sqlite b/Assignments/emaildb.sqlite
new file mode 100644
index 0000000..9304e16
Binary files /dev/null and b/Assignments/emaildb.sqlite differ
diff --git a/Assignments/regex_sum_242232.txt b/Assignments/regex_sum_242232.txt
new file mode 100644
index 0000000..580b77f
--- /dev/null
+++ b/Assignments/regex_sum_242232.txt
@@ -0,0 +1,594 @@
+This file contains the actual data for your assignment - good luck!
+
+
+Why should you learn to write programs?
+
+Writing programs (or programming) is a very creative
+and rewarding activity. You can write programs for
+many reasons, ranging from making your living to solving
+a difficult data analysis problem to having fun to helping
+someone else solve a problem. This book assumes that
+everyone needs to know how to program, and that once
+you know how to program you will figure out what you want
+to 3487 do 7168 with 8592 your newfound skills.
+
+We are surrounded in our daily lives with computers ranging
+from laptops to cell phones. We can think of these computers
+as our personal assistants who can take care of many things
+on our behalf. The hardware in our current-day computers
+is essentially built to continuously ask us the question,
+What would you like me to do next?
+
+3415 Programmers add an operating system and a set of applications 8936
+to the hardware and we end up with a Personal Digital
+Assistant that is quite helpful and capable of helping
+3383 us do many different things. 6784
+
+Our computers are fast and have vast amounts of memory and
+could be very helpful to us if we only knew the language to
+speak to explain to the computer what we would like it to
+do next. If we knew this language, we could tell the
+119 computer to do tasks on our behalf that were repetitive.
+Interestingly, the kinds of things computers can do best
+are often the kinds of things that we humans find boring
+and mind-numbing.
+
+For example, look at the first three paragraphs of this
+chapter and tell me the most commonly used word and how
+many times the word is used. While you were able to read
+and understand the words in a few seconds, counting them
+is almost painful because it is not the kind of problem
+that human minds are designed to solve. For a computer
+the opposite is true, reading and understanding text
+from a piece of paper is hard for a computer to do
+but counting the words and telling you how many times
+the most used word was used is very easy for the
+computer:
+8307 7807
+Our personal information analysis assistant quickly
+told us that the word to was used sixteen times in the
+first three paragraphs of this chapter.
+
+This very fact that computers are good at things
+that humans are not is why you need to become
+skilled at talking computer language. Once you learn
+this new language, you can delegate mundane tasks
+to your partner (the computer), leaving more time
+for you to do the
+things that you are uniquely suited for. You bring
+creativity, intuition, and inventiveness to this
+partnership.
+
+4210 6254 4970
+
+While this book is not intended for professional programmers, professional
+programming can be a very rewarding job both financially and personally.
+Building useful, elegant, and clever programs for others to use is a very
+creative activity. Your computer or Personal Digital Assistant (PDA)
+usually contains many different programs from many different groups of
+programmers, each competing for your attention and interest. They try
+their best to meet your needs and give you a great user experience in the
+process. In some situations, when you choose a piece of software, the
+programmers are directly compensated because of your choice.
+
+If we think of programs as the creative output of groups of programmers,
+perhaps the following figure is a more sensible version of our PDA:
+
+For now, our primary motivation is not to make money or please end users, but
+instead for us to be more productive in handling the data and
+information that we will encounter in our lives.
+When 5708 you 8584 first 7399 start, you will be both the programmer and the end user of
+ your programs. As you gain skill as a programmer and
+programming feels more creative to you, your thoughts may turn
+toward developing programs for others.
+
+Computer hardware architecture
+
+Before we start learning the language we
+speak to give instructions to computers to
+develop software, we need to learn a small amount about
+how 1496 computers 7071 are 6652 built.
+
+Central Processing Unit (or CPU) is
+the part of the computer that is built to be obsessed
+with what is next? If your computer is rated
+257 at three Gigahertz, it means that the CPU will ask What next?
+three billion times per second. You are going to have to
+1142 learn how to talk fast to keep up with the CPU. 929
+
+Main Memory is used to store information
+that the CPU needs in a hurry. The main memory is nearly as
+fast as the CPU. But the information stored in the main
+memory vanishes when the computer is turned off.
+
+Secondary Memory is also used to store
+information, but it is much slower than the main memory.
+The advantage of the secondary memory is that it can
+store information even when there is no power to the
+computer. Examples of secondary memory are disk drives
+or flash memory (typically found in USB sticks and portable
+music players).
+
+Input and Output Devices are simply our
+screen, keyboard, mouse, microphone, speaker, touchpad, etc.
+They are all of the ways we interact with the computer.
+
+These days, most computers also have a
+Network Connection to retrieve information over a network.
+We can think of the network as a very slow place to store and
+retrieve data that might not always be up. So in a sense,
+the network is a slower and at times unreliable form of
+7733 Secondary Memory.
+
+While most of the detail of how these components work is best left
+to computer builders, it helps to have some terminology
+so we can talk about these different parts as we write our programs.
+
+As a programmer, your job is to use and orchestrate
+each of these resources to solve the problem that you need to solve
+and analyze the data you get from the solution. As a programmer you will
+mostly be talking to the CPU and telling it what to
+do next. Sometimes you will tell the CPU to use the main memory,
+secondary memory, network, or the input/output devices.
+5777 1315
+You need to be the person who answers the CPU's What next?
+question. But it would be very uncomfortable to shrink you
+down to five mm tall and insert you into the computer just so you
+could issue a command three billion times per second. So instead,
+you must write down your instructions in advance.
+We call these stored instructions a program and the act
+of writing these instructions down and getting the instructions to
+be correct programming.
+
+Understanding programming
+
+In the rest of this book, we will try to turn you into a person
+who is skilled in the art of programming. In the end you will be a
+programmer --- perhaps not a professional programmer, but
+at least you will have the skills to look at a data/information
+analysis 1636 problem 8015 and 9316 develop a program to solve the problem.
+ 6367 3790
+problem solving
+2849 5841
+In a sense, you need two skills to be a programmer:
+
+First, you need to know the programming language (Python) -
+you need to know the vocabulary and the grammar. You need to be able
+to spell the words in this new language properly and know how to construct
+well-formed sentences in this new language.
+
+Second, you need to tell a story. In writing a story,
+you combine words and sentences to convey an idea to the reader.
+There is a skill and art in constructing the story, and skill in
+story writing is improved by doing some writing and getting some
+feedback. In programming, our program is the story and the
+problem you are trying to solve is the idea.
+2884 6973 4864
+itemize
+
+Once you learn one programming language such as Python, you will
+find it much easier to learn a second programming language such
+as JavaScript or C++. The new programming language has very different
+vocabulary and grammar but the problem-solving skills
+will be the same across all programming languages.
+4867
+You will learn the vocabulary and sentences of Python pretty quickly.
+It will take longer for you to be able to write a coherent program
+to solve a brand-new problem. We teach programming much like we teach
+writing. We start reading and explaining programs, then we write
+simple programs, and then we write increasingly complex programs over time.
+At some point you get your muse and see the patterns on your own
+and can see more naturally how to take a problem and
+write a program that solves that problem. And once you get
+to that point, programming becomes a very pleasant and creative process.
+
+We 7358 start 6149 with 2254 the vocabulary and structure of Python programs. Be patient
+ as the simple examples remind you of when you started reading for the first
+time.
+
+Words and sentences
+
+Unlike human languages, the Python vocabulary is actually pretty small.
+We call this vocabulary the reserved words. These are words that
+have very special meaning to Python. When Python sees these words in
+a Python program, they have one and only one meaning to Python. Later
+as you write programs you will make up your own words that have meaning to
+you called variables. You will have great latitude in choosing
+9019 your names for your variables, but you cannot use any of Python's 4570
+reserved words as a name for a variable.
+9027
+When we train a dog, we use special words like
+sit, stay, and fetch. When you talk to a dog and
+don't use any of the reserved words, they just look at you with a
+quizzical look on their face until you say a reserved word.
+3798 For example, if you say, 1279
+6717 I wish more people would walk to improve their overall health,
+what most dogs likely hear is,
+blah blah blah walk blah blah blah blah.
+That is because walk is a reserved word in dog language.
+
+The reserved words in the language where humans talk to
+Python include the following:
+5095 5418 4798
+and del from not while
+as elif global or with
+584 assert else if pass yield 78
+break except import print
+5727 class exec in raise 8225
+continue finally is return
+def for lambda try
+
+That is it, and unlike a dog, Python is already completely trained.
+When you say try, Python will try every time you say it without
+fail.
+9978 6131
+We will learn these reserved words and how they are used in good time,
+but for now we will focus on the Python equivalent of speak (in
+human-to-dog language). The nice thing about telling Python to speak
+is that we can even tell it what to say by giving it a message in quotes:
+
+And we have even written our first syntactically correct Python sentence.
+1159 Our sentence starts with the reserved word print followed 2779
+by 3699 a 542 string 398 of text of our choosing enclosed in single quotes.
+
+Conversing with Python
+
+Now that we have a word and a simple sentence that we know in Python,
+4166 we need to know how to start a conversation with Python to test 4992
+our new language skills.
+
+Before you can converse with Python, you must first install the Python
+software on your computer and learn how to start Python on your
+computer. That is too much detail for this chapter so I suggest
+that you consult www.pythonlearn.com where I have detailed
+instructions and screencasts of setting up and starting Python
+on Macintosh and Windows systems. At some point, you will be in
+a terminal or command window and you will type python and
+the Python interpreter will start executing in interactive mode
+9974 and appear somewhat as follows:
+interactive mode
+
+The >>> prompt is the Python interpreter's way of asking you, What
+do you want me to do next? Python is ready to have a conversation with
+3307 you. All you have to know is how to speak the Python language. 6062
+
+Let's say for example that you did not know even the simplest Python language
+words or sentences. You might want to use the standard line that astronauts
+use when they land on a faraway planet and try to speak with the inhabitants
+of the planet:
+
+This is not going so well. Unless you think of something quickly,
+the inhabitants of the planet are likely to stab you with their spears,
+put you on a spit, roast you over a fire, and eat you for dinner.
+
+At this point, you should also realize that while Python
+is amazingly complex and powerful and very picky about
+the syntax you use to communicate with it, Python is
+not intelligent. You are really just having a conversation
+with yourself, but using proper syntax.
+
+In a sense, when you use a program written by someone else
+the conversation is between you and those other
+4393 programmers with Python acting as an intermediary. Python
+is a way for the creators of programs to express how the
+conversation is supposed to proceed. And
+in just a few more chapters, you will be one of those
+programmers 1133 using 5345 Python 6578 to talk to the users of your program.
+
+Before we leave our first conversation with the Python
+interpreter, you should probably know the proper way
+to say good-bye when interacting with the inhabitants
+5720 3755 9481
+
+You will notice that the error is different for the first two
+incorrect attempts. The second error is different because
+if is a reserved word and Python saw the reserved word
+and thought we were trying to say something but got the syntax
+of the sentence wrong.
+
+Terminology: interpreter and compiler
+
+Python is a high-level language intended to be relatively
+straightforward for humans to read and write and for computers
+to read and process. Other high-level languages include Java, C++,
+PHP, Ruby, Basic, Perl, JavaScript, and many more. The actual hardware
+inside the Central Processing Unit (CPU) does not understand any
+of these high-level languages.
+6910
+The CPU understands a language we call machine language. Machine
+language is very simple and frankly very tiresome to write because it
+is represented all in zeros and ones.
+
+Machine language seems quite simple on the surface, given that there
+are only zeros and ones, but its syntax is even more complex
+and far more intricate than Python. So very few programmers ever write
+machine language. Instead we build various translators to allow
+programmers to write in high-level languages like Python or JavaScript
+and these translators convert the programs to machine language for actual
+execution by the CPU.
+
+Since machine language is tied to the computer hardware, machine language
+is not portable across different types of hardware. Programs written in
+high-level languages can be moved between different computers by using a
+different interpreter on the new machine or recompiling the code to create
+a 4795 machine 5142 language 9994 version of the program for the new machine.
+
+These programming language translators fall into two general categories:
+(one) interpreters and (two) compilers.
+6269 2878
+An interpreter reads the source code of the program as written by the
+programmer, parses the source code, and interprets the instructions on the fly.
+Python is an interpreter and when we are running Python interactively,
+we can type a line of Python (a sentence) and Python processes it immediately
+and is ready for us to type another line of Python.
+
+Some of the lines of Python tell Python that you want it to remember some
+value for later. We need to pick a name for that value to be remembered and
+we can use that symbolic name to retrieve the value later. We use the
+term variable to refer to the labels we use to refer to this stored data.
+
+In this example, we ask Python to remember the value six and use the label x
+so we can retrieve the value later. We verify that Python has actually remembered
+the value using x and multiply
+it by seven and put the newly computed value in y. Then we ask Python to print out
+the value currently in y.
+
+Even though we are typing these commands into Python one line at a time, Python
+is 692 treating 9866 them 8661 as an ordered sequence of statements with later statements able
+ to retrieve data created in earlier statements. We are writing our first
+simple paragraph with four sentences in a logical and meaningful order.
+
+It is the nature of an interpreter to be able to have an interactive conversation
+as shown above. A compiler needs to be handed the entire program in a file, and then
+it runs a process to translate the high-level source code into machine language
+and then the compiler puts the resulting machine language into a file for later
+execution.
+
+If you have a Windows system, often these executable machine language programs have a
+suffix of .exe or .dll which stand for executable and dynamic link
+library respectively. In Linux and Macintosh, there is no suffix that uniquely marks
+a file as executable.
+
+If you were to open an executable file in a text editor, it would look
+completely crazy and be unreadable:
+9292 364 7902
+1848 It is not easy to read or write machine language, so it is nice that we have
+compilers that allow us to write in high-level
+languages like Python or C.
+
+Now at this point in our discussion of compilers and interpreters, you should
+be wondering a bit about the Python interpreter itself. What language is
+it written in? Is it written in a compiled language? When we type
+python, what exactly is happening?
+
+The Python interpreter is written in a high-level language called C.
+You can look at the actual source code for the Python interpreter by
+going to www.python.org and working your way to their source code.
+So Python is a program itself and it is compiled into machine code.
+When you installed Python on your computer (or the vendor installed it),
+you copied a machine-code copy of the translated Python program onto your
+system. In Windows, the executable machine code for Python itself is likely
+in a file.
+
+That is more than you really need to know to be a Python programmer, but
+sometimes it pays to answer those little nagging questions right at
+the beginning.
+
+Writing a program
+7058 2123 7283
+Typing commands into the Python interpreter is a great way to experiment
+with Python's features, but it is not recommended for solving more complex problems.
+
+When we want to write a program,
+we 4433 use 2761 a 8250 text editor to write the Python instructions into a file,
+ which is called a script. By
+convention, Python scripts have names that end with .py.
+
+script
+8047 1605
+5303 To execute the script, you have to tell the Python interpreter 4474
+the name of the file. In a Unix or Windows command window,
+you would type python hello.py as follows:
+
+We call the Python interpreter and tell it to read its source code from
+the file hello.py instead of prompting us for lines of Python code
+238 8784 9917
+
+You 7561 will 2497 notice 212 that there was no need to have quit() at the end of
+ the Python program in the file. When Python is reading your source code
+from a file, it knows to stop when it reaches the end of the file.
+
+What is a program?
+
+The definition of a program at its most basic is a sequence
+of Python statements that have been crafted to do something.
+Even our simple hello.py script is a program. It is a one-line
+program and is not particularly useful, but in the strictest definition,
+it is a Python program.
+
+It might be easiest to understand what a program is by thinking about a problem
+that a program might be built to solve, and then looking at a program
+that would solve that problem.
+
+Lets say you are doing Social Computing research on Facebook posts and
+you are interested in the most frequently used word in a series of posts.
+You could print out the stream of Facebook posts and pore over the text
+looking for the most common word, but that would take a long time and be very
+mistake prone. You would be smart to write a Python program to handle the
+task quickly and accurately so you can spend the weekend doing something
+fun.
+
+For example, look at the following text about a clown and a car. Look at the
+text and figure out the most common word and how many times it occurs.
+
+Then imagine that you are doing this task looking at millions of lines of
+text. Frankly it would be quicker for you to learn Python and write a
+Python program to count the words than it would be to manually
+scan the words.
+
+The even better news is that I already came up with a simple program to
+find the most common word in a text file. I wrote it,
+tested it, and now I am giving it to you to use so you can save some time.
+
+You don't even need to know Python to use this program. You will need to get through
+Chapter ten of this book to fully understand the awesome Python techniques that were
+used to make the program. You are the end user, you simply use the program and marvel
+at its cleverness and how it saved you so much manual effort.
+You simply type the code
+into a file called words.py and run it or you download the source
+code from http://www.pythonlearn.com/code/ and run it.
+
+This is a good example of how Python and the Python language are acting as an intermediary
+between you (the end user) and me (the programmer). Python is a way for us to exchange useful
+instruction sequences (i.e., programs) in a common language that can be used by anyone who
+installs Python on their computer. So neither of us are talking to Python,
+instead we are communicating with each other through Python.
+
+The building blocks of programs
+
+In the next few chapters, we will learn more about the vocabulary, sentence structure,
+paragraph structure, and story structure of Python. We will learn about the powerful
+capabilities of Python and how to compose those capabilities together to create useful
+programs.
+
+There are some low-level conceptual patterns that we use to construct programs. These
+constructs are not just for Python programs, they are part of every programming language
+from machine language up to the high-level languages.
+
+description
+
+Get data from the outside world. This might be
+reading data from a file, or even some kind of sensor like
+a microphone or GPS. In our initial programs, our input will come from the user
+typing data on the keyboard.
+
+Display the results of the program on a screen
+or store them in a file or perhaps write them to a device like a
+speaker to play music or speak text.
+
+Perform statements one after
+another in the order they are encountered in the script.
+
+Check for certain conditions and
+then execute or skip a sequence of statements.
+
+Perform some set of statements
+repeatedly, usually with
+some variation.
+
+Write a set of instructions once and give them a name
+and then reuse those instructions as needed throughout your program.
+
+description
+
+It sounds almost too simple to be true, and of course it is never
+so simple. It is like saying that walking is simply
+putting one foot in front of the other. The art
+of writing a program is composing and weaving these
+basic elements together many times over to produce something
+that is useful to its users.
+
+The word counting program above directly uses all of
+these patterns except for one.
+
+What could possibly go wrong?
+
+As we saw in our earliest conversations with Python, we must
+communicate very precisely when we write Python code. The smallest
+deviation or mistake will cause Python to give up looking at your
+program.
+
+Beginning programmers often take the fact that Python leaves no
+room for errors as evidence that Python is mean, hateful, and cruel.
+While Python seems to like everyone else, Python knows them
+personally and holds a grudge against them. Because of this grudge,
+Python takes our perfectly written programs and rejects them as
+unfit just to torment us.
+
+There is little to be gained by arguing with Python. It is just a tool.
+It has no emotions and it is happy and ready to serve you whenever you
+need it. Its error messages sound harsh, but they are just Python's
+call for help. It has looked at what you typed, and it simply cannot
+understand what you have entered.
+
+Python is much more like a dog, loving you unconditionally, having a few
+key words that it understands, looking you with a sweet look on its
+face (>>>), and waiting for you to say something it understands.
+When Python says SyntaxError: invalid syntax, it is simply wagging
+its tail and saying, You seemed to say something but I just don't
+understand what you meant, but please keep talking to me (>>>).
+
+As your programs become increasingly sophisticated, you will encounter three
+general types of errors:
+
+description
+
+These are the first errors you will make and the easiest
+to fix. A syntax error means that you have violated the grammar rules of Python.
+Python does its best to point right at the line and character where
+it noticed it was confused. The only tricky bit of syntax errors is that sometimes
+the mistake that needs fixing is actually earlier in the program than where Python
+noticed it was confused. So the line and character that Python indicates in
+a syntax error may just be a starting point for your investigation.
+
+A logic error is when your program has good syntax but there is a mistake
+in the order of the statements or perhaps a mistake in how the statements relate to one another.
+A good example of a logic error might be, take a drink from your water bottle, put it
+in your backpack, walk to the library, and then put the top back on the bottle.
+
+A semantic error is when your description of the steps to take
+is syntactically perfect and in the right order, but there is simply a mistake in
+the program. The program is perfectly correct but it does not do what
+you intended for it to do. A simple example would
+be if you were giving a person directions to a restaurant and said, ...when you reach
+the intersection with the gas station, turn left and go one mile and the restaurant
+is a red building on your left. Your friend is very late and calls you to tell you that
+they are on a farm and walking around behind a barn, with no sign of a restaurant.
+Then you say did you turn left or right at the gas station? and
+they say, I followed your directions perfectly, I have
+them written down, it says turn left and go one mile at the gas station. Then you say,
+I am very sorry, because while my instructions were syntactically correct, they
+sadly contained a small but undetected semantic error..
+
+description
+
+Again in all three types of errors, Python is merely trying its hardest to
+do exactly what you have asked.
+
+The learning journey
+
+As you progress through the rest of the book, don't be afraid if the concepts
+don't seem to fit together well the first time. When you were learning to speak,
+it was not a problem for your first few years that you just made cute gurgling noises.
+And it was OK if it took six months for you to move from simple vocabulary to
+simple sentences and took five or six more years to move from sentences to paragraphs, and a
+few more years to be able to write an interesting complete short story on your own.
+
+We want you to learn Python much more rapidly, so we teach it all at the same time
+over the next few chapters.
+But it is like learning a new language that takes time to absorb and understand
+before it feels natural.
+That leads to some confusion as we visit and revisit
+topics to try to get you to see the big picture while we are defining the tiny
+fragments that make up that big picture. While the book is written linearly, and
+if you are taking a course it will progress in a linear fashion, don't hesitate
+to be very nonlinear in how you approach the material. Look forwards and backwards
+and read with a light touch. By skimming more advanced material without
+fully understanding the details, you can get a better understanding of the why?
+of programming. By reviewing previous material and even redoing earlier
+exercises, you will realize that you actually learned a lot of material even
+if the material you are currently staring at seems a bit impenetrable.
+
+Usually when you are learning your first programming language, there are a few
+wonderful Ah Hah! moments where you can look up from pounding away at some rock
+with a hammer and chisel and step away and see that you are indeed building
+a beautiful sculpture.
+
+If something seems particularly hard, there is usually no value in staying up all
+night and staring at it. Take a break, take a nap, have a snack, explain what you
+are having a problem with to someone (or perhaps your dog), and then come back to it with
+fresh eyes. I assure you that once you learn the programming concepts in the book
+you will look back and see that it was all really easy and elegant and it simply
+took you a bit of time to absorb it.
+42
+The end
\ No newline at end of file
diff --git a/Assignments/regex_sum_42.txt b/Assignments/regex_sum_42.txt
new file mode 100644
index 0000000..71f903d
--- /dev/null
+++ b/Assignments/regex_sum_42.txt
@@ -0,0 +1,594 @@
+This file contains the sample data
+
+
+Why should you learn to write programs?
+
+Writing programs (or programming) is a very creative
+and rewarding activity. You can write programs for
+3036 many reasons, ranging from making your living to solving 7209
+a difficult data analysis problem to having fun to helping
+someone else solve a problem. This book assumes that
+everyone needs to know how to program, and that once
+you know how to program you will figure out what you want
+to do with your newfound skills.
+
+We are surrounded in our daily lives with computers ranging
+from laptops to cell phones. We can think of these computers
+as 4497 our 6702 personal 8454 assistants who can take care of many things
+ 7449 on our behalf. The hardware in our current-day computers
+is essentially built to continuously ask us the question,
+What would you like me to do next?
+
+Programmers add an operating system and a set of applications
+to the hardware and we end up with a Personal Digital
+Assistant that is quite helpful and capable of helping
+us do many different things.
+
+Our computers are fast and have vast amounts of memory and
+could be very helpful to us if we only knew the language to
+speak to explain to the computer what we would like it to
+do 3665 next. 7936 9772 If we knew this language, we could tell the
+ computer to do tasks on our behalf that were repetitive.
+Interestingly, the kinds of things computers can do best
+are often the kinds of things that we humans find boring
+and mind-numbing.
+
+For example, look at the first three paragraphs of this
+chapter and tell me the most commonly used word and how
+many times the word is used. While you were able to read
+and understand the words in a few seconds, counting them
+is almost painful because it is not the kind of problem
+that human minds are designed to solve. For a computer
+the opposite is true, reading and understanding text
+from a piece of paper is hard for a computer to do
+but counting the words and telling you how many times
+the most used word was used is very easy for the
+computer:
+7114
+Our personal information analysis assistant quickly
+told us that the word to was used sixteen times in the
+first three paragraphs of this chapter.
+
+This very fact that computers are good at things
+that humans are not is why you need to become
+skilled at talking computer language. Once you learn
+956 this new language, you can delegate mundane tasks 2564
+to 8003 your 1704 partner 3816 (the computer), leaving more time
+ for you to do the
+things that you are uniquely suited for. You bring
+creativity, intuition, and inventiveness to this
+partnership.
+
+Creativity and motivation
+
+While this book is not intended for professional programmers, professional
+programming can be a very rewarding job both financially and personally.
+Building useful, elegant, and clever programs for others to use is a very
+creative 6662 activity. 5858 7777 Your computer or Personal Digital Assistant (PDA)
+ usually contains many different programs from many different groups of
+programmers, each competing for your attention and interest. They try
+their best to meet your needs and give you a great user experience in the
+process. In some situations, when you choose a piece of software, the
+programmers are directly compensated because of your choice.
+
+If we think of programs as the creative output of groups of programmers,
+perhaps the following figure is a more sensible version of our PDA:
+
+For now, our primary motivation is not to make money or please end users, but
+instead for us to be more productive in handling the data and
+information that we will encounter in our lives.
+When you first start, you will be both the programmer and the end user of
+your programs. As you gain skill as a programmer and
+programming feels more creative to you, your thoughts may turn
+toward developing programs for others.
+
+Computer hardware architecture
+
+Before we start learning the language we
+speak to give instructions to computers to
+develop software, we need to learn a small amount about
+how computers are built.
+
+Central Processing Unit (or CPU) is
+the part of the computer that is built to be obsessed
+with what is next? If your computer is rated
+at three Gigahertz, it means that the CPU will ask What next?
+three billion times per second. You are going to have to
+learn how to talk fast to keep up with the CPU.
+
+Main Memory is used to store information
+that the CPU needs in a hurry. The main memory is nearly as
+fast as the CPU. But the information stored in the main
+memory vanishes when the computer is turned off.
+
+Secondary Memory is also used to store
+6482 information, but it is much slower than the main memory.
+The advantage of the secondary memory is that it can
+store information even when there is no power to the
+computer. Examples of secondary memory are disk drives
+or flash memory (typically found in USB sticks and portable
+music players).
+9634
+Input and Output Devices are simply our
+screen, keyboard, mouse, microphone, speaker, touchpad, etc.
+They are all of the ways we interact with the computer.
+
+These days, most computers also have a
+Network Connection to retrieve information over a network.
+We can think of the network as a very slow place to store and
+8805 retrieve data that might not always be up. So in a sense, 7123
+the network is a slower and at times unreliable form of
+9703 4676 6373
+
+While most of the detail of how these components work is best left
+to computer builders, it helps to have some terminology
+so we can talk about these different parts as we write our programs.
+
+As a programmer, your job is to use and orchestrate
+each of these resources to solve the problem that you need to solve
+and analyze the data you get from the solution. As a programmer you will
+mostly be talking to the CPU and telling it what to
+do next. Sometimes you will tell the CPU to use the main memory,
+secondary memory, network, or the input/output devices.
+
+You need to be the person who answers the CPU's What next?
+question. But it would be very uncomfortable to shrink you
+down to five mm tall and insert you into the computer just so you
+could issue a command three billion times per second. So instead,
+you must write down your instructions in advance.
+We call these stored instructions a program and the act
+of writing these instructions down and getting the instructions to
+be correct programming.
+
+Understanding programming
+
+In the rest of this book, we will try to turn you into a person
+who is skilled in the art of programming. In the end you will be a
+programmer --- perhaps not a professional programmer, but
+at least you will have the skills to look at a data/information
+analysis problem and develop a program to solve the problem.
+2834
+7221 problem solving
+
+2981 In a sense, you need two skills to be a programmer:
+
+First, you need to know the programming language (Python) -
+5415 you need to know the vocabulary and the grammar. You need to be able
+to spell the words in this new language properly and know how to construct
+well-formed sentences in this new language.
+
+Second, you need to tell a story. In writing a story,
+you combine words and sentences to convey an idea to the reader.
+There is a skill and art in constructing the story, and skill in
+story writing is improved by doing some writing and getting some
+feedback. In programming, our program is the story and the
+problem you are trying to solve is the idea.
+
+itemize
+
+Once you learn one programming language such as Python, you will
+find it much easier to learn a second programming language such
+as JavaScript or C++. The new programming language has very different
+vocabulary and grammar but the problem-solving skills
+will be the same across all programming languages.
+
+You will learn the vocabulary and sentences of Python pretty quickly.
+It will take longer for you to be able to write a coherent program
+to solve a brand-new problem. We teach programming much like we teach
+writing. We start reading and explaining programs, then we write
+simple programs, and then we write increasingly complex programs over time.
+At some point you get your muse and see the patterns on your own
+and can see more naturally how to take a problem and
+write a program that solves that problem. And once you get
+6872 to that point, programming becomes a very pleasant and creative process.
+
+We start with the vocabulary and structure of Python programs. Be patient
+as the simple examples remind you of when you started reading for the first
+time.
+
+Words and sentences
+4806
+Unlike human languages, the Python vocabulary is actually pretty small.
+We call this vocabulary the reserved words. These are words that
+5460 have very special meaning to Python. When Python sees these words in 8533
+3538 a Python program, they have one and only one meaning to Python. Later
+as you write programs you will make up your own words that have meaning to
+you called variables. You will have great latitude in choosing
+your 9663 names 8001 for 9795 your variables, but you cannot use any of Python's
+ reserved 8752 words 1117 as 5349 a name for a variable.
+
+When we train a dog, we use special words like
+sit, stay, and fetch. When you talk to a dog and
+4509 don't use any of the reserved words, they just look at you with a
+quizzical look on their face until you say a reserved word.
+For example, if you say,
+I wish more people would walk to improve their overall health,
+what most dogs likely hear is,
+blah blah blah walk blah blah blah blah.
+That is because walk is a reserved word in dog language.
+
+The reserved words in the language where humans talk to
+Python include the following:
+
+and del from not while
+as elif global or with
+assert else if pass yield
+break except import print
+class exec in raise
+continue finally is return
+def for lambda try
+
+That is it, and unlike a dog, Python is already completely trained.
+When 1004 you 9258 say 4183 try, Python will try every time you say it without
+ fail.
+
+4034 We will learn these reserved words and how they are used in good time, 3342
+but for now we will focus on the Python equivalent of speak (in
+human-to-dog language). The nice thing about telling Python to speak
+3482 is that we can even tell it what to say by giving it a message in quotes: 8567
+
+And we have even written our first syntactically correct Python sentence.
+Our sentence starts with the reserved word print followed
+by a string of text of our choosing enclosed in single quotes.
+
+Conversing with Python
+
+1052 Now that we have a word and a simple sentence that we know in Python, 8135
+we need to know how to start a conversation with Python to test
+our new language skills.
+
+Before 5561 you 517 can 1218 converse with Python, you must first install the Python
+ software on your computer and learn how to start Python on your
+computer. That is too much detail for this chapter so I suggest
+that you consult www.pythonlearn.com where I have detailed
+instructions and screencasts of setting up and starting Python
+on Macintosh and Windows systems. At some point, you will be in
+a terminal or command window and you will type python and
+8877 the Python interpreter will start executing in interactive mode
+and appear somewhat as follows:
+interactive mode
+
+The >>> prompt is the Python interpreter's way of asking you, What
+do you want me to do next? Python is ready to have a conversation with
+you. All you have to know is how to speak the Python language.
+
+Let's say for example that you did not know even the simplest Python language
+words or sentences. You might want to use the standard line that astronauts
+use when they land on a faraway planet and try to speak with the inhabitants
+of the planet:
+
+This is not going so well. Unless you think of something quickly,
+the inhabitants of the planet are likely to stab you with their spears,
+put you on a spit, roast you over a fire, and eat you for dinner.
+
+At this point, you should also realize that while Python
+is amazingly complex and powerful and very picky about
+the syntax you use to communicate with it, Python is
+not intelligent. You are really just having a conversation
+with yourself, but using proper syntax.
+8062 1720
+In a sense, when you use a program written by someone else
+the conversation is between you and those other
+programmers with Python acting as an intermediary. Python
+is a way for the creators of programs to express how the
+conversation is supposed to proceed. And
+in just a few more chapters, you will be one of those
+programmers using Python to talk to the users of your program.
+
+279 Before we leave our first conversation with the Python
+interpreter, you should probably know the proper way
+to say good-bye when interacting with the inhabitants
+of Planet Python:
+
+2054 You will notice that the error is different for the first two 801
+incorrect attempts. The second error is different because
+if is a reserved word and Python saw the reserved word
+and thought we were trying to say something but got the syntax
+of the sentence wrong.
+
+Terminology: interpreter and compiler
+
+Python is a high-level language intended to be relatively
+straightforward for humans to read and write and for computers
+to read and process. Other high-level languages include Java, C++,
+918 PHP, Ruby, Basic, Perl, JavaScript, and many more. The actual hardware
+inside the Central Processing Unit (CPU) does not understand any
+of these high-level languages.
+
+The CPU understands a language we call machine language. Machine
+language is very simple and frankly very tiresome to write because it
+is represented all in zeros and ones.
+
+Machine language seems quite simple on the surface, given that there
+are only zeros and ones, but its syntax is even more complex
+8687 and far more intricate than Python. So very few programmers ever write
+machine language. Instead we build various translators to allow
+programmers to write in high-level languages like Python or JavaScript
+and these translators convert the programs to machine language for actual
+execution by the CPU.
+
+Since machine language is tied to the computer hardware, machine language
+is not portable across different types of hardware. Programs written in
+high-level languages can be moved between different computers by using a
+different interpreter on the new machine or recompiling the code to create
+a machine language version of the program for the new machine.
+
+These programming language translators fall into two general categories:
+(one) interpreters and (two) compilers.
+7073 1865 7084
+An interpreter reads the source code of the program as written by the
+programmer, parses the source code, and interprets the instructions on the fly.
+Python is an interpreter and when we are running Python interactively,
+we can type a line of Python (a sentence) and Python processes it immediately
+and is ready for us to type another line of Python.
+2923 63
+Some of the lines of Python tell Python that you want it to remember some
+value for later. We need to pick a name for that value to be remembered and
+we can use that symbolic name to retrieve the value later. We use the
+term variable to refer to the labels we use to refer to this stored data.
+
+In this example, we ask Python to remember the value six and use the label x
+so we can retrieve the value later. We verify that Python has actually remembered
+the value using x and multiply
+it by seven and put the newly computed value in y. Then we ask Python to print out
+8824 the value currently in y.
+1079 5801 5047
+Even though we are typing these commands into Python one line at a time, Python
+is treating them as an ordered sequence of statements with later statements able
+to retrieve data created in earlier statements. We are writing our first
+simple paragraph with four sentences in a logical and meaningful order.
+5
+It is the nature of an interpreter to be able to have an interactive conversation
+as shown above. A compiler needs to be handed the entire program in a file, and then
+it runs a process to translate the high-level source code into machine language
+2572 and then the compiler puts the resulting machine language into a file for later
+execution.
+
+If you have a Windows system, often these executable machine language programs have a
+suffix of .exe or .dll which stand for executable and dynamic link
+library respectively. In Linux and Macintosh, there is no suffix that uniquely marks
+a file as executable.
+
+If you were to open an executable file in a text editor, it would look
+completely crazy and be unreadable:
+
+It is not easy to read or write machine language, so it is nice that we have
+compilers that allow us to write in high-level
+languages like Python or C.
+
+Now at this point in our discussion of compilers and interpreters, you should
+be 5616 wondering 171 a 3062 bit about the Python interpreter itself. What language is
+ 9552 it written in? Is it written in a compiled language? When we type 7655
+python, 829 what 6096 exactly 2312 is happening?
+
+The Python interpreter is written in a high-level language called C.
+You can look at the actual source code for the Python interpreter by
+going to www.python.org and working your way to their source code.
+So Python is a program itself and it is compiled into machine code.
+When you installed Python on your computer (or the vendor installed it),
+6015 you copied a machine-code copy of the translated Python program onto your 7100
+system. In Windows, the executable machine code for Python itself is likely
+in a file.
+
+That is more than you really need to know to be a Python programmer, but
+sometimes it pays to answer those little nagging questions right at
+the beginning.
+
+Writing a program
+
+Typing commands into the Python interpreter is a great way to experiment
+with Python's features, but it is not recommended for solving more complex problems.
+
+When we want to write a program,
+we use a text editor to write the Python instructions into a file,
+which 9548 is 2727 called 1792 a script. By
+ convention, Python scripts have names that end with .py.
+
+script
+
+To execute the script, you have to tell the Python interpreter
+the name of the file. In a Unix or Windows command window,
+you would type python hello.py as follows:
+
+We call the Python interpreter and tell it to read its source code from
+the file hello.py instead of prompting us for lines of Python code
+interactively.
+
+You will notice that there was no need to have quit() at the end of
+the Python program in the file. When Python is reading your source code
+from a file, it knows to stop when it reaches the end of the file.
+
+8402 What is a program?
+
+The definition of a program at its most basic is a sequence
+of Python statements that have been crafted to do something.
+Even our simple hello.py script is a program. It is a one-line
+program and is not particularly useful, but in the strictest definition,
+it is a Python program.
+
+It might be easiest to understand what a program is by thinking about a problem
+that a program might be built to solve, and then looking at a program
+that would solve that problem.
+
+Lets say you are doing Social Computing research on Facebook posts and
+you are interested in the most frequently used word in a series of posts.
+You could print out the stream of Facebook posts and pore over the text
+looking for the most common word, but that would take a long time and be very
+mistake prone. You would be smart to write a Python program to handle the
+task quickly and accurately so you can spend the weekend doing something
+fun.
+
+For example, look at the following text about a clown and a car. Look at the
+text and figure out the most common word and how many times it occurs.
+
+Then imagine that you are doing this task looking at millions of lines of
+text. Frankly it would be quicker for you to learn Python and write a
+Python program to count the words than it would be to manually
+scan the words.
+
+The even better news is that I already came up with a simple program to
+find the most common word in a text file. I wrote it,
+tested it, and now I am giving it to you to use so you can save some time.
+
+You don't even need to know Python to use this program. You will need to get through
+Chapter ten of this book to fully understand the awesome Python techniques that were
+used to make the program. You are the end user, you simply use the program and marvel
+at its cleverness and how it saved you so much manual effort.
+You simply type the code
+into a file called words.py and run it or you download the source
+code from http://www.pythonlearn.com/code/ and run it.
+
+This is a good example of how Python and the Python language are acting as an intermediary
+between you (the end user) and me (the programmer). Python is a way for us to exchange useful
+instruction sequences (i.e., programs) in a common language that can be used by anyone who
+installs Python on their computer. So neither of us are talking to Python,
+instead we are communicating with each other through Python.
+
+The building blocks of programs
+
+In the next few chapters, we will learn more about the vocabulary, sentence structure,
+paragraph structure, and story structure of Python. We will learn about the powerful
+capabilities of Python and how to compose those capabilities together to create useful
+programs.
+
+There are some low-level conceptual patterns that we use to construct programs. These
+constructs are not just for Python programs, they are part of every programming language
+from machine language up to the high-level languages.
+
+description
+
+Get data from the outside world. This might be
+reading data from a file, or even some kind of sensor like
+a microphone or GPS. In our initial programs, our input will come from the user
+typing data on the keyboard.
+
+Display the results of the program on a screen
+or store them in a file or perhaps write them to a device like a
+speaker to play music or speak text.
+
+Perform statements one after
+another in the order they are encountered in the script.
+
+Check for certain conditions and
+then execute or skip a sequence of statements.
+
+Perform some set of statements
+repeatedly, usually with
+some variation.
+
+Write a set of instructions once and give them a name
+and then reuse those instructions as needed throughout your program.
+
+description
+
+It sounds almost too simple to be true, and of course it is never
+so simple. It is like saying that walking is simply
+putting one foot in front of the other. The art
+of writing a program is composing and weaving these
+basic elements together many times over to produce something
+that is useful to its users.
+
+The word counting program above directly uses all of
+these patterns except for one.
+
+What could possibly go wrong?
+
+As we saw in our earliest conversations with Python, we must
+communicate very precisely when we write Python code. The smallest
+deviation or mistake will cause Python to give up looking at your
+program.
+
+Beginning programmers often take the fact that Python leaves no
+room for errors as evidence that Python is mean, hateful, and cruel.
+While Python seems to like everyone else, Python knows them
+personally and holds a grudge against them. Because of this grudge,
+Python takes our perfectly written programs and rejects them as
+unfit just to torment us.
+
+There is little to be gained by arguing with Python. It is just a tool.
+It has no emotions and it is happy and ready to serve you whenever you
+need it. Its error messages sound harsh, but they are just Python's
+call for help. It has looked at what you typed, and it simply cannot
+understand what you have entered.
+
+Python is much more like a dog, loving you unconditionally, having a few
+key words that it understands, looking you with a sweet look on its
+face (>>>), and waiting for you to say something it understands.
+When Python says SyntaxError: invalid syntax, it is simply wagging
+its tail and saying, You seemed to say something but I just don't
+understand what you meant, but please keep talking to me (>>>).
+
+As your programs become increasingly sophisticated, you will encounter three
+general types of errors:
+
+description
+
+These are the first errors you will make and the easiest
+to fix. A syntax error means that you have violated the grammar rules of Python.
+Python does its best to point right at the line and character where
+it noticed it was confused. The only tricky bit of syntax errors is that sometimes
+the mistake that needs fixing is actually earlier in the program than where Python
+noticed it was confused. So the line and character that Python indicates in
+a syntax error may just be a starting point for your investigation.
+
+A logic error is when your program has good syntax but there is a mistake
+in the order of the statements or perhaps a mistake in how the statements relate to one another.
+A good example of a logic error might be, take a drink from your water bottle, put it
+in your backpack, walk to the library, and then put the top back on the bottle.
+
+A semantic error is when your description of the steps to take
+is syntactically perfect and in the right order, but there is simply a mistake in
+the program. The program is perfectly correct but it does not do what
+you intended for it to do. A simple example would
+be if you were giving a person directions to a restaurant and said, ...when you reach
+the intersection with the gas station, turn left and go one mile and the restaurant
+is a red building on your left. Your friend is very late and calls you to tell you that
+they are on a farm and walking around behind a barn, with no sign of a restaurant.
+Then you say did you turn left or right at the gas station? and
+they say, I followed your directions perfectly, I have
+them written down, it says turn left and go one mile at the gas station. Then you say,
+I am very sorry, because while my instructions were syntactically correct, they
+sadly contained a small but undetected semantic error..
+
+description
+
+Again in all three types of errors, Python is merely trying its hardest to
+do exactly what you have asked.
+
+The learning journey
+
+As you progress through the rest of the book, don't be afraid if the concepts
+don't seem to fit together well the first time. When you were learning to speak,
+it was not a problem for your first few years that you just made cute gurgling noises.
+And it was OK if it took six months for you to move from simple vocabulary to
+simple sentences and took five or six more years to move from sentences to paragraphs, and a
+few more years to be able to write an interesting complete short story on your own.
+
+We want you to learn Python much more rapidly, so we teach it all at the same time
+over the next few chapters.
+But it is like learning a new language that takes time to absorb and understand
+before it feels natural.
+That leads to some confusion as we visit and revisit
+topics to try to get you to see the big picture while we are defining the tiny
+fragments that make up that big picture. While the book is written linearly, and
+if you are taking a course it will progress in a linear fashion, don't hesitate
+to be very nonlinear in how you approach the material. Look forwards and backwards
+and read with a light touch. By skimming more advanced material without
+fully understanding the details, you can get a better understanding of the why?
+of programming. By reviewing previous material and even redoing earlier
+exercises, you will realize that you actually learned a lot of material even
+if the material you are currently staring at seems a bit impenetrable.
+
+Usually when you are learning your first programming language, there are a few
+wonderful Ah Hah! moments where you can look up from pounding away at some rock
+with a hammer and chisel and step away and see that you are indeed building
+a beautiful sculpture.
+
+If something seems particularly hard, there is usually no value in staying up all
+night and staring at it. Take a break, take a nap, have a snack, explain what you
+are having a problem with to someone (or perhaps your dog), and then come back to it with
+fresh eyes. I assure you that once you learn the programming concepts in the book
+you will look back and see that it was all really easy and elegant and it simply
+took you a bit of time to absorb it.
+42
+The end
\ No newline at end of file
diff --git a/Assignments/romeo.txt b/Assignments/romeo.txt
new file mode 100644
index 0000000..e7abd44
--- /dev/null
+++ b/Assignments/romeo.txt
@@ -0,0 +1,4 @@
+But soft what light through yonder window breaks
+It is the east and Juliet is the sun
+Arise fair sun and kill the envious moon
+Who is already sick and pale with grief
\ No newline at end of file
diff --git a/Assignments/roster_data.json b/Assignments/roster_data.json
new file mode 100644
index 0000000..654d5ab
--- /dev/null
+++ b/Assignments/roster_data.json
@@ -0,0 +1,2157 @@
+[
+ [
+ "Veronika",
+ "si110",
+ 1
+ ],
+ [
+ "Yannick",
+ "si110",
+ 0
+ ],
+ [
+ "Leighton",
+ "si110",
+ 0
+ ],
+ [
+ "Donnacha",
+ "si110",
+ 0
+ ],
+ [
+ "Sandro",
+ "si110",
+ 0
+ ],
+ [
+ "Jacky",
+ "si110",
+ 0
+ ],
+ [
+ "Hayley",
+ "si110",
+ 0
+ ],
+ [
+ "Mati",
+ "si110",
+ 0
+ ],
+ [
+ "Kevyn",
+ "si110",
+ 0
+ ],
+ [
+ "Karley",
+ "si110",
+ 0
+ ],
+ [
+ "Kandice",
+ "si110",
+ 0
+ ],
+ [
+ "Rennie",
+ "si110",
+ 0
+ ],
+ [
+ "Francisca",
+ "si110",
+ 0
+ ],
+ [
+ "Gurveer",
+ "si110",
+ 0
+ ],
+ [
+ "Grayson",
+ "si110",
+ 0
+ ],
+ [
+ "Torsten",
+ "si110",
+ 0
+ ],
+ [
+ "Eamonn",
+ "si110",
+ 0
+ ],
+ [
+ "Aamina",
+ "si110",
+ 0
+ ],
+ [
+ "Rona",
+ "si110",
+ 0
+ ],
+ [
+ "Audrey",
+ "si110",
+ 0
+ ],
+ [
+ "Cooper",
+ "si110",
+ 0
+ ],
+ [
+ "Nadia",
+ "si110",
+ 0
+ ],
+ [
+ "Keemaya",
+ "si110",
+ 0
+ ],
+ [
+ "Tadd",
+ "si110",
+ 0
+ ],
+ [
+ "Wen",
+ "si110",
+ 0
+ ],
+ [
+ "Kealcy",
+ "si110",
+ 0
+ ],
+ [
+ "Aeron",
+ "si110",
+ 0
+ ],
+ [
+ "Lori",
+ "si110",
+ 0
+ ],
+ [
+ "Samar",
+ "si110",
+ 0
+ ],
+ [
+ "Siannon",
+ "si110",
+ 0
+ ],
+ [
+ "Bronte",
+ "si110",
+ 0
+ ],
+ [
+ "Seumas",
+ "si110",
+ 0
+ ],
+ [
+ "Kacy",
+ "si110",
+ 0
+ ],
+ [
+ "Antony",
+ "si110",
+ 0
+ ],
+ [
+ "Mashhood",
+ "si110",
+ 0
+ ],
+ [
+ "Elisa",
+ "si110",
+ 0
+ ],
+ [
+ "Shyanne",
+ "si110",
+ 0
+ ],
+ [
+ "Inan",
+ "si110",
+ 0
+ ],
+ [
+ "Kay",
+ "si110",
+ 0
+ ],
+ [
+ "Abril",
+ "si110",
+ 0
+ ],
+ [
+ "Oluwabukunmi",
+ "si110",
+ 0
+ ],
+ [
+ "Della",
+ "si106",
+ 1
+ ],
+ [
+ "Praise",
+ "si106",
+ 0
+ ],
+ [
+ "Desmond",
+ "si106",
+ 0
+ ],
+ [
+ "Mark",
+ "si106",
+ 0
+ ],
+ [
+ "Betheny",
+ "si106",
+ 0
+ ],
+ [
+ "Elita",
+ "si106",
+ 0
+ ],
+ [
+ "Ciann",
+ "si106",
+ 0
+ ],
+ [
+ "Brandan",
+ "si106",
+ 0
+ ],
+ [
+ "Binod",
+ "si106",
+ 0
+ ],
+ [
+ "Lowri",
+ "si106",
+ 0
+ ],
+ [
+ "Hope",
+ "si106",
+ 0
+ ],
+ [
+ "Diana",
+ "si106",
+ 0
+ ],
+ [
+ "Ruby",
+ "si106",
+ 0
+ ],
+ [
+ "Kyden",
+ "si106",
+ 0
+ ],
+ [
+ "Nidhi",
+ "si106",
+ 0
+ ],
+ [
+ "Suranne",
+ "si106",
+ 0
+ ],
+ [
+ "Janani",
+ "si106",
+ 0
+ ],
+ [
+ "Becky",
+ "si106",
+ 0
+ ],
+ [
+ "Yago",
+ "si106",
+ 0
+ ],
+ [
+ "Sukhvir",
+ "si106",
+ 0
+ ],
+ [
+ "Bowen",
+ "si106",
+ 0
+ ],
+ [
+ "Riccardo",
+ "si106",
+ 0
+ ],
+ [
+ "Elisau",
+ "si106",
+ 0
+ ],
+ [
+ "Kalvyn",
+ "si106",
+ 0
+ ],
+ [
+ "Annalicia",
+ "si106",
+ 0
+ ],
+ [
+ "Sher",
+ "si106",
+ 0
+ ],
+ [
+ "Laya",
+ "si106",
+ 0
+ ],
+ [
+ "Gideon",
+ "si106",
+ 0
+ ],
+ [
+ "Kristofer",
+ "si106",
+ 0
+ ],
+ [
+ "Ruth",
+ "si106",
+ 0
+ ],
+ [
+ "Johnny",
+ "si106",
+ 0
+ ],
+ [
+ "Dinaras",
+ "si106",
+ 0
+ ],
+ [
+ "Kaylea",
+ "si106",
+ 0
+ ],
+ [
+ "Antonia",
+ "si106",
+ 0
+ ],
+ [
+ "Zachary",
+ "si106",
+ 0
+ ],
+ [
+ "Micaylah",
+ "si106",
+ 0
+ ],
+ [
+ "Aurea",
+ "si106",
+ 0
+ ],
+ [
+ "Rayne",
+ "si106",
+ 0
+ ],
+ [
+ "Harleigh",
+ "si106",
+ 0
+ ],
+ [
+ "Amellie",
+ "si106",
+ 0
+ ],
+ [
+ "Wayde",
+ "si106",
+ 0
+ ],
+ [
+ "Maree",
+ "si106",
+ 0
+ ],
+ [
+ "Bobby",
+ "si106",
+ 0
+ ],
+ [
+ "Steven",
+ "si106",
+ 0
+ ],
+ [
+ "Oonagh",
+ "si106",
+ 0
+ ],
+ [
+ "Chenai",
+ "si106",
+ 0
+ ],
+ [
+ "Meagan",
+ "si106",
+ 0
+ ],
+ [
+ "Rayaan",
+ "si106",
+ 0
+ ],
+ [
+ "Denver",
+ "si106",
+ 0
+ ],
+ [
+ "Ekaterina",
+ "si106",
+ 0
+ ],
+ [
+ "Linda",
+ "si206",
+ 1
+ ],
+ [
+ "Sno",
+ "si206",
+ 0
+ ],
+ [
+ "Farrah",
+ "si206",
+ 0
+ ],
+ [
+ "Darrach",
+ "si206",
+ 0
+ ],
+ [
+ "Kristopher",
+ "si206",
+ 0
+ ],
+ [
+ "Dakota",
+ "si206",
+ 0
+ ],
+ [
+ "Aleksandar",
+ "si206",
+ 0
+ ],
+ [
+ "Dregan",
+ "si206",
+ 0
+ ],
+ [
+ "Mahum",
+ "si206",
+ 0
+ ],
+ [
+ "Alesha",
+ "si206",
+ 0
+ ],
+ [
+ "Zacharie",
+ "si206",
+ 0
+ ],
+ [
+ "Adam",
+ "si206",
+ 0
+ ],
+ [
+ "Saumya",
+ "si206",
+ 0
+ ],
+ [
+ "Tyelor",
+ "si206",
+ 0
+ ],
+ [
+ "Orrin",
+ "si206",
+ 0
+ ],
+ [
+ "Katlyn",
+ "si206",
+ 0
+ ],
+ [
+ "Clement",
+ "si206",
+ 0
+ ],
+ [
+ "Montague",
+ "si206",
+ 0
+ ],
+ [
+ "Fraser",
+ "si206",
+ 0
+ ],
+ [
+ "Rhiona",
+ "si206",
+ 0
+ ],
+ [
+ "Chad",
+ "si206",
+ 0
+ ],
+ [
+ "Nicky",
+ "si206",
+ 0
+ ],
+ [
+ "Bobbi",
+ "si206",
+ 0
+ ],
+ [
+ "Marshall",
+ "si206",
+ 0
+ ],
+ [
+ "Devlin",
+ "si206",
+ 0
+ ],
+ [
+ "Buse",
+ "si206",
+ 0
+ ],
+ [
+ "Phoenix",
+ "si206",
+ 0
+ ],
+ [
+ "Callie",
+ "si206",
+ 0
+ ],
+ [
+ "Julia",
+ "si206",
+ 0
+ ],
+ [
+ "AJ",
+ "si206",
+ 0
+ ],
+ [
+ "Garren",
+ "si206",
+ 0
+ ],
+ [
+ "Nicky",
+ "si206",
+ 0
+ ],
+ [
+ "Eilish",
+ "si206",
+ 0
+ ],
+ [
+ "Fern",
+ "si206",
+ 0
+ ],
+ [
+ "Darl",
+ "si206",
+ 0
+ ],
+ [
+ "Cassandra",
+ "si206",
+ 0
+ ],
+ [
+ "Aaryn",
+ "si206",
+ 0
+ ],
+ [
+ "Rayann",
+ "si206",
+ 0
+ ],
+ [
+ "Carlo",
+ "si206",
+ 0
+ ],
+ [
+ "Ailie",
+ "si206",
+ 0
+ ],
+ [
+ "Charly",
+ "si206",
+ 0
+ ],
+ [
+ "Emilia",
+ "si206",
+ 0
+ ],
+ [
+ "Dermot",
+ "si206",
+ 0
+ ],
+ [
+ "Samiha",
+ "si206",
+ 0
+ ],
+ [
+ "Mazin",
+ "si206",
+ 0
+ ],
+ [
+ "Thiago",
+ "si206",
+ 0
+ ],
+ [
+ "Gytis",
+ "si206",
+ 0
+ ],
+ [
+ "Karandeep",
+ "si301",
+ 1
+ ],
+ [
+ "Tyelor",
+ "si301",
+ 0
+ ],
+ [
+ "Kalie",
+ "si301",
+ 0
+ ],
+ [
+ "Breagh",
+ "si301",
+ 0
+ ],
+ [
+ "Bailley",
+ "si301",
+ 0
+ ],
+ [
+ "Nivyn",
+ "si301",
+ 0
+ ],
+ [
+ "Harper",
+ "si301",
+ 0
+ ],
+ [
+ "Abdullah",
+ "si301",
+ 0
+ ],
+ [
+ "Melissande",
+ "si301",
+ 0
+ ],
+ [
+ "Jess",
+ "si301",
+ 0
+ ],
+ [
+ "Stefin",
+ "si301",
+ 0
+ ],
+ [
+ "Gemma",
+ "si301",
+ 0
+ ],
+ [
+ "Montague",
+ "si301",
+ 0
+ ],
+ [
+ "Maeve",
+ "si301",
+ 0
+ ],
+ [
+ "Bryson",
+ "si301",
+ 0
+ ],
+ [
+ "Macey",
+ "si301",
+ 0
+ ],
+ [
+ "Sommer",
+ "si301",
+ 0
+ ],
+ [
+ "Nour",
+ "si301",
+ 0
+ ],
+ [
+ "Domenico",
+ "si301",
+ 0
+ ],
+ [
+ "Annica",
+ "si301",
+ 0
+ ],
+ [
+ "Atiya",
+ "si301",
+ 0
+ ],
+ [
+ "Irem",
+ "si301",
+ 0
+ ],
+ [
+ "Wendy",
+ "si301",
+ 0
+ ],
+ [
+ "Thomas",
+ "si301",
+ 0
+ ],
+ [
+ "Shyanne",
+ "si301",
+ 0
+ ],
+ [
+ "Sajid",
+ "si301",
+ 0
+ ],
+ [
+ "Naomie",
+ "si301",
+ 0
+ ],
+ [
+ "Roan",
+ "si301",
+ 0
+ ],
+ [
+ "Ellisha",
+ "si301",
+ 0
+ ],
+ [
+ "Meagan",
+ "si301",
+ 0
+ ],
+ [
+ "Lysander",
+ "si301",
+ 0
+ ],
+ [
+ "Asya",
+ "si301",
+ 0
+ ],
+ [
+ "Sylvain",
+ "si301",
+ 0
+ ],
+ [
+ "Kaci",
+ "si301",
+ 0
+ ],
+ [
+ "Baylie",
+ "si301",
+ 0
+ ],
+ [
+ "Rivan",
+ "si301",
+ 0
+ ],
+ [
+ "Rubhan",
+ "si310",
+ 1
+ ],
+ [
+ "Constance",
+ "si310",
+ 0
+ ],
+ [
+ "Rylee",
+ "si310",
+ 0
+ ],
+ [
+ "Momina",
+ "si310",
+ 0
+ ],
+ [
+ "Leigham",
+ "si310",
+ 0
+ ],
+ [
+ "Jeswin",
+ "si310",
+ 0
+ ],
+ [
+ "Joan",
+ "si310",
+ 0
+ ],
+ [
+ "Elijah",
+ "si310",
+ 0
+ ],
+ [
+ "Alec",
+ "si310",
+ 0
+ ],
+ [
+ "Farhan",
+ "si310",
+ 0
+ ],
+ [
+ "Jaiden",
+ "si310",
+ 0
+ ],
+ [
+ "Forbes",
+ "si310",
+ 0
+ ],
+ [
+ "Liberty",
+ "si310",
+ 0
+ ],
+ [
+ "Annalise",
+ "si310",
+ 0
+ ],
+ [
+ "Haydn",
+ "si310",
+ 0
+ ],
+ [
+ "Diya",
+ "si310",
+ 0
+ ],
+ [
+ "Aoibha",
+ "si310",
+ 0
+ ],
+ [
+ "Nicodemus",
+ "si310",
+ 0
+ ],
+ [
+ "Hristomir",
+ "si310",
+ 0
+ ],
+ [
+ "Elita",
+ "si310",
+ 0
+ ],
+ [
+ "Marisa",
+ "si310",
+ 0
+ ],
+ [
+ "Fraya",
+ "si310",
+ 0
+ ],
+ [
+ "Lauchlan",
+ "si310",
+ 0
+ ],
+ [
+ "Morvern",
+ "si334",
+ 1
+ ],
+ [
+ "Andrejs",
+ "si334",
+ 0
+ ],
+ [
+ "Jocelyn",
+ "si334",
+ 0
+ ],
+ [
+ "Ajay",
+ "si334",
+ 0
+ ],
+ [
+ "Gwendolyn",
+ "si334",
+ 0
+ ],
+ [
+ "Sweet",
+ "si334",
+ 0
+ ],
+ [
+ "Possum",
+ "si334",
+ 0
+ ],
+ [
+ "Falyn",
+ "si334",
+ 0
+ ],
+ [
+ "Abril",
+ "si334",
+ 0
+ ],
+ [
+ "Laaibah",
+ "si334",
+ 0
+ ],
+ [
+ "Eleni",
+ "si334",
+ 0
+ ],
+ [
+ "Imama",
+ "si334",
+ 0
+ ],
+ [
+ "Faysal",
+ "si334",
+ 0
+ ],
+ [
+ "Blyth",
+ "si334",
+ 0
+ ],
+ [
+ "Msughter",
+ "si334",
+ 0
+ ],
+ [
+ "Rheanne",
+ "si334",
+ 0
+ ],
+ [
+ "Billiejo",
+ "si334",
+ 0
+ ],
+ [
+ "Coralie",
+ "si334",
+ 0
+ ],
+ [
+ "Celina",
+ "si334",
+ 0
+ ],
+ [
+ "Bret",
+ "si334",
+ 0
+ ],
+ [
+ "Jeannie",
+ "si334",
+ 0
+ ],
+ [
+ "Mohaddesa",
+ "si334",
+ 0
+ ],
+ [
+ "Aisa",
+ "si334",
+ 0
+ ],
+ [
+ "Jessamy",
+ "si334",
+ 0
+ ],
+ [
+ "Saranna",
+ "si334",
+ 0
+ ],
+ [
+ "Shafira",
+ "si334",
+ 0
+ ],
+ [
+ "Harper",
+ "si334",
+ 0
+ ],
+ [
+ "Eryn",
+ "si334",
+ 0
+ ],
+ [
+ "Meenal",
+ "si334",
+ 0
+ ],
+ [
+ "Greig",
+ "si334",
+ 0
+ ],
+ [
+ "Serene",
+ "si334",
+ 0
+ ],
+ [
+ "Kaily",
+ "si334",
+ 0
+ ],
+ [
+ "Veronica",
+ "si334",
+ 0
+ ],
+ [
+ "Cathleen",
+ "si334",
+ 0
+ ],
+ [
+ "Elaf",
+ "si334",
+ 0
+ ],
+ [
+ "Rohaan",
+ "si334",
+ 0
+ ],
+ [
+ "Farrah",
+ "si334",
+ 0
+ ],
+ [
+ "Eduardo",
+ "si334",
+ 0
+ ],
+ [
+ "Alexa",
+ "si334",
+ 0
+ ],
+ [
+ "Kyrran",
+ "si334",
+ 0
+ ],
+ [
+ "Christy",
+ "si334",
+ 0
+ ],
+ [
+ "Arlo",
+ "si334",
+ 0
+ ],
+ [
+ "Stefan",
+ "si334",
+ 0
+ ],
+ [
+ "Romi",
+ "si334",
+ 0
+ ],
+ [
+ "Ayaana",
+ "si363",
+ 1
+ ],
+ [
+ "Danika",
+ "si363",
+ 0
+ ],
+ [
+ "Dilya",
+ "si363",
+ 0
+ ],
+ [
+ "Roma",
+ "si363",
+ 0
+ ],
+ [
+ "Brodi",
+ "si363",
+ 0
+ ],
+ [
+ "Ash",
+ "si363",
+ 0
+ ],
+ [
+ "Kyrah",
+ "si363",
+ 0
+ ],
+ [
+ "Alisha",
+ "si363",
+ 0
+ ],
+ [
+ "Kjae",
+ "si363",
+ 0
+ ],
+ [
+ "Ellis",
+ "si363",
+ 0
+ ],
+ [
+ "Jemima",
+ "si363",
+ 0
+ ],
+ [
+ "Astra",
+ "si363",
+ 0
+ ],
+ [
+ "Manahil",
+ "si363",
+ 0
+ ],
+ [
+ "Sayad",
+ "si363",
+ 0
+ ],
+ [
+ "Belle",
+ "si363",
+ 0
+ ],
+ [
+ "Maha",
+ "si363",
+ 0
+ ],
+ [
+ "Aarman",
+ "si363",
+ 0
+ ],
+ [
+ "Aarron",
+ "si363",
+ 0
+ ],
+ [
+ "Codie",
+ "si363",
+ 0
+ ],
+ [
+ "Nathaniel",
+ "si363",
+ 0
+ ],
+ [
+ "Cody",
+ "si363",
+ 0
+ ],
+ [
+ "Clodagh",
+ "si363",
+ 0
+ ],
+ [
+ "Blaike",
+ "si363",
+ 0
+ ],
+ [
+ "Ayub",
+ "si363",
+ 0
+ ],
+ [
+ "Ciar",
+ "si363",
+ 0
+ ],
+ [
+ "Blair",
+ "si363",
+ 0
+ ],
+ [
+ "Atapattu",
+ "si363",
+ 0
+ ],
+ [
+ "Arnav",
+ "si363",
+ 0
+ ],
+ [
+ "Richard",
+ "si363",
+ 0
+ ],
+ [
+ "Leonardas",
+ "si363",
+ 0
+ ],
+ [
+ "Windsor",
+ "si363",
+ 0
+ ],
+ [
+ "Raja",
+ "si363",
+ 0
+ ],
+ [
+ "Amolpreet",
+ "si363",
+ 0
+ ],
+ [
+ "Simonne",
+ "si363",
+ 0
+ ],
+ [
+ "Eila",
+ "si363",
+ 0
+ ],
+ [
+ "Deegan",
+ "si363",
+ 0
+ ],
+ [
+ "Harish",
+ "si363",
+ 0
+ ],
+ [
+ "Laoise",
+ "si363",
+ 0
+ ],
+ [
+ "Gabrielle",
+ "si364",
+ 1
+ ],
+ [
+ "Santino",
+ "si364",
+ 0
+ ],
+ [
+ "Mercedez",
+ "si364",
+ 0
+ ],
+ [
+ "Ayla",
+ "si364",
+ 0
+ ],
+ [
+ "Kaylynn",
+ "si364",
+ 0
+ ],
+ [
+ "Likiesha",
+ "si364",
+ 0
+ ],
+ [
+ "Honor",
+ "si364",
+ 0
+ ],
+ [
+ "Cate",
+ "si364",
+ 0
+ ],
+ [
+ "Jody",
+ "si364",
+ 0
+ ],
+ [
+ "Holly",
+ "si364",
+ 0
+ ],
+ [
+ "Lawrence",
+ "si364",
+ 0
+ ],
+ [
+ "Tylor",
+ "si364",
+ 0
+ ],
+ [
+ "Gurveer",
+ "si364",
+ 0
+ ],
+ [
+ "Argyle",
+ "si364",
+ 0
+ ],
+ [
+ "Brodi",
+ "si364",
+ 0
+ ],
+ [
+ "Suzannah",
+ "si364",
+ 0
+ ],
+ [
+ "Qin",
+ "si364",
+ 0
+ ],
+ [
+ "Ramone",
+ "si364",
+ 0
+ ],
+ [
+ "Lock",
+ "si364",
+ 0
+ ],
+ [
+ "Shaylee",
+ "si364",
+ 0
+ ],
+ [
+ "Fergie",
+ "si364",
+ 0
+ ],
+ [
+ "Musa",
+ "si364",
+ 0
+ ],
+ [
+ "Darryl",
+ "si364",
+ 0
+ ],
+ [
+ "Sonny",
+ "si364",
+ 0
+ ],
+ [
+ "Warrick",
+ "si364",
+ 0
+ ],
+ [
+ "Pieter",
+ "si364",
+ 0
+ ],
+ [
+ "Ayleigh",
+ "si364",
+ 0
+ ],
+ [
+ "Vaimante",
+ "si364",
+ 0
+ ],
+ [
+ "Jema",
+ "si364",
+ 0
+ ],
+ [
+ "Shazina",
+ "si364",
+ 0
+ ],
+ [
+ "Tamika",
+ "si364",
+ 0
+ ],
+ [
+ "Leilah",
+ "si364",
+ 0
+ ],
+ [
+ "Louanne",
+ "si364",
+ 0
+ ],
+ [
+ "Cerys",
+ "si364",
+ 0
+ ],
+ [
+ "Kaycee",
+ "si364",
+ 0
+ ],
+ [
+ "Zachary",
+ "si364",
+ 0
+ ],
+ [
+ "Kylie",
+ "si364",
+ 0
+ ],
+ [
+ "Dionne",
+ "si364",
+ 0
+ ],
+ [
+ "Leonardas",
+ "si364",
+ 0
+ ],
+ [
+ "Milosz",
+ "si364",
+ 0
+ ],
+ [
+ "Girius",
+ "si364",
+ 0
+ ],
+ [
+ "Savannah",
+ "si364",
+ 0
+ ],
+ [
+ "Klara",
+ "si364",
+ 0
+ ],
+ [
+ "Madaki",
+ "si364",
+ 0
+ ],
+ [
+ "Katharine",
+ "si364",
+ 0
+ ],
+ [
+ "Ameelia",
+ "si364",
+ 0
+ ],
+ [
+ "Esme",
+ "si364",
+ 0
+ ],
+ [
+ "Freia",
+ "si364",
+ 0
+ ],
+ [
+ "Maanisha",
+ "si364",
+ 0
+ ],
+ [
+ "Hiba",
+ "si364",
+ 0
+ ],
+ [
+ "Cabhan",
+ "si364",
+ 0
+ ],
+ [
+ "Bentley",
+ "si364",
+ 0
+ ],
+ [
+ "Zohaib",
+ "si364",
+ 0
+ ],
+ [
+ "Bezalel",
+ "si422",
+ 1
+ ],
+ [
+ "Jodi",
+ "si422",
+ 0
+ ],
+ [
+ "Aristomenis",
+ "si422",
+ 0
+ ],
+ [
+ "Raegan",
+ "si422",
+ 0
+ ],
+ [
+ "Hajjrah",
+ "si422",
+ 0
+ ],
+ [
+ "Deecan",
+ "si422",
+ 0
+ ],
+ [
+ "Alfy",
+ "si422",
+ 0
+ ],
+ [
+ "Denise",
+ "si422",
+ 0
+ ],
+ [
+ "Abigael",
+ "si422",
+ 0
+ ],
+ [
+ "Rhia",
+ "si422",
+ 0
+ ],
+ [
+ "Jon",
+ "si422",
+ 0
+ ],
+ [
+ "Yana",
+ "si422",
+ 0
+ ],
+ [
+ "Safi",
+ "si422",
+ 0
+ ],
+ [
+ "Kaiya",
+ "si422",
+ 0
+ ],
+ [
+ "Rico",
+ "si422",
+ 0
+ ],
+ [
+ "Terri",
+ "si422",
+ 0
+ ],
+ [
+ "Yolanda",
+ "si422",
+ 0
+ ],
+ [
+ "Taniesha",
+ "si422",
+ 0
+ ],
+ [
+ "Tristan",
+ "si422",
+ 0
+ ],
+ [
+ "Azim",
+ "si422",
+ 0
+ ],
+ [
+ "Walter",
+ "si422",
+ 0
+ ],
+ [
+ "Azedine",
+ "si422",
+ 0
+ ],
+ [
+ "Gustav",
+ "si422",
+ 0
+ ],
+ [
+ "Charlie",
+ "si422",
+ 0
+ ],
+ [
+ "Eris",
+ "si422",
+ 0
+ ],
+ [
+ "Sihaam",
+ "si422",
+ 0
+ ],
+ [
+ "Safara",
+ "si422",
+ 0
+ ],
+ [
+ "Paige",
+ "si422",
+ 0
+ ],
+ [
+ "Codie",
+ "si422",
+ 0
+ ],
+ [
+ "Maha",
+ "si422",
+ 0
+ ],
+ [
+ "Alina",
+ "si422",
+ 0
+ ],
+ [
+ "Ailish",
+ "si422",
+ 0
+ ],
+ [
+ "Fay",
+ "si422",
+ 0
+ ],
+ [
+ "Keiron",
+ "si422",
+ 0
+ ],
+ [
+ "Cal",
+ "si422",
+ 0
+ ],
+ [
+ "Artemis",
+ "si422",
+ 0
+ ],
+ [
+ "Aleesha",
+ "si422",
+ 0
+ ],
+ [
+ "Brajan",
+ "si422",
+ 0
+ ],
+ [
+ "Guang",
+ "si422",
+ 0
+ ],
+ [
+ "Caceylee",
+ "si422",
+ 0
+ ],
+ [
+ "Bernard",
+ "si422",
+ 0
+ ],
+ [
+ "Coel",
+ "si422",
+ 0
+ ],
+ [
+ "Bruno",
+ "si422",
+ 0
+ ],
+ [
+ "Neco",
+ "si422",
+ 0
+ ],
+ [
+ "Karli",
+ "si422",
+ 0
+ ],
+ [
+ "Sarka",
+ "si422",
+ 0
+ ],
+ [
+ "Tatiana",
+ "si422",
+ 0
+ ],
+ [
+ "Codey",
+ "si430",
+ 1
+ ],
+ [
+ "Connan",
+ "si430",
+ 0
+ ],
+ [
+ "Corey",
+ "si430",
+ 0
+ ],
+ [
+ "Luisa",
+ "si430",
+ 0
+ ],
+ [
+ "Mallissaa",
+ "si430",
+ 0
+ ],
+ [
+ "Zaynab",
+ "si430",
+ 0
+ ],
+ [
+ "Faysal",
+ "si430",
+ 0
+ ],
+ [
+ "Azedine",
+ "si430",
+ 0
+ ],
+ [
+ "Abdullah",
+ "si430",
+ 0
+ ],
+ [
+ "Nayan",
+ "si430",
+ 0
+ ],
+ [
+ "Amberlouise",
+ "si430",
+ 0
+ ],
+ [
+ "Jincheng",
+ "si430",
+ 0
+ ],
+ [
+ "Elijah",
+ "si430",
+ 0
+ ],
+ [
+ "Melania",
+ "si430",
+ 0
+ ],
+ [
+ "Aahron",
+ "si430",
+ 0
+ ],
+ [
+ "Sylvia",
+ "si430",
+ 0
+ ],
+ [
+ "Betty",
+ "si430",
+ 0
+ ],
+ [
+ "Lillian",
+ "si430",
+ 0
+ ],
+ [
+ "Temperance",
+ "si430",
+ 0
+ ],
+ [
+ "Cherelle",
+ "si430",
+ 0
+ ],
+ [
+ "Adrien",
+ "si430",
+ 0
+ ],
+ [
+ "Argyll",
+ "si430",
+ 0
+ ],
+ [
+ "Reilly",
+ "si430",
+ 0
+ ],
+ [
+ "Mahdi",
+ "si430",
+ 0
+ ],
+ [
+ "Calib",
+ "si430",
+ 0
+ ],
+ [
+ "Inaara",
+ "si430",
+ 0
+ ],
+ [
+ "Minnette",
+ "si430",
+ 0
+ ],
+ [
+ "Deon",
+ "si430",
+ 0
+ ],
+ [
+ "Nicki",
+ "si430",
+ 0
+ ],
+ [
+ "Aray",
+ "si430",
+ 0
+ ],
+ [
+ "Lacey",
+ "si430",
+ 0
+ ],
+ [
+ "Kareena",
+ "si430",
+ 0
+ ],
+ [
+ "Ameera",
+ "si430",
+ 0
+ ],
+ [
+ "Aiva",
+ "si430",
+ 0
+ ],
+ [
+ "Rhiah",
+ "si430",
+ 0
+ ],
+ [
+ "Maeghan",
+ "si430",
+ 0
+ ],
+ [
+ "Kayden",
+ "si430",
+ 0
+ ],
+ [
+ "Eni",
+ "si430",
+ 0
+ ],
+ [
+ "Jakey",
+ "si430",
+ 0
+ ],
+ [
+ "Klaudia",
+ "si430",
+ 0
+ ],
+ [
+ "Xiao",
+ "si430",
+ 0
+ ],
+ [
+ "Mena",
+ "si430",
+ 0
+ ],
+ [
+ "Vuyolwethu",
+ "si430",
+ 0
+ ],
+ [
+ "Allister",
+ "si430",
+ 0
+ ],
+ [
+ "Michee",
+ "si430",
+ 0
+ ],
+ [
+ "Lawson",
+ "si430",
+ 0
+ ],
+ [
+ "Tobias",
+ "si430",
+ 0
+ ],
+ [
+ "Aleeyah",
+ "si430",
+ 0
+ ],
+ [
+ "Domhnall",
+ "si430",
+ 0
+ ],
+ [
+ "Myah",
+ "si430",
+ 0
+ ],
+ [
+ "Alphonse",
+ "si430",
+ 0
+ ],
+ [
+ "Averon",
+ "si430",
+ 0
+ ]
+]
\ No newline at end of file
diff --git a/Assignments/rosterdb.sqlite b/Assignments/rosterdb.sqlite
new file mode 100644
index 0000000..67a1634
Binary files /dev/null and b/Assignments/rosterdb.sqlite differ
diff --git a/Assignments/scrape0000.py b/Assignments/scrape0000.py
new file mode 100644
index 0000000..c868a52
--- /dev/null
+++ b/Assignments/scrape0000.py
@@ -0,0 +1,22 @@
+#scrapes a site, finds jpg files, appends html code, and writes the HTML code to a txt file for each file.
+import urllib
+from BeautifulSoup import *
+from urllib import *
+
+nums = range(2,46)
+
+for num in nums:
+ url = 'http://www.todaysbuzz.com/todays-buzz/all-the-best-looks-from-the-2016-met-gala/'+str(num)+"/"
+ openurl = urllib.urlopen(url).read()
+
+ soup = BeautifulSoup(openurl)
+
+ tags = soup('img')
+
+
+ with open("src.txt", "a+") as file:
+ for tag in tags:
+ if tag.get('src',None).find('uploads/2016') != -1:
+ tag = ""
+ print num, tag
+ file.write(tag)
\ No newline at end of file
diff --git a/Assignments/test9.4.py b/Assignments/test9.4.py
new file mode 100644
index 0000000..c67faaf
--- /dev/null
+++ b/Assignments/test9.4.py
@@ -0,0 +1,20 @@
+import re
+fname = raw_input("Enter file:")
+if fname is not None:
+ fh = open('mbox-short.txt')
+
+count = dict()
+
+for line in fh:
+ if line.startswith('From '):
+ emails = line.split()
+ email = emails[1]
+ if email not in count:
+ count[email] = 1
+ else:
+ count[email] = count[email] + 1
+
+
+#maximum = max(count, key=count.get)
+#print (maximum, count[max(count, key=count.get)])
+print max(count.items(), key=lambda k: k[1])
diff --git a/Assignments/trackdb.sqlite b/Assignments/trackdb.sqlite
new file mode 100644
index 0000000..77a33bd
Binary files /dev/null and b/Assignments/trackdb.sqlite differ
diff --git a/Assignments/tracks.py b/Assignments/tracks.py
new file mode 100644
index 0000000..93a3859
--- /dev/null
+++ b/Assignments/tracks.py
@@ -0,0 +1,81 @@
+import xml.etree.ElementTree as ET
+import sqlite3
+
+conn = sqlite3.connect('trackdb.sqlite')
+cur = conn.cursor()
+
+# Make some fresh tables using executescript()
+cur.executescript('''
+DROP TABLE IF EXISTS Artist;
+DROP TABLE IF EXISTS Album;
+DROP TABLE IF EXISTS Track;
+
+CREATE TABLE Artist (
+ id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,
+ name TEXT UNIQUE
+);
+
+CREATE TABLE Album (
+ id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,
+ artist_id INTEGER,
+ title TEXT UNIQUE
+);
+
+CREATE TABLE Track (
+ id INTEGER NOT NULL PRIMARY KEY
+ AUTOINCREMENT UNIQUE,
+ title TEXT UNIQUE,
+ album_id INTEGER,
+ len INTEGER, rating INTEGER, count INTEGER
+);
+''')
+
+
+fname = raw_input('Enter file name: ')
+if ( len(fname) < 1 ) : fname = 'Library.xml'
+
+# Track ID369
+# NameAnother One Bites The Dust
+# ArtistQueen
+def lookup(d, key):
+ found = False
+ for child in d:
+ if found : return child.text
+ if child.tag == 'key' and child.text == key :
+ found = True
+ return None
+
+stuff = ET.parse(fname)
+all = stuff.findall('dict/dict/dict')
+print 'Dict count:', len(all)
+for entry in all:
+ if ( lookup(entry, 'Track ID') is None ) : continue
+
+ name = lookup(entry, 'Name')
+ artist = lookup(entry, 'Artist')
+ album = lookup(entry, 'Album')
+ count = lookup(entry, 'Play Count')
+ rating = lookup(entry, 'Rating')
+ length = lookup(entry, 'Total Time')
+
+ if name is None or artist is None or album is None :
+ continue
+
+ print name, artist, album, count, rating, length
+
+ cur.execute('''INSERT OR IGNORE INTO Artist (name)
+ VALUES ( ? )''', ( artist, ) )
+ cur.execute('SELECT id FROM Artist WHERE name = ? ', (artist, ))
+ artist_id = cur.fetchone()[0]
+
+ cur.execute('''INSERT OR IGNORE INTO Album (title, artist_id)
+ VALUES ( ?, ? )''', ( album, artist_id ) )
+ cur.execute('SELECT id FROM Album WHERE title = ? ', (album, ))
+ album_id = cur.fetchone()[0]
+
+ cur.execute('''INSERT OR REPLACE INTO Track
+ (title, album_id, len, rating, count)
+ VALUES ( ?, ?, ?, ?, ? )''',
+ ( name, album_id, length, rating, count ) )
+
+ conn.commit()
diff --git a/Assignments/urltest.py b/Assignments/urltest.py
new file mode 100644
index 0000000..6089110
--- /dev/null
+++ b/Assignments/urltest.py
@@ -0,0 +1,5 @@
+import urllib
+fhand = urllib.urlopen('http://www.google.com')
+
+for line in fhand:
+ print line.strip()
\ No newline at end of file
diff --git a/Assignments/word.txt b/Assignments/word.txt
new file mode 100644
index 0000000..4223a2a
--- /dev/null
+++ b/Assignments/word.txt
@@ -0,0 +1,24 @@
+Writing programs or programming is a very creative
+and rewarding activity You can write programs for
+many reasons ranging from making your living to solving
+a difficult data analysis problem to having fun to helping
+someone else solve a problem This book assumes that
+{\em everyone} needs to know how to program and that once
+you know how to program, you will figure out what you want
+to do with your newfound skills
+
+We are surrounded in our daily lives with computers ranging
+from laptops to cell phones We can think of these computers
+as our personal assistants who can take care of many things
+on our behalf The hardware in our current-day computers
+is essentially built to continuously ask us the question
+What would you like me to do next
+
+Our computers are fast and have vasts amounts of memory and
+could be very helpful to us if we only knew the language to
+speak to explain to the computer what we would like it to
+do next If we knew this language we could tell the
+computer to do tasks on our behalf that were reptitive
+Interestingly, the kinds of things computers can do best
+are often the kinds of things that we humans find boring
+and mind-numbing
\ No newline at end of file
diff --git a/assignments/Assignment_8.5_Massawa_Lawson.py b/assignments/Assignment_8.5_Massawa_Lawson.py
new file mode 100644
index 0000000..1309ce1
--- /dev/null
+++ b/assignments/Assignment_8.5_Massawa_Lawson.py
@@ -0,0 +1,24 @@
+fname = raw_input("\nEnter file name: ")
+if fname is not None:
+ fh=open('mbox-short.txt')
+count = 0
+lst = list()
+for line in fh:
+ words=line.split()
+ if line.startswith('From '):
+ count +=1
+ for word in words:
+ if words[1] not in lst:
+ lst.append(word)
+ #remove troublesome 'From' entries from list of emails
+ for i in lst:
+ if i == 'From':
+ lst.remove('From')
+ else:
+ continue
+print "\nThere were", count, "lines in the file with 'From ' as the first word\n"
+print "\nThe", len(lst),'unique email adresses are:\n'
+for a in lst:
+ print a
+print '\n'
+
diff --git a/assignments/mbox-short.txt b/assignments/mbox-short.txt
new file mode 100644
index 0000000..35bad6a
--- /dev/null
+++ b/assignments/mbox-short.txt
@@ -0,0 +1,1909 @@
+From stephen.marquard@uct.ac.za Sat Jan 5 09:14:16 2008
+Return-Path:
+Received: from murder (mail.umich.edu [141.211.14.90])
+ by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;
+ Sat, 05 Jan 2008 09:14:16 -0500
+X-Sieve: CMU Sieve 2.3
+Received: from murder ([unix socket])
+ by mail.umich.edu (Cyrus v2.2.12) with LMTPA;
+ Sat, 05 Jan 2008 09:14:16 -0500
+Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])
+ by flawless.mail.umich.edu () with ESMTP id m05EEFR1013674;
+ Sat, 5 Jan 2008 09:14:15 -0500
+Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])
+ BY holes.mr.itd.umich.edu ID 477F90B0.2DB2F.12494 ;
+ 5 Jan 2008 09:14:10 -0500
+Received: from paploo.uhi.ac.uk (localhost [127.0.0.1])
+ by paploo.uhi.ac.uk (Postfix) with ESMTP id 5F919BC2F2;
+ Sat, 5 Jan 2008 14:10:05 +0000 (GMT)
+Message-ID: <200801051412.m05ECIaH010327@nakamura.uits.iupui.edu>
+Mime-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Received: from prod.collab.uhi.ac.uk ([194.35.219.182])
+ by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 899
+ for ;
+ Sat, 5 Jan 2008 14:09:50 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])
+ by shmi.uhi.ac.uk (Postfix) with ESMTP id A215243002
+ for ; Sat, 5 Jan 2008 14:13:33 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1])
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m05ECJVp010329
+ for ; Sat, 5 Jan 2008 09:12:19 -0500
+Received: (from apache@localhost)
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m05ECIaH010327
+ for source@collab.sakaiproject.org; Sat, 5 Jan 2008 09:12:18 -0500
+Date: Sat, 5 Jan 2008 09:12:18 -0500
+X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f
+To: source@collab.sakaiproject.org
+From: stephen.marquard@uct.ac.za
+Subject: [sakai] svn commit: r39772 - content/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl
+X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8
+X-Content-Type-Message-Body: text/plain; charset=UTF-8
+Content-Type: text/plain; charset=UTF-8
+X-DSPAM-Result: Innocent
+X-DSPAM-Processed: Sat Jan 5 09:14:16 2008
+X-DSPAM-Confidence: 0.8475
+X-DSPAM-Probability: 0.0000
+
+Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39772
+
+Author: stephen.marquard@uct.ac.za
+Date: 2008-01-05 09:12:07 -0500 (Sat, 05 Jan 2008)
+New Revision: 39772
+
+Modified:
+content/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlOracle.java
+content/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java
+Log:
+SAK-12501 merge to 2-5-x: r39622, r39624:5, r39632:3 (resolve conflict from differing linebreaks for r39622)
+
+----------------------
+This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.
+You can modify how you receive notifications at My Workspace > Preferences.
+
+
+
+From louis@media.berkeley.edu Fri Jan 4 18:10:48 2008
+Return-Path:
+Received: from murder (mail.umich.edu [141.211.14.97])
+ by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;
+ Fri, 04 Jan 2008 18:10:48 -0500
+X-Sieve: CMU Sieve 2.3
+Received: from murder ([unix socket])
+ by mail.umich.edu (Cyrus v2.2.12) with LMTPA;
+ Fri, 04 Jan 2008 18:10:48 -0500
+Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])
+ by sleepers.mail.umich.edu () with ESMTP id m04NAbGa029441;
+ Fri, 4 Jan 2008 18:10:37 -0500
+Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])
+ BY icestorm.mr.itd.umich.edu ID 477EBCE3.161BB.4320 ;
+ 4 Jan 2008 18:10:31 -0500
+Received: from paploo.uhi.ac.uk (localhost [127.0.0.1])
+ by paploo.uhi.ac.uk (Postfix) with ESMTP id 07969BB706;
+ Fri, 4 Jan 2008 23:10:33 +0000 (GMT)
+Message-ID: <200801042308.m04N8v6O008125@nakamura.uits.iupui.edu>
+Mime-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Received: from prod.collab.uhi.ac.uk ([194.35.219.182])
+ by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 710
+ for ;
+ Fri, 4 Jan 2008 23:10:10 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])
+ by shmi.uhi.ac.uk (Postfix) with ESMTP id 4BA2F42F57
+ for ; Fri, 4 Jan 2008 23:10:10 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1])
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04N8vHG008127
+ for ; Fri, 4 Jan 2008 18:08:57 -0500
+Received: (from apache@localhost)
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04N8v6O008125
+ for source@collab.sakaiproject.org; Fri, 4 Jan 2008 18:08:57 -0500
+Date: Fri, 4 Jan 2008 18:08:57 -0500
+X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f
+To: source@collab.sakaiproject.org
+From: louis@media.berkeley.edu
+Subject: [sakai] svn commit: r39771 - in bspace/site-manage/sakai_2-4-x/site-manage-tool/tool/src: bundle java/org/sakaiproject/site/tool
+X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8
+X-Content-Type-Message-Body: text/plain; charset=UTF-8
+Content-Type: text/plain; charset=UTF-8
+X-DSPAM-Result: Innocent
+X-DSPAM-Processed: Fri Jan 4 18:10:48 2008
+X-DSPAM-Confidence: 0.6178
+X-DSPAM-Probability: 0.0000
+
+Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39771
+
+Author: louis@media.berkeley.edu
+Date: 2008-01-04 18:08:50 -0500 (Fri, 04 Jan 2008)
+New Revision: 39771
+
+Modified:
+bspace/site-manage/sakai_2-4-x/site-manage-tool/tool/src/bundle/sitesetupgeneric.properties
+bspace/site-manage/sakai_2-4-x/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java
+Log:
+BSP-1415 New (Guest) user Notification
+
+----------------------
+This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.
+You can modify how you receive notifications at My Workspace > Preferences.
+
+
+
+From zqian@umich.edu Fri Jan 4 16:10:39 2008
+Return-Path:
+Received: from murder (mail.umich.edu [141.211.14.25])
+ by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;
+ Fri, 04 Jan 2008 16:10:39 -0500
+X-Sieve: CMU Sieve 2.3
+Received: from murder ([unix socket])
+ by mail.umich.edu (Cyrus v2.2.12) with LMTPA;
+ Fri, 04 Jan 2008 16:10:39 -0500
+Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])
+ by panther.mail.umich.edu () with ESMTP id m04LAcZw014275;
+ Fri, 4 Jan 2008 16:10:38 -0500
+Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])
+ BY ghostbusters.mr.itd.umich.edu ID 477EA0C6.A0214.25480 ;
+ 4 Jan 2008 16:10:33 -0500
+Received: from paploo.uhi.ac.uk (localhost [127.0.0.1])
+ by paploo.uhi.ac.uk (Postfix) with ESMTP id C48CDBB490;
+ Fri, 4 Jan 2008 21:10:31 +0000 (GMT)
+Message-ID: <200801042109.m04L92hb007923@nakamura.uits.iupui.edu>
+Mime-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Received: from prod.collab.uhi.ac.uk ([194.35.219.182])
+ by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 906
+ for ;
+ Fri, 4 Jan 2008 21:10:18 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])
+ by shmi.uhi.ac.uk (Postfix) with ESMTP id 7D13042F71
+ for ; Fri, 4 Jan 2008 21:10:14 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1])
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04L927E007925
+ for ; Fri, 4 Jan 2008 16:09:02 -0500
+Received: (from apache@localhost)
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04L92hb007923
+ for source@collab.sakaiproject.org; Fri, 4 Jan 2008 16:09:02 -0500
+Date: Fri, 4 Jan 2008 16:09:02 -0500
+X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f
+To: source@collab.sakaiproject.org
+From: zqian@umich.edu
+Subject: [sakai] svn commit: r39770 - site-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/webapp/vm/sitesetup
+X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8
+X-Content-Type-Message-Body: text/plain; charset=UTF-8
+Content-Type: text/plain; charset=UTF-8
+X-DSPAM-Result: Innocent
+X-DSPAM-Processed: Fri Jan 4 16:10:39 2008
+X-DSPAM-Confidence: 0.6961
+X-DSPAM-Probability: 0.0000
+
+Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39770
+
+Author: zqian@umich.edu
+Date: 2008-01-04 16:09:01 -0500 (Fri, 04 Jan 2008)
+New Revision: 39770
+
+Modified:
+site-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-list.vm
+Log:
+merge fix to SAK-9996 into 2-5-x branch: svn merge -r 39687:39688 https://source.sakaiproject.org/svn/site-manage/trunk/
+
+----------------------
+This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.
+You can modify how you receive notifications at My Workspace > Preferences.
+
+
+
+From rjlowe@iupui.edu Fri Jan 4 15:46:24 2008
+Return-Path:
+Received: from murder (mail.umich.edu [141.211.14.25])
+ by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;
+ Fri, 04 Jan 2008 15:46:24 -0500
+X-Sieve: CMU Sieve 2.3
+Received: from murder ([unix socket])
+ by mail.umich.edu (Cyrus v2.2.12) with LMTPA;
+ Fri, 04 Jan 2008 15:46:24 -0500
+Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])
+ by panther.mail.umich.edu () with ESMTP id m04KkNbx032077;
+ Fri, 4 Jan 2008 15:46:23 -0500
+Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])
+ BY dreamcatcher.mr.itd.umich.edu ID 477E9B13.2F3BC.22965 ;
+ 4 Jan 2008 15:46:13 -0500
+Received: from paploo.uhi.ac.uk (localhost [127.0.0.1])
+ by paploo.uhi.ac.uk (Postfix) with ESMTP id 4AE03BB552;
+ Fri, 4 Jan 2008 20:46:13 +0000 (GMT)
+Message-ID: <200801042044.m04Kiem3007881@nakamura.uits.iupui.edu>
+Mime-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Received: from prod.collab.uhi.ac.uk ([194.35.219.182])
+ by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 38
+ for ;
+ Fri, 4 Jan 2008 20:45:56 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])
+ by shmi.uhi.ac.uk (Postfix) with ESMTP id A55D242F57
+ for ; Fri, 4 Jan 2008 20:45:52 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1])
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04KieqE007883
+ for ; Fri, 4 Jan 2008 15:44:40 -0500
+Received: (from apache@localhost)
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04Kiem3007881
+ for source@collab.sakaiproject.org; Fri, 4 Jan 2008 15:44:40 -0500
+Date: Fri, 4 Jan 2008 15:44:40 -0500
+X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f
+To: source@collab.sakaiproject.org
+From: rjlowe@iupui.edu
+Subject: [sakai] svn commit: r39769 - in gradebook/trunk/app/ui/src: java/org/sakaiproject/tool/gradebook/ui/helpers/beans java/org/sakaiproject/tool/gradebook/ui/helpers/producers webapp/WEB-INF webapp/WEB-INF/bundle
+X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8
+X-Content-Type-Message-Body: text/plain; charset=UTF-8
+Content-Type: text/plain; charset=UTF-8
+X-DSPAM-Result: Innocent
+X-DSPAM-Processed: Fri Jan 4 15:46:24 2008
+X-DSPAM-Confidence: 0.7565
+X-DSPAM-Probability: 0.0000
+
+Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39769
+
+Author: rjlowe@iupui.edu
+Date: 2008-01-04 15:44:39 -0500 (Fri, 04 Jan 2008)
+New Revision: 39769
+
+Modified:
+gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/beans/AssignmentGradeRecordBean.java
+gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/producers/GradeGradebookItemProducer.java
+gradebook/trunk/app/ui/src/webapp/WEB-INF/applicationContext.xml
+gradebook/trunk/app/ui/src/webapp/WEB-INF/bundle/messages.properties
+gradebook/trunk/app/ui/src/webapp/WEB-INF/requestContext.xml
+Log:
+SAK-12180 - Fixed errors with grading helper
+
+----------------------
+This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.
+You can modify how you receive notifications at My Workspace > Preferences.
+
+
+
+From zqian@umich.edu Fri Jan 4 15:03:18 2008
+Return-Path:
+Received: from murder (mail.umich.edu [141.211.14.46])
+ by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;
+ Fri, 04 Jan 2008 15:03:18 -0500
+X-Sieve: CMU Sieve 2.3
+Received: from murder ([unix socket])
+ by mail.umich.edu (Cyrus v2.2.12) with LMTPA;
+ Fri, 04 Jan 2008 15:03:18 -0500
+Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])
+ by fan.mail.umich.edu () with ESMTP id m04K3HGF006563;
+ Fri, 4 Jan 2008 15:03:17 -0500
+Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])
+ BY firestarter.mr.itd.umich.edu ID 477E9100.8F7F4.1590 ;
+ 4 Jan 2008 15:03:15 -0500
+Received: from paploo.uhi.ac.uk (localhost [127.0.0.1])
+ by paploo.uhi.ac.uk (Postfix) with ESMTP id 57770BB477;
+ Fri, 4 Jan 2008 20:03:09 +0000 (GMT)
+Message-ID: <200801042001.m04K1cO0007738@nakamura.uits.iupui.edu>
+Mime-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Received: from prod.collab.uhi.ac.uk ([194.35.219.182])
+ by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 622
+ for ;
+ Fri, 4 Jan 2008 20:02:46 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])
+ by shmi.uhi.ac.uk (Postfix) with ESMTP id AB4D042F4D
+ for ; Fri, 4 Jan 2008 20:02:50 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1])
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04K1cXv007740
+ for ; Fri, 4 Jan 2008 15:01:38 -0500
+Received: (from apache@localhost)
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04K1cO0007738
+ for source@collab.sakaiproject.org; Fri, 4 Jan 2008 15:01:38 -0500
+Date: Fri, 4 Jan 2008 15:01:38 -0500
+X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f
+To: source@collab.sakaiproject.org
+From: zqian@umich.edu
+Subject: [sakai] svn commit: r39766 - site-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/java/org/sakaiproject/site/tool
+X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8
+X-Content-Type-Message-Body: text/plain; charset=UTF-8
+Content-Type: text/plain; charset=UTF-8
+X-DSPAM-Result: Innocent
+X-DSPAM-Processed: Fri Jan 4 15:03:18 2008
+X-DSPAM-Confidence: 0.7626
+X-DSPAM-Probability: 0.0000
+
+Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39766
+
+Author: zqian@umich.edu
+Date: 2008-01-04 15:01:37 -0500 (Fri, 04 Jan 2008)
+New Revision: 39766
+
+Modified:
+site-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java
+Log:
+merge fix to SAK-10788 into site-manage 2.4.x branch:
+
+Sakai Source Repository #38024 Wed Nov 07 14:54:46 MST 2007 zqian@umich.edu Fix to SAK-10788: If a provided id in a couse site is fake or doesn't provide any user information, Site Info appears to be like project site with empty participant list
+
+Watch for enrollments object being null and concatenate provider ids when there are more than one.
+Files Changed
+MODIFY /site-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java
+
+
+
+
+----------------------
+This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.
+You can modify how you receive notifications at My Workspace > Preferences.
+
+
+
+From rjlowe@iupui.edu Fri Jan 4 14:50:18 2008
+Return-Path:
+Received: from murder (mail.umich.edu [141.211.14.93])
+ by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;
+ Fri, 04 Jan 2008 14:50:18 -0500
+X-Sieve: CMU Sieve 2.3
+Received: from murder ([unix socket])
+ by mail.umich.edu (Cyrus v2.2.12) with LMTPA;
+ Fri, 04 Jan 2008 14:50:18 -0500
+Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])
+ by mission.mail.umich.edu () with ESMTP id m04JoHJi019755;
+ Fri, 4 Jan 2008 14:50:17 -0500
+Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])
+ BY eyewitness.mr.itd.umich.edu ID 477E8DF2.67B91.5278 ;
+ 4 Jan 2008 14:50:13 -0500
+Received: from paploo.uhi.ac.uk (localhost [127.0.0.1])
+ by paploo.uhi.ac.uk (Postfix) with ESMTP id 2D1B9BB492;
+ Fri, 4 Jan 2008 19:47:10 +0000 (GMT)
+Message-ID: <200801041948.m04JmdwO007705@nakamura.uits.iupui.edu>
+Mime-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Received: from prod.collab.uhi.ac.uk ([194.35.219.182])
+ by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 960
+ for ;
+ Fri, 4 Jan 2008 19:46:50 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])
+ by shmi.uhi.ac.uk (Postfix) with ESMTP id B3E6742F4A
+ for ; Fri, 4 Jan 2008 19:49:51 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1])
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04JmeV9007707
+ for ; Fri, 4 Jan 2008 14:48:40 -0500
+Received: (from apache@localhost)
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04JmdwO007705
+ for source@collab.sakaiproject.org; Fri, 4 Jan 2008 14:48:39 -0500
+Date: Fri, 4 Jan 2008 14:48:39 -0500
+X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f
+To: source@collab.sakaiproject.org
+From: rjlowe@iupui.edu
+Subject: [sakai] svn commit: r39765 - in gradebook/trunk/app: business/src/java/org/sakaiproject/tool/gradebook/business business/src/java/org/sakaiproject/tool/gradebook/business/impl ui ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/beans ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/entity ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/params ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/producers ui/src/webapp/WEB-INF ui/src/webapp/WEB-INF/bundle ui/src/webapp/content/templates
+X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8
+X-Content-Type-Message-Body: text/plain; charset=UTF-8
+Content-Type: text/plain; charset=UTF-8
+X-DSPAM-Result: Innocent
+X-DSPAM-Processed: Fri Jan 4 14:50:18 2008
+X-DSPAM-Confidence: 0.7556
+X-DSPAM-Probability: 0.0000
+
+Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39765
+
+Author: rjlowe@iupui.edu
+Date: 2008-01-04 14:48:37 -0500 (Fri, 04 Jan 2008)
+New Revision: 39765
+
+Added:
+gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/beans/AssignmentGradeRecordBean.java
+gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/beans/AssignmentGradeRecordCreator.java
+gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/entity/GradebookEntryGradeEntityProvider.java
+gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/params/GradeGradebookItemViewParams.java
+gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/producers/GradeGradebookItemProducer.java
+gradebook/trunk/app/ui/src/webapp/content/templates/grade-gradebook-item.html
+Modified:
+gradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/GradebookManager.java
+gradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java
+gradebook/trunk/app/ui/pom.xml
+gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/beans/GradebookItemBean.java
+gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/entity/GradebookEntryEntityProvider.java
+gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/producers/AddGradebookItemProducer.java
+gradebook/trunk/app/ui/src/webapp/WEB-INF/applicationContext.xml
+gradebook/trunk/app/ui/src/webapp/WEB-INF/bundle/messages.properties
+gradebook/trunk/app/ui/src/webapp/WEB-INF/requestContext.xml
+Log:
+SAK-12180 - New helper tool to grade an assignment
+
+----------------------
+This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.
+You can modify how you receive notifications at My Workspace > Preferences.
+
+
+
+From cwen@iupui.edu Fri Jan 4 11:37:30 2008
+Return-Path:
+Received: from murder (mail.umich.edu [141.211.14.46])
+ by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;
+ Fri, 04 Jan 2008 11:37:30 -0500
+X-Sieve: CMU Sieve 2.3
+Received: from murder ([unix socket])
+ by mail.umich.edu (Cyrus v2.2.12) with LMTPA;
+ Fri, 04 Jan 2008 11:37:30 -0500
+Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])
+ by fan.mail.umich.edu () with ESMTP id m04GbT9x022078;
+ Fri, 4 Jan 2008 11:37:29 -0500
+Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])
+ BY tadpole.mr.itd.umich.edu ID 477E60B2.82756.9904 ;
+ 4 Jan 2008 11:37:09 -0500
+Received: from paploo.uhi.ac.uk (localhost [127.0.0.1])
+ by paploo.uhi.ac.uk (Postfix) with ESMTP id 8D13DBB001;
+ Fri, 4 Jan 2008 16:37:07 +0000 (GMT)
+Message-ID: <200801041635.m04GZQGZ007313@nakamura.uits.iupui.edu>
+Mime-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Received: from prod.collab.uhi.ac.uk ([194.35.219.182])
+ by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 120
+ for ;
+ Fri, 4 Jan 2008 16:36:40 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])
+ by shmi.uhi.ac.uk (Postfix) with ESMTP id D430B42E42
+ for ; Fri, 4 Jan 2008 16:36:37 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1])
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04GZQ7W007315
+ for ; Fri, 4 Jan 2008 11:35:26 -0500
+Received: (from apache@localhost)
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04GZQGZ007313
+ for source@collab.sakaiproject.org; Fri, 4 Jan 2008 11:35:26 -0500
+Date: Fri, 4 Jan 2008 11:35:26 -0500
+X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f
+To: source@collab.sakaiproject.org
+From: cwen@iupui.edu
+Subject: [sakai] svn commit: r39764 - in msgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums: . ui
+X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8
+X-Content-Type-Message-Body: text/plain; charset=UTF-8
+Content-Type: text/plain; charset=UTF-8
+X-DSPAM-Result: Innocent
+X-DSPAM-Processed: Fri Jan 4 11:37:30 2008
+X-DSPAM-Confidence: 0.7002
+X-DSPAM-Probability: 0.0000
+
+Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39764
+
+Author: cwen@iupui.edu
+Date: 2008-01-04 11:35:25 -0500 (Fri, 04 Jan 2008)
+New Revision: 39764
+
+Modified:
+msgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java
+msgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums/ui/PrivateMessageDecoratedBean.java
+Log:
+unmerge Xingtang's checkin for SAK-12488.
+
+svn merge -r39558:39557 https://source.sakaiproject.org/svn/msgcntr/trunk
+U messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java
+U messageforums-app/src/java/org/sakaiproject/tool/messageforums/ui/PrivateMessageDecoratedBean.java
+
+svn log -r 39558
+------------------------------------------------------------------------
+r39558 | hu2@iupui.edu | 2007-12-20 15:25:38 -0500 (Thu, 20 Dec 2007) | 3 lines
+
+SAK-12488
+when send a message to yourself. click reply to all, cc row should be null.
+http://jira.sakaiproject.org/jira/browse/SAK-12488
+------------------------------------------------------------------------
+
+
+----------------------
+This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.
+You can modify how you receive notifications at My Workspace > Preferences.
+
+
+
+From cwen@iupui.edu Fri Jan 4 11:35:08 2008
+Return-Path:
+Received: from murder (mail.umich.edu [141.211.14.46])
+ by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;
+ Fri, 04 Jan 2008 11:35:08 -0500
+X-Sieve: CMU Sieve 2.3
+Received: from murder ([unix socket])
+ by mail.umich.edu (Cyrus v2.2.12) with LMTPA;
+ Fri, 04 Jan 2008 11:35:08 -0500
+Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])
+ by fan.mail.umich.edu () with ESMTP id m04GZ6lt020480;
+ Fri, 4 Jan 2008 11:35:06 -0500
+Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])
+ BY it.mr.itd.umich.edu ID 477E6033.6469D.21870 ;
+ 4 Jan 2008 11:35:02 -0500
+Received: from paploo.uhi.ac.uk (localhost [127.0.0.1])
+ by paploo.uhi.ac.uk (Postfix) with ESMTP id E40FABAE5B;
+ Fri, 4 Jan 2008 16:34:38 +0000 (GMT)
+Message-ID: <200801041633.m04GX6eG007292@nakamura.uits.iupui.edu>
+Mime-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Received: from prod.collab.uhi.ac.uk ([194.35.219.182])
+ by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 697
+ for ;
+ Fri, 4 Jan 2008 16:34:01 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])
+ by shmi.uhi.ac.uk (Postfix) with ESMTP id 1CD0C42E42
+ for ; Fri, 4 Jan 2008 16:34:17 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1])
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04GX6Y3007294
+ for ; Fri, 4 Jan 2008 11:33:06 -0500
+Received: (from apache@localhost)
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04GX6eG007292
+ for source@collab.sakaiproject.org; Fri, 4 Jan 2008 11:33:06 -0500
+Date: Fri, 4 Jan 2008 11:33:06 -0500
+X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f
+To: source@collab.sakaiproject.org
+From: cwen@iupui.edu
+Subject: [sakai] svn commit: r39763 - in msgcntr/trunk: messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle messageforums-app/src/java/org/sakaiproject/tool/messageforums
+X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8
+X-Content-Type-Message-Body: text/plain; charset=UTF-8
+Content-Type: text/plain; charset=UTF-8
+X-DSPAM-Result: Innocent
+X-DSPAM-Processed: Fri Jan 4 11:35:08 2008
+X-DSPAM-Confidence: 0.7615
+X-DSPAM-Probability: 0.0000
+
+Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39763
+
+Author: cwen@iupui.edu
+Date: 2008-01-04 11:33:05 -0500 (Fri, 04 Jan 2008)
+New Revision: 39763
+
+Modified:
+msgcntr/trunk/messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle/Messages.properties
+msgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java
+Log:
+unmerge Xingtang's check in for SAK-12484.
+
+svn merge -r39571:39570 https://source.sakaiproject.org/svn/msgcntr/trunk
+U messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle/Messages.properties
+U messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java
+
+svn log -r 39571
+------------------------------------------------------------------------
+r39571 | hu2@iupui.edu | 2007-12-20 21:26:28 -0500 (Thu, 20 Dec 2007) | 3 lines
+
+SAK-12484
+reply all cc list should not include the current user name.
+http://jira.sakaiproject.org/jira/browse/SAK-12484
+------------------------------------------------------------------------
+
+
+----------------------
+This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.
+You can modify how you receive notifications at My Workspace > Preferences.
+
+
+
+From gsilver@umich.edu Fri Jan 4 11:12:37 2008
+Return-Path:
+Received: from murder (mail.umich.edu [141.211.14.25])
+ by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;
+ Fri, 04 Jan 2008 11:12:37 -0500
+X-Sieve: CMU Sieve 2.3
+Received: from murder ([unix socket])
+ by mail.umich.edu (Cyrus v2.2.12) with LMTPA;
+ Fri, 04 Jan 2008 11:12:37 -0500
+Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])
+ by panther.mail.umich.edu () with ESMTP id m04GCaHB030887;
+ Fri, 4 Jan 2008 11:12:36 -0500
+Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])
+ BY holes.mr.itd.umich.edu ID 477E5AEB.E670B.28397 ;
+ 4 Jan 2008 11:12:30 -0500
+Received: from paploo.uhi.ac.uk (localhost [127.0.0.1])
+ by paploo.uhi.ac.uk (Postfix) with ESMTP id 99715BAE7D;
+ Fri, 4 Jan 2008 16:12:27 +0000 (GMT)
+Message-ID: <200801041611.m04GB1Lb007221@nakamura.uits.iupui.edu>
+Mime-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Received: from prod.collab.uhi.ac.uk ([194.35.219.182])
+ by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 272
+ for ;
+ Fri, 4 Jan 2008 16:12:14 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])
+ by shmi.uhi.ac.uk (Postfix) with ESMTP id 0A6ED42DFC
+ for ; Fri, 4 Jan 2008 16:12:12 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1])
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04GB1Wt007223
+ for ; Fri, 4 Jan 2008 11:11:01 -0500
+Received: (from apache@localhost)
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04GB1Lb007221
+ for source@collab.sakaiproject.org; Fri, 4 Jan 2008 11:11:01 -0500
+Date: Fri, 4 Jan 2008 11:11:01 -0500
+X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f
+To: source@collab.sakaiproject.org
+From: gsilver@umich.edu
+Subject: [sakai] svn commit: r39762 - web/trunk/web-tool/tool/src/bundle
+X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8
+X-Content-Type-Message-Body: text/plain; charset=UTF-8
+Content-Type: text/plain; charset=UTF-8
+X-DSPAM-Result: Innocent
+X-DSPAM-Processed: Fri Jan 4 11:12:37 2008
+X-DSPAM-Confidence: 0.7601
+X-DSPAM-Probability: 0.0000
+
+Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39762
+
+Author: gsilver@umich.edu
+Date: 2008-01-04 11:11:00 -0500 (Fri, 04 Jan 2008)
+New Revision: 39762
+
+Modified:
+web/trunk/web-tool/tool/src/bundle/iframe.properties
+Log:
+SAK-12596
+http://bugs.sakaiproject.org/jira/browse/SAK-12596
+- left moot (unused) entries commented for now
+
+----------------------
+This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.
+You can modify how you receive notifications at My Workspace > Preferences.
+
+
+
+From gsilver@umich.edu Fri Jan 4 11:11:52 2008
+Return-Path:
+Received: from murder (mail.umich.edu [141.211.14.36])
+ by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;
+ Fri, 04 Jan 2008 11:11:52 -0500
+X-Sieve: CMU Sieve 2.3
+Received: from murder ([unix socket])
+ by mail.umich.edu (Cyrus v2.2.12) with LMTPA;
+ Fri, 04 Jan 2008 11:11:52 -0500
+Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])
+ by godsend.mail.umich.edu () with ESMTP id m04GBqqv025330;
+ Fri, 4 Jan 2008 11:11:52 -0500
+Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])
+ BY creepshow.mr.itd.umich.edu ID 477E5AB3.5CC32.30840 ;
+ 4 Jan 2008 11:11:34 -0500
+Received: from paploo.uhi.ac.uk (localhost [127.0.0.1])
+ by paploo.uhi.ac.uk (Postfix) with ESMTP id 62AA4BAE46;
+ Fri, 4 Jan 2008 16:11:31 +0000 (GMT)
+Message-ID: <200801041610.m04GA5KP007209@nakamura.uits.iupui.edu>
+Mime-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Received: from prod.collab.uhi.ac.uk ([194.35.219.182])
+ by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1006
+ for ;
+ Fri, 4 Jan 2008 16:11:18 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])
+ by shmi.uhi.ac.uk (Postfix) with ESMTP id C596A3DFA2
+ for ; Fri, 4 Jan 2008 16:11:16 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1])
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04GA5LR007211
+ for ; Fri, 4 Jan 2008 11:10:05 -0500
+Received: (from apache@localhost)
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04GA5KP007209
+ for source@collab.sakaiproject.org; Fri, 4 Jan 2008 11:10:05 -0500
+Date: Fri, 4 Jan 2008 11:10:05 -0500
+X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f
+To: source@collab.sakaiproject.org
+From: gsilver@umich.edu
+Subject: [sakai] svn commit: r39761 - site/trunk/site-tool/tool/src/bundle
+X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8
+X-Content-Type-Message-Body: text/plain; charset=UTF-8
+Content-Type: text/plain; charset=UTF-8
+X-DSPAM-Result: Innocent
+X-DSPAM-Processed: Fri Jan 4 11:11:52 2008
+X-DSPAM-Confidence: 0.7605
+X-DSPAM-Probability: 0.0000
+
+Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39761
+
+Author: gsilver@umich.edu
+Date: 2008-01-04 11:10:04 -0500 (Fri, 04 Jan 2008)
+New Revision: 39761
+
+Modified:
+site/trunk/site-tool/tool/src/bundle/admin.properties
+Log:
+SAK-12595
+http://bugs.sakaiproject.org/jira/browse/SAK-12595
+- left moot (unused) entries commented for now
+
+----------------------
+This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.
+You can modify how you receive notifications at My Workspace > Preferences.
+
+
+
+From zqian@umich.edu Fri Jan 4 11:11:03 2008
+Return-Path:
+Received: from murder (mail.umich.edu [141.211.14.97])
+ by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;
+ Fri, 04 Jan 2008 11:11:03 -0500
+X-Sieve: CMU Sieve 2.3
+Received: from murder ([unix socket])
+ by mail.umich.edu (Cyrus v2.2.12) with LMTPA;
+ Fri, 04 Jan 2008 11:11:03 -0500
+Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])
+ by sleepers.mail.umich.edu () with ESMTP id m04GB3Vg011502;
+ Fri, 4 Jan 2008 11:11:03 -0500
+Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])
+ BY carrie.mr.itd.umich.edu ID 477E5A8D.B378F.24200 ;
+ 4 Jan 2008 11:10:56 -0500
+Received: from paploo.uhi.ac.uk (localhost [127.0.0.1])
+ by paploo.uhi.ac.uk (Postfix) with ESMTP id C7251BAD44;
+ Fri, 4 Jan 2008 16:10:53 +0000 (GMT)
+Message-ID: <200801041609.m04G9EuX007197@nakamura.uits.iupui.edu>
+Mime-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Received: from prod.collab.uhi.ac.uk ([194.35.219.182])
+ by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 483
+ for ;
+ Fri, 4 Jan 2008 16:10:27 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])
+ by shmi.uhi.ac.uk (Postfix) with ESMTP id 2E7043DFA2
+ for ; Fri, 4 Jan 2008 16:10:26 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1])
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04G9Eqg007199
+ for ; Fri, 4 Jan 2008 11:09:15 -0500
+Received: (from apache@localhost)
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04G9EuX007197
+ for source@collab.sakaiproject.org; Fri, 4 Jan 2008 11:09:14 -0500
+Date: Fri, 4 Jan 2008 11:09:14 -0500
+X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f
+To: source@collab.sakaiproject.org
+From: zqian@umich.edu
+Subject: [sakai] svn commit: r39760 - in site-manage/trunk/site-manage-tool/tool/src: java/org/sakaiproject/site/tool webapp/vm/sitesetup
+X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8
+X-Content-Type-Message-Body: text/plain; charset=UTF-8
+Content-Type: text/plain; charset=UTF-8
+X-DSPAM-Result: Innocent
+X-DSPAM-Processed: Fri Jan 4 11:11:03 2008
+X-DSPAM-Confidence: 0.6959
+X-DSPAM-Probability: 0.0000
+
+Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39760
+
+Author: zqian@umich.edu
+Date: 2008-01-04 11:09:12 -0500 (Fri, 04 Jan 2008)
+New Revision: 39760
+
+Modified:
+site-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java
+site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-list.vm
+Log:
+fix to SAK-10911: Refactor use of site.upd, site.upd.site.mbrship and site.upd.grp.mbrship permissions
+
+----------------------
+This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.
+You can modify how you receive notifications at My Workspace > Preferences.
+
+
+
+From gsilver@umich.edu Fri Jan 4 11:10:22 2008
+Return-Path:
+Received: from murder (mail.umich.edu [141.211.14.39])
+ by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;
+ Fri, 04 Jan 2008 11:10:22 -0500
+X-Sieve: CMU Sieve 2.3
+Received: from murder ([unix socket])
+ by mail.umich.edu (Cyrus v2.2.12) with LMTPA;
+ Fri, 04 Jan 2008 11:10:22 -0500
+Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])
+ by faithful.mail.umich.edu () with ESMTP id m04GAL9k010604;
+ Fri, 4 Jan 2008 11:10:21 -0500
+Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])
+ BY holes.mr.itd.umich.edu ID 477E5A67.34350.23015 ;
+ 4 Jan 2008 11:10:18 -0500
+Received: from paploo.uhi.ac.uk (localhost [127.0.0.1])
+ by paploo.uhi.ac.uk (Postfix) with ESMTP id 98D04BAD43;
+ Fri, 4 Jan 2008 16:10:11 +0000 (GMT)
+Message-ID: <200801041608.m04G8d7w007184@nakamura.uits.iupui.edu>
+Mime-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Received: from prod.collab.uhi.ac.uk ([194.35.219.182])
+ by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 966
+ for ;
+ Fri, 4 Jan 2008 16:09:51 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])
+ by shmi.uhi.ac.uk (Postfix) with ESMTP id 9F89542DD0
+ for ; Fri, 4 Jan 2008 16:09:50 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1])
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04G8dXN007186
+ for ; Fri, 4 Jan 2008 11:08:39 -0500
+Received: (from apache@localhost)
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04G8d7w007184
+ for source@collab.sakaiproject.org; Fri, 4 Jan 2008 11:08:39 -0500
+Date: Fri, 4 Jan 2008 11:08:39 -0500
+X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f
+To: source@collab.sakaiproject.org
+From: gsilver@umich.edu
+Subject: [sakai] svn commit: r39759 - mailarchive/trunk/mailarchive-tool/tool/src/bundle
+X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8
+X-Content-Type-Message-Body: text/plain; charset=UTF-8
+Content-Type: text/plain; charset=UTF-8
+X-DSPAM-Result: Innocent
+X-DSPAM-Processed: Fri Jan 4 11:10:22 2008
+X-DSPAM-Confidence: 0.7606
+X-DSPAM-Probability: 0.0000
+
+Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39759
+
+Author: gsilver@umich.edu
+Date: 2008-01-04 11:08:38 -0500 (Fri, 04 Jan 2008)
+New Revision: 39759
+
+Modified:
+mailarchive/trunk/mailarchive-tool/tool/src/bundle/email.properties
+Log:
+SAK-12592
+http://bugs.sakaiproject.org/jira/browse/SAK-12592
+- left moot (unused) entries commented for now
+
+----------------------
+This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.
+You can modify how you receive notifications at My Workspace > Preferences.
+
+
+
+From wagnermr@iupui.edu Fri Jan 4 10:38:42 2008
+Return-Path:
+Received: from murder (mail.umich.edu [141.211.14.90])
+ by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;
+ Fri, 04 Jan 2008 10:38:42 -0500
+X-Sieve: CMU Sieve 2.3
+Received: from murder ([unix socket])
+ by mail.umich.edu (Cyrus v2.2.12) with LMTPA;
+ Fri, 04 Jan 2008 10:38:42 -0500
+Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])
+ by flawless.mail.umich.edu () with ESMTP id m04Fcfjm012313;
+ Fri, 4 Jan 2008 10:38:41 -0500
+Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])
+ BY shining.mr.itd.umich.edu ID 477E52FA.E6C6E.24093 ;
+ 4 Jan 2008 10:38:37 -0500
+Received: from paploo.uhi.ac.uk (localhost [127.0.0.1])
+ by paploo.uhi.ac.uk (Postfix) with ESMTP id 6A39594CD2;
+ Fri, 4 Jan 2008 15:37:36 +0000 (GMT)
+Message-ID: <200801041537.m04Fb6Ci007092@nakamura.uits.iupui.edu>
+Mime-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Received: from prod.collab.uhi.ac.uk ([194.35.219.182])
+ by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 690
+ for ;
+ Fri, 4 Jan 2008 15:37:21 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])
+ by shmi.uhi.ac.uk (Postfix) with ESMTP id CEFA037ACE
+ for ; Fri, 4 Jan 2008 15:38:17 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1])
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04Fb6nh007094
+ for ; Fri, 4 Jan 2008 10:37:06 -0500
+Received: (from apache@localhost)
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04Fb6Ci007092
+ for source@collab.sakaiproject.org; Fri, 4 Jan 2008 10:37:06 -0500
+Date: Fri, 4 Jan 2008 10:37:06 -0500
+X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f
+To: source@collab.sakaiproject.org
+From: wagnermr@iupui.edu
+Subject: [sakai] svn commit: r39758 - in gradebook/trunk: app/business/src/java/org/sakaiproject/tool/gradebook/business/impl service/api/src/java/org/sakaiproject/service/gradebook/shared service/impl/src/java/org/sakaiproject/component/gradebook
+X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8
+X-Content-Type-Message-Body: text/plain; charset=UTF-8
+Content-Type: text/plain; charset=UTF-8
+X-DSPAM-Result: Innocent
+X-DSPAM-Processed: Fri Jan 4 10:38:42 2008
+X-DSPAM-Confidence: 0.7559
+X-DSPAM-Probability: 0.0000
+
+Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39758
+
+Author: wagnermr@iupui.edu
+Date: 2008-01-04 10:37:04 -0500 (Fri, 04 Jan 2008)
+New Revision: 39758
+
+Modified:
+gradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java
+gradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java
+gradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java
+Log:
+SAK-12175
+http://bugs.sakaiproject.org/jira/browse/SAK-12175
+Create methods required for gb integration with the Assignment2 tool
+getGradeDefinitionForStudentForItem
+
+----------------------
+This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.
+You can modify how you receive notifications at My Workspace > Preferences.
+
+
+
+From zqian@umich.edu Fri Jan 4 10:17:43 2008
+Return-Path:
+Received: from murder (mail.umich.edu [141.211.14.97])
+ by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;
+ Fri, 04 Jan 2008 10:17:43 -0500
+X-Sieve: CMU Sieve 2.3
+Received: from murder ([unix socket])
+ by mail.umich.edu (Cyrus v2.2.12) with LMTPA;
+ Fri, 04 Jan 2008 10:17:42 -0500
+Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])
+ by sleepers.mail.umich.edu () with ESMTP id m04FHgfs011536;
+ Fri, 4 Jan 2008 10:17:42 -0500
+Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])
+ BY creepshow.mr.itd.umich.edu ID 477E4E0F.CCA4B.926 ;
+ 4 Jan 2008 10:17:38 -0500
+Received: from paploo.uhi.ac.uk (localhost [127.0.0.1])
+ by paploo.uhi.ac.uk (Postfix) with ESMTP id BD02DBAC64;
+ Fri, 4 Jan 2008 15:17:34 +0000 (GMT)
+Message-ID: <200801041515.m04FFv42007050@nakamura.uits.iupui.edu>
+Mime-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Received: from prod.collab.uhi.ac.uk ([194.35.219.182])
+ by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 25
+ for ;
+ Fri, 4 Jan 2008 15:17:11 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])
+ by shmi.uhi.ac.uk (Postfix) with ESMTP id 5B396236B9
+ for ; Fri, 4 Jan 2008 15:17:08 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1])
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04FFv85007052
+ for ; Fri, 4 Jan 2008 10:15:57 -0500
+Received: (from apache@localhost)
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04FFv42007050
+ for source@collab.sakaiproject.org; Fri, 4 Jan 2008 10:15:57 -0500
+Date: Fri, 4 Jan 2008 10:15:57 -0500
+X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f
+To: source@collab.sakaiproject.org
+From: zqian@umich.edu
+Subject: [sakai] svn commit: r39757 - in assignment/trunk: assignment-impl/impl/src/java/org/sakaiproject/assignment/impl assignment-tool/tool/src/webapp/vm/assignment
+X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8
+X-Content-Type-Message-Body: text/plain; charset=UTF-8
+Content-Type: text/plain; charset=UTF-8
+X-DSPAM-Result: Innocent
+X-DSPAM-Processed: Fri Jan 4 10:17:42 2008
+X-DSPAM-Confidence: 0.7605
+X-DSPAM-Probability: 0.0000
+
+Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39757
+
+Author: zqian@umich.edu
+Date: 2008-01-04 10:15:54 -0500 (Fri, 04 Jan 2008)
+New Revision: 39757
+
+Modified:
+assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java
+assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm
+Log:
+fix to SAK-12604:Don't show groups/sections filter if the site doesn't have any
+
+----------------------
+This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.
+You can modify how you receive notifications at My Workspace > Preferences.
+
+
+
+From antranig@caret.cam.ac.uk Fri Jan 4 10:04:14 2008
+Return-Path:
+Received: from murder (mail.umich.edu [141.211.14.25])
+ by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;
+ Fri, 04 Jan 2008 10:04:14 -0500
+X-Sieve: CMU Sieve 2.3
+Received: from murder ([unix socket])
+ by mail.umich.edu (Cyrus v2.2.12) with LMTPA;
+ Fri, 04 Jan 2008 10:04:14 -0500
+Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])
+ by panther.mail.umich.edu () with ESMTP id m04F4Dci015108;
+ Fri, 4 Jan 2008 10:04:13 -0500
+Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])
+ BY holes.mr.itd.umich.edu ID 477E4AE3.D7AF.31669 ;
+ 4 Jan 2008 10:04:05 -0500
+Received: from paploo.uhi.ac.uk (localhost [127.0.0.1])
+ by paploo.uhi.ac.uk (Postfix) with ESMTP id 933E3BAC17;
+ Fri, 4 Jan 2008 15:04:00 +0000 (GMT)
+Message-ID: <200801041502.m04F21Jo007031@nakamura.uits.iupui.edu>
+Mime-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Received: from prod.collab.uhi.ac.uk ([194.35.219.182])
+ by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 32
+ for ;
+ Fri, 4 Jan 2008 15:03:15 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])
+ by shmi.uhi.ac.uk (Postfix) with ESMTP id AC2F6236B9
+ for ; Fri, 4 Jan 2008 15:03:12 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1])
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04F21hn007033
+ for ; Fri, 4 Jan 2008 10:02:01 -0500
+Received: (from apache@localhost)
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04F21Jo007031
+ for source@collab.sakaiproject.org; Fri, 4 Jan 2008 10:02:01 -0500
+Date: Fri, 4 Jan 2008 10:02:01 -0500
+X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to antranig@caret.cam.ac.uk using -f
+To: source@collab.sakaiproject.org
+From: antranig@caret.cam.ac.uk
+Subject: [sakai] svn commit: r39756 - in component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component: impl impl/spring/support impl/spring/support/dynamic impl/support util
+X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8
+X-Content-Type-Message-Body: text/plain; charset=UTF-8
+Content-Type: text/plain; charset=UTF-8
+X-DSPAM-Result: Innocent
+X-DSPAM-Processed: Fri Jan 4 10:04:14 2008
+X-DSPAM-Confidence: 0.6932
+X-DSPAM-Probability: 0.0000
+
+Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39756
+
+Author: antranig@caret.cam.ac.uk
+Date: 2008-01-04 10:01:40 -0500 (Fri, 04 Jan 2008)
+New Revision: 39756
+
+Added:
+component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/dynamic/
+component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/dynamic/DynamicComponentManager.java
+component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/support/
+component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/support/DynamicComponentRecord.java
+component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/support/DynamicJARManager.java
+component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/support/JARRecord.java
+component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/util/ByteToCharBase64.java
+component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/util/FileUtil.java
+component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/util/RecordFileIO.java
+component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/util/RecordReader.java
+component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/util/RecordWriter.java
+component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/util/StreamDigestor.java
+Modified:
+component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/ComponentsLoaderImpl.java
+Log:
+Temporary commit of incomplete work on JAR caching
+
+----------------------
+This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.
+You can modify how you receive notifications at My Workspace > Preferences.
+
+
+
+From gopal.ramasammycook@gmail.com Fri Jan 4 09:05:31 2008
+Return-Path:
+Received: from murder (mail.umich.edu [141.211.14.90])
+ by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;
+ Fri, 04 Jan 2008 09:05:31 -0500
+X-Sieve: CMU Sieve 2.3
+Received: from murder ([unix socket])
+ by mail.umich.edu (Cyrus v2.2.12) with LMTPA;
+ Fri, 04 Jan 2008 09:05:31 -0500
+Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])
+ by flawless.mail.umich.edu () with ESMTP id m04E5U3C029277;
+ Fri, 4 Jan 2008 09:05:30 -0500
+Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])
+ BY guys.mr.itd.umich.edu ID 477E3D23.EE2E7.5237 ;
+ 4 Jan 2008 09:05:26 -0500
+Received: from paploo.uhi.ac.uk (localhost [127.0.0.1])
+ by paploo.uhi.ac.uk (Postfix) with ESMTP id 33C7856DC0;
+ Fri, 4 Jan 2008 14:05:26 +0000 (GMT)
+Message-ID: <200801041403.m04E3psW006926@nakamura.uits.iupui.edu>
+Mime-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Received: from prod.collab.uhi.ac.uk ([194.35.219.182])
+ by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 575
+ for ;
+ Fri, 4 Jan 2008 14:05:04 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])
+ by shmi.uhi.ac.uk (Postfix) with ESMTP id 3C0261D617
+ for ; Fri, 4 Jan 2008 14:05:03 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1])
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04E3pQS006928
+ for ; Fri, 4 Jan 2008 09:03:52 -0500
+Received: (from apache@localhost)
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04E3psW006926
+ for source@collab.sakaiproject.org; Fri, 4 Jan 2008 09:03:51 -0500
+Date: Fri, 4 Jan 2008 09:03:51 -0500
+X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f
+To: source@collab.sakaiproject.org
+From: gopal.ramasammycook@gmail.com
+Subject: [sakai] svn commit: r39755 - in sam/branches/SAK-12065: samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/grading samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation samigo-services/src/java/org/sakaiproject/tool/assessment/facade samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/ifc samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/integrated samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/standalone samigo-services/src/java/org/sakaiproject/tool/assessment/shared/impl/grading
+X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8
+X-Content-Type-Message-Body: text/plain; charset=UTF-8
+Content-Type: text/plain; charset=UTF-8
+X-DSPAM-Result: Innocent
+X-DSPAM-Processed: Fri Jan 4 09:05:31 2008
+X-DSPAM-Confidence: 0.7558
+X-DSPAM-Probability: 0.0000
+
+Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39755
+
+Author: gopal.ramasammycook@gmail.com
+Date: 2008-01-04 09:02:54 -0500 (Fri, 04 Jan 2008)
+New Revision: 39755
+
+Modified:
+sam/branches/SAK-12065/samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/grading/GradingSectionAwareServiceAPI.java
+sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/QuestionScoresBean.java
+sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/SubmissionStatusBean.java
+sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/TotalScoresBean.java
+sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/SubmissionStatusListener.java
+sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueries.java
+sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueriesAPI.java
+sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/ifc/SectionAwareServiceHelper.java
+sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/integrated/SectionAwareServiceHelperImpl.java
+sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/standalone/SectionAwareServiceHelperImpl.java
+sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/shared/impl/grading/GradingSectionAwareServiceImpl.java
+Log:
+SAK-12065 Gopal - Samigo Group Release. SubmissionStatus/TotalScores/Questions View filter.
+
+----------------------
+This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.
+You can modify how you receive notifications at My Workspace > Preferences.
+
+
+
+From david.horwitz@uct.ac.za Fri Jan 4 07:02:32 2008
+Return-Path:
+Received: from murder (mail.umich.edu [141.211.14.39])
+ by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;
+ Fri, 04 Jan 2008 07:02:32 -0500
+X-Sieve: CMU Sieve 2.3
+Received: from murder ([unix socket])
+ by mail.umich.edu (Cyrus v2.2.12) with LMTPA;
+ Fri, 04 Jan 2008 07:02:32 -0500
+Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])
+ by faithful.mail.umich.edu () with ESMTP id m04C2VN7026678;
+ Fri, 4 Jan 2008 07:02:31 -0500
+Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])
+ BY guys.mr.itd.umich.edu ID 477E2050.C2599.3263 ;
+ 4 Jan 2008 07:02:27 -0500
+Received: from paploo.uhi.ac.uk (localhost [127.0.0.1])
+ by paploo.uhi.ac.uk (Postfix) with ESMTP id 6497FBA906;
+ Fri, 4 Jan 2008 12:02:11 +0000 (GMT)
+Message-ID: <200801041200.m04C0gfK006793@nakamura.uits.iupui.edu>
+Mime-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Received: from prod.collab.uhi.ac.uk ([194.35.219.182])
+ by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 611
+ for ;
+ Fri, 4 Jan 2008 12:01:53 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])
+ by shmi.uhi.ac.uk (Postfix) with ESMTP id 5296342D3C
+ for ; Fri, 4 Jan 2008 12:01:53 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1])
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04C0gnm006795
+ for ; Fri, 4 Jan 2008 07:00:42 -0500
+Received: (from apache@localhost)
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04C0gfK006793
+ for source@collab.sakaiproject.org; Fri, 4 Jan 2008 07:00:42 -0500
+Date: Fri, 4 Jan 2008 07:00:42 -0500
+X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f
+To: source@collab.sakaiproject.org
+From: david.horwitz@uct.ac.za
+Subject: [sakai] svn commit: r39754 - in polls/branches/sakai_2-5-x: . tool tool/src/java/org/sakaiproject/poll/tool tool/src/java/org/sakaiproject/poll/tool/evolvers tool/src/webapp/WEB-INF
+X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8
+X-Content-Type-Message-Body: text/plain; charset=UTF-8
+Content-Type: text/plain; charset=UTF-8
+X-DSPAM-Result: Innocent
+X-DSPAM-Processed: Fri Jan 4 07:02:32 2008
+X-DSPAM-Confidence: 0.6526
+X-DSPAM-Probability: 0.0000
+
+Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39754
+
+Author: david.horwitz@uct.ac.za
+Date: 2008-01-04 07:00:10 -0500 (Fri, 04 Jan 2008)
+New Revision: 39754
+
+Added:
+polls/branches/sakai_2-5-x/tool/src/java/org/sakaiproject/poll/tool/evolvers/
+polls/branches/sakai_2-5-x/tool/src/java/org/sakaiproject/poll/tool/evolvers/SakaiFCKTextEvolver.java
+Removed:
+polls/branches/sakai_2-5-x/tool/src/java/org/sakaiproject/poll/tool/evolvers/SakaiFCKTextEvolver.java
+Modified:
+polls/branches/sakai_2-5-x/.classpath
+polls/branches/sakai_2-5-x/tool/pom.xml
+polls/branches/sakai_2-5-x/tool/src/webapp/WEB-INF/requestContext.xml
+Log:
+svn log -r39753 https://source.sakaiproject.org/svn/polls/trunk
+------------------------------------------------------------------------
+r39753 | david.horwitz@uct.ac.za | 2008-01-04 13:05:51 +0200 (Fri, 04 Jan 2008) | 1 line
+
+SAK-12228 implmented workaround sugested by AB - needs to be tested against a trunk build
+------------------------------------------------------------------------
+dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39753 https://source.sakaiproject.org/svn/polls/trunk polls/
+U polls/.classpath
+A polls/tool/src/java/org/sakaiproject/poll/tool/evolvers
+A polls/tool/src/java/org/sakaiproject/poll/tool/evolvers/SakaiFCKTextEvolver.java
+C polls/tool/src/webapp/WEB-INF/requestContext.xml
+U polls/tool/pom.xml
+
+dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn resolved polls/tool/src/webapp/WEB-INF/requestContext.xml
+Resolved conflicted state of 'polls/tool/src/webapp/WEB-INF/requestContext.xml
+
+
+----------------------
+This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.
+You can modify how you receive notifications at My Workspace > Preferences.
+
+
+
+From david.horwitz@uct.ac.za Fri Jan 4 06:08:27 2008
+Return-Path:
+Received: from murder (mail.umich.edu [141.211.14.98])
+ by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;
+ Fri, 04 Jan 2008 06:08:27 -0500
+X-Sieve: CMU Sieve 2.3
+Received: from murder ([unix socket])
+ by mail.umich.edu (Cyrus v2.2.12) with LMTPA;
+ Fri, 04 Jan 2008 06:08:27 -0500
+Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])
+ by casino.mail.umich.edu () with ESMTP id m04B8Qw9001368;
+ Fri, 4 Jan 2008 06:08:26 -0500
+Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])
+ BY firestarter.mr.itd.umich.edu ID 477E13A5.30FC0.24054 ;
+ 4 Jan 2008 06:08:23 -0500
+Received: from paploo.uhi.ac.uk (localhost [127.0.0.1])
+ by paploo.uhi.ac.uk (Postfix) with ESMTP id 784A476D7B;
+ Fri, 4 Jan 2008 11:08:12 +0000 (GMT)
+Message-ID: <200801041106.m04B6lK3006677@nakamura.uits.iupui.edu>
+Mime-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Received: from prod.collab.uhi.ac.uk ([194.35.219.182])
+ by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 585
+ for ;
+ Fri, 4 Jan 2008 11:07:56 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])
+ by shmi.uhi.ac.uk (Postfix) with ESMTP id 1CACC42D0C
+ for ; Fri, 4 Jan 2008 11:07:58 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1])
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04B6lWM006679
+ for ; Fri, 4 Jan 2008 06:06:47 -0500
+Received: (from apache@localhost)
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04B6lK3006677
+ for source@collab.sakaiproject.org; Fri, 4 Jan 2008 06:06:47 -0500
+Date: Fri, 4 Jan 2008 06:06:47 -0500
+X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f
+To: source@collab.sakaiproject.org
+From: david.horwitz@uct.ac.za
+Subject: [sakai] svn commit: r39753 - in polls/trunk: . tool tool/src/java/org/sakaiproject/poll/tool tool/src/java/org/sakaiproject/poll/tool/evolvers tool/src/webapp/WEB-INF
+X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8
+X-Content-Type-Message-Body: text/plain; charset=UTF-8
+Content-Type: text/plain; charset=UTF-8
+X-DSPAM-Result: Innocent
+X-DSPAM-Processed: Fri Jan 4 06:08:27 2008
+X-DSPAM-Confidence: 0.6948
+X-DSPAM-Probability: 0.0000
+
+Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39753
+
+Author: david.horwitz@uct.ac.za
+Date: 2008-01-04 06:05:51 -0500 (Fri, 04 Jan 2008)
+New Revision: 39753
+
+Added:
+polls/trunk/tool/src/java/org/sakaiproject/poll/tool/evolvers/
+polls/trunk/tool/src/java/org/sakaiproject/poll/tool/evolvers/SakaiFCKTextEvolver.java
+Modified:
+polls/trunk/.classpath
+polls/trunk/tool/pom.xml
+polls/trunk/tool/src/webapp/WEB-INF/requestContext.xml
+Log:
+SAK-12228 implmented workaround sugested by AB - needs to be tested against a trunk build
+
+----------------------
+This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.
+You can modify how you receive notifications at My Workspace > Preferences.
+
+
+
+From david.horwitz@uct.ac.za Fri Jan 4 04:49:08 2008
+Return-Path:
+Received: from murder (mail.umich.edu [141.211.14.92])
+ by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;
+ Fri, 04 Jan 2008 04:49:08 -0500
+X-Sieve: CMU Sieve 2.3
+Received: from murder ([unix socket])
+ by mail.umich.edu (Cyrus v2.2.12) with LMTPA;
+ Fri, 04 Jan 2008 04:49:08 -0500
+Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])
+ by score.mail.umich.edu () with ESMTP id m049n60G017588;
+ Fri, 4 Jan 2008 04:49:06 -0500
+Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])
+ BY galaxyquest.mr.itd.umich.edu ID 477E010C.48C2.10259 ;
+ 4 Jan 2008 04:49:03 -0500
+Received: from paploo.uhi.ac.uk (localhost [127.0.0.1])
+ by paploo.uhi.ac.uk (Postfix) with ESMTP id 254CC8CDEE;
+ Fri, 4 Jan 2008 09:48:55 +0000 (GMT)
+Message-ID: <200801040947.m049lUxo006517@nakamura.uits.iupui.edu>
+Mime-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Received: from prod.collab.uhi.ac.uk ([194.35.219.182])
+ by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 246
+ for ;
+ Fri, 4 Jan 2008 09:48:36 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])
+ by shmi.uhi.ac.uk (Postfix) with ESMTP id 8C13342C92
+ for ; Fri, 4 Jan 2008 09:48:40 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1])
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m049lU3P006519
+ for ; Fri, 4 Jan 2008 04:47:30 -0500
+Received: (from apache@localhost)
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m049lUxo006517
+ for source@collab.sakaiproject.org; Fri, 4 Jan 2008 04:47:30 -0500
+Date: Fri, 4 Jan 2008 04:47:30 -0500
+X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f
+To: source@collab.sakaiproject.org
+From: david.horwitz@uct.ac.za
+Subject: [sakai] svn commit: r39752 - in podcasts/branches/sakai_2-5-x/podcasts-app/src/webapp: css podcasts
+X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8
+X-Content-Type-Message-Body: text/plain; charset=UTF-8
+Content-Type: text/plain; charset=UTF-8
+X-DSPAM-Result: Innocent
+X-DSPAM-Processed: Fri Jan 4 04:49:08 2008
+X-DSPAM-Confidence: 0.6528
+X-DSPAM-Probability: 0.0000
+
+Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39752
+
+Author: david.horwitz@uct.ac.za
+Date: 2008-01-04 04:47:16 -0500 (Fri, 04 Jan 2008)
+New Revision: 39752
+
+Modified:
+podcasts/branches/sakai_2-5-x/podcasts-app/src/webapp/css/podcaster.css
+podcasts/branches/sakai_2-5-x/podcasts-app/src/webapp/podcasts/podMain.jsp
+Log:
+svn log -r39641 https://source.sakaiproject.org/svn/podcasts/trunk
+------------------------------------------------------------------------
+r39641 | josrodri@iupui.edu | 2007-12-28 23:44:24 +0200 (Fri, 28 Dec 2007) | 1 line
+
+SAK-9882: refactored podMain.jsp the right way (at least much closer to)
+------------------------------------------------------------------------
+
+dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39641 https://source.sakaiproject.org/svn/podcasts/trunk podcasts/
+C podcasts/podcasts-app/src/webapp/podcasts/podMain.jsp
+U podcasts/podcasts-app/src/webapp/css/podcaster.css
+
+conflict merged manualy
+
+
+
+----------------------
+This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.
+You can modify how you receive notifications at My Workspace > Preferences.
+
+
+
+From david.horwitz@uct.ac.za Fri Jan 4 04:33:44 2008
+Return-Path:
+Received: from murder (mail.umich.edu [141.211.14.46])
+ by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;
+ Fri, 04 Jan 2008 04:33:44 -0500
+X-Sieve: CMU Sieve 2.3
+Received: from murder ([unix socket])
+ by mail.umich.edu (Cyrus v2.2.12) with LMTPA;
+ Fri, 04 Jan 2008 04:33:44 -0500
+Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])
+ by fan.mail.umich.edu () with ESMTP id m049Xge3031803;
+ Fri, 4 Jan 2008 04:33:42 -0500
+Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])
+ BY workinggirl.mr.itd.umich.edu ID 477DFD6C.75DBE.26054 ;
+ 4 Jan 2008 04:33:35 -0500
+Received: from paploo.uhi.ac.uk (localhost [127.0.0.1])
+ by paploo.uhi.ac.uk (Postfix) with ESMTP id 6C929BA656;
+ Fri, 4 Jan 2008 09:33:27 +0000 (GMT)
+Message-ID: <200801040932.m049W2i5006493@nakamura.uits.iupui.edu>
+Mime-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Received: from prod.collab.uhi.ac.uk ([194.35.219.182])
+ by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 153
+ for ;
+ Fri, 4 Jan 2008 09:33:10 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])
+ by shmi.uhi.ac.uk (Postfix) with ESMTP id 6C69423767
+ for ; Fri, 4 Jan 2008 09:33:13 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1])
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m049W3fl006495
+ for ; Fri, 4 Jan 2008 04:32:03 -0500
+Received: (from apache@localhost)
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m049W2i5006493
+ for source@collab.sakaiproject.org; Fri, 4 Jan 2008 04:32:02 -0500
+Date: Fri, 4 Jan 2008 04:32:02 -0500
+X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f
+To: source@collab.sakaiproject.org
+From: david.horwitz@uct.ac.za
+Subject: [sakai] svn commit: r39751 - in podcasts/branches/sakai_2-5-x/podcasts-app/src/webapp: css images podcasts
+X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8
+X-Content-Type-Message-Body: text/plain; charset=UTF-8
+Content-Type: text/plain; charset=UTF-8
+X-DSPAM-Result: Innocent
+X-DSPAM-Processed: Fri Jan 4 04:33:44 2008
+X-DSPAM-Confidence: 0.7002
+X-DSPAM-Probability: 0.0000
+
+Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39751
+
+Author: david.horwitz@uct.ac.za
+Date: 2008-01-04 04:31:35 -0500 (Fri, 04 Jan 2008)
+New Revision: 39751
+
+Removed:
+podcasts/branches/sakai_2-5-x/podcasts-app/src/webapp/images/rss-feed-icon.png
+podcasts/branches/sakai_2-5-x/podcasts-app/src/webapp/podcasts/podPermissions.jsp
+Modified:
+podcasts/branches/sakai_2-5-x/podcasts-app/src/webapp/css/podcaster.css
+podcasts/branches/sakai_2-5-x/podcasts-app/src/webapp/podcasts/podDelete.jsp
+podcasts/branches/sakai_2-5-x/podcasts-app/src/webapp/podcasts/podMain.jsp
+podcasts/branches/sakai_2-5-x/podcasts-app/src/webapp/podcasts/podNoResource.jsp
+podcasts/branches/sakai_2-5-x/podcasts-app/src/webapp/podcasts/podOptions.jsp
+Log:
+svn log -r39146 https://source.sakaiproject.org/svn/podcasts/trunk
+------------------------------------------------------------------------
+r39146 | josrodri@iupui.edu | 2007-12-12 21:40:33 +0200 (Wed, 12 Dec 2007) | 1 line
+
+SAK-9882: refactored the other pages as well to take advantage of proper jsp components as well as validation cleanup.
+------------------------------------------------------------------------
+dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39146 https://source.sakaiproject.org/svn/podcasts/trunk podcasts/
+D podcasts/podcasts-app/src/webapp/podcasts/podPermissions.jsp
+U podcasts/podcasts-app/src/webapp/podcasts/podDelete.jsp
+U podcasts/podcasts-app/src/webapp/podcasts/podMain.jsp
+U podcasts/podcasts-app/src/webapp/podcasts/podNoResource.jsp
+U podcasts/podcasts-app/src/webapp/podcasts/podOptions.jsp
+D podcasts/podcasts-app/src/webapp/images/rss-feed-icon.png
+U podcasts/podcasts-app/src/webapp/css/podcaster.css
+
+
+
+----------------------
+This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.
+You can modify how you receive notifications at My Workspace > Preferences.
+
+
+
+From stephen.marquard@uct.ac.za Fri Jan 4 04:07:34 2008
+Return-Path:
+Received: from murder (mail.umich.edu [141.211.14.25])
+ by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;
+ Fri, 04 Jan 2008 04:07:34 -0500
+X-Sieve: CMU Sieve 2.3
+Received: from murder ([unix socket])
+ by mail.umich.edu (Cyrus v2.2.12) with LMTPA;
+ Fri, 04 Jan 2008 04:07:34 -0500
+Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])
+ by panther.mail.umich.edu () with ESMTP id m0497WAN027902;
+ Fri, 4 Jan 2008 04:07:32 -0500
+Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])
+ BY salemslot.mr.itd.umich.edu ID 477DF74E.49493.30415 ;
+ 4 Jan 2008 04:07:29 -0500
+Received: from paploo.uhi.ac.uk (localhost [127.0.0.1])
+ by paploo.uhi.ac.uk (Postfix) with ESMTP id 88598BA5B6;
+ Fri, 4 Jan 2008 09:07:19 +0000 (GMT)
+Message-ID: <200801040905.m0495rWB006420@nakamura.uits.iupui.edu>
+Mime-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Received: from prod.collab.uhi.ac.uk ([194.35.219.182])
+ by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 385
+ for ;
+ Fri, 4 Jan 2008 09:07:04 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])
+ by shmi.uhi.ac.uk (Postfix) with ESMTP id 90636418A8
+ for ; Fri, 4 Jan 2008 09:07:04 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1])
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m0495sZs006422
+ for ; Fri, 4 Jan 2008 04:05:54 -0500
+Received: (from apache@localhost)
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m0495rWB006420
+ for source@collab.sakaiproject.org; Fri, 4 Jan 2008 04:05:53 -0500
+Date: Fri, 4 Jan 2008 04:05:53 -0500
+X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f
+To: source@collab.sakaiproject.org
+From: stephen.marquard@uct.ac.za
+Subject: [sakai] svn commit: r39750 - event/branches/SAK-6216/event-util/util/src/java/org/sakaiproject/util
+X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8
+X-Content-Type-Message-Body: text/plain; charset=UTF-8
+Content-Type: text/plain; charset=UTF-8
+X-DSPAM-Result: Innocent
+X-DSPAM-Processed: Fri Jan 4 04:07:34 2008
+X-DSPAM-Confidence: 0.7554
+X-DSPAM-Probability: 0.0000
+
+Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39750
+
+Author: stephen.marquard@uct.ac.za
+Date: 2008-01-04 04:05:43 -0500 (Fri, 04 Jan 2008)
+New Revision: 39750
+
+Modified:
+event/branches/SAK-6216/event-util/util/src/java/org/sakaiproject/util/EmailNotification.java
+Log:
+SAK-6216 merge event change from SAK-11169 (r39033) to synchronize branch with 2-5-x (for convenience for UCT local build)
+
+----------------------
+This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.
+You can modify how you receive notifications at My Workspace > Preferences.
+
+
+
+From louis@media.berkeley.edu Thu Jan 3 19:51:21 2008
+Return-Path:
+Received: from murder (mail.umich.edu [141.211.14.91])
+ by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;
+ Thu, 03 Jan 2008 19:51:21 -0500
+X-Sieve: CMU Sieve 2.3
+Received: from murder ([unix socket])
+ by mail.umich.edu (Cyrus v2.2.12) with LMTPA;
+ Thu, 03 Jan 2008 19:51:21 -0500
+Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])
+ by jacknife.mail.umich.edu () with ESMTP id m040pJHB027171;
+ Thu, 3 Jan 2008 19:51:19 -0500
+Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])
+ BY eyewitness.mr.itd.umich.edu ID 477D8300.AC098.32562 ;
+ 3 Jan 2008 19:51:15 -0500
+Received: from paploo.uhi.ac.uk (localhost [127.0.0.1])
+ by paploo.uhi.ac.uk (Postfix) with ESMTP id E6CC4B9F8A;
+ Fri, 4 Jan 2008 00:36:06 +0000 (GMT)
+Message-ID: <200801040023.m040NpCc005473@nakamura.uits.iupui.edu>
+Mime-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Received: from prod.collab.uhi.ac.uk ([194.35.219.182])
+ by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 754
+ for ;
+ Fri, 4 Jan 2008 00:35:43 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])
+ by shmi.uhi.ac.uk (Postfix) with ESMTP id 8889842C49
+ for ; Fri, 4 Jan 2008 00:25:00 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1])
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m040NpgM005475
+ for ; Thu, 3 Jan 2008 19:23:51 -0500
+Received: (from apache@localhost)
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m040NpCc005473
+ for source@collab.sakaiproject.org; Thu, 3 Jan 2008 19:23:51 -0500
+Date: Thu, 3 Jan 2008 19:23:51 -0500
+X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f
+To: source@collab.sakaiproject.org
+From: louis@media.berkeley.edu
+Subject: [sakai] svn commit: r39749 - in bspace/site-manage/sakai_2-4-x/site-manage-tool/tool/src: bundle webapp/vm/sitesetup
+X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8
+X-Content-Type-Message-Body: text/plain; charset=UTF-8
+Content-Type: text/plain; charset=UTF-8
+X-DSPAM-Result: Innocent
+X-DSPAM-Processed: Thu Jan 3 19:51:20 2008
+X-DSPAM-Confidence: 0.6956
+X-DSPAM-Probability: 0.0000
+
+Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39749
+
+Author: louis@media.berkeley.edu
+Date: 2008-01-03 19:23:46 -0500 (Thu, 03 Jan 2008)
+New Revision: 39749
+
+Modified:
+bspace/site-manage/sakai_2-4-x/site-manage-tool/tool/src/bundle/sitesetupgeneric.properties
+bspace/site-manage/sakai_2-4-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-importSites.vm
+Log:
+BSP-1420 Update text to clarify "Re-Use Materials..." option in WS Setup
+
+----------------------
+This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.
+You can modify how you receive notifications at My Workspace > Preferences.
+
+
+
+From louis@media.berkeley.edu Thu Jan 3 17:18:23 2008
+Return-Path:
+Received: from murder (mail.umich.edu [141.211.14.91])
+ by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;
+ Thu, 03 Jan 2008 17:18:23 -0500
+X-Sieve: CMU Sieve 2.3
+Received: from murder ([unix socket])
+ by mail.umich.edu (Cyrus v2.2.12) with LMTPA;
+ Thu, 03 Jan 2008 17:18:23 -0500
+Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])
+ by jacknife.mail.umich.edu () with ESMTP id m03MIMXY027729;
+ Thu, 3 Jan 2008 17:18:22 -0500
+Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])
+ BY salemslot.mr.itd.umich.edu ID 477D5F23.797F6.16348 ;
+ 3 Jan 2008 17:18:14 -0500
+Received: from paploo.uhi.ac.uk (localhost [127.0.0.1])
+ by paploo.uhi.ac.uk (Postfix) with ESMTP id EF439B98CE;
+ Thu, 3 Jan 2008 22:18:19 +0000 (GMT)
+Message-ID: <200801032216.m03MGhDa005292@nakamura.uits.iupui.edu>
+Mime-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Received: from prod.collab.uhi.ac.uk ([194.35.219.182])
+ by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 236
+ for ;
+ Thu, 3 Jan 2008 22:18:04 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])
+ by shmi.uhi.ac.uk (Postfix) with ESMTP id 905D53C2FD
+ for ; Thu, 3 Jan 2008 22:17:52 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1])
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03MGhrs005294
+ for ; Thu, 3 Jan 2008 17:16:43 -0500
+Received: (from apache@localhost)
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03MGhDa005292
+ for source@collab.sakaiproject.org; Thu, 3 Jan 2008 17:16:43 -0500
+Date: Thu, 3 Jan 2008 17:16:43 -0500
+X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f
+To: source@collab.sakaiproject.org
+From: louis@media.berkeley.edu
+Subject: [sakai] svn commit: r39746 - in bspace/site-manage/sakai_2-4-x/site-manage-tool/tool/src: bundle webapp/vm/sitesetup
+X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8
+X-Content-Type-Message-Body: text/plain; charset=UTF-8
+Content-Type: text/plain; charset=UTF-8
+X-DSPAM-Result: Innocent
+X-DSPAM-Processed: Thu Jan 3 17:18:23 2008
+X-DSPAM-Confidence: 0.6959
+X-DSPAM-Probability: 0.0000
+
+Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39746
+
+Author: louis@media.berkeley.edu
+Date: 2008-01-03 17:16:39 -0500 (Thu, 03 Jan 2008)
+New Revision: 39746
+
+Modified:
+bspace/site-manage/sakai_2-4-x/site-manage-tool/tool/src/bundle/sitesetupgeneric.properties
+bspace/site-manage/sakai_2-4-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-duplicate.vm
+Log:
+BSP-1421 Add text to clarify "Duplicate Site" option in Site Info
+
+----------------------
+This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.
+You can modify how you receive notifications at My Workspace > Preferences.
+
+
+
+From ray@media.berkeley.edu Thu Jan 3 17:07:00 2008
+Return-Path:
+Received: from murder (mail.umich.edu [141.211.14.39])
+ by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;
+ Thu, 03 Jan 2008 17:07:00 -0500
+X-Sieve: CMU Sieve 2.3
+Received: from murder ([unix socket])
+ by mail.umich.edu (Cyrus v2.2.12) with LMTPA;
+ Thu, 03 Jan 2008 17:07:00 -0500
+Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])
+ by faithful.mail.umich.edu () with ESMTP id m03M6xaq014868;
+ Thu, 3 Jan 2008 17:06:59 -0500
+Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])
+ BY anniehall.mr.itd.umich.edu ID 477D5C7A.4FE1F.22211 ;
+ 3 Jan 2008 17:06:53 -0500
+Received: from paploo.uhi.ac.uk (localhost [127.0.0.1])
+ by paploo.uhi.ac.uk (Postfix) with ESMTP id 0BC8D7225E;
+ Thu, 3 Jan 2008 22:06:57 +0000 (GMT)
+Message-ID: <200801032205.m03M5Ea7005273@nakamura.uits.iupui.edu>
+Mime-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Received: from prod.collab.uhi.ac.uk ([194.35.219.182])
+ by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 554
+ for ;
+ Thu, 3 Jan 2008 22:06:34 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])
+ by shmi.uhi.ac.uk (Postfix) with ESMTP id 2AB513C2FD
+ for ; Thu, 3 Jan 2008 22:06:23 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1])
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03M5EQa005275
+ for ; Thu, 3 Jan 2008 17:05:14 -0500
+Received: (from apache@localhost)
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03M5Ea7005273
+ for source@collab.sakaiproject.org; Thu, 3 Jan 2008 17:05:14 -0500
+Date: Thu, 3 Jan 2008 17:05:14 -0500
+X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f
+To: source@collab.sakaiproject.org
+From: ray@media.berkeley.edu
+Subject: [sakai] svn commit: r39745 - providers/trunk/cm/cm-authz-provider/src/java/org/sakaiproject/coursemanagement/impl/provider
+X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8
+X-Content-Type-Message-Body: text/plain; charset=UTF-8
+Content-Type: text/plain; charset=UTF-8
+X-DSPAM-Result: Innocent
+X-DSPAM-Processed: Thu Jan 3 17:07:00 2008
+X-DSPAM-Confidence: 0.7556
+X-DSPAM-Probability: 0.0000
+
+Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39745
+
+Author: ray@media.berkeley.edu
+Date: 2008-01-03 17:05:11 -0500 (Thu, 03 Jan 2008)
+New Revision: 39745
+
+Modified:
+providers/trunk/cm/cm-authz-provider/src/java/org/sakaiproject/coursemanagement/impl/provider/CourseManagementGroupProvider.java
+Log:
+SAK-12602 Fix logic when a user has multiple roles in a section
+
+----------------------
+This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.
+You can modify how you receive notifications at My Workspace > Preferences.
+
+
+
+From cwen@iupui.edu Thu Jan 3 16:34:40 2008
+Return-Path:
+Received: from murder (mail.umich.edu [141.211.14.34])
+ by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;
+ Thu, 03 Jan 2008 16:34:40 -0500
+X-Sieve: CMU Sieve 2.3
+Received: from murder ([unix socket])
+ by mail.umich.edu (Cyrus v2.2.12) with LMTPA;
+ Thu, 03 Jan 2008 16:34:40 -0500
+Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])
+ by chaos.mail.umich.edu () with ESMTP id m03LYdY1029538;
+ Thu, 3 Jan 2008 16:34:39 -0500
+Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])
+ BY icestorm.mr.itd.umich.edu ID 477D54EA.13F34.26602 ;
+ 3 Jan 2008 16:34:36 -0500
+Received: from paploo.uhi.ac.uk (localhost [127.0.0.1])
+ by paploo.uhi.ac.uk (Postfix) with ESMTP id CC710ADC79;
+ Thu, 3 Jan 2008 21:34:29 +0000 (GMT)
+Message-ID: <200801032133.m03LX3gG005191@nakamura.uits.iupui.edu>
+Mime-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Received: from prod.collab.uhi.ac.uk ([194.35.219.182])
+ by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 611
+ for ;
+ Thu, 3 Jan 2008 21:34:08 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])
+ by shmi.uhi.ac.uk (Postfix) with ESMTP id 43C4242B55
+ for ; Thu, 3 Jan 2008 21:34:12 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1])
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03LX3Vb005193
+ for ; Thu, 3 Jan 2008 16:33:03 -0500
+Received: (from apache@localhost)
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03LX3gG005191
+ for source@collab.sakaiproject.org; Thu, 3 Jan 2008 16:33:03 -0500
+Date: Thu, 3 Jan 2008 16:33:03 -0500
+X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f
+To: source@collab.sakaiproject.org
+From: cwen@iupui.edu
+Subject: [sakai] svn commit: r39744 - oncourse/branches/oncourse_OPC_122007
+X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8
+X-Content-Type-Message-Body: text/plain; charset=UTF-8
+Content-Type: text/plain; charset=UTF-8
+X-DSPAM-Result: Innocent
+X-DSPAM-Processed: Thu Jan 3 16:34:40 2008
+X-DSPAM-Confidence: 0.9846
+X-DSPAM-Probability: 0.0000
+
+Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39744
+
+Author: cwen@iupui.edu
+Date: 2008-01-03 16:33:02 -0500 (Thu, 03 Jan 2008)
+New Revision: 39744
+
+Modified:
+oncourse/branches/oncourse_OPC_122007/
+oncourse/branches/oncourse_OPC_122007/.externals
+Log:
+update external for GB.
+
+----------------------
+This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.
+You can modify how you receive notifications at My Workspace > Preferences.
+
+
+
+From cwen@iupui.edu Thu Jan 3 16:29:07 2008
+Return-Path:
+Received: from murder (mail.umich.edu [141.211.14.46])
+ by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;
+ Thu, 03 Jan 2008 16:29:07 -0500
+X-Sieve: CMU Sieve 2.3
+Received: from murder ([unix socket])
+ by mail.umich.edu (Cyrus v2.2.12) with LMTPA;
+ Thu, 03 Jan 2008 16:29:07 -0500
+Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])
+ by fan.mail.umich.edu () with ESMTP id m03LT6uw027749;
+ Thu, 3 Jan 2008 16:29:06 -0500
+Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])
+ BY galaxyquest.mr.itd.umich.edu ID 477D5397.E161D.20326 ;
+ 3 Jan 2008 16:28:58 -0500
+Received: from paploo.uhi.ac.uk (localhost [127.0.0.1])
+ by paploo.uhi.ac.uk (Postfix) with ESMTP id DEC65ADC79;
+ Thu, 3 Jan 2008 21:28:52 +0000 (GMT)
+Message-ID: <200801032127.m03LRUqH005177@nakamura.uits.iupui.edu>
+Mime-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Received: from prod.collab.uhi.ac.uk ([194.35.219.182])
+ by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 917
+ for ;
+ Thu, 3 Jan 2008 21:28:39 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])
+ by shmi.uhi.ac.uk (Postfix) with ESMTP id 1FBB042B30
+ for ; Thu, 3 Jan 2008 21:28:38 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1])
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03LRUk4005179
+ for ; Thu, 3 Jan 2008 16:27:30 -0500
+Received: (from apache@localhost)
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03LRUqH005177
+ for source@collab.sakaiproject.org; Thu, 3 Jan 2008 16:27:30 -0500
+Date: Thu, 3 Jan 2008 16:27:30 -0500
+X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f
+To: source@collab.sakaiproject.org
+From: cwen@iupui.edu
+Subject: [sakai] svn commit: r39743 - gradebook/branches/oncourse_2-4-2/app/ui/src/java/org/sakaiproject/tool/gradebook/ui
+X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8
+X-Content-Type-Message-Body: text/plain; charset=UTF-8
+Content-Type: text/plain; charset=UTF-8
+X-DSPAM-Result: Innocent
+X-DSPAM-Processed: Thu Jan 3 16:29:07 2008
+X-DSPAM-Confidence: 0.8509
+X-DSPAM-Probability: 0.0000
+
+Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39743
+
+Author: cwen@iupui.edu
+Date: 2008-01-03 16:27:29 -0500 (Thu, 03 Jan 2008)
+New Revision: 39743
+
+Modified:
+gradebook/branches/oncourse_2-4-2/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/RosterBean.java
+Log:
+svn merge -c 39403 https://source.sakaiproject.org/svn/gradebook/trunk
+U app/ui/src/java/org/sakaiproject/tool/gradebook/ui/RosterBean.java
+
+svn log -r 39403 https://source.sakaiproject.org/svn/gradebook/trunk
+------------------------------------------------------------------------
+r39403 | wagnermr@iupui.edu | 2007-12-17 17:11:08 -0500 (Mon, 17 Dec 2007) | 3 lines
+
+SAK-12504
+http://jira.sakaiproject.org/jira/browse/SAK-12504
+Viewing "All Grades" page as a TA with grader permissions causes stack trace
+------------------------------------------------------------------------
+
+
+----------------------
+This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.
+You can modify how you receive notifications at My Workspace > Preferences.
+
+
+
+From cwen@iupui.edu Thu Jan 3 16:23:48 2008
+Return-Path:
+Received: from murder (mail.umich.edu [141.211.14.91])
+ by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;
+ Thu, 03 Jan 2008 16:23:48 -0500
+X-Sieve: CMU Sieve 2.3
+Received: from murder ([unix socket])
+ by mail.umich.edu (Cyrus v2.2.12) with LMTPA;
+ Thu, 03 Jan 2008 16:23:48 -0500
+Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])
+ by jacknife.mail.umich.edu () with ESMTP id m03LNlf0002115;
+ Thu, 3 Jan 2008 16:23:47 -0500
+Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])
+ BY salemslot.mr.itd.umich.edu ID 477D525E.1448.30389 ;
+ 3 Jan 2008 16:23:44 -0500
+Received: from paploo.uhi.ac.uk (localhost [127.0.0.1])
+ by paploo.uhi.ac.uk (Postfix) with ESMTP id 9D005B9D06;
+ Thu, 3 Jan 2008 21:23:38 +0000 (GMT)
+Message-ID: <200801032122.m03LMFo4005148@nakamura.uits.iupui.edu>
+Mime-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Received: from prod.collab.uhi.ac.uk ([194.35.219.182])
+ by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 6
+ for ;
+ Thu, 3 Jan 2008 21:23:24 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])
+ by shmi.uhi.ac.uk (Postfix) with ESMTP id 3535542B69
+ for ; Thu, 3 Jan 2008 21:23:24 +0000 (GMT)
+Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1])
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03LMFtT005150
+ for ; Thu, 3 Jan 2008 16:22:15 -0500
+Received: (from apache@localhost)
+ by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03LMFo4005148
+ for source@collab.sakaiproject.org; Thu, 3 Jan 2008 16:22:15 -0500
+Date: Thu, 3 Jan 2008 16:22:15 -0500
+X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f
+To: source@collab.sakaiproject.org
+From: cwen@iupui.edu
+Subject: [sakai] svn commit: r39742 - gradebook/branches/oncourse_2-4-2/app/ui/src/java/org/sakaiproject/tool/gradebook/ui
+X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8
+X-Content-Type-Message-Body: text/plain; charset=UTF-8
+Content-Type: text/plain; charset=UTF-8
+X-DSPAM-Result: Innocent
+X-DSPAM-Processed: Thu Jan 3 16:23:48 2008
+X-DSPAM-Confidence: 0.9907
+X-DSPAM-Probability: 0.0000
+
+Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39742
+
+Author: cwen@iupui.edu
+Date: 2008-01-03 16:22:14 -0500 (Thu, 03 Jan 2008)
+New Revision: 39742
+
+Modified:
+gradebook/branches/oncourse_2-4-2/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/RosterBean.java
+Log:
+svn merge -c 35014 https://source.sakaiproject.org/svn/gradebook/trunk
+U app/ui/src/java/org/sakaiproject/tool/gradebook/ui/RosterBean.java
+
+svn log -r 35014 https://source.sakaiproject.org/svn/gradebook/trunk
+------------------------------------------------------------------------
+r35014 | wagnermr@iupui.edu | 2007-09-12 16:17:59 -0400 (Wed, 12 Sep 2007) | 3 lines
+
+SAK-11458
+http://bugs.sakaiproject.org/jira/browse/SAK-11458
+Course grade does not appear on "All Grades" page if no categories in gb
+------------------------------------------------------------------------
+
+
+----------------------
+This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.
+You can modify how you receive notifications at My Workspace > Preferences.
diff --git a/helloworld b/helloworld
new file mode 100644
index 0000000..755b5fb
--- /dev/null
+++ b/helloworld
@@ -0,0 +1 @@
+print 'Hello World'