diff options
author | Stephen Enders <smenders@gmail.com> | 2019-02-17 01:55:05 -0500 |
---|---|---|
committer | Stephen Enders <smenders@gmail.com> | 2019-02-17 01:55:05 -0500 |
commit | e87e69da25def4a0af96d0425f3a1f16e658ac55 (patch) | |
tree | 2bcb59b569e0fd1192229d93e8762c487d58b7d3 | |
parent | 1aff33c074d77de0c641f9fad96e90f32701a059 (diff) |
Updated indicies with post
-rw-r--r-- | www/blog/2019-02-17/index.html | 11 | ||||
-rw-r--r-- | www/blog/index.html | 3 | ||||
-rw-r--r-- | www/index.html | 23 |
3 files changed, 19 insertions, 18 deletions
diff --git a/www/blog/2019-02-17/index.html b/www/blog/2019-02-17/index.html index 4afbcb0..48f5f4c 100644 --- a/www/blog/2019-02-17/index.html +++ b/www/blog/2019-02-17/index.html @@ -37,10 +37,11 @@ happening in C was really what was causing all the issues.</p> <h3>The Project</h3> <p>I started working on an application I had been meaning to develop - called <b>reminder.d</b>. This daemon would monitor for reminder - notifications I would send via a CLI. It queue them up based on some time - set to send the notification. I ended up writing both the CLI and the - daemon in this past week, both in C.</p> + called <a href= + 'https://github.com/s3nd3r5/reminder'><b>reminder.d</b></a>. This daemon + would monitor for reminder notifications I would send via a CLI. It queue + them up based on some time set to send the notification. I ended up + writing both the CLI and the daemon in this past week, both in C.</p> <h4>The CLI</h4> <p>The CLI <b>remindme</b> took in messages and appened them to a file. This file would be monitored by the daemon later on. Each reminder @@ -141,7 +142,7 @@ android.</p> </article> <div id='footer'> - <i>February 17, 2019</i> + <i>First draft published on: February 17, 2019</i> </div> </div> </body> diff --git a/www/blog/index.html b/www/blog/index.html index 8afbc6b..d738f8f 100644 --- a/www/blog/index.html +++ b/www/blog/index.html @@ -20,6 +20,9 @@ <ol> <!-- {{ NEW-POST }} --> <li> + <a href='/blog/2019-02-17'>2019-02-17 - Venturing back into C</a> + </li> + <li> <a href='/blog/2019-01-21'>2019-01-21 - First! A New Years Resolution</a> </li> diff --git a/www/index.html b/www/index.html index 98558ae..1471b9a 100644 --- a/www/index.html +++ b/www/index.html @@ -21,20 +21,17 @@ like uploading.</p> </article> <article id='homepage-post'> - <h2>Recent Post - 2019-01-21</h2> - <h3>First! A New Years Resolution</h3> - <p>I like to write small hacky things from time to time when I have a - weekend to myself, or a day, or an hour... But I never had a place to put - them or the push to complete them beyond their initial hack. So I decided - I should write a blog about it.</p> - <p>First</p> - <p>My plan for this site is part of my New Years Resolution to not only - improve my non-technical-document writing, but to also upload whatever I - am working on.</p> + <h2>Recent Post - 2019-02-17</h2> + <h3>Venturing back into C</h3> + <p>After working in C++ for home projects that never go anywhere I + decided to get back to basics and write a utility that I have been + needing in plain ol' C.</p> + <p><a href='https://github.com/s3nd3r5/reminder'><b>reminder.d</b></a> is + a cli and daemon (so far) that manage reminders throughout your day.</p> + <div id='footer'> + <a href='/blog/2019-02-17'>Continue reading...</a> + </div> </article> - <div id='footer'> - <a href='/blog/2019-01-21'>Continue reading...</a> - </div> </div> </body> </html> |