< ^ txt
Fri Jul 10 07:30:28 EDT 2015
Good night's sleep. Woke up a few minutes early.
Hot today. I skipped my walk at lunch in order to cut some network cables.
Goals:
Work:
- Finish rough Hazel Park phase 2 network plan
- Play with Pi as thin client a little
Done.
- Play with nfs
Done.
- Fix Dropbox corporate account
Looks like I had already done this.
I noticed that although we were receiving mail with ssl, we weren't sending encrypted. Fixed. Our mail smarthost now uses TLS when the other side offers it.
Personal:
- Play with nfs
Done. Still not working over ssh tunnel, but just dandy on the lan. It's fast.
- Set up new router, wap, switch
Done. Took longer than I though, but it's a noticable improvement. That faithful old WRT54G was showing its age.
This new setup seems to have solved the occasional Netflix glitches I'd been having.
- Starting to get the itch for a new blogging system/workflow....
How do I want this to work?
A static site generator using git, shell script, ssh, and possibly Pandoc.
Two commands: `newpost` and `publish`.
`newpost` should be something like an alias to:
NEWPOST=$(date +%Y%m%d%M%S).txt
vim $NEWPOST
`pubish` should call a bash script that does something like:
pandoc $NEWPOST
# cat together some html files.
git commit -a
Structure:
blogrepo/
bin/
img/
txt/
html/
< ^ txt