This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import os | |
import sys | |
import datetime | |
import sqlite3 | |
SQL_VISITS = 'select v.visit_time, u.url from visits v inner join urls u on (v.url = u.id) order by v.visit_time' | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Running the "animate" example from the installation DMG. Running other examples produces the same error. | |
# MacOS 10.9.1 | |
# MacBook Pro 9,2 | |
# - CPU: 2,5 GHz Intel Core i5 | |
# - RAM: 8GB | |
# - Video: Intel HD Graphics 4000 1024 MB graphics | |
# - Primary screen: 1280x800 | |
# JUST MOVED THE TERMINAL SCREEN TO THE PRIMARY SCREEN and ran it again |