Skip to content

Latest commit

 

History

History
75 lines (68 loc) · 2.65 KB

log.md

File metadata and controls

75 lines (68 loc) · 2.65 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 { color: rgb(255,169,77); margin-bottom: 5px; } .hash { font-size: 15px; } </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.

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.

{% for commit in site.data.git-log %} {% if commit.message != 'updated git log' %} {% unless commit.message contains 'Merge branch' %} {% 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 %}

{{ first_line | remove: "#" | replace: "
  • ", "li" }} {{ commit.commit | truncate: 7, ""}}
  • {{ date }}
    {% if commit.changes != empty %}
    {% for change in commit.changes %} {% if change[2] != '_data/git-log.json' %}
    edited: {{change[2]}}
    {% endif %} {% endfor %}
    {% endif %} {{ message | markdownify }}
    {% 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> <script repoPath="stevekrouse/futureofcoding.org" type="text/javascript" src="/unbreakable-links/index.js"></script>