People,
I can export my Netflix watched videos from their site to a CSV file and massage it so it has this format:
Title: Archer: Season 1: Pilot: Mole Hunt (Episode 1) {{{1
Date: 2016-12-28
Time: 08:23:13
Duration: 00:21:34
Title: Archer: Season 1: Training Day (Episode 2) {{{1
Date: 2016-12-28
Time: 08:45:00
Duration: 00:21:21
etc
This is so I can conveniently work with the file using Vim and Voom which allows me to do everything I want to do - but I need a way of displaying the records in a little web site so friends and relatives can look at the info too.
So I am thinking it could work like this:
-
I recreate the file periodically as normal after watching a batch of movies
-
I use a Jekyll app to import the file so it can be displayed as one long table on the appâs home page.
-
I have the title for each record linked to a post in _posts/ in the normal way to display the plot and my notes.
This might seem a bit clunkey but I donât want to have to use SQLite etc in a Rails app . .
What do you think?