Compare commits
No commits in common. "main" and "draft" have entirely different histories.
453 changed files with 24219 additions and 2805 deletions
6
.gitmodules
vendored
6
.gitmodules
vendored
|
|
@ -1,3 +1,3 @@
|
|||
[submodule "themes/hugo-flex"]
|
||||
path = themes/hugo-flex
|
||||
url = https://github.com/ldeso/hugo-flex.git
|
||||
[submodule "themes/nederburg"]
|
||||
path = themes/nederburg
|
||||
url = https://github.com/appernetic/hugo-nederburg-theme.git
|
||||
|
|
|
|||
0
.htaccess
Executable file → Normal file
0
.htaccess
Executable file → Normal file
|
|
@ -1,5 +1,3 @@
|
|||
# www.duckland.org
|
||||
|
||||
Source to the website [www.duckland.org](https://www.duckland.org)
|
||||
|
||||
|
||||
|
|
|
|||
0
archetypes/default.md
Executable file → Normal file
0
archetypes/default.md
Executable file → Normal file
|
|
@ -1,106 +1,94 @@
|
|||
baseURL = "https://www.duckland.org/"
|
||||
Copyright = "All rights reserved - 2006-"
|
||||
disqusShortname = ""
|
||||
enableRobotsTXT = true
|
||||
googleAnalytics = ""
|
||||
languageCode = "en-us"
|
||||
preserveTaxonomyNames = true
|
||||
theme = "hugo-flex"
|
||||
title = "duckland.org"
|
||||
theme = "minimage"
|
||||
# Enable comments by entering your Disqus shortname
|
||||
disqusShortname = ""
|
||||
# Enable Google Analytics by entering your tracking code
|
||||
googleAnalytics = ""
|
||||
Copyright = "All rights reserved - 2006-"
|
||||
preserveTaxonomyNames = true
|
||||
renderer.unsafe = true
|
||||
#canonifyurls = true
|
||||
|
||||
|
||||
[pagination]
|
||||
pagerSize = 3
|
||||
pagerSize = 5
|
||||
[taxonomies]
|
||||
category = "categories"
|
||||
tag = "tags"
|
||||
series = "series"
|
||||
|
||||
[markup]
|
||||
[markup.goldmark]
|
||||
[markup.goldmark.renderer]
|
||||
unsafe = true
|
||||
|
||||
[privacy]
|
||||
# Google Analytics privacy settings - https://gohugo.io/about/hugo-and-gdpr/index.html#googleanalytics
|
||||
[privacy.googleAnalytics]
|
||||
# set to true to disable service
|
||||
disable = true
|
||||
# set to true to meet General Data Protection Regulation (GDPR)
|
||||
anonymizeIP = true
|
||||
respectDoNotTrack = true
|
||||
useSessionStorage = true
|
||||
|
||||
[params]
|
||||
defaultTheme = "dark"
|
||||
contentTypeName = "post"
|
||||
fullWidthTheme = true
|
||||
email = "duck@duckland.org"
|
||||
slogan = "Random Quacking"
|
||||
description = "Random Quacking"
|
||||
header_image = "/photos/Travel/China/P1215426.jpg"
|
||||
#logo = "/photos/Travel/China/P1215426.jpg"
|
||||
cover = "/photos/Travel/China/P1215426.jpg"
|
||||
# author = "Don Harper"
|
||||
# email = "duck@duckland.org"
|
||||
# authorlink = "https://www.duckland.org/"
|
||||
author = "Don Harper"
|
||||
authorlink = "https://www.duckland.org/"
|
||||
bio = [
|
||||
"Don is a computer guy stumbling through life trying to raise his kids and take some pictures"
|
||||
]
|
||||
footer = "© 2006- Don Harper"
|
||||
copyright = [
|
||||
"© 2006- Don Harper"
|
||||
"© 2006-2021 Don Harper"
|
||||
]
|
||||
authorlocation = ""
|
||||
authorwebsite = "https://www.duckland.org"
|
||||
#logo = "images/user.png"
|
||||
githubName = "duckunix"
|
||||
twitterName = "https://fosstodon.org/@duckunix"
|
||||
twitterName = "duckunix"
|
||||
# set true if you are not proud of using Hugo (true will hide the footer note "Proudly published with HUGO.....")
|
||||
hideHUGOSupport = false
|
||||
showtoc = false
|
||||
enableAutoDarkMode = true
|
||||
# Nav links in the side bar
|
||||
[params.author]
|
||||
author = "Don Harper"
|
||||
email = "duck@duckland.org"
|
||||
|
||||
[[menu.main]]
|
||||
[[menu.global]]
|
||||
name = "Home"
|
||||
url = "/"
|
||||
weight = 2
|
||||
|
||||
[[menu.main]]
|
||||
name = "Posts"
|
||||
url = "/posts/"
|
||||
weight = 3
|
||||
|
||||
[[menu.main]]
|
||||
name = "About"
|
||||
url = "/stories/about/"
|
||||
weight = 1
|
||||
|
||||
[[menu.main]]
|
||||
[[menu.global]]
|
||||
name = "About"
|
||||
url = "/stories/about/"
|
||||
weight = 2
|
||||
|
||||
[[menu.global]]
|
||||
name = "Privacy"
|
||||
url = "/stories/privacy/"
|
||||
weight = 4
|
||||
weight = 3
|
||||
|
||||
[[menu.main]]
|
||||
name = "Photos"
|
||||
[[menu.global]]
|
||||
name = "Photo Galleries"
|
||||
url = "/photos/"
|
||||
weight = 8
|
||||
weight = 4
|
||||
|
||||
[[menu.footer]]
|
||||
name = "About"
|
||||
url = "/stories/about/"
|
||||
|
||||
[[menu.main]]
|
||||
[[menu.global]]
|
||||
name = "Categories"
|
||||
url = "/categories/"
|
||||
weight = 5
|
||||
|
||||
[[menu.main]]
|
||||
[[menu.global]]
|
||||
name = "Tags"
|
||||
url = "/tags/"
|
||||
weight = 6
|
||||
|
||||
#[[menu.main]]
|
||||
#[[menu.global]]
|
||||
#name = "Get in touch"
|
||||
#url = "contact/"
|
||||
#weight = 5
|
||||
|
|
@ -108,7 +96,7 @@ title = "duckland.org"
|
|||
# this will also be in author bio if there is no writer.
|
||||
[params.social]
|
||||
email = "duck@duckland.org"
|
||||
twitter = "https://fosstodon.org/@duckunix"
|
||||
#twitter = "https://twitter.com/duckunix"
|
||||
linkedin = "https://www.linkedin.com/in/donaldharper/"
|
||||
mastodon = "https://fosstodon.org/@duckunix"
|
||||
#stackoverflow = "full profile url in stackoverflow"
|
||||
|
|
@ -122,7 +110,7 @@ title = "duckland.org"
|
|||
bio = [
|
||||
"Don is a computer guy stumbling through life trying to raise his kids and take some pictures"
|
||||
]
|
||||
twitter = "https://fosstodon.org/@duckunix"
|
||||
twitter = "https://twitter.com/duckunix"
|
||||
linkedin = "https://www.linkedin.com/in/donaldharper/"
|
||||
instagram = "https://www.instagram.com/duckunix/"
|
||||
github = "https://github.com/duckunix"
|
||||
0
content/.htaccess
Executable file → Normal file
0
content/.htaccess
Executable file → Normal file
0
content/contact/_index.md
Executable file → Normal file
0
content/contact/_index.md
Executable file → Normal file
0
content/posts/2006/06/what-do-i-use.md → content/post/2006/06/what-do-i-use.md
Executable file → Normal file
0
content/posts/2006/06/what-do-i-use.md → content/post/2006/06/what-do-i-use.md
Executable file → Normal file
0
content/posts/2006/11/another-rss-reader.md → content/post/2006/11/another-rss-reader.md
Executable file → Normal file
0
content/posts/2006/11/another-rss-reader.md → content/post/2006/11/another-rss-reader.md
Executable file → Normal file
0
content/posts/2006/11/disconnected-imap.md → content/post/2006/11/disconnected-imap.md
Executable file → Normal file
0
content/posts/2006/11/disconnected-imap.md → content/post/2006/11/disconnected-imap.md
Executable file → Normal file
0
content/posts/2006/11/rss-reader-raggle.md → content/post/2006/11/rss-reader-raggle.md
Executable file → Normal file
0
content/posts/2006/11/rss-reader-raggle.md → content/post/2006/11/rss-reader-raggle.md
Executable file → Normal file
0
content/posts/2006/11/screen-saver-yes.md → content/post/2006/11/screen-saver-yes.md
Executable file → Normal file
0
content/posts/2006/11/screen-saver-yes.md → content/post/2006/11/screen-saver-yes.md
Executable file → Normal file
0
content/posts/2007/01/window-manager-for-tty.md → content/post/2007/01/window-manager-for-tty.md
Executable file → Normal file
0
content/posts/2007/01/window-manager-for-tty.md → content/post/2007/01/window-manager-for-tty.md
Executable file → Normal file
0
content/posts/2007/03/cli-bugissuetask-tracking-system.md → content/post/2007/03/cli-bugissuetask-tracking-system.md
Executable file → Normal file
0
content/posts/2007/03/cli-bugissuetask-tracking-system.md → content/post/2007/03/cli-bugissuetask-tracking-system.md
Executable file → Normal file
0
content/posts/2007/03/strayed-from-the-path.md → content/post/2007/03/strayed-from-the-path.md
Executable file → Normal file
0
content/posts/2007/03/strayed-from-the-path.md → content/post/2007/03/strayed-from-the-path.md
Executable file → Normal file
0
content/posts/2007/05/bins-photo-album.md → content/post/2007/05/bins-photo-album.md
Executable file → Normal file
0
content/posts/2007/05/bins-photo-album.md → content/post/2007/05/bins-photo-album.md
Executable file → Normal file
0
content/posts/2007/05/ikog-the-simple-todo-list.md → content/post/2007/05/ikog-the-simple-todo-list.md
Executable file → Normal file
0
content/posts/2007/05/ikog-the-simple-todo-list.md → content/post/2007/05/ikog-the-simple-todo-list.md
Executable file → Normal file
0
content/posts/2007/06/pacman-for-console.md → content/post/2007/06/pacman-for-console.md
Executable file → Normal file
0
content/posts/2007/06/pacman-for-console.md → content/post/2007/06/pacman-for-console.md
Executable file → Normal file
0
content/posts/2008/05/command-line-blog-posts.md → content/post/2008/05/command-line-blog-posts.md
Executable file → Normal file
0
content/posts/2008/05/command-line-blog-posts.md → content/post/2008/05/command-line-blog-posts.md
Executable file → Normal file
0
content/posts/2008/08/so-you-need-a-calendar.md → content/post/2008/08/so-you-need-a-calendar.md
Executable file → Normal file
0
content/posts/2008/08/so-you-need-a-calendar.md → content/post/2008/08/so-you-need-a-calendar.md
Executable file → Normal file
0
content/posts/2008/11/alerting-with-remind.md → content/post/2008/11/alerting-with-remind.md
Executable file → Normal file
0
content/posts/2008/11/alerting-with-remind.md → content/post/2008/11/alerting-with-remind.md
Executable file → Normal file
0
content/posts/2008/12/googles-calendar-on-the-command-line.md → content/post/2008/12/googles-calendar-on-the-command-line.md
Executable file → Normal file
0
content/posts/2008/12/googles-calendar-on-the-command-line.md → content/post/2008/12/googles-calendar-on-the-command-line.md
Executable file → Normal file
0
content/posts/2009/01/cmus-a-music-manager-for-the-terminal.md → content/post/2009/01/cmus-a-music-manager-for-the-terminal.md
Executable file → Normal file
0
content/posts/2009/01/cmus-a-music-manager-for-the-terminal.md → content/post/2009/01/cmus-a-music-manager-for-the-terminal.md
Executable file → Normal file
0
content/posts/2009/05/search-your-email.md → content/post/2009/05/search-your-email.md
Executable file → Normal file
0
content/posts/2009/05/search-your-email.md → content/post/2009/05/search-your-email.md
Executable file → Normal file
0
content/posts/2009/12/making-life-easy-over-flaky-links.md → content/post/2009/12/making-life-easy-over-flaky-links.md
Executable file → Normal file
0
content/posts/2009/12/making-life-easy-over-flaky-links.md → content/post/2009/12/making-life-easy-over-flaky-links.md
Executable file → Normal file
0
content/posts/2010/02/cmus-project-restarted.md → content/post/2010/02/cmus-project-restarted.md
Executable file → Normal file
0
content/posts/2010/02/cmus-project-restarted.md → content/post/2010/02/cmus-project-restarted.md
Executable file → Normal file
0
content/posts/2011/12/an-update-to-window-managers.md → content/post/2011/12/an-update-to-window-managers.md
Executable file → Normal file
0
content/posts/2011/12/an-update-to-window-managers.md → content/post/2011/12/an-update-to-window-managers.md
Executable file → Normal file
0
content/posts/2013/10/rebooting-ducklandorg.md → content/post/2013/10/rebooting-ducklandorg.md
Executable file → Normal file
0
content/posts/2013/10/rebooting-ducklandorg.md → content/post/2013/10/rebooting-ducklandorg.md
Executable file → Normal file
0
content/posts/2013/11/clickable-urls-links-in-rxvt.md → content/post/2013/11/clickable-urls-links-in-rxvt.md
Executable file → Normal file
0
content/posts/2013/11/clickable-urls-links-in-rxvt.md → content/post/2013/11/clickable-urls-links-in-rxvt.md
Executable file → Normal file
0
content/posts/2013/11/dd-with-progress.md → content/post/2013/11/dd-with-progress.md
Executable file → Normal file
0
content/posts/2013/11/dd-with-progress.md → content/post/2013/11/dd-with-progress.md
Executable file → Normal file
0
content/posts/2014/01/cli-added.md → content/post/2014/01/cli-added.md
Executable file → Normal file
0
content/posts/2014/01/cli-added.md → content/post/2014/01/cli-added.md
Executable file → Normal file
0
content/posts/2014/01/tale-of-install-2.md → content/post/2014/01/tale-of-install-2.md
Executable file → Normal file
0
content/posts/2014/01/tale-of-install-2.md → content/post/2014/01/tale-of-install-2.md
Executable file → Normal file
0
content/posts/2014/02/travels.md → content/post/2014/02/travels.md
Executable file → Normal file
0
content/posts/2014/02/travels.md → content/post/2014/02/travels.md
Executable file → Normal file
0
content/posts/2014/03/back-to-freebsd-aka-day-1.md → content/post/2014/03/back-to-freebsd-aka-day-1.md
Executable file → Normal file
0
content/posts/2014/03/back-to-freebsd-aka-day-1.md → content/post/2014/03/back-to-freebsd-aka-day-1.md
Executable file → Normal file
0
content/posts/2014/03/freebsd-challenge-day-16.md → content/post/2014/03/freebsd-challenge-day-16.md
Executable file → Normal file
0
content/posts/2014/03/freebsd-challenge-day-16.md → content/post/2014/03/freebsd-challenge-day-16.md
Executable file → Normal file
0
content/posts/2014/03/freebsd-challenge-day-2.md → content/post/2014/03/freebsd-challenge-day-2.md
Executable file → Normal file
0
content/posts/2014/03/freebsd-challenge-day-2.md → content/post/2014/03/freebsd-challenge-day-2.md
Executable file → Normal file
0
content/posts/2014/03/freebsd-challenge-day-3.md → content/post/2014/03/freebsd-challenge-day-3.md
Executable file → Normal file
0
content/posts/2014/03/freebsd-challenge-day-3.md → content/post/2014/03/freebsd-challenge-day-3.md
Executable file → Normal file
0
content/posts/2014/03/freebsd-challenge-day-4-6.md → content/post/2014/03/freebsd-challenge-day-4-6.md
Executable file → Normal file
0
content/posts/2014/03/freebsd-challenge-day-4-6.md → content/post/2014/03/freebsd-challenge-day-4-6.md
Executable file → Normal file
0
content/posts/2014/03/freebsd-challenge-day-7.md → content/post/2014/03/freebsd-challenge-day-7.md
Executable file → Normal file
0
content/posts/2014/03/freebsd-challenge-day-7.md → content/post/2014/03/freebsd-challenge-day-7.md
Executable file → Normal file
0
content/posts/2014/03/freebsd-challenge-day-8.md → content/post/2014/03/freebsd-challenge-day-8.md
Executable file → Normal file
0
content/posts/2014/03/freebsd-challenge-day-8.md → content/post/2014/03/freebsd-challenge-day-8.md
Executable file → Normal file
0
content/posts/2014/03/freebsd-challenge-day-9-11.md → content/post/2014/03/freebsd-challenge-day-9-11.md
Executable file → Normal file
0
content/posts/2014/03/freebsd-challenge-day-9-11.md → content/post/2014/03/freebsd-challenge-day-9-11.md
Executable file → Normal file
0
content/posts/2014/03/new-cms-again.md → content/post/2014/03/new-cms-again.md
Executable file → Normal file
0
content/posts/2014/03/new-cms-again.md → content/post/2014/03/new-cms-again.md
Executable file → Normal file
0
content/posts/2014/04/freebsd-challenge-day-17.md → content/post/2014/04/freebsd-challenge-day-17.md
Executable file → Normal file
0
content/posts/2014/04/freebsd-challenge-day-17.md → content/post/2014/04/freebsd-challenge-day-17.md
Executable file → Normal file
0
content/posts/2014/04/freebsd-challenge-final-for-now.md → content/post/2014/04/freebsd-challenge-final-for-now.md
Executable file → Normal file
0
content/posts/2014/04/freebsd-challenge-final-for-now.md → content/post/2014/04/freebsd-challenge-final-for-now.md
Executable file → Normal file
0
content/posts/2014/04/freebsd-challenge-update.md → content/post/2014/04/freebsd-challenge-update.md
Executable file → Normal file
0
content/posts/2014/04/freebsd-challenge-update.md → content/post/2014/04/freebsd-challenge-update.md
Executable file → Normal file
0
content/posts/2014/06/rewards-for-hard-travel.md → content/post/2014/06/rewards-for-hard-travel.md
Executable file → Normal file
0
content/posts/2014/06/rewards-for-hard-travel.md → content/post/2014/06/rewards-for-hard-travel.md
Executable file → Normal file
0
content/posts/2014/07/freebsd-switch.md → content/post/2014/07/freebsd-switch.md
Executable file → Normal file
0
content/posts/2014/07/freebsd-switch.md → content/post/2014/07/freebsd-switch.md
Executable file → Normal file
0
content/posts/2014/08/one-step-closer.md → content/post/2014/08/one-step-closer.md
Executable file → Normal file
0
content/posts/2014/08/one-step-closer.md → content/post/2014/08/one-step-closer.md
Executable file → Normal file
0
content/posts/2014/09/perl-modules-and-package-management.md → content/post/2014/09/perl-modules-and-package-management.md
Executable file → Normal file
0
content/posts/2014/09/perl-modules-and-package-management.md → content/post/2014/09/perl-modules-and-package-management.md
Executable file → Normal file
0
content/posts/2014/10/another-month-going-quick.md → content/post/2014/10/another-month-going-quick.md
Executable file → Normal file
0
content/posts/2014/10/another-month-going-quick.md → content/post/2014/10/another-month-going-quick.md
Executable file → Normal file
0
content/posts/2014/12/another-year.md → content/post/2014/12/another-year.md
Executable file → Normal file
0
content/posts/2014/12/another-year.md → content/post/2014/12/another-year.md
Executable file → Normal file
0
content/posts/2014/12/goodbye-2014.md → content/post/2014/12/goodbye-2014.md
Executable file → Normal file
0
content/posts/2014/12/goodbye-2014.md → content/post/2014/12/goodbye-2014.md
Executable file → Normal file
0
content/posts/2014/12/new-look-again.md → content/post/2014/12/new-look-again.md
Executable file → Normal file
0
content/posts/2014/12/new-look-again.md → content/post/2014/12/new-look-again.md
Executable file → Normal file
0
content/posts/2015/01/freebsd-challenge-ii-day-14.md → content/post/2015/01/freebsd-challenge-ii-day-14.md
Executable file → Normal file
0
content/posts/2015/01/freebsd-challenge-ii-day-14.md → content/post/2015/01/freebsd-challenge-ii-day-14.md
Executable file → Normal file
0
content/posts/2015/01/freebsd-challenge-ii-day-30-update.md → content/post/2015/01/freebsd-challenge-ii-day-30-update.md
Executable file → Normal file
0
content/posts/2015/01/freebsd-challenge-ii-day-30-update.md → content/post/2015/01/freebsd-challenge-ii-day-30-update.md
Executable file → Normal file
0
content/posts/2015/01/update-on-revisiting-freebsd-challenge.md → content/post/2015/01/update-on-revisiting-freebsd-challenge.md
Executable file → Normal file
0
content/posts/2015/01/update-on-revisiting-freebsd-challenge.md → content/post/2015/01/update-on-revisiting-freebsd-challenge.md
Executable file → Normal file
0
content/posts/2015/02/30daychallengefreebsdsa.md → content/post/2015/02/30daychallengefreebsdsa.md
Executable file → Normal file
0
content/posts/2015/02/30daychallengefreebsdsa.md → content/post/2015/02/30daychallengefreebsdsa.md
Executable file → Normal file
0
content/posts/2015/03/march-update.md → content/post/2015/03/march-update.md
Executable file → Normal file
0
content/posts/2015/03/march-update.md → content/post/2015/03/march-update.md
Executable file → Normal file
0
content/posts/2015/05/april-recap.md → content/post/2015/05/april-recap.md
Executable file → Normal file
0
content/posts/2015/05/april-recap.md → content/post/2015/05/april-recap.md
Executable file → Normal file
0
content/posts/2015/05/quick-ansible-tip.md → content/post/2015/05/quick-ansible-tip.md
Executable file → Normal file
0
content/posts/2015/05/quick-ansible-tip.md → content/post/2015/05/quick-ansible-tip.md
Executable file → Normal file
0
content/posts/2015/06/updates-to-aur-packages.md → content/post/2015/06/updates-to-aur-packages.md
Executable file → Normal file
0
content/posts/2015/06/updates-to-aur-packages.md → content/post/2015/06/updates-to-aur-packages.md
Executable file → Normal file
0
content/posts/2015/08/do-i-stay-or-do-i-go.md → content/post/2015/08/do-i-stay-or-do-i-go.md
Executable file → Normal file
0
content/posts/2015/08/do-i-stay-or-do-i-go.md → content/post/2015/08/do-i-stay-or-do-i-go.md
Executable file → Normal file
0
content/posts/2015/09/and-the-firewall-goes-pop.md → content/post/2015/09/and-the-firewall-goes-pop.md
Executable file → Normal file
0
content/posts/2015/09/and-the-firewall-goes-pop.md → content/post/2015/09/and-the-firewall-goes-pop.md
Executable file → Normal file
2
content/posts/2015/09/another-month-another-post.md → content/post/2015/09/another-month-another-post.md
Executable file → Normal file
2
content/posts/2015/09/another-month-another-post.md → content/post/2015/09/another-month-another-post.md
Executable file → Normal file
|
|
@ -9,7 +9,7 @@ Wow...September already? Where does the time go?
|
|||
|
||||
With the time given to the commute and the lack of access at the office (since I do work for a firm which does have pretty tight internet access policies), I have decided that I cannot do the photo-a-day thing, so I am not going to be updating my [photo website](https://www.donaldharper.com) on a regular basis. Sorry about that, but then since I started back this summer, the traffic was not there.
|
||||
|
||||
On the topic of my [last post](/posts/2015/08/do-i-stay-or-do-i-go/), I have decided to keep most things in house for now. Calendaring is the biggest issue to crack.
|
||||
On the topic of my [last post](/post/2015/08/do-i-stay-or-do-i-go/), I have decided to keep most things in house for now. Calendaring is the biggest issue to crack.
|
||||
|
||||
I hope to be able to spend some time here documenting things, if nothing else for me. Maybe someone else will find them useful.
|
||||
|
||||
0
content/posts/2015/10/halloween.md → content/post/2015/10/halloween.md
Executable file → Normal file
0
content/posts/2015/10/halloween.md → content/post/2015/10/halloween.md
Executable file → Normal file
0
content/posts/2015/10/random-thoughts.md → content/post/2015/10/random-thoughts.md
Executable file → Normal file
0
content/posts/2015/10/random-thoughts.md → content/post/2015/10/random-thoughts.md
Executable file → Normal file
0
content/posts/2015/11/happy-thanksgiving-for-the-us-crowd.md → content/post/2015/11/happy-thanksgiving-for-the-us-crowd.md
Executable file → Normal file
0
content/posts/2015/11/happy-thanksgiving-for-the-us-crowd.md → content/post/2015/11/happy-thanksgiving-for-the-us-crowd.md
Executable file → Normal file
0
content/posts/2016/01/where-did-the-time-go.md → content/post/2016/01/where-did-the-time-go.md
Executable file → Normal file
0
content/posts/2016/01/where-did-the-time-go.md → content/post/2016/01/where-did-the-time-go.md
Executable file → Normal file
2
content/posts/2016/02/why-hello-there.md → content/post/2016/02/why-hello-there.md
Executable file → Normal file
2
content/posts/2016/02/why-hello-there.md → content/post/2016/02/why-hello-there.md
Executable file → Normal file
|
|
@ -8,4 +8,4 @@ Happy Leap Day!
|
|||
|
||||
Another month has gone by, and things have been busy. In addition to all the normal crazy that is life with kids, I have been elected to the kids pre-school board of directors. Now, the oldest two no longer go there, but the youngest will be there another year, and my term is three years, so there will be a bit of time when I will not have a kid there. They did ask me before, but that was years ago, and I was not in a position to be able to do that back then.
|
||||
|
||||
In other, but more geeky, news, February saw me running [FreeBSD](https://www.freebsd.org) as my OS for the month. There was only one thing in which I needed Linux for, and it was [something I know I could do under FreeBSD](/posts/2014/03/freebsd-challenge-day-4-6/), but I had not set up my machine to run that program yet. Will I keep it up? Probably, although the lack of supported sleep on the current laptop, an Acer C720 Chromebook, is a major downer. I may need to see if I can do something about it, as it appears to work fine under Linux.
|
||||
In other, but more geeky, news, February saw me running [FreeBSD](https://www.freebsd.org) as my OS for the month. There was only one thing in which I needed Linux for, and it was [something I know I could do under FreeBSD](/post/2014/03/freebsd-challenge-day-4-6/), but I had not set up my machine to run that program yet. Will I keep it up? Probably, although the lack of supported sleep on the current laptop, an Acer C720 Chromebook, is a major downer. I may need to see if I can do something about it, as it appears to work fine under Linux.
|
||||
0
content/posts/2016/03/sping-showers.md → content/post/2016/03/sping-showers.md
Executable file → Normal file
0
content/posts/2016/03/sping-showers.md → content/post/2016/03/sping-showers.md
Executable file → Normal file
0
content/posts/2016/05/and-may-is-almost-over.md → content/post/2016/05/and-may-is-almost-over.md
Executable file → Normal file
0
content/posts/2016/05/and-may-is-almost-over.md → content/post/2016/05/and-may-is-almost-over.md
Executable file → Normal file
0
content/posts/2016/06/home_network_updates.md → content/post/2016/06/home_network_updates.md
Executable file → Normal file
0
content/posts/2016/06/home_network_updates.md → content/post/2016/06/home_network_updates.md
Executable file → Normal file
0
content/posts/2016/07/random_midsummer_updates.md → content/post/2016/07/random_midsummer_updates.md
Executable file → Normal file
0
content/posts/2016/07/random_midsummer_updates.md → content/post/2016/07/random_midsummer_updates.md
Executable file → Normal file
0
content/posts/2016/09/more-random-things.md → content/post/2016/09/more-random-things.md
Executable file → Normal file
0
content/posts/2016/09/more-random-things.md → content/post/2016/09/more-random-things.md
Executable file → Normal file
0
content/posts/2016/10/exit-stage-left.md → content/post/2016/10/exit-stage-left.md
Executable file → Normal file
0
content/posts/2016/10/exit-stage-left.md → content/post/2016/10/exit-stage-left.md
Executable file → Normal file
0
content/posts/2016/11/tls-everwhere.md → content/post/2016/11/tls-everwhere.md
Executable file → Normal file
0
content/posts/2016/11/tls-everwhere.md → content/post/2016/11/tls-everwhere.md
Executable file → Normal file
|
|
@ -7,7 +7,7 @@ featured_image = "/photos/TRF/2016/20161126112933.webp"
|
|||
+++
|
||||
|
||||
|
||||
This last weekend was the last weekend for the [2016 Texas Renaissance Festival](https://www.texrenfest.com/). Since the fall has been a bit crazy with sports and the new [job](/posts/2016/10/exit-stage-left/) that we only got to go one time this year.
|
||||
This last weekend was the last weekend for the [2016 Texas Renaissance Festival](https://www.texrenfest.com/). Since the fall has been a bit crazy with sports and the new [job](/post/2016/10/exit-stage-left/) that we only got to go one time this year.
|
||||
|
||||
Naturally, I took my camera, but as luck would have it, the battery which said it was full before I left was actually flat, and died on me. I ended up using my phone (Nexus 5x), which turned out took decent pictures within limits. Action shots were out. However, I did manage to get a [a few I liked](/photos/TRF/2016/), so on the photographic front, it was not a total loss.
|
||||
|
||||
|
|
@ -7,7 +7,7 @@ featured_image = "/photos/Flowers/20170120174705.webp"
|
|||
+++
|
||||
|
||||
|
||||
As you may [remember](/posts/2017/01/happy-new-year/), I have been working on my Project 365 (take and post a picture for 365 days). Well, so far, I am 20 for 20!
|
||||
As you may [remember](/post/2017/01/happy-new-year/), I have been working on my Project 365 (take and post a picture for 365 days). Well, so far, I am 20 for 20!
|
||||
|
||||
But, in getting one for [yesterday](https://p365.donaldharper.com/posts/020-blue-flower-macro/), I ended up taking a bunch of pictures. I decide to share the best, and you can find them [here](/photos/Flowers/). Enjoy.
|
||||
|
||||
0
content/posts/2017/01/happy-new-year.md → content/post/2017/01/happy-new-year.md
Executable file → Normal file
0
content/posts/2017/01/happy-new-year.md → content/post/2017/01/happy-new-year.md
Executable file → Normal file
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue