Skip to content

Latest commit

 

History

History
94 lines (84 loc) · 3.61 KB

log.md

File metadata and controls

94 lines (84 loc) · 3.61 KB
title
Log
<style> .header { font-size: 35px; font-weight: bold; margin-bottom: 5px; } .date { font-size: 15px; color: #aaa; margin-bottom: 10px; font-style: italic; } .commit > .files { margin-bottom: 5px; } .commit { overflow: scroll; } .hash { font-size: 15px; } .additions { color: rgb(81,207,102); } .deletions { color: rgb(250,82,82); } </style>

Log

Welcome to my development journal. This is an experiment in radical transparency. You can read my unfiltered daily thoughts below. Pardon my typo-laden stream-of-consciousness. If you don't want to miss a musing, here's the log RSS feed .

It was inspired by Jamie Brandon's development journals for Eve and Imp.

The data for this page is pulled from the commit message history for this repository. It's similar to what you'd see if you did git log. (I used to keep these kind of notes in the now deprecated journal. Those journal entries are below in the log - imported via some skullduggery.)

{% for commit in site.data.git-log %} {% if commit.message != 'updated git log' %} {% unless commit.message contains 'Merge branch' %} {% unless commit.message contains 'Please enter the commit message for your changes.' %} {% assign first_line = commit.message | newline_to_br | split: '
' | first %} {% assign date = commit.committer.date | date: "%m/%d/%y %a %l:%M %p" %} {% assign message = commit.message | remove_first: first_line %}
{{ date }}
{% if commit.changes != empty %}
{% for change in commit.changes %} {% if change[2] != '_data/git-log.json' %} {% endif %} {% endfor %}
{% endif %} {{ message | markdownify }} {{ site.data.commitToJournalMarkdown[commit.commit] | markdownify }}
{% endunless %} {% endunless %} {% endif %} {% endfor %}
<script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-103157758-1', 'auto'); ga('send', 'pageview'); </script>