The last two weeks of divinity school turned out much differently than I expected. For my last semester I was required to take a course to fulfill a credit in the topic of gender and sexuality. There was only one course that fulfilled that requirement that would fit into my schedule with another required course, ethics. I spent my last semester as one of two men in a course exploring the intersections of theology and psychology for women. Out of character for VDS, the classroom was chaotic and stifled any opinion outside of the professor’s own progressive feminism. The course was a struggle for me to attend each week as the Church, great women of faith, and traditional Christian anthropology was drug through the mud. And yet, I persevered and dutifully attended each week and participated in discussions as I was able.
Read more...So, I happened to be looking back through some old files and I found an early programming assignment from my first computer science course back in college. In the middle of the code I found this wonderful line:
while (cownt<years) {
cout<<cownt+1; //"cownt" = "count", but when I entered it spelt correctly it gave me errors.//
As it turns out early on in the code I declared int cownt=0;. I either couldn’t find this typo in debugging my mere 61 lines of code or — what I think was actually going on — I thought count was a reserved magical variable that made loops work — not something I had to declare. Sometimes it’s nice to look back and see how far you’ve come.
Starting this May, mortgage folk are going to be required to send Freddie and Fannie data including additional data points in ULDD phase 3 extension. At face value, adding these additional data points shouldn’t be a big deal at all. However, the legacy code I’m maintaining used XML::Compile to generate code. For various and sondry reasons — which I will not go into here — XML::Compile in the code I’m maintaining was in a place where it was extremely difficult to add XML elements that weren’t included in the original base Mismo 3.0 namespace.
Read more...Recently, I needed to get cron working inside a Docker container running Debian Slim. It’s not difficult once you figure it out, but it did take a bit of research and learning to get everything to work.
First off, Debian Slim is real slim. There’s no cron nor is there a syslog when you want to debug things. Add apt-get install cron and rsyslog in your Dockerfile before you start anything else. With syslog installed, you can tail /var/log/syslog while you’re debugging your cron files, which is incredibly helpful.
Each Sunday at Church of the Epiphany we record our sermon using someone’s mobile phone. We started doing this back in September and, for the last three months, editing and uploading these sermons to our website has been a fairly manual process. Starting this month, however, with a combination of JustCast, Dropbox, Hazel, Squarespace, and Auphonic I’ve been able to mosty automate the process.

Each week shortly after worship, Fr. Justin e-mails me the audio recording of his sermon from his phone. His Android phone defaults to .m4a for audio, so I’ve setup a simple Hazel rule to monitor my download folder for that extension so the file is quickly renamed and moved off to my external archive drive.
Many of the essays on this site start their life in Microsoft Word or Scrivener. Early on, I would have to convert essays to Markdown for posting manually. This generally worked okay, but I lost my footnotes. I tried Word to Markdown for a brief while, but it didn’t work entirely as I’d like it to. Enter Pandoc. I’ve been using Pandoc to convert all of my Word documents — including footnotes — for the last two years. I’ve been delighted with the results.
Read more...