Massive update to sync with the wp site

This commit is contained in:
Don Harper 2019-05-20 16:48:56 -05:00
parent 4a7c90f5bb
commit ac7ca39956
75 changed files with 5381 additions and 105 deletions

157
conf.py
View file

@ -3,23 +3,24 @@ import time
BLOG_AUTHOR = "Don Harper" # (translatable)
BLOG_TITLE = "duckland.org" # (translatable)
SITE_URL = "https://www.duckland.org/"
BASE_URL = "https://www.duckland.org/"
BLOG_EMAIL = "duck@duckland.org"
BLOG_DESCRIPTION = "News from duckland.org" # (translatable)
DEFAULT_LANG = "en"
TRANSLATIONS = {
DEFAULT_LANG: "",
}
DEFAULT_LANG: "",
}
TRANSLATIONS_PATTERN = "{path}.{lang}.{ext}"
NAVIGATION_LINKS = {
DEFAULT_LANG: (
('/index.html', 'Home'),
('/', 'Home'),
('/stories/about.html', 'About me'),
('/stories/privacy.html', 'Privacy'),
("/stories/privacy.html", "Privacy/GDPR"),
('/photos/', 'Photos'),
(
(
#('http://www.donaldharper.com', 'My Photo Blog'),
('https://p365.donaldharper.com', 'My Attempt at a Project 365'),
('http://www.donaldharper.com', 'My Photo Blog'),
#('http://p365.donaldharper.com', 'My Attempt at a Project 365'),
('https://www.duckland.org', 'My Personal and Tech Blog'),
),
'My Sites'
@ -27,54 +28,55 @@ NAVIGATION_LINKS = {
(
(
('https://twitter.com/duckunix', 'My Twitter'),
('https://plus.google.com/+DonHarper/', 'My Google+'),
('http://www.linkedin.com/in/donaldharper/', 'My LinkedIN'),
),
('https://flickr.com/photos/duckunix', 'My Flickr'),
),
'Social Sites'
),
),
("/archive.html", "Archive"),
("/categories/index.html", "Tags"),
("/categories/", "Tags"),
('/rss.xml', 'RSS'),
),
}
#THEME = "slate"
#THEME = "duckland"
#THEME = "superhero"
#THEME = "material-theme"
THEME = "slidemenu"
TIMEZONE = "CDT6CST"
DATE_FORMAT = '%Y-%m-%d'
JS_DATE_FORMAT = 'YYYY-MM-DD'
DATE_FANCINESS = 1
GLOBAL_CONTEXT_FILLER = []
THEME = 'canterville'
LOGO_URL = 'https://getnikola.com/assets/img/logo.svg'
GLOBAL_CONTEXT = {
'TWITTER_URL': 'https://twitter.com/duckunix',
'FLICKR_URL': 'https://www.flickr.com/photos/duckunix/',
'BANNER_URL': '/assets/img/beach.jpg'
}
TIMEZONE = "America/Chicago"
DATE_FORMAT = 'YYYY-MM-dd'
JS_DATE_FORMAT = 'YYYY-MM-dd'
DATE_FANCINESS = 0
PRETTY_URLS = False
NEW_POST_DATE_PATH = False
NEW_POST_DATE_PATH_FORMAT = '%Y/%m'
POSTS = (
("posts/*.md", "posts", "post.tmpl"),
("posts/*.rst", "posts", "post.tmpl"),
("posts/*.txt", "posts", "post.tmpl"),
("posts/*.html", "posts", "post.tmpl"),
("posts/*.wp", "posts", "post.tmpl"),
)
("posts/*.md", "posts", "post.tmpl"),
("posts/*.rst", "posts", "post.tmpl"),
("posts/*.txt", "posts", "post.tmpl"),
("posts/*.html", "posts", "post.tmpl"),
("posts/*.wp", "posts", "post.tmpl"),
)
PAGES = (
("stories/*.md", "stories", "story.tmpl"),
("stories/*.rst", "stories", "story.tmpl"),
("stories/*.txt", "stories", "story.tmpl"),
)
("stories/*.md", "stories", "story.tmpl"),
("stories/*.rst", "stories", "story.tmpl"),
("stories/*.txt", "stories", "story.tmpl"),
)
COMPILERS = {
"markdown": ('.md', '.mdown', '.markdown'),
"rest": ('.rst', '.txt'),
"textile": ('.textile',),
"txt2tags": ('.t2t',),
"bbcode": ('.bb',),
"wiki": ('.wiki',),
"ipynb": ('.ipynb',),
"html": ('.html', '.htm', '.wp'),
"php": ('.php',),
}
WRITE_TAG_CLOUD = True
HIDDEN_TAGS = ['mathjax']
HIDDEN_CATEGORIES = []
"markdown": ('.md', '.mdown', '.markdown'),
"rest": ('.rst', '.txt'),
"textile": ('.textile',),
"txt2tags": ('.t2t',),
"bbcode": ('.bb',),
"wiki": ('.wiki',),
"ipynb": ('.ipynb',),
"html": ('.html', '.htm', '.wp'),
"php": ('.php',),
}
WRITE_TAG_CLOUD = False
SHOW_BLOG_TITLE = True
FEED_LENGTH = 10
REDIRECTIONS = []
@ -83,35 +85,31 @@ INDEX_READ_MORE_LINK = '<p class="more"><a href="{link}">{read_more}</a></p>'
FEED_READ_MORE_LINK = '<p><a href="{link}">{read_more}</a> ({min_remaining_read})</p>'
FEED_LINKS_APPEND_QUERY = False
DEPLOY_COMMANDS = {
'default': [
#"git pull",
"cd sigal; sigal build",
"nikola build",
"nikola check -l",
"cp .htaccess output/",
"chmod -R a+rX output/",
"rsync -a --delete -e 'ssh -x -i /home/don/.ssh/http -l duck' output/ wise.dreamhost.com:httpd/duckland.org/nikola",
#"rsync -a --delete -e 'ssh -x -i /home/don/.ssh/http -l don' ./ don@web.duckland.org:/srv/http/work/www.duckland.org",
"git add -A",
"git commit -m\"auto commit due to nikola deploy $(date)\"",
"git push",
]
}
INDEX_READ_MORE_LINK = '<p class="more"><a href="{link}">{read_more}...a></p>'
FEED_READ_MORE_LINK = '<p><a href="{link}">{read_more}...a> ({min_remaining_read})</p>'
'default': [
"nikola build",
"nikola check -f",
"chmod -R a+rX output/",
"/usr/bin/rsync -a --delete -e 'ssh -x -l duck' output/ www.donaldharper.com:/home/duck/httpd/donaldharper.com/nikola",
#"nikola check -fl",
#"/usr/bin/rsync -a --delete -e 'ssh -x -i /home/duckunix/.ssh/http -l don' output/ don@web.duckland.org:/srv/http/work/blog/output",
#"/usr/bin/rsync -a --delete -e 'ssh -x -i /home/duckunix/.ssh/http -l duck' output/ duck@www.duckland.org:/home/duck/httpd/donaldharper.com/nikola",
]
}
INDEX_READ_MORE_LINK = '<p class="more"><a href="{link}">{read_more}...</a></p>'
FEED_READ_MORE_LINK = '<p><a href="{link}">{read_more}...</a> ({min_remaining_read})</p>'
LICENSE = ""
CONTENT_FOOTER = 'Contents &copy; {date} <a href="mailto:{email}">{author}</a> - Powered by <a href="http://getnikola.com" rel="nofollow">Nikola</a> {license}'
CONTENT_FOOTER = 'Contents &copy; {date} <a href="mailto:{email}">{author}</a> {license}'
CONTENT_FOOTER_FORMATS = {
DEFAULT_LANG: (
(),
{
"email": BLOG_EMAIL,
"author": BLOG_AUTHOR,
"date": time.gmtime().tm_year,
"license": LICENSE
}
)
}
DEFAULT_LANG: (
(),
{
"email": BLOG_EMAIL,
"author": BLOG_AUTHOR,
"date": time.gmtime().tm_year,
"license": LICENSE
}
)
}
COMMENT_SYSTEM = ""
COMMENT_SYSTEM_ID = ""
FUTURE_IS_NOW = False
@ -121,18 +119,21 @@ SHOW_SOURCELINK = False
COPY_SOURCES = False
INDEX_DISPLAY_POST_COUNT = 5
INDEXES_STATIC = False
UNSLUGIFY_TITLES = True
FILE_METADATA_UNSLUGIFY_TITLES = True
LOGGING_HANDLERS = {
'stderr': {'loglevel': 'INFO', 'bubble': True},
'smtp': { 'from_addr': 'www.duckland.org@duckland.org', 'recipients': ('duck@duckland.org'), 'server_addr': ('127.0.0.1',25), 'secure': (), 'level': 'WARNING', 'bubble': False }
}
GLOBAL_CONTEXT = {
'header_color': 'info'
'stderr': {'loglevel': 'INFO', 'bubble': True},
'smtp': { 'from_addr': 'www.donaldharper.com@duckland.org', 'recipients': ('duck@duckland.org'), 'server_addr': ('127.0.0.1',25), 'secure': (), 'level': 'WARNING', 'bubble': False
}
}
GLOBAL_CONTEXT_FILLER = []
CREATE_MONTHLY_ARCHIVE = True
#ARCHIVE_PATH = "posts"
#ARCHIVE_FILENAME = "index.html"
GENERATE_RSS = True
FEED_TEASERS = False
INDEX_TEASERS = True
FEED_LENGTH = 100
WRITE_TAG_CLOUD = False
CATEGORY_PAGES_ARE_INDEXES = True
INDEX_DISPLAY_POST_COUNT = 10
LESS_COMPILER = 'lessc'
LESS_OPTIONS = []
SASS_COMPILER = 'sass'
SASS_OPTIONS = []

View file

@ -2,7 +2,7 @@ Compile [LESS](http://lesscss.org/) source files into CSS.
To use this plugin:
Create a ``less`` folder in your theme, put your ``.less`` files there, add a ``less/targets`` file listing the files you
Create a `less` folder in your theme, put your `.less` files there, add a `less/targets` file listing the files you
want compiled.
Note: in some cases, you might have to run `nikola build` twice.

View file

@ -0,0 +1,6 @@
# Compiler to process LESS files.
LESS_COMPILER = 'lessc'
# A list of options to pass to the LESS compiler.
# Final command is: LESS_COMPILER LESS_OPTIONS file.less
LESS_OPTIONS = []

View file

@ -2,9 +2,11 @@
Name = less
Module = less
[Nikola]
PluginCategory = Task
[Documentation]
Author = Roberto Alsina
Version = 0.1
Website = http://plugins.getnikola.com/#less
Description = Build CSS out of LESS sources

View file

@ -27,7 +27,6 @@
from __future__ import unicode_literals
import codecs
import glob
import os
import sys
import subprocess
@ -77,20 +76,19 @@ class BuildLess(Task):
for theme_name in kw['themes']:
src = os.path.join(utils.get_theme_path(theme_name), self.sources_folder)
for task in utils.copy_tree(src, os.path.join(kw['cache_folder'], self.sources_folder)):
if task['name'] in tasks:
continue
task['basename'] = 'prepare_less_sources'
tasks[task['name']] = task
yield task
# Build targets and write CSS files
base_path = utils.get_theme_path(self.site.THEMES[0])
dst_dir = os.path.join(self.site.config['OUTPUT_FOLDER'], 'assets', 'css')
# Make everything depend on all sources, rough but enough
deps = []
if os.path.isfile(os.path.join(self.sources_folder, "targets")):
deps += glob.glob(os.path.join(kw['cache_folder'], self.sources_folder,
'*{0}'.format(self.sources_ext)))
else:
deps += glob.glob(os.path.join(base_path, self.sources_folder,
'*{0}'.format(self.sources_ext)))
for task in tasks.keys():
if task.endswith(self.sources_ext):
deps.append(task)
def compile_target(target, dst):
utils.makedirs(dst_dir)

View file

@ -2,7 +2,7 @@ Compile [SASS](http://sass-lang.com/) source files into CSS.
To use this plugin:
Create a ``sass`` folder in your theme, put your ``.scss`` files there, add a ``sass/targets`` file listing the files you
Create a `sass` folder in your theme, put your `.scss` files there, add a `sass/targets` file listing the files you
want compiled.
Note: in some cases, you might have to run `nikola build` twice.

View file

@ -0,0 +1,6 @@
# Compiler to process Sass files.
SASS_COMPILER = 'sass'
# A list of options to pass to the Sass compiler.
# Final command is: SASS_COMPILER SASS_OPTIONS file.s(a|c)ss
SASS_OPTIONS = []

View file

@ -2,6 +2,9 @@
Name = sass
Module = sass
[Nikola]
PluginCategory = Task
[Documentation]
Author = Roberto Alsina, Chris Warrick
Version = 0.1

View file

@ -27,7 +27,6 @@
from __future__ import unicode_literals
import codecs
import glob
import os
import sys
import subprocess
@ -45,7 +44,7 @@ class BuildSass(Task):
def gen_tasks(self):
"""Generate CSS out of Sass sources."""
self.logger = utils.get_logger('build_sass', self.site.loghandlers)
self.logger = utils.get_logger('build_sass', utils.STDERR_HANDLER)
self.compiler_name = self.site.config['SASS_COMPILER']
self.compiler_options = self.site.config['SASS_OPTIONS']
@ -85,17 +84,13 @@ class BuildSass(Task):
yield task
# Build targets and write CSS files
base_path = utils.get_theme_path(self.site.THEMES[0])
dst_dir = os.path.join(self.site.config['OUTPUT_FOLDER'], 'assets', 'css')
# Make everything depend on all sources, rough but enough
deps = []
for ext in self.sources_ext:
if os.path.isfile(os.path.join(self.sources_folder, "targets")):
deps += glob.glob(os.path.join(kw['cache_folder'], self.sources_folder,
'*{0}'.format(ext)))
else:
deps += glob.glob(os.path.join(base_path, self.sources_folder,
'*{0}'.format(ext)))
for task in tasks.keys():
for ext in self.sources_ext:
if task.endswith(ext):
deps.append(task)
def compile_target(target, dst):
utils.makedirs(dst_dir)

View file

@ -9,7 +9,7 @@
.. type: text
-->
Well, I had to [open my mount](link://slug/trip-to-bournemouth-uk) and say that I thought things were going to slow down. About that...
Well, I had to [open my mouth](link://slug/trip-to-bournemouth-uk) and say that I thought things were going to slow down. About that...
So, I get word late on a Friday I needed to get to New York for a meeting with a vendor. A frantic hour or so later, and I have things booked, and that Sunday, I have this view:

View file

@ -0,0 +1,23 @@
---
id: 473
title: Aftermath of Harvey
date: 2017-08-30T22:30:07-06:00
author: don
layout: post
guid: https://www.duckland.org/?p=473
permalink: /2017/08/aftermath-of-harvey/
categories:
- Photos
- Weather
---
We have been very lucky.&nbsp; Our house sits at 125 feet above sea-level, and the&nbsp;reservoir near us which everyone is very worried about tops out at 107 feet, so no worries about flooding from that.&nbsp; Plus, we are the highest house in the subdivision.
We also kept power, water, and internet through the whole process.&nbsp; Most of the people I know who live in town took some damage from flood waters.&nbsp; Thankfully, no one I know either lost their home or loved one lives.
Around here, the stores are starting to open again, but with a lack of shipments from outside the region, things look a little bare:
<img data-attachment-id="747" data-permalink="https://www.duckland.org/img_2384-4/" data-orig-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/08/IMG_2384-3.jpg?fit=4608%2C2592&ssl=1" data-orig-size="4608,2592" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.7&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot ELPH 320 HS&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1504110208&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;4.3&quot;,&quot;iso&quot;:&quot;400&quot;,&quot;shutter_speed&quot;:&quot;0.02&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="IMG_2384" data-image-description="" data-medium-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/08/IMG_2384-3.jpg?fit=300%2C169&ssl=1" data-large-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/08/IMG_2384-3.jpg?fit=840%2C473&ssl=1" class="alignnone wp-image-747 size-medium" src="https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/08/IMG_2384-3.jpg?resize=300%2C169&#038;ssl=1" alt="empty1" width="300" height="169" srcset="https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/08/IMG_2384-3.jpg?resize=300%2C169&ssl=1 300w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/08/IMG_2384-3.jpg?resize=768%2C432&ssl=1 768w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/08/IMG_2384-3.jpg?resize=1024%2C576&ssl=1 1024w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/08/IMG_2384-3.jpg?w=1680&ssl=1 1680w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/08/IMG_2384-3.jpg?w=2520&ssl=1 2520w" sizes="(max-width: 300px) 85vw, 300px" data-recalc-dims="1" />
<img data-attachment-id="749" data-permalink="https://www.duckland.org/img_2383-3/" data-orig-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/08/IMG_2383-2.jpg?fit=4608%2C2592&ssl=1" data-orig-size="4608,2592" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.7&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot ELPH 320 HS&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1504110199&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;4.3&quot;,&quot;iso&quot;:&quot;400&quot;,&quot;shutter_speed&quot;:&quot;0.016666666666667&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="IMG_2383" data-image-description="" data-medium-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/08/IMG_2383-2.jpg?fit=300%2C169&ssl=1" data-large-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/08/IMG_2383-2.jpg?fit=840%2C473&ssl=1" class="alignnone wp-image-749 size-medium" src="https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/08/IMG_2383-2.jpg?resize=300%2C169&#038;ssl=1" alt="empty2" width="300" height="169" srcset="https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/08/IMG_2383-2.jpg?resize=300%2C169&ssl=1 300w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/08/IMG_2383-2.jpg?resize=768%2C432&ssl=1 768w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/08/IMG_2383-2.jpg?resize=1024%2C576&ssl=1 1024w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/08/IMG_2383-2.jpg?w=1680&ssl=1 1680w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/08/IMG_2383-2.jpg?w=2520&ssl=1 2520w" sizes="(max-width: 300px) 85vw, 300px" data-recalc-dims="1" />
<img data-attachment-id="750" data-permalink="https://www.duckland.org/img_2382/" data-orig-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2017/08/IMG_2382.jpg?fit=4608%2C2592&ssl=1" data-orig-size="4608,2592" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.7&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot ELPH 320 HS&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1504108974&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;4.3&quot;,&quot;iso&quot;:&quot;400&quot;,&quot;shutter_speed&quot;:&quot;0.004&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="IMG_2382" data-image-description="" data-medium-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2017/08/IMG_2382.jpg?fit=300%2C169&ssl=1" data-large-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2017/08/IMG_2382.jpg?fit=840%2C473&ssl=1" class="alignnone wp-image-750 size-medium" src="https://i1.wp.com/www.duckland.org/wp-content/uploads/2017/08/IMG_2382.jpg?resize=300%2C169&#038;ssl=1" alt="empty3" width="300" height="169" srcset="https://i1.wp.com/www.duckland.org/wp-content/uploads/2017/08/IMG_2382.jpg?resize=300%2C169&ssl=1 300w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2017/08/IMG_2382.jpg?resize=768%2C432&ssl=1 768w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2017/08/IMG_2382.jpg?resize=1024%2C576&ssl=1 1024w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2017/08/IMG_2382.jpg?w=1680&ssl=1 1680w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2017/08/IMG_2382.jpg?w=2520&ssl=1 2520w" sizes="(max-width: 300px) 85vw, 300px" data-recalc-dims="1" />

View file

@ -0,0 +1,16 @@
---
id: 465
title: Harvey, after landfall
date: 2017-08-26T22:15:51-06:00
author: don
layout: post
guid: https://www.duckland.org/?p=465
permalink: /2017/08/harvey-after-landfall/
categories:
- Weather
---
<figure style="width: 1592px" class="wp-caption alignnone"><img class="size-medium" src="https://pbs.twimg.com/media/DIMsPZ8VYAA4Ob5.jpg:large" alt="Harvey at Sunset" width="1592" height="952" /><figcaption class="wp-caption-text">Harvey at Sunset</figcaption></figure>
almost 24 hours after land fall, Harvey is still a big storm.  Rain has slowed down, but it is still coming!
&nbsp;

View file

@ -0,0 +1,23 @@
---
id: 471
title: Night Mode for ChromeOS
date: 2017-08-30T06:46:48-06:00
author: don
layout: post
guid: https://www.duckland.org/?p=471
permalink: /2017/08/night-mode-for-chromeos/
categories:
- Chrome OS
- Software
---
So, what is night-mode?  It is a mode for changing the color temperature of computer screens to be &#8216;warmer&#8217; (more red-tones, less blue tones).  Why?  The strong blue tones (and whites) from most computer screens help trick your mind into thinking it is still day, and therefor you need to be awake.
I have been trying to enable night mode on all the things for a while now.  For my android phone, I use <a href="https://play.google.com/store/apps/details?id=com.urbandroid.lux" target="_blank" rel="noopener">twilight for Android</a> (IOS has something built in now), <a href="https://getsol.us/home/" target="_blank" rel="noopener">Solus Linux</a> added it in the most recent release, <a href="https://www.gnome.org" target="_blank" rel="noopener">Gnome</a> has it in the later releases, and under <a href="http://i3wm.org" target="_blank" rel="noopener">i3</a>, I use <a href="https://justgetflux.com/" target="_blank" rel="noopener">xflux</a>.
However, I could not find anything for the Chromebooks&#8230;.until now! 9to5Google.com has <a href="https://9to5google.com/2017/05/15/chrome-os-built-in-night-mode/" target="_blank" rel="noopener">a story about the feature coming soon</a> to ChromeOS, but they claim that you need to be on the very latest development branch called &#8216;Canary&#8217;.  I tend to run on the Developers branch, and did not want to switch.  I did a bit of digging, and found <a href="https://www.reddit.com/r/chromeos/comments/6asjrc/builtin_night_mode_for_chrome_os_in_latest_canary/" target="_blank" rel="noopener">this reddit thread</a> which has the feature flag to set:
> chrome://flags/#ash-enable-night-light
Normal warnings, this can lead to breakage of your system.
I have enabled it, and it is looking good so far!

View file

@ -0,0 +1,16 @@
---
id: 469
title: waiting for the sun
date: 2017-08-28T14:38:25-06:00
author: don
layout: post
guid: https://www.duckland.org/?p=469
permalink: /2017/08/waiting-for-the-sun/
categories:
- Weather
---
<figure style="width: 1200px" class="wp-caption alignnone"><img class="size-medium" src="https://i2.wp.com/pbs.twimg.com/media/DIVu8utUQAAaX5A.jpg?resize=840%2C557&#038;ssl=1" alt="rainy day" width="840" height="557" data-recalc-dims="1" /><figcaption class="wp-caption-text">Rainy day</figcaption></figure>
More rain.  So far, we are good.  Family in town is fairing well, friends not as much (a few flooded houses and cars, thankfully no injuries).
So ready for this to be over.  And, with Downtown Houston all but closed, I am working from home for the foreseeable future.

View file

@ -0,0 +1,14 @@
---
id: 463
title: 'Weather&#8217;s a-changing!'
date: 2017-08-24T14:14:08-06:00
author: don
layout: post
guid: https://www.duckland.org/?p=463
permalink: /2017/08/weathers-a-changing/
categories:
- Weather
---
<figure style="width: 1103px" class="wp-caption alignnone"><img class="size-medium" src="https://pbs.twimg.com/media/DIAwnRWV0AAd0Hb.jpg:large" width="1103" height="838" /><figcaption class="wp-caption-text">Hurricane Harvey approaching Texas</figcaption></figure>
Heavy weather is approaching.  Keep it safe, ya&#8217;ll

View file

@ -0,0 +1,14 @@
---
id: 230
title: Welcome to the New Look
date: 2017-08-16T22:11:02-06:00
author: don
layout: post
guid: https://test.duckland.org/?p=230
permalink: /2017/08/welcome-to-the-new-look/
categories:
- Chrome OS
---
I have been running a bit of an experiment recently by using a Chromebook while not at home.  So far, it has been going fairly well with the exception that I cannot easily update this site.  So, I switched to something which lets me use the web to update.
I have all the posts moved over, but I will have to do a bit of cleanup around categories and move the photos over.  A lot of the older posts suffer from being imported into a few different blogging platforms, so that may take time.

View file

@ -0,0 +1,450 @@
---
id: 594
title: Back from London (again)
date: 2017-09-18T11:16:36-06:00
author: don
layout: post
guid: https://www.duckland.org/?p=594
permalink: /2017/09/back-from-london-again/
categories:
- Photos
- Travel
- Work
---
So, when I [started the new job last November](https://www.duckland.org/2016/10/exit-stage-left/), my boss told me that the new position was not a traveling position.  Well, after <a href="https://www.duckland.org/2017/06/trip-to-bournemouth-uk/" target="_blank" rel="noopener">three trips</a> <a href="https://www.duckland.org/2017/06/more-travel/" target="_blank" rel="noopener">this year</a> (including one to Columbus, OH), and the one I just got back from, I think he was wrong. \*grin\*.
So, this time, I was in London for most of the two weeks, but I did get a side trip to Bournemouth to meet with the team there.  I was over there to get brought up to speed on a new project I am starting.  This one will be more project management  vs development.
Oh and of course, I took some time to take pictures.  Some are here:
<div class="foogallery foogallery-container foogallery-default foogallery-lightbox-dfactory fg-gutter-10 fg-center fg-default fg-light fg-border-thin fg-shadow-small fg-loading-default fg-loaded-fade-in fg-custom fg-hover-fade fg-hover-zoom" id="foogallery-gallery-576" data-foogallery="{&quot;item&quot;:{&quot;showCaptionTitle&quot;:true,&quot;showCaptionDescription&quot;:false},&quot;lazy&quot;:true,&quot;src&quot;:&quot;data-src-fg&quot;,&quot;srcset&quot;:&quot;data-srcset-fg&quot;}" data-fg-common-fields="1" >
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2017/09/P1000811.jpg?fit=4896%2C3672&ssl=1" data-attachment-id="575" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i0-wp-com/417140379.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2017/09/P1000808.jpg?fit=4896%2C3672&ssl=1" data-attachment-id="573" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i0-wp-com/1435146231.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/09/P1000806.jpg?fit=4896%2C3672&ssl=1" data-attachment-id="571" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/3064281213.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2017/09/IMG_2417.jpg?fit=4608%2C2592&ssl=1" data-attachment-id="569" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/1187543497.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/09/IMG_2406.jpg?fit=4608%2C2592&ssl=1" data-attachment-id="561" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/3240489602.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/09/IMG_2407.jpg?fit=4608%2C2592&ssl=1" data-attachment-id="562" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/792607006.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2017/09/IMG_2408.jpg?fit=4608%2C2592&ssl=1" data-attachment-id="563" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i0-wp-com/571104520.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2017/09/IMG_2411.jpg?fit=4608%2C2592&ssl=1" data-attachment-id="564" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/336534200.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2017/09/IMG_2413.jpg?fit=4608%2C2592&ssl=1" data-attachment-id="565" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/1212504891.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/09/IMG_2414.jpg?fit=4608%2C2592&ssl=1" data-attachment-id="566" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/3480695110.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/09/IMG_2415.jpg?fit=4608%2C2592&ssl=1" data-attachment-id="567" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/498235174.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/09/IMG_2404.jpg?fit=4608%2C2592&ssl=1" data-attachment-id="560" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/2641343233.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/09/IMG_2402.jpg?fit=4608%2C2592&ssl=1" data-attachment-id="559" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/1480137583.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/09/IMG_20170915_202129.jpg?fit=4032%2C3024&ssl=1" data-attachment-id="558" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/2032231950.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/09/IMG_20170915_175825.jpg?fit=4032%2C3024&ssl=1" data-attachment-id="557" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/4285710499.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/09/IMG_20170914_183246.jpg?fit=2592%2C1944&ssl=1" data-attachment-id="555" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/2828667738.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2017/09/IMG_20170915_175808.jpg?fit=3024%2C4032&ssl=1" data-attachment-id="556" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/879768294.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2017/09/IMG_20170914_183212-EFFECTS.jpg?fit=4032%2C3024&ssl=1" data-attachment-id="554" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/1129125015.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2017/09/IMG_20170912_193114.jpg?fit=4032%2C3024&ssl=1" data-attachment-id="553" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i0-wp-com/491617936.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2017/09/IMG_20170912_082956.jpg?fit=4032%2C3024&ssl=1" data-attachment-id="552" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/2146239375.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/09/IMG_20170911_074152.jpg?fit=3024%2C4032&ssl=1" data-attachment-id="551" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/2203588187.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2017/09/IMG_20170910_153426.jpg?fit=4032%2C3024&ssl=1" data-attachment-id="550" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i0-wp-com/289378078.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2017/09/IMG_20170909_162452.jpg?fit=4032%2C3024&ssl=1" data-attachment-id="549" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/3057109540.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2017/09/IMG_20170909_154452.jpg?fit=3024%2C4032&ssl=1" data-attachment-id="548" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i0-wp-com/3223319335.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2017/09/IMG_20170909_154313.jpg?fit=3024%2C4032&ssl=1" data-attachment-id="547" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/905758327.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/09/IMG_20170909_154120-EFFECTS-1.jpg?fit=2800%2C4032&ssl=1" data-attachment-id="546" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/1619912114.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2017/09/IMG_20170909_143431.jpg?fit=1944%2C2592&ssl=1" data-attachment-id="537" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/1119058674.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2017/09/IMG_20170909_144043.jpg?fit=4032%2C3024&ssl=1" data-attachment-id="538" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/2309467477.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2017/09/IMG_20170909_144221.jpg?fit=4032%2C3024&ssl=1" data-attachment-id="539" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/513234302.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2017/09/IMG_20170909_144449.jpg?fit=3024%2C4032&ssl=1" data-attachment-id="541" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i0-wp-com/2765374835.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/09/IMG_20170909_145733.jpg?fit=3024%2C4032&ssl=1" data-attachment-id="543" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/1924863376.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2017/09/IMG_20170909_152805.jpg?fit=4032%2C3024&ssl=1" data-attachment-id="544" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/3368163173.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2017/09/IMG_20170909_135306.jpg?fit=3024%2C4032&ssl=1" data-attachment-id="534" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i0-wp-com/2022505896.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2017/09/IMG_20170909_132620.jpg?fit=3024%2C4032&ssl=1" data-attachment-id="532" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/1812041723.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/09/IMG_20170909_131049-1.jpg?fit=4032%2C3024&ssl=1" data-attachment-id="530" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/2179881904.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2017/09/IMG_20170908_161909-1.jpg?fit=3024%2C4032&ssl=1" data-attachment-id="529" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i0-wp-com/889538029.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2017/09/P1000861.jpg?fit=4896%2C3672&ssl=1" data-attachment-id="505" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/1152576674.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2017/09/P1000850.jpg?fit=4896%2C3672&ssl=1" data-attachment-id="502" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/3935895555.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/09/IMG_20170909_131715.jpg?fit=4032%2C3024&ssl=1" data-attachment-id="521" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/1553464396.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/09/PANO_20170909_142836.jpg?fit=15360%2C2682&ssl=1" data-attachment-id="509" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/1655219238.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/09/PANO_20170914_175938.jpg?fit=4140%2C2580&ssl=1" data-attachment-id="516" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/291300924.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/09/P1000845.jpg?fit=4896%2C3672&ssl=1" data-attachment-id="500" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/647643070.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/09/IMG_20170908_161909.jpg?fit=3024%2C4032&ssl=1" data-attachment-id="512" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/3157124064.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
</div>

View file

@ -0,0 +1,67 @@
---
id: 629
title: Sunday Afternoon Photo Expirements
date: 2017-10-01T21:18:20-06:00
author: don
layout: post
guid: https://www.duckland.org/?p=629
permalink: /2017/10/sunday-afternoon-photo-expirements/
image: 'https://i0.wp.com/www.duckland.org/wp-content/uploads/2017/10/PA010420-e1506910246292.jpg?fit=1200%2C1600&ssl=1'
categories:
- Photos
---
<div class="foogallery foogallery-container foogallery-default foogallery-lightbox-dfactory fg-gutter-10 fg-center fg-default fg-light fg-border-thin fg-shadow-small fg-loading-default fg-loaded-fade-in fg-custom fg-hover-fade fg-hover-zoom" id="foogallery-gallery-628" data-foogallery="{&quot;item&quot;:{&quot;showCaptionTitle&quot;:true,&quot;showCaptionDescription&quot;:false},&quot;lazy&quot;:true,&quot;src&quot;:&quot;data-src-fg&quot;,&quot;srcset&quot;:&quot;data-srcset-fg&quot;}" data-fg-common-fields="1" >
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/10/PA010422-1.jpg?fit=4608%2C3456&ssl=1" data-caption-title="Wild Onion" data-attachment-id="627" data-rel="lightbox" title="Wild Onion" class="fg-thumb"><span class="fg-image-wrap"><img alt="Wild Onion" title="Wild Onion" width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/4051988093.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
Wild Onion
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2017/10/PA010420-e1506910246292.jpg?fit=3456%2C4608&ssl=1" data-caption-title="Gnome BW" data-attachment-id="626" data-rel="lightbox" title="Gnome BW" class="fg-thumb"><span class="fg-image-wrap"><img alt="Gnome BW" title="Gnome BW" width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i0-wp-com/3331564634.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
Gnome BW
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/10/PA010426.jpg?fit=4608%2C3456&ssl=1" data-caption-title="Old Rose BW" data-attachment-id="624" data-rel="lightbox" title="Old Rose BW" class="fg-thumb"><span class="fg-image-wrap"><img alt="Old Rose BW" title="Old Rose BW" width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/3524520139.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
Old Rose BW
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/10/PA010434.jpg?fit=4608%2C3456&ssl=1" data-caption-title="BW Flowers" data-attachment-id="623" data-rel="lightbox" title="BW Flowers" class="fg-thumb"><span class="fg-image-wrap"><img alt="BW Flowers" title="BW Flowers" width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/3695258383.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
BW Flowers
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
</div>
Had some spare time this afternoon, so I was playing with my <a href="https://www.duckland.org/2014/06/rewards-for-hard-travel/" target="_blank" rel="noopener">Olympus OMD E-M5</a>. I liked how a few turned out.

View file

@ -0,0 +1,24 @@
---
id: 636
title: Really moving in on the Chromebook
date: 2017-11-13T00:03:15-06:00
author: don
layout: post
guid: https://www.duckland.org/?p=636
permalink: /2017/11/really-moving-in-on-the-chromebook/
categories:
- Chrome OS
---
As I <a href="https://www.duckland.org/2017/08/welcome-to-the-new-look/" target="_blank" rel="noopener">mentioned a while back</a> that I was experimenting with using a Chromebook, I decide to see how far I could take it.  On <a href="https://www.duckland.org/2017/09/back-from-london-again/" target="_blank" rel="noopener">my recent trip to the UK</a>, I only took my Acer C720 with me.  During the trip, I used it for things like uploading photos I took, Skype to chat with the family, checking email and news, and remote access while in the hotel room.
This worked out pretty well, to the point where I am trying to use it or my HP Chromebook 11 G1 full time.  While I can get lots of things done in a browser now days, there are some things I find my self sshing back to another box to do.  So, I decided to see if I could do that on the Chromebooks.
The &#8216;normal&#8217; way is to install Linux into a chroot using something call <a href="https://www.linux.com/learn/how-easily-install-ubuntu-chromebook-crouton" target="_blank" rel="noopener">Courton. </a>I have done that in the past, but the work flow is not something I can adapt to easily as it involves more than a simple key combo to switch between.
I found a project called &#8220;<a href="https://github.com/skycocker/chromebrew" target="_blank" rel="noopener">Chromebrew</a>&#8221; in the vein of &#8220;Homebrew&#8221; for MacOS.  Setup is pretty simple as I had turned on Developers mode on my boxes a long time ago, so it was a matter of downloading a script, reading it, and then running it.
From there, I used the **crew** command to install some basic tools (git, vim, & python), and I can now do 90% or more of my day-to-day work on the Chromebooks.
The only thing that I have not figured out yet is a decent VPN solution, but I am working on that.
I suppose at some point, I will upgrade one of the Chromebooks to one of the newer generation which can run Android apps as well.

View file

@ -0,0 +1,69 @@
---
id: 693
title: 'D&#038;D Game Night'
date: 2017-12-31T00:59:05-06:00
author: don
layout: post
guid: https://www.duckland.org/?p=693
permalink: /2017/12/dd-game-night/
categories:
- Family
- Photos
---
A while back, the kids found out about D&D.  So, we started a campaign.  We do quests whenever we get the time and energy, but not on a regular cadence.
Tonight, I was playing with my camera whilst playing the game, and here are the results:
<div class="foogallery foogallery-container foogallery-default foogallery-lightbox-dfactory fg-gutter-10 fg-center fg-default fg-light fg-border-thin fg-shadow-outline fg-loading-default fg-loaded-fade-in fg-custom fg-caption-hover fg-hover-fade fg-hover-zoom" id="foogallery-gallery-682" data-foogallery="{&quot;item&quot;:{&quot;showCaptionTitle&quot;:true,&quot;showCaptionDescription&quot;:true},&quot;lazy&quot;:true,&quot;src&quot;:&quot;data-src-fg&quot;,&quot;srcset&quot;:&quot;data-srcset-fg&quot;}" data-fg-common-fields="1" >
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/12/P1000966-1-e1514699562527.jpg?fit=3672%2C4896&ssl=1" data-attachment-id="685" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/3239904522.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2017/12/P1000968.jpg?fit=4896%2C3672&ssl=1" data-attachment-id="684" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/226754485.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/12/P1000971-1.jpg?fit=4896%2C3672&ssl=1" data-attachment-id="687" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/473005215.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2017/12/P1000969-1.jpg?fit=4896%2C3672&ssl=1" data-attachment-id="690" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/2302075255.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2017/12/P1000976-1.jpg?fit=4896%2C3672&ssl=1" data-attachment-id="691" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i0-wp-com/4116016040.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
</div>
&nbsp;

View file

@ -0,0 +1,22 @@
---
id: 640
title: On Smartphones and Two-Factor Auth
date: 2017-12-19T10:40:28-06:00
author: don
layout: post
guid: https://www.duckland.org/?p=640
permalink: /2017/12/on-smartphones-and-two-factor-auth/
categories:
- Hardware
- SA
- Security
---
So, my trusty Nexus 5X gave up the ghost suddenly on me.  Given that it is an Android device, I was not worried about losing things like my contacts and photos, or even my apps as Google does a pretty decent job backing those things up.
However, there was one application I use which does not get its data backed up. FreeOTP which is a One-Time-Password application for Two Factor Auth.  This allows me to have another layer of protection on web sites past my password.
Most sites which have this option will allow you to either have a list of one-time use codes to get in to reset in case something happens to your phone (like me), or will let you set it up on multiple devices, like your phone and your tablet.
Then, there are those that do niether.  And those are a pain to recover from. 🙂
Always get the list of codes (if avalible) and store then somewhere that you can access if your phone ever dies or gets lost.  And, try to set up a second device if you can.

View file

@ -0,0 +1,47 @@
---
id: 646
title: 'Snow Day! In Houston!'
date: 2017-12-20T00:34:02-06:00
author: don
layout: post
guid: https://www.duckland.org/?p=646
permalink: /2017/12/snow-day-in-houston/
categories:
- Photos
- Weather
---
Forgot to mention, that back on December 8th, we had a snow day in Houston.  It was pretty different for us, as we normally do not get any snow, let alone any accumulation of it.
Of course, I took some pictures.
<div class="foogallery foogallery-container foogallery-default foogallery-lightbox-dfactory fg-gutter-10 fg-center fg-default fg-dark fg-border-thin fg-shadow-outline fg-loading-default fg-loaded-fade-in fg-custom fg-caption-hover fg-hover-fade fg-hover-zoom" id="foogallery-gallery-642" data-foogallery="{&quot;item&quot;:{&quot;showCaptionTitle&quot;:true,&quot;showCaptionDescription&quot;:true},&quot;lazy&quot;:true,&quot;src&quot;:&quot;data-src-fg&quot;,&quot;srcset&quot;:&quot;data-srcset-fg&quot;}" data-fg-common-fields="1" >
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2017/12/20171208_055110.jpg?fit=4640%2C3480&ssl=1" data-attachment-id="643" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/3709181343.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2017/12/20171208_055051.jpg?fit=4640%2C3480&ssl=1" data-attachment-id="644" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i0-wp-com/1409514676.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2017/12/20171208_054945.jpg?fit=4640%2C3480&ssl=1" data-attachment-id="645" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/1075002719.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
</div>

View file

@ -0,0 +1,106 @@
---
id: 678
title: 'Trip to the Park in B&#038;W'
date: 2017-12-26T00:12:50-06:00
author: don
layout: post
guid: https://www.duckland.org/?p=678
permalink: /2017/12/trip-to-the-park-in-bw/
categories:
- Photos
---
Mainly B&W, and mainly from the park. 🙂
&nbsp;
<div class="foogallery foogallery-container foogallery-default foogallery-lightbox-dfactory fg-gutter-10 fg-center fg-default fg-light fg-border-thin fg-shadow-outline fg-loading-default fg-loaded-fade-in fg-custom fg-caption-hover fg-hover-fade fg-hover-zoom" id="foogallery-gallery-660" data-foogallery="{&quot;item&quot;:{&quot;showCaptionTitle&quot;:true,&quot;showCaptionDescription&quot;:true},&quot;lazy&quot;:true,&quot;src&quot;:&quot;data-src-fg&quot;,&quot;srcset&quot;:&quot;data-srcset-fg&quot;}" data-fg-common-fields="1" >
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/12/P1000950.jpg?fit=4896%2C3672&ssl=1" data-attachment-id="664" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="200" height="200" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/3731080726.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/12/P1000949.jpg?fit=4896%2C3672&ssl=1" data-attachment-id="665" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="200" height="200" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/3359149952.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2017/12/P1000948.jpg?fit=4896%2C3672&ssl=1" data-attachment-id="666" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="200" height="200" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/2305158266.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2017/12/P1000947-e1514264950604.jpg?fit=3672%2C4896&ssl=1" data-attachment-id="667" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="200" height="200" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/2603913616.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/12/P1000943.jpg?fit=4896%2C3672&ssl=1" data-attachment-id="669" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="200" height="200" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/3544170304.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2017/12/20171224_150856-1-e1514264919364.jpg?fit=3480%2C4640&ssl=1" data-attachment-id="670" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="200" height="200" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/3067238668.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2017/12/P1000956-1.jpg?fit=4896%2C3672&ssl=1" data-attachment-id="672" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="200" height="200" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i0-wp-com/671699944.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2017/12/P1000961-2.jpg?fit=4896%2C3672&ssl=1" data-attachment-id="675" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="200" height="200" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/3965620727.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2017/12/P1000944-1.jpg?fit=4896%2C3672&ssl=1" data-attachment-id="676" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="200" height="200" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/163510055.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
</div>

View file

@ -0,0 +1,18 @@
---
id: 700
title: A month in, using ChromeOS only
date: 2018-01-25T09:58:59-06:00
author: don
layout: post
guid: https://www.duckland.org/?p=700
permalink: /2018/01/a-month-in-using-chromeos-only/
categories:
- PixelBook
---
As I pointed out <a href="https://www.duckland.org/2017/11/really-moving-in-on-the-chromebook/" target="_blank" rel="noopener">a while back </a>that I was moving to ChromeOS more seriously.  Well, since Christmas day, I have parked my R810 to the side, and installed Chromium OS on my Lenovo X260 and started using it full time.  What is Chromium OS?  It is the open source version of ChromeOS.
So far, everything has been working great.  The only thing that has not worked for me is DRM protected video stream, things like Netflix, Hulu, or Amazon Video.  Not a major lost, but I missed it on a recent trip.
The other major issue I have run into is photo processing and management.  Under ChromeOS, there is not many options for this, only pure web-based solutions like Google Photos.  There are some pretty decent solutions in the Android world.  How does this help me?  Well, the newer version of ChromeOS running on newer Chromebooks can run Android apps.
Sadly, my Acer C720 and HP Chrombook 11 G1 are both too old to get the Android solutions.  Additionally, both systems are starting showing their age in running modern web apps.  So, my solution?  I am buying a Google Pixelbook.  I opted for the smaller of the versions which should have more than enough horsepower for me to run for many years.  It arrives today, so I will be having some fun setting it up.

View file

@ -0,0 +1,22 @@
---
id: 704
title: February, Already?
date: 2018-02-18T21:51:47-06:00
author: don
layout: post
guid: https://www.duckland.org/?p=704
permalink: /2018/02/february-already/
categories:
- Photos
- PixelBook
---
<figure id="attachment_705" aria-describedby="caption-attachment-705" style="width: 225px" class="wp-caption alignnone"><img data-attachment-id="705" data-permalink="https://www.duckland.org/export/" data-orig-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/02/export.gif?fit=360%2C480&ssl=1" data-orig-size="360,480" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="AR test" data-image-description="<p>Testing AR &#8216;stickers&#8217;</p>
" data-medium-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/02/export.gif?fit=225%2C300&ssl=1" data-large-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/02/export.gif?fit=360%2C480&ssl=1" class="size-medium wp-image-705" src="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/02/export.gif?resize=225%2C300&#038;ssl=1" alt="AR Test" width="225" height="300" data-recalc-dims="1" /><figcaption id="caption-attachment-705" class="wp-caption-text">AR Test</figcaption></figure>
I am shocked to look at the calendar, and realize that February is almost over.
Where to begin?  Well, the <a href="https://www.duckland.org/2018/01/a-month-in-using-chromeos-only/" target="_blank" rel="noopener">test with ChromeOS</a> is going well.  I have found that I need the access to my <a href="https://www.duckland.org/category/hardware/r810/" target="_blank" rel="noopener">R810</a> less and less as I move things over to the <a href="https://www.duckland.org/category/os/chromeos/pixelbook/" target="_blank" rel="noopener">Pixelbook</a>.  I have even found myself doing some light python coding on it.  The flexibility and the speed is very nice.  I have also been enjoying one of the major benefits of the Chromebook life style: major battery life.  I can take my Pixel out of the bag when I get to the office and not plug it in all day, and still have a couple of hours of juice left over when I get home.
On of the things that I am still not totally sure about is doing my photo workflow.  I have been doing some reading, and finding a few tools to play with.  To that end, I am going to set myself a challenge of taking, processing, and posting a photo at least once a week.  As I get more comfortable, I might even move that up to many a week.  It will be good to get back into that as I have done <a href="https://p365.donaldharper.com/" target="_blank" rel="noopener">that in the past</a>, but I did [fail the last time I tried daily](https://p365.donaldharper.com/posts/061-end-of-the-road/).
The photo above is from my playing around with &#8216;Augmented Reality&#8217; which is all the fade now days with &#8216;virtual stickers&#8217; you can insert into photos.

View file

@ -0,0 +1,14 @@
---
id: 803
title: Site links updated
date: 2018-02-26T16:53:35-06:00
author: don
layout: post
guid: https://www.duckland.org/?p=803
permalink: /2018/02/site-links-updated/
categories:
- Site News
---
I had some time over the weekend, so I went through and cleaned up the links from the older posts as <a href="https://www.duckland.org/2017/08/welcome-to-the-new-look/" target="_blank" rel="noopener">promised a while back</a>.  Amazingly, only <a href="https://www.duckland.org/2008/08/pizza-party-command-line-pizza-ordering-program/" target="_blank" rel="noopener">one</a> of the links is gone without a replacement.
The good thing was most of the updates where to change the URL from http:// to https://, which I think is a good thing.

View file

@ -0,0 +1,12 @@
---
id: 708
title: Sunset Over Road
date: 2018-02-21T09:09:16-06:00
author: don
layout: post
guid: https://www.duckland.org/?p=708
permalink: /2018/02/sunsetoverroad/
categories:
- Photos
---
<figure id="attachment_710" aria-describedby="caption-attachment-710" style="width: 636px" class="wp-caption alignnone"><img data-attachment-id="710" data-permalink="https://www.duckland.org/lrm_export_20180221_085812/" data-orig-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/02/LRM_EXPORT_20180221_085812.jpg?fit=4896%2C3672&ssl=1" data-orig-size="4896,3672" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;3.3&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;DMC-ZS40&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1518998885&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;4.3&quot;,&quot;iso&quot;:&quot;100&quot;,&quot;shutter_speed&quot;:&quot;0.0015625&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Sunset Over Road" data-image-description="" data-medium-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/02/LRM_EXPORT_20180221_085812.jpg?fit=300%2C225&ssl=1" data-large-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/02/LRM_EXPORT_20180221_085812.jpg?fit=840%2C630&ssl=1" class="wp-image-710 size-large" src="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/02/LRM_EXPORT_20180221_085812.jpg?resize=636%2C477&#038;ssl=1" alt="Sunset Over Road" width="636" height="477" srcset="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/02/LRM_EXPORT_20180221_085812.jpg?resize=1024%2C768&ssl=1 1024w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/02/LRM_EXPORT_20180221_085812.jpg?resize=300%2C225&ssl=1 300w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/02/LRM_EXPORT_20180221_085812.jpg?resize=768%2C576&ssl=1 768w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/02/LRM_EXPORT_20180221_085812.jpg?w=1680&ssl=1 1680w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/02/LRM_EXPORT_20180221_085812.jpg?w=2520&ssl=1 2520w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 984px) 61vw, (max-width: 1362px) 45vw, 600px" data-recalc-dims="1" /><figcaption id="caption-attachment-710" class="wp-caption-text">Sunset Over Road</figcaption></figure>

View file

@ -0,0 +1,24 @@
---
id: 861
title: '#NeverAgain'
date: 2018-03-25T22:34:40-06:00
author: don
layout: post
guid: https://www.duckland.org/?p=861
permalink: /2018/03/neveragain/
categories:
- Family
- Photos
- Protests
---
<img data-attachment-id="859" data-permalink="https://www.duckland.org/p1010118/" data-orig-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/03/P1010118.jpg?fit=4896%2C3672&ssl=1" data-orig-size="4896,3672" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;5.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;DMC-ZS40&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1521883800&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;44.8&quot;,&quot;iso&quot;:&quot;200&quot;,&quot;shutter_speed&quot;:&quot;0.0125&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="March For Our Lives" data-image-description="" data-medium-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/03/P1010118.jpg?fit=300%2C225&ssl=1" data-large-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/03/P1010118.jpg?fit=840%2C630&ssl=1" class="size-medium wp-image-859 aligncenter" src="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/03/P1010118.jpg?resize=300%2C225&#038;ssl=1" alt="March For Our Lives" width="300" height="225" srcset="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/03/P1010118.jpg?resize=300%2C225&ssl=1 300w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/03/P1010118.jpg?resize=768%2C576&ssl=1 768w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/03/P1010118.jpg?resize=1024%2C768&ssl=1 1024w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/03/P1010118.jpg?w=1680&ssl=1 1680w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/03/P1010118.jpg?w=2520&ssl=1 2520w" sizes="(max-width: 300px) 85vw, 300px" data-recalc-dims="1" />
&nbsp;
The numbers are unbelievable.  As I write this, we are 12 weeks into 2018, and <a href="https://www.cnn.com/2018/03/02/us/school-shootings-2018-list-trnd/index.html" target="_blank" rel="noopener">there have been 17 school shootings in the US where someone was injured or killed</a>.  1.4 per week.  And, if you look outside of schools, there have been to date <a href="http://www.gunviolencearchive.org/mass-shooting" target="_blank" rel="noopener">50 mass shootings</a> where 4 or more people were injured or killed, not counting the shooter.  50 since January 1, 2018.
Never Again.
I plan to talk to my US and Texas Representatives and Senators about the issue.  Yesterday, I went with my two oldest to the March For Our Lives protest in Houston.  I am proud to say, it was my kids who wanted to go.
Naturally, I took my camera and tried to capture the spirit of the event with photos of the signs and a couple of videos.  They are posted in <a href="https://www.duckland.org/photos/Protests/2018-03-March-For-Our-Lives/" target="_blank" rel="noopener">the photos section</a>.

View file

@ -0,0 +1,166 @@
---
id: 1048
title: April Showers Bring Spring Flowers
date: 2018-04-04T08:07:05-06:00
author: don
layout: post
guid: http://www2.duckland.org/?p=1048
permalink: /2018/04/april-showers-bring-spring-flowers/
categories:
- Photos
---
We spent the last weekend in the Texas Hill Country, and I got a chance to wander a bit with the small camera.  Still learning its limits and strengths.
I did get some images I think I like.
<div class="foogallery foogallery-container foogallery-default foogallery-lightbox-dfactory fg-gutter-10 fg-center fg-default fg-light fg-border-thin fg-shadow-outline fg-loading-default fg-loaded-fade-in fg-custom fg-caption-hover fg-hover-fade fg-hover-zoom" id="foogallery-gallery-1047" data-foogallery="{&quot;item&quot;:{&quot;showCaptionTitle&quot;:true,&quot;showCaptionDescription&quot;:true},&quot;lazy&quot;:true,&quot;src&quot;:&quot;data-src-fg&quot;,&quot;srcset&quot;:&quot;data-srcset-fg&quot;}" data-fg-common-fields="1" >
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/04/P1010335-e1522850363185.jpg?fit=3672%2C4896&ssl=1" data-attachment-id="1044" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/751070682.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/04/P1010321-1.jpg?fit=4896%2C3672&ssl=1" data-attachment-id="1038" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/35293604.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/04/P1010171.jpg?fit=4896%2C3672&ssl=1" data-attachment-id="1032" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/140853447.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/04/P1010334-e1522850381750.jpg?fit=3672%2C4896&ssl=1" data-attachment-id="1030" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/630061587.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/04/P1010333-e1522850397320.jpg?fit=3672%2C4896&ssl=1" data-attachment-id="1029" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/2328093560.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/04/P1010330.jpg?fit=4896%2C3672&ssl=1" data-attachment-id="1027" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i0-wp-com/74389723.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/04/P1010329.jpg?fit=3672%2C4896&ssl=1" data-attachment-id="1026" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/2621151146.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/04/P1010321.jpg?fit=4896%2C3672&ssl=1" data-attachment-id="1025" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i0-wp-com/1804168380.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/04/P1010320.jpg?fit=4896%2C3672&ssl=1" data-attachment-id="1024" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/2550482013.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/04/P1010314.jpg?fit=4896%2C3672&ssl=1" data-attachment-id="882" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/2202351125.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/04/P1010266.jpg?fit=4896%2C3672&ssl=1" data-attachment-id="879" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/1919348754.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/04/P1010242.jpg?fit=4896%2C3672&ssl=1" data-attachment-id="877" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/3455734188.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/04/P1010336-e1522850445141.jpg?fit=3672%2C4896&ssl=1" data-attachment-id="874" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/2394882814.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/04/P1010186.jpg?fit=4896%2C3672&ssl=1" data-attachment-id="872" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i0-wp-com/1741443181.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/04/P1010337-e1522850477823.jpg?fit=3672%2C4896&ssl=1" data-attachment-id="871" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/3926157354.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
</div>

View file

@ -0,0 +1,17 @@
---
id: 1078
title: Move along, little web site
date: 2018-04-16T21:30:29-06:00
author: don
layout: post
guid: https://www.duckland.org/?p=1078
permalink: /2018/04/move-along-little-web-site/
categories:
- SA
- Site News
---
So, I decided that I did not like the performance of the site where I was hosting it, so I went over to <a href="https://m.do.co/c/5ad05843bb00" target="_blank" rel="noopener">Digital Ocean</a> (referral link).
The process was pretty easy.  I used the native tools to back up the old site, then after using the &#8216;one-click install&#8217; process over at DO, I used the import function to import the backup.  As an added bonus, the pictures and everything imported as well.   After a few checks, I updated DNS, and bam! Running on new host with better performance.  Easy-peasy.
Also, I have turned off any integration with Facebook as I feel that they have not been good stewards of the data they collect.

14
posts/2018/05/a-tease.md Normal file
View file

@ -0,0 +1,14 @@
---
id: 1397
title: A tease
date: 2018-05-03T16:35:50-06:00
author: don
layout: post
guid: https://www.duckland.org/?p=1397
permalink: /2018/05/a-tease/
categories:
- Photos
---
A little teaser.&nbsp; I have something new coming, but I am too busy right now, so here is a quick tease:<figure id="attachment_1398" aria-describedby="caption-attachment-1398" style="width: 840px" class="wp-caption alignnone">
<img data-attachment-id="1398" data-permalink="https://www.duckland.org/2018/05/a-tease/olympus-digital-camera-5/" data-orig-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/05/P5010022.jpg?fit=4608%2C3456&ssl=1" data-orig-size="4608,3456" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;E-M5&quot;,&quot;caption&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;created_timestamp&quot;:&quot;1525179554&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;200&quot;,&quot;shutter_speed&quot;:&quot;0.004&quot;,&quot;title&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="Beach View" data-image-description="" data-medium-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/05/P5010022.jpg?fit=300%2C225&ssl=1" data-large-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/05/P5010022.jpg?fit=840%2C630&ssl=1" class="wp-image-1398 size-large" src="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/05/P5010022.jpg?resize=840%2C630&#038;ssl=1" alt="Beach View" width="840" height="630" srcset="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/05/P5010022.jpg?resize=1024%2C768&ssl=1 1024w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/05/P5010022.jpg?resize=300%2C225&ssl=1 300w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/05/P5010022.jpg?resize=768%2C576&ssl=1 768w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/05/P5010022.jpg?resize=1200%2C900&ssl=1 1200w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/05/P5010022.jpg?w=1680&ssl=1 1680w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/05/P5010022.jpg?w=2520&ssl=1 2520w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 1362px) 62vw, 840px" data-recalc-dims="1" /> <figcaption id="caption-attachment-1398" class="wp-caption-text">Beach View</figcaption></figure>

View file

@ -0,0 +1,325 @@
---
id: 1440
title: Another Trip to the UK
date: 2018-05-21T09:37:25-06:00
author: don
layout: post
guid: https://www.duckland.org/?p=1440
permalink: /2018/05/another-trip-to-the-uk/
categories:
- Photos
- Travel
- Work
---
<img data-attachment-id="1438" data-permalink="https://www.duckland.org/?attachment_id=1438" data-orig-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/05/00100dPORTRAIT_00100_BURST20180521093915637_COVER-e1526916430664.jpg?fit=2328%2C2681&ssl=1" data-orig-size="2328,2681" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;1.8&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Pixel 2&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1526895555&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;4.442&quot;,&quot;iso&quot;:&quot;214&quot;,&quot;shutter_speed&quot;:&quot;0.008335&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="00100dPORTRAIT_00100_BURST20180521093915637_COVER" data-image-description="" data-medium-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/05/00100dPORTRAIT_00100_BURST20180521093915637_COVER-e1526916430664.jpg?fit=260%2C300&ssl=1" data-large-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/05/00100dPORTRAIT_00100_BURST20180521093915637_COVER-e1526916430664.jpg?fit=840%2C968&ssl=1" class="alignnone wp-image-1438 size-medium" src="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/05/00100dPORTRAIT_00100_BURST20180521093915637_COVER-e1526916430664-260x300.jpg?resize=260%2C300&#038;ssl=1" alt="" width="260" height="300" srcset="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/05/00100dPORTRAIT_00100_BURST20180521093915637_COVER-e1526916430664.jpg?resize=260%2C300&ssl=1 260w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/05/00100dPORTRAIT_00100_BURST20180521093915637_COVER-e1526916430664.jpg?resize=768%2C884&ssl=1 768w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/05/00100dPORTRAIT_00100_BURST20180521093915637_COVER-e1526916430664.jpg?resize=889%2C1024&ssl=1 889w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/05/00100dPORTRAIT_00100_BURST20180521093915637_COVER-e1526916430664.jpg?resize=1200%2C1382&ssl=1 1200w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/05/00100dPORTRAIT_00100_BURST20180521093915637_COVER-e1526916430664.jpg?w=1680&ssl=1 1680w" sizes="(max-width: 260px) 85vw, 260px" data-recalc-dims="1" />
As I <a href="https://www.duckland.org/2018/05/a-tease/" target="_blank" rel="noopener">teased before</a>, I was back in the UK for some meetings.&nbsp; The original plan got all sideways when my main person I was meeting with left for paternity leave just before I got over there.&nbsp; No worries, as I was able to use the time to meet with others and get some good work done.
This time, I brought my <a href="https://www.duckland.org/2014/06/rewards-for-hard-travel/" target="_blank" rel="noopener">main camera</a> over with me, and spent some of the downtime taking pictures, mainly in Bournemouth, as I was only in London for the Monday, and was in meetings all day.
Anyway, here are some of the pictures I took.&nbsp; Enjoy!
<div class="foogallery foogallery-container foogallery-default foogallery-lightbox-dfactory fg-gutter-10 fg-center fg-default fg-dark fg-border-thin fg-shadow-outline fg-loading-default fg-loaded-fade-in fg-custom fg-caption-hover fg-hover-fade fg-hover-zoom" id="foogallery-gallery-1424" data-foogallery="{&quot;item&quot;:{&quot;showCaptionTitle&quot;:true,&quot;showCaptionDescription&quot;:true},&quot;lazy&quot;:true,&quot;src&quot;:&quot;data-src-fg&quot;,&quot;srcset&quot;:&quot;data-srcset-fg&quot;}" data-fg-common-fields="1" >
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/05/IMG_20180428_162513.jpg?fit=3787%2C2840&ssl=1" data-caption-title="Maker:S,Date:2017-1-30,Ver:6,Lens:Kan03,Act:Lar02,E-Y" data-attachment-id="1411" data-rel="lightbox" title="Maker:S,Date:2017-1-30,Ver:6,Lens:Kan03,Act:Lar02,E-Y" class="fg-thumb"><span class="fg-image-wrap"><img title="Maker:S,Date:2017-1-30,Ver:6,Lens:Kan03,Act:Lar02,E-Y" width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/3201899890.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
Maker:S,Date:2017-1-30,Ver:6,Lens:Kan03,Act:Lar02,E-Y
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/05/hdr_00011_0.jpg?fit=3958%2C2968&ssl=1" data-attachment-id="1410" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/2298821231.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/05/IMG_20180429_190435-EFFECTS.jpg?fit=4032%2C3024&ssl=1" data-attachment-id="1412" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i0-wp-com/3012252047.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/05/P4290002.jpg?fit=3456%2C4608&ssl=1" data-caption-title="OLYMPUS DIGITAL CAMERA" data-attachment-id="1422" data-rel="lightbox" title="OLYMPUS DIGITAL CAMERA" class="fg-thumb"><span class="fg-image-wrap"><img title="OLYMPUS DIGITAL CAMERA" width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/843717321.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
OLYMPUS DIGITAL CAMERA
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/05/IMG_20180429_093140.jpg?fit=4032%2C3024&ssl=1" data-caption-title="Maker:S,Date:2017-1-30,Ver:6,Lens:Kan03,Act:Lar02,E-Y" data-attachment-id="1421" data-rel="lightbox" title="Maker:S,Date:2017-1-30,Ver:6,Lens:Kan03,Act:Lar02,E-Y" class="fg-thumb"><span class="fg-image-wrap"><img title="Maker:S,Date:2017-1-30,Ver:6,Lens:Kan03,Act:Lar02,E-Y" width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/3968966512.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
Maker:S,Date:2017-1-30,Ver:6,Lens:Kan03,Act:Lar02,E-Y
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/05/IMG_20180429_092830.jpg?fit=4032%2C3024&ssl=1" data-caption-title="Maker:S,Date:2017-1-30,Ver:6,Lens:Kan03,Act:Lar02,E-Y" data-attachment-id="1420" data-rel="lightbox" title="Maker:S,Date:2017-1-30,Ver:6,Lens:Kan03,Act:Lar02,E-Y" class="fg-thumb"><span class="fg-image-wrap"><img title="Maker:S,Date:2017-1-30,Ver:6,Lens:Kan03,Act:Lar02,E-Y" width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i0-wp-com/691886426.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
Maker:S,Date:2017-1-30,Ver:6,Lens:Kan03,Act:Lar02,E-Y
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/05/P5020045.jpg?fit=4608%2C3456&ssl=1" data-caption-title="OLYMPUS DIGITAL CAMERA" data-attachment-id="1436" data-rel="lightbox" title="OLYMPUS DIGITAL CAMERA" class="fg-thumb"><span class="fg-image-wrap"><img title="OLYMPUS DIGITAL CAMERA" width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/3766217541.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
OLYMPUS DIGITAL CAMERA
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/05/IMG_20180502_183019.jpg?fit=3024%2C4032&ssl=1" data-caption-title="Maker:S,Date:2017-1-30,Ver:6,Lens:Kan03,Act:Lar02,E-Y" data-attachment-id="1419" data-rel="lightbox" title="Maker:S,Date:2017-1-30,Ver:6,Lens:Kan03,Act:Lar02,E-Y" class="fg-thumb"><span class="fg-image-wrap"><img title="Maker:S,Date:2017-1-30,Ver:6,Lens:Kan03,Act:Lar02,E-Y" width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/2370441107.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
Maker:S,Date:2017-1-30,Ver:6,Lens:Kan03,Act:Lar02,E-Y
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/05/P5020052.jpg?fit=4608%2C3456&ssl=1" data-caption-title="OLYMPUS DIGITAL CAMERA" data-attachment-id="1437" data-rel="lightbox" title="OLYMPUS DIGITAL CAMERA" class="fg-thumb"><span class="fg-image-wrap"><img title="OLYMPUS DIGITAL CAMERA" width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i0-wp-com/3269713504.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
OLYMPUS DIGITAL CAMERA
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/05/IMG_20180502_202243.jpg?fit=3024%2C4032&ssl=1" data-caption-title="Maker:S,Date:2017-1-30,Ver:6,Lens:Kan03,Act:Lar02,E-Y" data-attachment-id="1423" data-rel="lightbox" title="Maker:S,Date:2017-1-30,Ver:6,Lens:Kan03,Act:Lar02,E-Y" class="fg-thumb"><span class="fg-image-wrap"><img title="Maker:S,Date:2017-1-30,Ver:6,Lens:Kan03,Act:Lar02,E-Y" width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/529493093.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
Maker:S,Date:2017-1-30,Ver:6,Lens:Kan03,Act:Lar02,E-Y
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/05/P5010004.jpg?fit=4608%2C3456&ssl=1" data-caption-title="OLYMPUS DIGITAL CAMERA" data-attachment-id="1413" data-rel="lightbox" title="OLYMPUS DIGITAL CAMERA" class="fg-thumb"><span class="fg-image-wrap"><img title="OLYMPUS DIGITAL CAMERA" width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i0-wp-com/2711284383.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
OLYMPUS DIGITAL CAMERA
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/05/P5010011.jpg?fit=4608%2C3456&ssl=1" data-caption-title="OLYMPUS DIGITAL CAMERA" data-attachment-id="1430" data-rel="lightbox" title="OLYMPUS DIGITAL CAMERA" class="fg-thumb"><span class="fg-image-wrap"><img title="OLYMPUS DIGITAL CAMERA" width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/4048977385.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
OLYMPUS DIGITAL CAMERA
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/05/IMG_20180501_073947-EFFECTS.jpg?fit=4032%2C3024&ssl=1" data-attachment-id="1435" data-rel="lightbox" class="fg-thumb"><span class="fg-image-wrap"><img width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/140814178.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/05/P5010040.jpg?fit=4608%2C3456&ssl=1" data-caption-title="OLYMPUS DIGITAL CAMERA" data-attachment-id="1418" data-rel="lightbox" title="OLYMPUS DIGITAL CAMERA" class="fg-thumb"><span class="fg-image-wrap"><img title="OLYMPUS DIGITAL CAMERA" width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i0-wp-com/727641509.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
OLYMPUS DIGITAL CAMERA
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/05/P5010038.jpg?fit=4608%2C3456&ssl=1" data-caption-title="OLYMPUS DIGITAL CAMERA" data-attachment-id="1417" data-rel="lightbox" title="OLYMPUS DIGITAL CAMERA" class="fg-thumb"><span class="fg-image-wrap"><img title="OLYMPUS DIGITAL CAMERA" width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/3067884644.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
OLYMPUS DIGITAL CAMERA
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/05/P5010037.jpg?fit=4608%2C3456&ssl=1" data-caption-title="OLYMPUS DIGITAL CAMERA" data-attachment-id="1416" data-rel="lightbox" title="OLYMPUS DIGITAL CAMERA" class="fg-thumb"><span class="fg-image-wrap"><img title="OLYMPUS DIGITAL CAMERA" width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/2594258675.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
OLYMPUS DIGITAL CAMERA
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/05/P5010029.jpg?fit=4608%2C3456&ssl=1" data-caption-title="OLYMPUS DIGITAL CAMERA" data-attachment-id="1415" data-rel="lightbox" title="OLYMPUS DIGITAL CAMERA" class="fg-thumb"><span class="fg-image-wrap"><img title="OLYMPUS DIGITAL CAMERA" width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i0-wp-com/323055687.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
OLYMPUS DIGITAL CAMERA
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/05/P5010022-1.jpg?fit=4608%2C3456&ssl=1" data-caption-title="OLYMPUS DIGITAL CAMERA" data-attachment-id="1414" data-rel="lightbox" title="OLYMPUS DIGITAL CAMERA" class="fg-thumb"><span class="fg-image-wrap"><img title="OLYMPUS DIGITAL CAMERA" width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/559274432.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
OLYMPUS DIGITAL CAMERA
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/05/P5010022.jpg?fit=4608%2C3456&ssl=1" data-caption-title="Beach View" data-attachment-id="1398" data-rel="lightbox" title="Beach View" class="fg-thumb"><span class="fg-image-wrap"><img alt="Beach View" title="Beach View" width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i0-wp-com/2260556787.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
Beach View
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/05/IMG_20180430_193229.jpg?fit=4032%2C3024&ssl=1" data-caption-title="Maker:S,Date:2017-1-30,Ver:6,Lens:Kan03,Act:Lar02,E-Y" data-attachment-id="1431" data-rel="lightbox" title="Maker:S,Date:2017-1-30,Ver:6,Lens:Kan03,Act:Lar02,E-Y" class="fg-thumb"><span class="fg-image-wrap"><img title="Maker:S,Date:2017-1-30,Ver:6,Lens:Kan03,Act:Lar02,E-Y" width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/1998132428.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
Maker:S,Date:2017-1-30,Ver:6,Lens:Kan03,Act:Lar02,E-Y
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/05/P5010010.jpg?fit=4608%2C3456&ssl=1" data-caption-title="OLYMPUS DIGITAL CAMERA" data-attachment-id="1432" data-rel="lightbox" title="OLYMPUS DIGITAL CAMERA" class="fg-thumb"><span class="fg-image-wrap"><img title="OLYMPUS DIGITAL CAMERA" width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/2311790029.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
OLYMPUS DIGITAL CAMERA
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/05/P5010006.jpg?fit=4608%2C3456&ssl=1" data-caption-title="OLYMPUS DIGITAL CAMERA" data-attachment-id="1433" data-rel="lightbox" title="OLYMPUS DIGITAL CAMERA" class="fg-thumb"><span class="fg-image-wrap"><img title="OLYMPUS DIGITAL CAMERA" width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i0-wp-com/3367993360.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
OLYMPUS DIGITAL CAMERA
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/05/IMG_20180503_074048.jpg?fit=4032%2C3024&ssl=1" data-caption-title="Maker:S,Date:2017-1-30,Ver:6,Lens:Kan03,Act:Lar02,E-Y" data-attachment-id="1434" data-rel="lightbox" title="Maker:S,Date:2017-1-30,Ver:6,Lens:Kan03,Act:Lar02,E-Y" class="fg-thumb"><span class="fg-image-wrap"><img title="Maker:S,Date:2017-1-30,Ver:6,Lens:Kan03,Act:Lar02,E-Y" width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/1361195503.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
Maker:S,Date:2017-1-30,Ver:6,Lens:Kan03,Act:Lar02,E-Y
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/05/P5010014.jpg?fit=4608%2C3456&ssl=1" data-caption-title="OLYMPUS DIGITAL CAMERA" data-attachment-id="1439" data-rel="lightbox" title="OLYMPUS DIGITAL CAMERA" class="fg-thumb"><span class="fg-image-wrap"><img title="OLYMPUS DIGITAL CAMERA" width="150" height="150" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/1591954427.jpg" class="fg-image" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
OLYMPUS DIGITAL CAMERA
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
</div>

View file

@ -0,0 +1,12 @@
---
id: 1402
title: Sorry about that
date: 2018-05-04T15:09:15-06:00
author: don
layout: post
guid: https://www.duckland.org/?p=1402
permalink: /2018/05/sorry-about-that/
categories:
- Site News
---
I upgrade my web host yesterday, and it seems that the web server bits got confused.&nbsp; I have fixed it, and now we are all good.

View file

@ -0,0 +1,23 @@
---
id: 1457
title: 'Reflecting on 12 years and counting&#8230;.'
date: 2018-06-05T06:00:52-06:00
author: don
layout: post
guid: https://www.duckland.org/?p=1457
permalink: /2018/06/reflecting-on-12-years-and-counting/
categories:
- Personal
- Site News
---
I was reflecting on something today.  12 years ago today, I posted <a href="https://www.duckland.org/2006/06/what-do-i-use/" target="_blank" rel="noopener">something</a> on one of my first blogs (which has since been merged into this one).
In the years in between, I have had two photo blogs which I did a very good job up updating on a regular basis.
<a href="https://www.donaldharper.com/" target="_blank" rel="noopener">One of them</a>, I posted almost daily  for around 8 years, with over 1950 posts.
<a href="https://p365.donaldharper.com/" target="_blank" rel="noopener">The other</a>, I took, processed, and posted a new picture every day for a little over a year back in 2009.  I tried to restart it two years ago, and did not get nearly as far.
This blog, I have not been doing as good of a job updating it (129 posts including this one in 12 years). But, I have tried to post at least once a month.  Most of the time, I can make that.   Sometimes, not as much.
Thanks for being on the ride as I am try to make this a bit better and more interesting than the occasional travel pics.

View file

@ -0,0 +1,378 @@
---
id: 1629
title: 4th Of July 2018 Trip Photos
date: 2018-07-07T21:32:25-06:00
author: don
layout: post
guid: https://www.duckland.org/?p=1629
permalink: /2018/07/4th-of-july-2018-trip-photos/
image: 'https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/07/P7030179.jpg?fit=1200%2C900&ssl=1'
categories:
- Family
- Photos
- Travel
---
This past week, the family and I headed to San Antonio for the 4th of July holiday.  I naturally wanted to take some photos, and we wanted to see some fireworks.  In addition, the eldest wanted to start looking at college campuses.
The trip was a lot of fun, and I did get some good photos (see below), but the weather did not cooperate for the fireworks.  There was some serious rain in the afternoon, and the Powers That Be(TM) decided to cancel the displays.
We did end up spending a lot of time wandering around the River Walk which was nice and relaxing.  Our favorite places were still there, so we enjoyed some good food and ice cream.
As you can see, the light was good, and the River Walk was nice and lush.
<div class="foogallery foogallery-container foogallery-simple_portfolio foogallery-lightbox-dfactory fg-simple_portfolio fg-light fg-border-thin fg-shadow-outline fg-loading-default fg-loaded-fade-in fg-custom fg-caption-always fg-hover-fade fg-hover-zoom" id="foogallery-gallery-1628" data-foogallery="{&quot;item&quot;:{&quot;showCaptionTitle&quot;:true,&quot;showCaptionDescription&quot;:true},&quot;lazy&quot;:true,&quot;src&quot;:&quot;data-src-fg&quot;,&quot;srcset&quot;:&quot;data-srcset-fg&quot;,&quot;template&quot;:{&quot;gutter&quot;:40,&quot;align&quot;:&quot;center&quot;}}" data-fg-common-fields="1" >
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/07/P7030172.jpg?fit=1666%2C2221&ssl=1" data-caption-title="Tower of the Americas" data-attachment-id="1496" class="foogallery-thumb fg-thumb" data-rel="lightbox" title="Tower of the Americas"><span class="fg-image-wrap"><img alt="Tower of the Americas" title="Tower of the Americas" class="bf-img fg-image" height="200" width="250" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i0-wp-com/4257126072.jpg" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
Tower of the Americas
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/07/P7030175.jpg?fit=3806%2C3456&ssl=1" data-caption-title="San Antonio River Walk" data-attachment-id="1495" class="foogallery-thumb fg-thumb" data-rel="lightbox" title="San Antonio River Walk"><span class="fg-image-wrap"><img alt="San Antonio River Walk" title="San Antonio River Walk" class="bf-img fg-image" height="200" width="250" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/4259753469.jpg" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
San Antonio River Walk
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/07/P7030176.jpg?fit=4429%2C3322&ssl=1" data-caption-title="San Antonio River Walk" data-attachment-id="1494" class="foogallery-thumb fg-thumb" data-rel="lightbox" title="San Antonio River Walk"><span class="fg-image-wrap"><img alt="San Antonio River Walk" title="San Antonio River Walk" class="bf-img fg-image" height="200" width="250" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/859067414.jpg" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
San Antonio River Walk
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/07/P7030179.jpg?fit=4608%2C3456&ssl=1" data-caption-title="4th Of July Light Flair" data-attachment-id="1493" class="foogallery-thumb fg-thumb" data-rel="lightbox" title="4th Of July Light Flair"><span class="fg-image-wrap"><img alt="4th Of July Light Flair" title="4th Of July Light Flair" class="bf-img fg-image" height="200" width="250" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/4042570435.jpg" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
4th Of July Light Flair
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/07/P7030190.jpg?fit=4608%2C3456&ssl=1" data-caption-title="San Antonio River Walk" data-attachment-id="1492" class="foogallery-thumb fg-thumb" data-rel="lightbox" title="San Antonio River Walk"><span class="fg-image-wrap"><img alt="San Antonio River Walk" title="San Antonio River Walk" class="bf-img fg-image" height="200" width="250" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/1730446450.jpg" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
San Antonio River Walk
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/07/P7030196.jpg?fit=3035%2C3035&ssl=1" data-caption-title="Casa Rio" data-attachment-id="1491" class="foogallery-thumb fg-thumb" data-rel="lightbox" title="Casa Rio"><span class="fg-image-wrap"><img alt="Casa Rio" title="Casa Rio" class="bf-img fg-image" height="200" width="250" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/1638764525.jpg" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
Casa Rio
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/07/P7030201.jpg?fit=4446%2C2501&ssl=1" data-caption-title="San Antonio River Walk" data-attachment-id="1490" class="foogallery-thumb fg-thumb" data-rel="lightbox" title="San Antonio River Walk"><span class="fg-image-wrap"><img alt="San Antonio River Walk" title="San Antonio River Walk" class="bf-img fg-image" height="200" width="250" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/1822520740.jpg" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
San Antonio River Walk
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/07/IMG_20180703_200657.jpg?fit=2162%2C3843&ssl=1" data-caption-title="San Antonio River Walk" data-attachment-id="1489" class="foogallery-thumb fg-thumb" data-rel="lightbox" title="San Antonio River Walk"><span class="fg-image-wrap"><img alt="San Antonio River Walk" title="San Antonio River Walk" class="bf-img fg-image" height="200" width="250" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/3312442215.jpg" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
San Antonio River Walk
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/07/P7030205.jpg?fit=2541%2C4518&ssl=1" data-caption-title="Stroler" data-attachment-id="1488" class="foogallery-thumb fg-thumb" data-rel="lightbox" title="Stroler"><span class="fg-image-wrap"><img alt="Stroler" title="Stroler" class="bf-img fg-image" height="200" width="250" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/2299286545.jpg" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
Stroler
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/07/P7030217.jpg?fit=3456%2C3456&ssl=1" data-caption-title="Kremlin Club, San Antonio River Walk" data-attachment-id="1487" class="foogallery-thumb fg-thumb" data-rel="lightbox" title="Kremlin Club, San Antonio River Walk"><span class="fg-image-wrap"><img alt="Kremlin Club, San Antonio River Walk" title="Kremlin Club, San Antonio River Walk" class="bf-img fg-image" height="200" width="250" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i0-wp-com/1672835473.jpg" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
Kremlin Club, San Antonio River Walk
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/07/IMG_20180703_215014.jpg?fit=3918%2C2939&ssl=1" data-caption-title="San Antonio River Walk" data-attachment-id="1486" class="foogallery-thumb fg-thumb" data-rel="lightbox" title="San Antonio River Walk"><span class="fg-image-wrap"><img alt="San Antonio River Walk" title="San Antonio River Walk" class="bf-img fg-image" height="200" width="250" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/2206786912.jpg" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
San Antonio River Walk
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/07/P7040232.jpg?fit=4608%2C3456&ssl=1" data-caption-title="View from Tower Of The Americas" data-attachment-id="1485" class="foogallery-thumb fg-thumb" data-rel="lightbox" title="View from Tower Of The Americas"><span class="fg-image-wrap"><img alt="View from Tower Of The Americas" title="View from Tower Of The Americas" class="bf-img fg-image" height="200" width="250" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i0-wp-com/4051714796.jpg" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
View from Tower Of The Americas
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/07/P7040237.jpg?fit=4608%2C3456&ssl=1" data-caption-title="View from Tower Of The Americas" data-attachment-id="1484" class="foogallery-thumb fg-thumb" data-rel="lightbox" title="View from Tower Of The Americas"><span class="fg-image-wrap"><img alt="View from Tower Of The Americas" title="View from Tower Of The Americas" class="bf-img fg-image" height="200" width="250" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/2617256610.jpg" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
View from Tower Of The Americas
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/07/P7040242.jpg?fit=3456%2C4608&ssl=1" data-caption-title="Zoltar!" data-attachment-id="1483" class="foogallery-thumb fg-thumb" data-rel="lightbox" title="Zoltar!"><span class="fg-image-wrap"><img alt="Zoltar!" title="Zoltar!" class="bf-img fg-image" height="200" width="250" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i0-wp-com/3478924628.jpg" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
Zoltar!
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/07/P7040249-e1531019451698.jpg?fit=3456%2C4608&ssl=1" data-caption-title="Saint @ Tower of the Americas" data-attachment-id="1482" class="foogallery-thumb fg-thumb" data-rel="lightbox" title="Saint @ Tower of the Americas"><span class="fg-image-wrap"><img alt="Saint @ Tower of the Americas" title="Saint @ Tower of the Americas" class="bf-img fg-image" height="200" width="250" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/485201360.jpg" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
Saint @ Tower of the Americas
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/07/P7040253-e1531019512828.jpg?fit=3456%2C4608&ssl=1" data-caption-title="Art @ Tower of the Americas" data-attachment-id="1481" class="foogallery-thumb fg-thumb" data-rel="lightbox" title="Art @ Tower of the Americas"><span class="fg-image-wrap"><img alt="Art @ Tower of the Americas" title="Art @ Tower of the Americas" class="bf-img fg-image" height="200" width="250" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/2672960844.jpg" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
Art @ Tower of the Americas
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/07/P7040255-e1531019542266.jpg?fit=3456%2C4608&ssl=1" data-caption-title="Art @ Tower of the Americas" data-attachment-id="1480" class="foogallery-thumb fg-thumb" data-rel="lightbox" title="Art @ Tower of the Americas"><span class="fg-image-wrap"><img alt="Art @ Tower of the Americas" title="Art @ Tower of the Americas" class="bf-img fg-image" height="200" width="250" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i0-wp-com/2697658992.jpg" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
Art @ Tower of the Americas
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/07/P7040256-e1531019561897.jpg?fit=3456%2C4608&ssl=1" data-caption-title="Art @ Tower of the Americas" data-attachment-id="1479" class="foogallery-thumb fg-thumb" data-rel="lightbox" title="Art @ Tower of the Americas"><span class="fg-image-wrap"><img alt="Art @ Tower of the Americas" title="Art @ Tower of the Americas" class="bf-img fg-image" height="200" width="250" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/286718475.jpg" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
Art @ Tower of the Americas
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/07/P7040259-e1531019581304.jpg?fit=3456%2C4608&ssl=1" data-caption-title="@ Tower of the Americas" data-attachment-id="1478" class="foogallery-thumb fg-thumb" data-rel="lightbox" title="@ Tower of the Americas"><span class="fg-image-wrap"><img alt="@ Tower of the Americas" title="@ Tower of the Americas" class="bf-img fg-image" height="200" width="250" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i0-wp-com/1096763763.jpg" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
@ Tower of the Americas
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/07/P7040264.jpg?fit=1943%2C3456&ssl=1" data-caption-title="Tower of the Americas" data-attachment-id="1477" class="foogallery-thumb fg-thumb" data-rel="lightbox" title="Tower of the Americas"><span class="fg-image-wrap"><img alt="Tower of the Americas" title="Tower of the Americas" class="bf-img fg-image" height="200" width="250" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i0-wp-com/2698933552.jpg" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
Tower of the Americas
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/07/P7040283.jpg?fit=4350%2C3263&ssl=1" data-caption-title="Art Above" data-attachment-id="1476" class="foogallery-thumb fg-thumb" data-rel="lightbox" title="Art Above"><span class="fg-image-wrap"><img alt="Art Above" title="Art Above" class="bf-img fg-image" height="200" width="250" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/1203356049.jpg" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
Art Above
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/07/P7040284.jpg?fit=4239%2C3456&ssl=1" data-caption-title="Art Everywhere" data-attachment-id="1475" class="foogallery-thumb fg-thumb" data-rel="lightbox" title="Art Everywhere"><span class="fg-image-wrap"><img alt="Art Everywhere" title="Art Everywhere" class="bf-img fg-image" height="200" width="250" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/2375731856.jpg" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
Art Everywhere
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/07/P1010586.jpg?fit=3672%2C3672&ssl=1" data-caption-title="B&W Security Door" data-attachment-id="1474" class="foogallery-thumb fg-thumb" data-rel="lightbox" title="B&W Security Door"><span class="fg-image-wrap"><img alt="B&W Security Door" title="B&W Security Door" class="bf-img fg-image" height="200" width="250" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/2719595612.jpg" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
B&W Security Door
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/07/P1010587.jpg?fit=4896%2C3672&ssl=1" data-caption-title="B&W Window" data-attachment-id="1473" class="foogallery-thumb fg-thumb" data-rel="lightbox" title="B&W Window"><span class="fg-image-wrap"><img alt="B&W Window" title="B&W Window" class="bf-img fg-image" height="200" width="250" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i1-wp-com/3675646173.jpg" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
B&W Window
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/07/P1010588.jpg?fit=4896%2C3672&ssl=1" data-caption-title="Color Window" data-attachment-id="1472" class="foogallery-thumb fg-thumb" data-rel="lightbox" title="Color Window"><span class="fg-image-wrap"><img alt="Color Window" title="Color Window" class="bf-img fg-image" height="200" width="250" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i0-wp-com/659922011.jpg" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
Color Window
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/07/IMG_20180705_135225.jpg?fit=4032%2C3024&ssl=1" data-caption-title="Camera" data-attachment-id="1471" class="foogallery-thumb fg-thumb" data-rel="lightbox" title="Camera"><span class="fg-image-wrap"><img alt="Camera" title="Camera" class="bf-img fg-image" height="200" width="250" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/2125439239.jpg" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
Camera
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
<div class="fg-item">
<figure class="fg-item-inner"><a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/07/P1010595.jpg?fit=3594%2C3594&ssl=1" data-caption-title="B&W Wall Sconce" data-attachment-id="1470" class="foogallery-thumb fg-thumb" data-rel="lightbox" title="B&W Wall Sconce"><span class="fg-image-wrap"><img alt="B&W Wall Sconce" title="B&W Wall Sconce" class="bf-img fg-image" height="200" width="250" data-src-fg="https://www.duckland.org/wp-content/uploads/cache/remote/i2-wp-com/3790295453.jpg" /></span></a><figcaption class="fg-caption">
<div class="fg-caption-inner">
<div class="fg-caption-title">
B&W Wall Sconce
</div>
</div></figcaption></figure>
<div class="fg-loader">
</div>
</div>
</div>
We did get to SA a <a href="/photos/Travel/US/San%20Antonio-2014-07/" target="_blank" rel="noopener">few years back</a> for the 4th, and we enjoyed it then, as well.
&nbsp;

View file

@ -0,0 +1,15 @@
---
id: 1467
title: Happy BDay, USA!
date: 2018-07-04T08:16:42-06:00
author: don
layout: post
guid: https://www.duckland.org/2018/07/happy-bday-usa/
permalink: /2018/07/happy-bday-usa/
categories:
- Personal
- Photos
---
Hope your celebration is safe and fun!
<img data-attachment-id="1466" data-permalink="https://www.duckland.org/p70301791595925984/" data-orig-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/07/p70301791595925984.jpg?fit=3000%2C2250&ssl=1" data-orig-size="3000,2250" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="p70301791595925984.jpg" data-image-description="" data-medium-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/07/p70301791595925984.jpg?fit=300%2C225&ssl=1" data-large-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/07/p70301791595925984.jpg?fit=840%2C630&ssl=1" class="alignnone wp-image-1466 size-full" src="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/07/p70301791595925984.jpg?resize=840%2C630&#038;ssl=1" width="840" height="630" srcset="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/07/p70301791595925984.jpg?w=3000&ssl=1 3000w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/07/p70301791595925984.jpg?resize=300%2C225&ssl=1 300w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/07/p70301791595925984.jpg?resize=768%2C576&ssl=1 768w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/07/p70301791595925984.jpg?resize=1024%2C768&ssl=1 1024w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/07/p70301791595925984.jpg?resize=1200%2C900&ssl=1 1200w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/07/p70301791595925984.jpg?w=1680&ssl=1 1680w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/07/p70301791595925984.jpg?w=2520&ssl=1 2520w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 1362px) 62vw, 840px" data-recalc-dims="1" />

View file

@ -0,0 +1,21 @@
---
id: 1674
title: 10 Months on a Chromebook Check-in
date: 2018-08-23T18:58:00-06:00
author: don
layout: post
guid: https://www.duckland.org/?p=1674
permalink: /2018/08/10-months-on-a-chromebook-check-in/
categories:
- Chrome OS
- PixelBook
---
So, way <a href="https://www.duckland.org/2017/11/really-moving-in-on-the-chromebook/" target="_blank" rel="noopener">back in November</a>,  I decided to use ChromeOS has my main OS.  And, then in <a href="https://www.duckland.org/2018/01/a-month-in-using-chromeos-only/" target="_blank" rel="noopener">January</a>, I did a check-in on using ChromeOS for a month.  Fast forward to-day, and I am still using my PixelBook as my daily driver for all things.
I still use the <a href="/category/hardware/r810/" target="_blank" rel="noopener">R810</a> and the x260 to test new Linux distros just to see what is happening in that space, but not to do anything else.
The battery on the PixelBook last me most of the day when out and about, and the size makes it easy to carry.  Last month, I even used it to give a talk to a [group](https://www.katorination.com) I help run, and it worked flawlessly then.
I still want to do some things via the command line, so for a while I was using Chromebrew to get by, but that has a couple of issues for me.  The first is that a lot of what I wanted had not been ported to that system yet, so I had to go and build it.  The second, and for me more important, was that to use it, I had to turn off some of the security built into ChromeOS to make it work.  A couple of months ago, Google announced Project Crostini, which uses Linux containers to allow you to run a full Linux (default is Debian) image under ChromeOS, using all the default ChromeOS security, which makes it a big win in my book.
Add on top of that, that the PixelBook can run most Android apps, and I have everything I need currently.  &#8216;But, what about photography?&#8217; you ask.  Well, I have found that I needed to rework my photo work flow, but I have found something that works for me.  All the photos that I have uploaded this year were posted under ChromeOS and so far, it is working for me.

View file

@ -0,0 +1,35 @@
---
id: 1665
title: Random Photos from Around Town
date: 2018-08-11T16:27:08-06:00
author: don
layout: post
guid: https://www.duckland.org/?p=1665
permalink: /2018/08/random-photos-from-around-town/
image: 'https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/20180806064337.jpg?fit=1200%2C675&ssl=1'
categories:
- Photos
---
<div data-carousel-extra='{"blog_id":1,"permalink":"https:\/\/www.duckland.org\/2018\/08\/random-photos-from-around-town\/"}' id='gallery-2' class='gallery galleryid-1665 gallery-columns-2 gallery-size-thumbnail'>
<figure class='gallery-item'>
<div class='gallery-icon landscape'>
<a href='https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/20180806064337.jpg?fit=4608%2C2592&ssl=1' title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-2"><img width="150" height="150" src="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/20180806064337.jpg?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail" alt="" srcset="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/20180806064337.jpg?resize=150%2C150&ssl=1 150w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/20180806064337.jpg?zoom=2&resize=150%2C150&ssl=1 300w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/20180806064337.jpg?zoom=3&resize=150%2C150&ssl=1 450w" sizes="(max-width: 150px) 85vw, 150px" data-attachment-id="1669" data-permalink="https://www.duckland.org/2018/08/random-photos-from-around-town/attachment/20180806064337/" data-orig-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/20180806064337.jpg?fit=4608%2C2592&ssl=1" data-orig-size="4608,2592" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.7&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot ELPH 320 HS&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1533537817&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;4.3&quot;,&quot;iso&quot;:&quot;100&quot;,&quot;shutter_speed&quot;:&quot;0.01&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="20180806064337" data-image-description="" data-medium-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/20180806064337.jpg?fit=300%2C169&ssl=1" data-large-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/20180806064337.jpg?fit=840%2C473&ssl=1" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon portrait'>
<a href='https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/hdr_00038_0-e1534026313994.jpg?fit=3019%2C4026&ssl=1' title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-2"><img width="150" height="150" src="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/hdr_00038_0-e1534026313994.jpg?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail" alt="" srcset="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/hdr_00038_0-e1534026313994.jpg?resize=150%2C150&ssl=1 150w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/hdr_00038_0-e1534026313994.jpg?zoom=2&resize=150%2C150&ssl=1 300w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/hdr_00038_0-e1534026313994.jpg?zoom=3&resize=150%2C150&ssl=1 450w" sizes="(max-width: 150px) 85vw, 150px" data-attachment-id="1668" data-permalink="https://www.duckland.org/2018/08/random-photos-from-around-town/hdr_00038_0/" data-orig-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/hdr_00038_0-e1534026313994.jpg?fit=3019%2C4026&ssl=1" data-orig-size="3019,4026" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Pixel 2&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;4.441&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;6&quot;}" data-image-title="hdr_00038_0" data-image-description="" data-medium-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/hdr_00038_0-e1534026313994.jpg?fit=225%2C300&ssl=1" data-large-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/hdr_00038_0-e1534026313994.jpg?fit=768%2C1024&ssl=1" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon landscape'>
<a href='https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/08/00100dPORTRAIT_00100_BURST20180811155110422_COVER.jpg?fit=4032%2C3024&ssl=1' title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-2"><img width="150" height="150" src="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/08/00100dPORTRAIT_00100_BURST20180811155110422_COVER.jpg?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail" alt="" srcset="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/08/00100dPORTRAIT_00100_BURST20180811155110422_COVER.jpg?resize=150%2C150&ssl=1 150w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/08/00100dPORTRAIT_00100_BURST20180811155110422_COVER.jpg?zoom=2&resize=150%2C150&ssl=1 300w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/08/00100dPORTRAIT_00100_BURST20180811155110422_COVER.jpg?zoom=3&resize=150%2C150&ssl=1 450w" sizes="(max-width: 150px) 85vw, 150px" data-attachment-id="1667" data-permalink="https://www.duckland.org/2018/08/random-photos-from-around-town/00100dportrait_00100_burst20180811155110422_cover/" data-orig-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/08/00100dPORTRAIT_00100_BURST20180811155110422_COVER.jpg?fit=4032%2C3024&ssl=1" data-orig-size="4032,3024" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Pixel 2&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="00100dPORTRAIT_00100_BURST20180811155110422_COVER" data-image-description="" data-medium-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/08/00100dPORTRAIT_00100_BURST20180811155110422_COVER.jpg?fit=300%2C225&ssl=1" data-large-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/08/00100dPORTRAIT_00100_BURST20180811155110422_COVER.jpg?fit=840%2C630&ssl=1" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon landscape'>
<a href='https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/00000PORTRAIT_00000_BURST20180811155121235.jpg?fit=4032%2C3024&ssl=1' title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-2"><img width="150" height="150" src="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/00000PORTRAIT_00000_BURST20180811155121235.jpg?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail" alt="" srcset="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/00000PORTRAIT_00000_BURST20180811155121235.jpg?resize=150%2C150&ssl=1 150w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/00000PORTRAIT_00000_BURST20180811155121235.jpg?zoom=2&resize=150%2C150&ssl=1 300w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/00000PORTRAIT_00000_BURST20180811155121235.jpg?zoom=3&resize=150%2C150&ssl=1 450w" sizes="(max-width: 150px) 85vw, 150px" data-attachment-id="1666" data-permalink="https://www.duckland.org/2018/08/random-photos-from-around-town/00000portrait_00000_burst20180811155121235/" data-orig-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/00000PORTRAIT_00000_BURST20180811155121235.jpg?fit=4032%2C3024&ssl=1" data-orig-size="4032,3024" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Pixel 2&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="00000PORTRAIT_00000_BURST20180811155121235" data-image-description="" data-medium-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/00000PORTRAIT_00000_BURST20180811155121235.jpg?fit=300%2C225&ssl=1" data-large-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/00000PORTRAIT_00000_BURST20180811155121235.jpg?fit=840%2C630&ssl=1" /></a>
</div></figure>
</div>
Nothing really big, just doing some random photography. Been using either the phone, or some small point & shoot cameras that are not the newest.
I did pickup a book the other week called <span style="text-decoration: underline;">50 Photo Projects</span> by Lee Frost, but I have not had time to read anything yet.

View file

@ -0,0 +1,74 @@
---
id: 1661
title: Tripping In Austin
date: 2018-08-04T08:19:04-06:00
author: don
layout: post
guid: https://www.duckland.org/2018/08/tripping-in-austin/
permalink: /2018/08/tripping-in-austin/
image: 'https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/p8020010894648030.jpg?fit=1200%2C1600&ssl=1'
categories:
- Photos
- Travel
---
<div data-carousel-extra='{"blog_id":1,"permalink":"https:\/\/www.duckland.org\/2018\/08\/tripping-in-austin\/"}' id='gallery-1' class='gallery galleryid-1661 gallery-columns-2 gallery-size-thumbnail'>
<figure class='gallery-item'>
<div class='gallery-icon landscape'>
<a href='https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/08/hdr_00037_01379772903.jpg?fit=3000%2C2234&ssl=1' title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-1"><img width="150" height="150" src="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/08/hdr_00037_01379772903.jpg?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail" alt="" srcset="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/08/hdr_00037_01379772903.jpg?resize=150%2C150&ssl=1 150w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/08/hdr_00037_01379772903.jpg?zoom=2&resize=150%2C150&ssl=1 300w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/08/hdr_00037_01379772903.jpg?zoom=3&resize=150%2C150&ssl=1 450w" sizes="(max-width: 150px) 85vw, 150px" data-attachment-id="1660" data-permalink="https://www.duckland.org/hdr_00037_01379772903/" data-orig-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/08/hdr_00037_01379772903.jpg?fit=3000%2C2234&ssl=1" data-orig-size="3000,2234" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="hdr_00037_01379772903.jpg" data-image-description="" data-medium-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/08/hdr_00037_01379772903.jpg?fit=300%2C223&ssl=1" data-large-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/08/hdr_00037_01379772903.jpg?fit=840%2C626&ssl=1" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon landscape'>
<a href='https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/p80300371098656765.jpg?fit=3000%2C2284&ssl=1' title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-1"><img width="150" height="150" src="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/p80300371098656765.jpg?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail" alt="" srcset="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/p80300371098656765.jpg?resize=150%2C150&ssl=1 150w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/p80300371098656765.jpg?zoom=2&resize=150%2C150&ssl=1 300w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/p80300371098656765.jpg?zoom=3&resize=150%2C150&ssl=1 450w" sizes="(max-width: 150px) 85vw, 150px" data-attachment-id="1659" data-permalink="https://www.duckland.org/p80300371098656765/" data-orig-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/p80300371098656765.jpg?fit=3000%2C2284&ssl=1" data-orig-size="3000,2284" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="p80300371098656765.jpg" data-image-description="" data-medium-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/p80300371098656765.jpg?fit=300%2C228&ssl=1" data-large-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/p80300371098656765.jpg?fit=840%2C640&ssl=1" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon landscape'>
<a href='https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/p80200151984168815.jpg?fit=3000%2C2250&ssl=1' title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-1"><img width="150" height="150" src="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/p80200151984168815.jpg?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail" alt="" srcset="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/p80200151984168815.jpg?resize=150%2C150&ssl=1 150w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/p80200151984168815.jpg?zoom=2&resize=150%2C150&ssl=1 300w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/p80200151984168815.jpg?zoom=3&resize=150%2C150&ssl=1 450w" sizes="(max-width: 150px) 85vw, 150px" data-attachment-id="1658" data-permalink="https://www.duckland.org/p80200151984168815/" data-orig-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/p80200151984168815.jpg?fit=3000%2C2250&ssl=1" data-orig-size="3000,2250" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="p80200151984168815.jpg" data-image-description="" data-medium-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/p80200151984168815.jpg?fit=300%2C225&ssl=1" data-large-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/p80200151984168815.jpg?fit=840%2C630&ssl=1" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon landscape'>
<a href='https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/p8030039951574354.jpg?fit=3000%2C2250&ssl=1' title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-1"><img width="150" height="150" src="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/p8030039951574354.jpg?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail" alt="" srcset="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/p8030039951574354.jpg?resize=150%2C150&ssl=1 150w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/p8030039951574354.jpg?zoom=2&resize=150%2C150&ssl=1 300w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/p8030039951574354.jpg?zoom=3&resize=150%2C150&ssl=1 450w" sizes="(max-width: 150px) 85vw, 150px" data-attachment-id="1657" data-permalink="https://www.duckland.org/p8030039951574354/" data-orig-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/p8030039951574354.jpg?fit=3000%2C2250&ssl=1" data-orig-size="3000,2250" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="p8030039951574354.jpg" data-image-description="" data-medium-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/p8030039951574354.jpg?fit=300%2C225&ssl=1" data-large-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/p8030039951574354.jpg?fit=840%2C630&ssl=1" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon portrait'>
<a href='https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/img_20180802_153555-11307799443.jpg?fit=2521%2C3000&ssl=1' title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-1"><img width="150" height="150" src="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/img_20180802_153555-11307799443.jpg?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail" alt="" srcset="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/img_20180802_153555-11307799443.jpg?resize=150%2C150&ssl=1 150w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/img_20180802_153555-11307799443.jpg?zoom=2&resize=150%2C150&ssl=1 300w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/img_20180802_153555-11307799443.jpg?zoom=3&resize=150%2C150&ssl=1 450w" sizes="(max-width: 150px) 85vw, 150px" data-attachment-id="1656" data-permalink="https://www.duckland.org/img_20180802_153555-11307799443/" data-orig-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/img_20180802_153555-11307799443.jpg?fit=2521%2C3000&ssl=1" data-orig-size="2521,3000" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="img_20180802_153555-11307799443.jpg" data-image-description="" data-medium-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/img_20180802_153555-11307799443.jpg?fit=252%2C300&ssl=1" data-large-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/img_20180802_153555-11307799443.jpg?fit=840%2C999&ssl=1" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon landscape'>
<a href='https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/08/hdr_00033_0645302519.jpg?fit=3000%2C2240&ssl=1' title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-1"><img width="150" height="150" src="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/08/hdr_00033_0645302519.jpg?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail" alt="" srcset="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/08/hdr_00033_0645302519.jpg?resize=150%2C150&ssl=1 150w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/08/hdr_00033_0645302519.jpg?zoom=2&resize=150%2C150&ssl=1 300w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/08/hdr_00033_0645302519.jpg?zoom=3&resize=150%2C150&ssl=1 450w" sizes="(max-width: 150px) 85vw, 150px" data-attachment-id="1655" data-permalink="https://www.duckland.org/hdr_00033_0645302519/" data-orig-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/08/hdr_00033_0645302519.jpg?fit=3000%2C2240&ssl=1" data-orig-size="3000,2240" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="hdr_00033_0645302519.jpg" data-image-description="" data-medium-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/08/hdr_00033_0645302519.jpg?fit=300%2C224&ssl=1" data-large-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/08/hdr_00033_0645302519.jpg?fit=840%2C628&ssl=1" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon landscape'>
<a href='https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/08/hdr_00029_01444054409.jpg?fit=3000%2C1418&ssl=1' title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-1"><img width="150" height="150" src="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/08/hdr_00029_01444054409.jpg?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail" alt="" srcset="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/08/hdr_00029_01444054409.jpg?resize=150%2C150&ssl=1 150w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/08/hdr_00029_01444054409.jpg?zoom=2&resize=150%2C150&ssl=1 300w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/08/hdr_00029_01444054409.jpg?zoom=3&resize=150%2C150&ssl=1 450w" sizes="(max-width: 150px) 85vw, 150px" data-attachment-id="1654" data-permalink="https://www.duckland.org/hdr_00029_01444054409/" data-orig-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/08/hdr_00029_01444054409.jpg?fit=3000%2C1418&ssl=1" data-orig-size="3000,1418" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="hdr_00029_01444054409.jpg" data-image-description="" data-medium-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/08/hdr_00029_01444054409.jpg?fit=300%2C142&ssl=1" data-large-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/08/hdr_00029_01444054409.jpg?fit=840%2C397&ssl=1" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon landscape'>
<a href='https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/p8020009725623661.jpg?fit=3000%2C2250&ssl=1' title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-1"><img width="150" height="150" src="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/p8020009725623661.jpg?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail" alt="" srcset="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/p8020009725623661.jpg?resize=150%2C150&ssl=1 150w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/p8020009725623661.jpg?zoom=2&resize=150%2C150&ssl=1 300w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/p8020009725623661.jpg?zoom=3&resize=150%2C150&ssl=1 450w" sizes="(max-width: 150px) 85vw, 150px" data-attachment-id="1653" data-permalink="https://www.duckland.org/p8020009725623661/" data-orig-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/p8020009725623661.jpg?fit=3000%2C2250&ssl=1" data-orig-size="3000,2250" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="p8020009725623661.jpg" data-image-description="" data-medium-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/p8020009725623661.jpg?fit=300%2C225&ssl=1" data-large-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/p8020009725623661.jpg?fit=840%2C630&ssl=1" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon landscape'>
<a href='https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/p80300251275854965.jpg?fit=3000%2C2250&ssl=1' title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-1"><img width="150" height="150" src="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/p80300251275854965.jpg?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail" alt="" srcset="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/p80300251275854965.jpg?resize=150%2C150&ssl=1 150w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/p80300251275854965.jpg?zoom=2&resize=150%2C150&ssl=1 300w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/p80300251275854965.jpg?zoom=3&resize=150%2C150&ssl=1 450w" sizes="(max-width: 150px) 85vw, 150px" data-attachment-id="1652" data-permalink="https://www.duckland.org/p80300251275854965/" data-orig-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/p80300251275854965.jpg?fit=3000%2C2250&ssl=1" data-orig-size="3000,2250" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="p80300251275854965.jpg" data-image-description="" data-medium-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/p80300251275854965.jpg?fit=300%2C225&ssl=1" data-large-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/p80300251275854965.jpg?fit=840%2C630&ssl=1" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon landscape'>
<a href='https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/hdr_00036_01259120055.jpg?fit=3000%2C2250&ssl=1' title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-1"><img width="150" height="150" src="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/hdr_00036_01259120055.jpg?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail" alt="" srcset="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/hdr_00036_01259120055.jpg?resize=150%2C150&ssl=1 150w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/hdr_00036_01259120055.jpg?zoom=2&resize=150%2C150&ssl=1 300w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/hdr_00036_01259120055.jpg?zoom=3&resize=150%2C150&ssl=1 450w" sizes="(max-width: 150px) 85vw, 150px" data-attachment-id="1649" data-permalink="https://www.duckland.org/hdr_00036_01259120055/" data-orig-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/hdr_00036_01259120055.jpg?fit=3000%2C2250&ssl=1" data-orig-size="3000,2250" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="hdr_00036_01259120055.jpg" data-image-description="" data-medium-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/hdr_00036_01259120055.jpg?fit=300%2C225&ssl=1" data-large-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/hdr_00036_01259120055.jpg?fit=840%2C630&ssl=1" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon landscape'>
<a href='https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/p80300311060411066.jpg?fit=3000%2C2250&ssl=1' title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-1"><img width="150" height="150" src="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/p80300311060411066.jpg?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail" alt="" srcset="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/p80300311060411066.jpg?resize=150%2C150&ssl=1 150w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/p80300311060411066.jpg?zoom=2&resize=150%2C150&ssl=1 300w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/p80300311060411066.jpg?zoom=3&resize=150%2C150&ssl=1 450w" sizes="(max-width: 150px) 85vw, 150px" data-attachment-id="1650" data-permalink="https://www.duckland.org/p80300311060411066/" data-orig-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/p80300311060411066.jpg?fit=3000%2C2250&ssl=1" data-orig-size="3000,2250" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="p80300311060411066.jpg" data-image-description="" data-medium-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/p80300311060411066.jpg?fit=300%2C225&ssl=1" data-large-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/08/p80300311060411066.jpg?fit=840%2C630&ssl=1" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon landscape'>
<a href='https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/08/jpeg_20180802_1517221502597099.jpg?fit=3000%2C2250&ssl=1' title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-1"><img width="150" height="150" src="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/08/jpeg_20180802_1517221502597099.jpg?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail" alt="" srcset="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/08/jpeg_20180802_1517221502597099.jpg?resize=150%2C150&ssl=1 150w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/08/jpeg_20180802_1517221502597099.jpg?zoom=2&resize=150%2C150&ssl=1 300w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/08/jpeg_20180802_1517221502597099.jpg?zoom=3&resize=150%2C150&ssl=1 450w" sizes="(max-width: 150px) 85vw, 150px" data-attachment-id="1651" data-permalink="https://www.duckland.org/jpeg_20180802_1517221502597099/" data-orig-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/08/jpeg_20180802_1517221502597099.jpg?fit=3000%2C2250&ssl=1" data-orig-size="3000,2250" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="jpeg_20180802_1517221502597099.jpg" data-image-description="" data-medium-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/08/jpeg_20180802_1517221502597099.jpg?fit=300%2C225&ssl=1" data-large-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/08/jpeg_20180802_1517221502597099.jpg?fit=840%2C630&ssl=1" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon portrait'>
<a href='https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/p8020010894648030.jpg?fit=2250%2C3000&ssl=1' title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-1"><img width="150" height="150" src="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/p8020010894648030.jpg?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail" alt="" srcset="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/p8020010894648030.jpg?resize=150%2C150&ssl=1 150w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/p8020010894648030.jpg?zoom=2&resize=150%2C150&ssl=1 300w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/p8020010894648030.jpg?zoom=3&resize=150%2C150&ssl=1 450w" sizes="(max-width: 150px) 85vw, 150px" data-attachment-id="1648" data-permalink="https://www.duckland.org/p8020010894648030/" data-orig-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/p8020010894648030.jpg?fit=2250%2C3000&ssl=1" data-orig-size="2250,3000" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="p8020010894648030.jpg" data-image-description="" data-medium-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/p8020010894648030.jpg?fit=225%2C300&ssl=1" data-large-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/p8020010894648030.jpg?fit=768%2C1024&ssl=1" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon portrait'>
<a href='https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/jpeg_20180802_104140423973725.jpg?fit=1762%2C3000&ssl=1' title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-1"><img width="150" height="150" src="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/jpeg_20180802_104140423973725.jpg?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail" alt="" srcset="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/jpeg_20180802_104140423973725.jpg?resize=150%2C150&ssl=1 150w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/jpeg_20180802_104140423973725.jpg?zoom=2&resize=150%2C150&ssl=1 300w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/jpeg_20180802_104140423973725.jpg?zoom=3&resize=150%2C150&ssl=1 450w" sizes="(max-width: 150px) 85vw, 150px" data-attachment-id="1647" data-permalink="https://www.duckland.org/jpeg_20180802_104140423973725/" data-orig-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/jpeg_20180802_104140423973725.jpg?fit=1762%2C3000&ssl=1" data-orig-size="1762,3000" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="jpeg_20180802_104140423973725.jpg" data-image-description="" data-medium-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/jpeg_20180802_104140423973725.jpg?fit=176%2C300&ssl=1" data-large-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/jpeg_20180802_104140423973725.jpg?fit=601%2C1024&ssl=1" /></a>
</div></figure>
</div>
Took a couple of days in Austin. Since we used to live there, we spent some time visiting old haunts like Conan&#8217;s Pizza. We also spent some time wandering around the UT campus. Since it was between sessions, the campus was pretty empty.

View file

@ -0,0 +1,13 @@
---
id: 1683
title: Treatments of Ice Cream Cone
date: 2018-09-14T04:45:22-06:00
author: don
layout: post
guid: https://www.duckland.org/?p=1683
permalink: /2018/09/treatments-of-ice-cream-cone/
categories:
- Photos
---
<figure id="attachment_1681" aria-describedby="caption-attachment-1681" style="width: 840px" class="wp-caption alignnone"><img data-attachment-id="1681" data-permalink="https://www.duckland.org/2018/09/treatments-of-ice-cream-cone/collagemaker_20180912_224054885/" data-orig-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/09/CollageMaker_20180912_224054885.jpg?fit=2048%2C2048&ssl=1" data-orig-size="2048,2048" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="Treatments of Ice Cream Cone" data-image-description="<p>Treatments of Ice Cream Cone</p>
" data-medium-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/09/CollageMaker_20180912_224054885.jpg?fit=300%2C300&ssl=1" data-large-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/09/CollageMaker_20180912_224054885.jpg?fit=840%2C840&ssl=1" class="size-large wp-image-1681" src="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/09/CollageMaker_20180912_224054885.jpg?resize=840%2C840&#038;ssl=1" alt="Treatments of Ice Cream Cone" width="840" height="840" srcset="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/09/CollageMaker_20180912_224054885.jpg?resize=1024%2C1024&ssl=1 1024w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/09/CollageMaker_20180912_224054885.jpg?resize=150%2C150&ssl=1 150w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/09/CollageMaker_20180912_224054885.jpg?resize=300%2C300&ssl=1 300w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/09/CollageMaker_20180912_224054885.jpg?resize=768%2C768&ssl=1 768w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/09/CollageMaker_20180912_224054885.jpg?resize=1200%2C1200&ssl=1 1200w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/09/CollageMaker_20180912_224054885.jpg?w=1680&ssl=1 1680w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 1362px) 62vw, 840px" data-recalc-dims="1" /><figcaption id="caption-attachment-1681" class="wp-caption-text">Treatments of Ice Cream Cone</figcaption></figure>

View file

@ -0,0 +1,144 @@
---
id: 1717
title: Yet Another Trip To The UK
date: 2018-09-25T20:54:45-06:00
author: don
layout: post
guid: https://www.duckland.org/?p=1717
permalink: /2018/09/yet-another-trip-to-the-uk/
categories:
- Photos
- Travel
- Work
---
A while back, I was transferred to a new team at my $JOB.  This team is more aligned with what I normally do, so this is a good thing.  Plus, I know all other folks on the team, and I like them, including the manager.  The only drawback is that I am the only US-based person on the team, as the rest of them are in London.  Upside, I got to go over for some training and planning.
I had a bit more down-time in the evenings this trip which I knew about in advance, so I brought over <a href="/2018/05/another-trip-to-the-uk/" target="_blank" rel="noopener">my big camera</a> and my travel camera, a Panazonic DCM-ZS40, and a Gorilla-pod and had some fun walking around.<div class="rl-gallery-container rl-loading" id="rl-gallery-container-3" data-gallery_id="1723"> <div class="rl-gallery rl-basicgrid-gallery " id="rl-gallery-3" data-gallery_no="3">
<div class="rl-gallery-item">
<a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/09/IMG_20180915_145759.jpg?fit=4032%2C3024&ssl=1" title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-3"><img src="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/09/IMG_20180915_145759.jpg?fit=300%2C225&#038;ssl=1" width="300" height="225" /></a>
</div>
<div class="rl-gallery-item">
<a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/09/hdr_00041_0.jpg?fit=2998%2C4017&ssl=1" title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-3"><img src="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/09/hdr_00041_0.jpg?fit=224%2C300&#038;ssl=1" width="224" height="300" /></a>
</div>
<div class="rl-gallery-item">
<a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/09/P9160015.jpg?fit=3436%2C4581&ssl=1" title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-3"><img src="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/09/P9160015.jpg?fit=225%2C300&#038;ssl=1" width="225" height="300" /></a>
</div>
<div class="rl-gallery-item">
<a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/09/P9160016.jpg?fit=4578%2C2575&ssl=1" title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-3"><img src="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/09/P9160016.jpg?fit=300%2C169&#038;ssl=1" width="300" height="169" /></a>
</div>
<div class="rl-gallery-item">
<a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/09/P9160023.jpg?fit=3456%2C3456&ssl=1" title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-3"><img src="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/09/P9160023.jpg?fit=300%2C300&#038;ssl=1" width="300" height="300" /></a>
</div>
<div class="rl-gallery-item">
<a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/09/P9160036.jpg?fit=3456%2C4608&ssl=1" title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-3"><img src="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/09/P9160036.jpg?fit=225%2C300&#038;ssl=1" width="225" height="300" /></a>
</div>
<div class="rl-gallery-item">
<a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/09/IMG_20180916_133151.jpg?fit=3264%2C2448&ssl=1" title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-3"><img src="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/09/IMG_20180916_133151.jpg?fit=300%2C225&#038;ssl=1" width="300" height="225" /></a>
</div>
<div class="rl-gallery-item">
<a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/09/P9160044.jpg?fit=4608%2C3456&ssl=1" title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-3"><img src="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/09/P9160044.jpg?fit=300%2C225&#038;ssl=1" width="300" height="225" /></a>
</div>
<div class="rl-gallery-item">
<a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/09/IMG_20180916_144426.jpg?fit=3672%2C2754&ssl=1" title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-3"><img src="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/09/IMG_20180916_144426.jpg?fit=300%2C225&#038;ssl=1" width="300" height="225" /></a>
</div>
<div class="rl-gallery-item">
<a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/09/IMG_20180916_093056.jpg?fit=4032%2C3024&ssl=1" title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-3"><img src="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/09/IMG_20180916_093056.jpg?fit=300%2C225&#038;ssl=1" width="300" height="225" /></a>
</div>
<div class="rl-gallery-item">
<a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/09/P9160072.jpg?fit=4608%2C3456&ssl=1" title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-3"><img src="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/09/P9160072.jpg?fit=300%2C225&#038;ssl=1" width="300" height="225" /></a>
</div>
<div class="rl-gallery-item">
<a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/09/P9160076.jpg?fit=4608%2C3456&ssl=1" title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-3"><img src="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/09/P9160076.jpg?fit=300%2C225&#038;ssl=1" width="300" height="225" /></a>
</div>
<div class="rl-gallery-item">
<a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/09/P9160077.jpg?fit=4608%2C3456&ssl=1" title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-3"><img src="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/09/P9160077.jpg?fit=300%2C225&#038;ssl=1" width="300" height="225" /></a>
</div>
<div class="rl-gallery-item">
<a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/09/P9160083.jpg?fit=4608%2C3456&ssl=1" title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-3"><img src="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/09/P9160083.jpg?fit=300%2C225&#038;ssl=1" width="300" height="225" /></a>
</div>
<div class="rl-gallery-item">
<a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/09/P9160086.jpg?fit=3021%2C3021&ssl=1" title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-3"><img src="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/09/P9160086.jpg?fit=300%2C300&#038;ssl=1" width="300" height="300" /></a>
</div>
<div class="rl-gallery-item">
<a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/09/P9160093.jpg?fit=4469%2C2514&ssl=1" title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-3"><img src="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/09/P9160093.jpg?fit=300%2C169&#038;ssl=1" width="300" height="169" /></a>
</div>
<div class="rl-gallery-item">
<a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/09/P9160094.jpg?fit=3426%2C3426&ssl=1" title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-3"><img src="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/09/P9160094.jpg?fit=300%2C300&#038;ssl=1" width="300" height="300" /></a>
</div>
<div class="rl-gallery-item">
<a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/09/IMG_20180916_195936.jpg?fit=4032%2C2268&ssl=1" title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-3"><img src="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/09/IMG_20180916_195936.jpg?fit=300%2C169&#038;ssl=1" width="300" height="169" /></a>
</div>
<div class="rl-gallery-item">
<a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/09/hdr_00043_0-EFFECTS.jpg?fit=4019%2C3013&ssl=1" title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-3"><img src="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/09/hdr_00043_0-EFFECTS.jpg?fit=300%2C225&#038;ssl=1" width="300" height="225" /></a>
</div>
<div class="rl-gallery-item">
<a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/09/P9160109.jpg?fit=4608%2C3456&ssl=1" title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-3"><img src="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/09/P9160109.jpg?fit=300%2C225&#038;ssl=1" width="300" height="225" /></a>
</div>
<div class="rl-gallery-item">
<a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/09/P9160112.jpg?fit=3456%2C4608&ssl=1" title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-3"><img src="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/09/P9160112.jpg?fit=225%2C300&#038;ssl=1" width="225" height="300" /></a>
</div>
<div class="rl-gallery-item">
<a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/09/hdr_00045_0.jpg?fit=4008%2C2954&ssl=1" title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-3"><img src="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/09/hdr_00045_0.jpg?fit=300%2C221&#038;ssl=1" width="300" height="221" /></a>
</div>
<div class="rl-gallery-item">
<a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/09/IMG_20180917_184744-EFFECTS.jpg?fit=2950%2C3933&ssl=1" title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-3"><img src="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/09/IMG_20180917_184744-EFFECTS.jpg?fit=225%2C300&#038;ssl=1" width="225" height="300" /></a>
</div>
<div class="rl-gallery-item">
<a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/09/hdr_00047_0.jpg?fit=2849%2C3798&ssl=1" title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-3"><img src="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/09/hdr_00047_0.jpg?fit=225%2C300&#038;ssl=1" width="225" height="300" /></a>
</div>
<div class="rl-gallery-item">
<a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/09/hdr_00048_0-EFFECTS.jpg?fit=3007%2C4029&ssl=1" title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-3"><img src="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/09/hdr_00048_0-EFFECTS.jpg?fit=224%2C300&#038;ssl=1" width="224" height="300" /></a>
</div>
<div class="rl-gallery-item">
<a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/09/hdr_00050_0.jpg?fit=4022%2C3010&ssl=1" title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-3"><img src="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/09/hdr_00050_0.jpg?fit=300%2C225&#038;ssl=1" width="300" height="225" /></a>
</div>
<div class="rl-gallery-item">
<a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/09/IMG_20180919_083317.jpg?fit=4032%2C3024&ssl=1" title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-3"><img src="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/09/IMG_20180919_083317.jpg?fit=300%2C225&#038;ssl=1" width="300" height="225" /></a>
</div>
<div class="rl-gallery-item">
<a href="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/09/IMG_20180919_200641.jpg?fit=4032%2C3024&ssl=1" title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-3"><img src="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/09/IMG_20180919_200641.jpg?fit=300%2C225&#038;ssl=1" width="300" height="225" /></a>
</div>
<div class="rl-gallery-item">
<a href="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/09/hdr_00054_0.jpg?fit=3846%2C2905&ssl=1" title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-3"><img src="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/09/hdr_00054_0.jpg?fit=300%2C227&#038;ssl=1" width="300" height="227" /></a>
</div>
<div class="rl-gallery-item">
<a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/09/hdr_00055_0-EFFECTS.jpg?fit=3013%2C4022&ssl=1" title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-3"><img src="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/09/hdr_00055_0-EFFECTS.jpg?fit=225%2C300&#038;ssl=1" width="225" height="300" /></a>
</div>
<div class="rl-gallery-item">
<a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/09/hdr_00058_0.jpg?fit=2992%2C4023&ssl=1" title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-3"><img src="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/09/hdr_00058_0.jpg?fit=223%2C300&#038;ssl=1" width="223" height="300" /></a>
</div>
<div class="rl-gallery-item">
<a href="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/09/P1010670.jpg?fit=4896%2C3672&ssl=1" title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-3"><img src="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/09/P1010670.jpg?fit=300%2C225&#038;ssl=1" width="300" height="225" /></a>
</div></div> </div>

View file

@ -0,0 +1,29 @@
---
id: 1732
title: Gemini PDA
date: 2018-10-13T21:48:00-06:00
author: don
layout: post
guid: https://www.duckland.org/?p=1732
permalink: /2018/10/gemini-pda/
categories:
- Hardware
- Travel
---
<figure style="width: 1296px" class="wp-caption alignnone"><img src="https://i2.wp.com/cdn.shopify.com/s/files/1/2402/7083/products/Image-PDA-2-3-Right-1_1296x.jpg?resize=840%2C560&#038;ssl=1" alt="Gemini PDA" width="840" height="560" data-recalc-dims="1" /><figcaption class="wp-caption-text">Gemini PDA</figcaption></figure>
Last year, I backed <a href="https://www.planetcom.co.uk/" target="_blank" rel="noopener">Planet Computer&#8217;s</a> Indiegogo campaign for the <a href="https://www.indiegogo.com/projects/gemini-pda-android-linux-keyboard-mobile-device--2/x/4406764#/" target="_blank" rel="noopener">Gemini PDA</a>. Now, if I had this nice <a href="/category/os/chromeos/pixelbook/" target="_blank" rel="noopener">PixelBook</a>, why would I need something like this?
Well, for one thing, I have always been a sucker for PDAs.  While I never had the original PDA, the Psions, I have owned a few over the years.  An <a href="https://en.wikipedia.org/wiki/Apple_Newton" target="_blank" rel="noopener">Apple MessagePad</a>, a <a href="https://en.wikipedia.org/wiki/Sharp_Zaurus" target="_blank" rel="noopener">Sharp Zarus</a>, a <a href="https://en.wikipedia.org/wiki/Windows_Embedded_Compact" target="_blank" rel="noopener">WindowsCE</a> device (forget which one), and many, many <a href="https://en.wikipedia.org/wiki/Palm_(PDA)" target="_blank" rel="noopener">Palm devices</a> (including a PalmPilot, Palm III, Palm IIIx, Palm V, Palm Vx, Palm m505, Tungsten C, and Tungsten T2 (which I still have)).
The main reason I liked them was the ability to carry my calendar, and have active reminders.  When I used a paper-based planner, I would miss things because I would be working on something and not notice the time.
However, with the advent of not dumb-phones (like a Sony Ericsson K series) which you could send an email to the phone, and have it show up as a text message let me only carry one device (the phone vs the phone **and** a PDA).  Then, about 10 years ago, the true smartphones hit the market with full integration into both work and personal email and calendars, and a fully functioning web browser, plus working turn-by-turn GPS based navigation.
Most of my employers in the last 20+ years provide me with a laptop for use both in the office, and on the road.  However, the current and former employers have a different model, and do not provide me with a laptop for travel.  So, I need to carry my own.
Now, while the PixelBook is thin and light, it still takes up space on a desk.  And, when I am visiting other offices for my current employer, desk space is at a premium, and the PixelBook does not really fit.  And, I have long made it a personal policy to not use my employer&#8217;s machines and network for personal emails and network use.
Enter the Gemini.  Why not use my phone  to read email and such?  The main reason is while I am pretty decent at using the on-screen keyboard, I find it lacking for long typing sessions.  That is where the Gemini is different.  It has a physical keyboard, and even though it is smaller than any laptop I have used before, I still find I can use it pretty well and type reasonably fast on it.  And the battery is pretty decent.
<a href="https://www.duckland.org/2018/09/yet-another-trip-to-the-uk/" target="_blank" rel="noopener">My last trip</a> I ended up using the Gemini more than the PixelBook.  Things like Skype, uploading and editing photos, email, etc.  It worked pretty well.  I am thinking about the next trip, not bringing a laptop and just use the Gemini.  The display is nice, and when I am in the hotel room, I can hook it up to the TV over a HDMI cable.

View file

@ -0,0 +1,68 @@
---
id: 1752
title: Fall is Coming
date: 2018-11-12T14:54:17-06:00
author: don
layout: post
guid: https://www.duckland.org/?p=1752
permalink: /2018/11/fall-is-coming/
categories:
- Photos
---
Spent some time in the Pine Woods this past weekend with one of the kiddos.  In between playing, got a chance to take photos.
<div data-carousel-extra='{"blog_id":1,"permalink":"https:\/\/www.duckland.org\/2018\/11\/fall-is-coming\/"}' id='gallery-4' class='gallery galleryid-1752 gallery-columns-3 gallery-size-thumbnail'>
<figure class='gallery-item'>
<div class='gallery-icon landscape'>
<a href='https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100228.jpg?fit=4608%2C3456&ssl=1' title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-4"><img width="150" height="150" src="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100228.jpg?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail" alt="" srcset="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100228.jpg?resize=150%2C150&ssl=1 150w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100228.jpg?zoom=2&resize=150%2C150&ssl=1 300w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100228.jpg?zoom=3&resize=150%2C150&ssl=1 450w" sizes="(max-width: 150px) 85vw, 150px" data-attachment-id="1750" data-permalink="https://www.duckland.org/olympus-digital-camera-66/" data-orig-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100228.jpg?fit=4608%2C3456&ssl=1" data-orig-size="4608,3456" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;10&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;E-M5&quot;,&quot;caption&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;created_timestamp&quot;:&quot;1541845403&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;19&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.001&quot;,&quot;title&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="Trees and Sky II" data-image-description="" data-medium-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100228.jpg?fit=300%2C225&ssl=1" data-large-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100228.jpg?fit=840%2C630&ssl=1" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon landscape'>
<a href='https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100227.jpg?fit=4608%2C3456&ssl=1' title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-4"><img width="150" height="150" src="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100227.jpg?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail" alt="" srcset="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100227.jpg?resize=150%2C150&ssl=1 150w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100227.jpg?zoom=2&resize=150%2C150&ssl=1 300w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100227.jpg?zoom=3&resize=150%2C150&ssl=1 450w" sizes="(max-width: 150px) 85vw, 150px" data-attachment-id="1751" data-permalink="https://www.duckland.org/olympus-digital-camera-67/" data-orig-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100227.jpg?fit=4608%2C3456&ssl=1" data-orig-size="4608,3456" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;11&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;E-M5&quot;,&quot;caption&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;created_timestamp&quot;:&quot;1541845395&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;19&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.001&quot;,&quot;title&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="Trees and Sky" data-image-description="" data-medium-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100227.jpg?fit=300%2C225&ssl=1" data-large-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100227.jpg?fit=840%2C630&ssl=1" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon landscape'>
<a href='https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100243.jpg?fit=4608%2C3456&ssl=1' title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-4"><img width="150" height="150" src="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100243.jpg?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail" alt="" srcset="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100243.jpg?resize=150%2C150&ssl=1 150w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100243.jpg?zoom=2&resize=150%2C150&ssl=1 300w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100243.jpg?zoom=3&resize=150%2C150&ssl=1 450w" sizes="(max-width: 150px) 85vw, 150px" data-attachment-id="1749" data-permalink="https://www.duckland.org/olympus-digital-camera-65/" data-orig-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100243.jpg?fit=4608%2C3456&ssl=1" data-orig-size="4608,3456" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;7.1&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;E-M5&quot;,&quot;caption&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;created_timestamp&quot;:&quot;1541845968&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;19&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.002&quot;,&quot;title&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="Sky" data-image-description="" data-medium-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100243.jpg?fit=300%2C225&ssl=1" data-large-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100243.jpg?fit=840%2C630&ssl=1" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon landscape'>
<a href='https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100326.jpg?fit=4608%2C3456&ssl=1' title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-4"><img width="150" height="150" src="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100326.jpg?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail" alt="" srcset="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100326.jpg?resize=150%2C150&ssl=1 150w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100326.jpg?zoom=2&resize=150%2C150&ssl=1 300w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100326.jpg?zoom=3&resize=150%2C150&ssl=1 450w" sizes="(max-width: 150px) 85vw, 150px" data-attachment-id="1748" data-permalink="https://www.duckland.org/olympus-digital-camera-64/" data-orig-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100326.jpg?fit=4608%2C3456&ssl=1" data-orig-size="4608,3456" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;7.1&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;E-M5&quot;,&quot;caption&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;created_timestamp&quot;:&quot;1541849601&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;138&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.0025&quot;,&quot;title&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="Fall Leaves" data-image-description="" data-medium-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100326.jpg?fit=300%2C225&ssl=1" data-large-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100326.jpg?fit=840%2C630&ssl=1" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon landscape'>
<a href='https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100330.jpg?fit=4608%2C3456&ssl=1' title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-4"><img width="150" height="150" src="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100330.jpg?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail" alt="" srcset="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100330.jpg?resize=150%2C150&ssl=1 150w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100330.jpg?zoom=2&resize=150%2C150&ssl=1 300w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100330.jpg?zoom=3&resize=150%2C150&ssl=1 450w" sizes="(max-width: 150px) 85vw, 150px" data-attachment-id="1747" data-permalink="https://www.duckland.org/olympus-digital-camera-63/" data-orig-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100330.jpg?fit=4608%2C3456&ssl=1" data-orig-size="4608,3456" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;5.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;E-M5&quot;,&quot;caption&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;created_timestamp&quot;:&quot;1541849773&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;150&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.005&quot;,&quot;title&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="Fungus" data-image-description="" data-medium-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100330.jpg?fit=300%2C225&ssl=1" data-large-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100330.jpg?fit=840%2C630&ssl=1" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon portrait'>
<a href='https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100332.jpg?fit=3456%2C4608&ssl=1' title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-4"><img width="150" height="150" src="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100332.jpg?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail" alt="" srcset="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100332.jpg?resize=150%2C150&ssl=1 150w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100332.jpg?zoom=2&resize=150%2C150&ssl=1 300w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100332.jpg?zoom=3&resize=150%2C150&ssl=1 450w" sizes="(max-width: 150px) 85vw, 150px" data-attachment-id="1746" data-permalink="https://www.duckland.org/olympus-digital-camera-62/" data-orig-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100332.jpg?fit=3456%2C4608&ssl=1" data-orig-size="3456,4608" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;5.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;E-M5&quot;,&quot;caption&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;created_timestamp&quot;:&quot;1541849785&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;150&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.008&quot;,&quot;title&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="Fungus II" data-image-description="" data-medium-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100332.jpg?fit=225%2C300&ssl=1" data-large-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100332.jpg?fit=768%2C1024&ssl=1" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon landscape'>
<a href='https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100348.jpg?fit=3583%2C2015&ssl=1' title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-4"><img width="150" height="150" src="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100348.jpg?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail" alt="" srcset="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100348.jpg?resize=150%2C150&ssl=1 150w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100348.jpg?zoom=2&resize=150%2C150&ssl=1 300w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100348.jpg?zoom=3&resize=150%2C150&ssl=1 450w" sizes="(max-width: 150px) 85vw, 150px" data-attachment-id="1745" data-permalink="https://www.duckland.org/olympus-digital-camera-61/" data-orig-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100348.jpg?fit=3583%2C2015&ssl=1" data-orig-size="3583,2015" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;7.1&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;E-M5&quot;,&quot;caption&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;created_timestamp&quot;:&quot;1541853740&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;150&quot;,&quot;iso&quot;:&quot;1250&quot;,&quot;shutter_speed&quot;:&quot;0.0025&quot;,&quot;title&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="Deer" data-image-description="" data-medium-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100348.jpg?fit=300%2C169&ssl=1" data-large-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100348.jpg?fit=840%2C473&ssl=1" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon landscape'>
<a href='https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100351.jpg?fit=4608%2C3456&ssl=1' title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-4"><img width="150" height="150" src="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100351.jpg?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail" alt="" srcset="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100351.jpg?resize=150%2C150&ssl=1 150w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100351.jpg?zoom=2&resize=150%2C150&ssl=1 300w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100351.jpg?zoom=3&resize=150%2C150&ssl=1 450w" sizes="(max-width: 150px) 85vw, 150px" data-attachment-id="1744" data-permalink="https://www.duckland.org/olympus-digital-camera-60/" data-orig-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100351.jpg?fit=4608%2C3456&ssl=1" data-orig-size="4608,3456" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;7.1&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;E-M5&quot;,&quot;caption&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;created_timestamp&quot;:&quot;1541859044&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;116&quot;,&quot;iso&quot;:&quot;1250&quot;,&quot;shutter_speed&quot;:&quot;0.002&quot;,&quot;title&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="Berries on Tree" data-image-description="" data-medium-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100351.jpg?fit=300%2C225&ssl=1" data-large-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100351.jpg?fit=840%2C630&ssl=1" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon landscape'>
<a href='https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100356.jpg?fit=4608%2C3456&ssl=1' title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-4"><img width="150" height="150" src="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100356.jpg?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail" alt="" srcset="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100356.jpg?resize=150%2C150&ssl=1 150w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100356.jpg?zoom=2&resize=150%2C150&ssl=1 300w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100356.jpg?zoom=3&resize=150%2C150&ssl=1 450w" sizes="(max-width: 150px) 85vw, 150px" data-attachment-id="1743" data-permalink="https://www.duckland.org/olympus-digital-camera-59/" data-orig-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100356.jpg?fit=4608%2C3456&ssl=1" data-orig-size="4608,3456" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;11&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;E-M5&quot;,&quot;caption&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;created_timestamp&quot;:&quot;1541859474&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;89&quot;,&quot;iso&quot;:&quot;1250&quot;,&quot;shutter_speed&quot;:&quot;0.001&quot;,&quot;title&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="Water Tree" data-image-description="" data-medium-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100356.jpg?fit=300%2C225&ssl=1" data-large-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100356.jpg?fit=840%2C630&ssl=1" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon landscape'>
<a href='https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100358.jpg?fit=4608%2C3456&ssl=1' title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-4"><img width="150" height="150" src="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100358.jpg?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail" alt="" srcset="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100358.jpg?resize=150%2C150&ssl=1 150w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100358.jpg?zoom=2&resize=150%2C150&ssl=1 300w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100358.jpg?zoom=3&resize=150%2C150&ssl=1 450w" sizes="(max-width: 150px) 85vw, 150px" data-attachment-id="1742" data-permalink="https://www.duckland.org/olympus-digital-camera-58/" data-orig-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100358.jpg?fit=4608%2C3456&ssl=1" data-orig-size="4608,3456" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;5.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;E-M5&quot;,&quot;caption&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;created_timestamp&quot;:&quot;1541859713&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;150&quot;,&quot;iso&quot;:&quot;1250&quot;,&quot;shutter_speed&quot;:&quot;0.00625&quot;,&quot;title&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="Pine Cones" data-image-description="" data-medium-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100358.jpg?fit=300%2C225&ssl=1" data-large-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB100358.jpg?fit=840%2C630&ssl=1" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon landscape'>
<a href='https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB110392.jpg?fit=4608%2C3456&ssl=1' title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-4"><img width="150" height="150" src="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB110392.jpg?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail" alt="" srcset="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB110392.jpg?resize=150%2C150&ssl=1 150w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB110392.jpg?zoom=2&resize=150%2C150&ssl=1 300w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB110392.jpg?zoom=3&resize=150%2C150&ssl=1 450w" sizes="(max-width: 150px) 85vw, 150px" data-attachment-id="1741" data-permalink="https://www.duckland.org/olympus-digital-camera-57/" data-orig-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB110392.jpg?fit=4608%2C3456&ssl=1" data-orig-size="4608,3456" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;6.3&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;E-M5&quot;,&quot;caption&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;created_timestamp&quot;:&quot;1541931979&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;132&quot;,&quot;iso&quot;:&quot;1250&quot;,&quot;shutter_speed&quot;:&quot;0.0025&quot;,&quot;title&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="Fall Ball" data-image-description="" data-medium-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB110392.jpg?fit=300%2C225&ssl=1" data-large-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB110392.jpg?fit=840%2C630&ssl=1" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon landscape'>
<a href='https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB110393.jpg?fit=4608%2C3456&ssl=1' title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-4"><img width="150" height="150" src="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB110393.jpg?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail" alt="" srcset="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB110393.jpg?resize=150%2C150&ssl=1 150w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB110393.jpg?zoom=2&resize=150%2C150&ssl=1 300w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB110393.jpg?zoom=3&resize=150%2C150&ssl=1 450w" sizes="(max-width: 150px) 85vw, 150px" data-attachment-id="1740" data-permalink="https://www.duckland.org/olympus-digital-camera-56/" data-orig-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB110393.jpg?fit=4608%2C3456&ssl=1" data-orig-size="4608,3456" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;5.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;E-M5&quot;,&quot;caption&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;created_timestamp&quot;:&quot;1541932390&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;108&quot;,&quot;iso&quot;:&quot;1250&quot;,&quot;shutter_speed&quot;:&quot;0.003125&quot;,&quot;title&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="Signpost for Fun" data-image-description="" data-medium-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB110393.jpg?fit=300%2C225&ssl=1" data-large-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB110393.jpg?fit=840%2C630&ssl=1" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon landscape'>
<a href='https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB110396.jpg?fit=4608%2C2993&ssl=1' title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-4"><img width="150" height="150" src="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB110396.jpg?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail" alt="" srcset="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB110396.jpg?resize=150%2C150&ssl=1 150w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB110396.jpg?zoom=2&resize=150%2C150&ssl=1 300w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB110396.jpg?zoom=3&resize=150%2C150&ssl=1 450w" sizes="(max-width: 150px) 85vw, 150px" data-attachment-id="1739" data-permalink="https://www.duckland.org/olympus-digital-camera-55/" data-orig-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB110396.jpg?fit=4608%2C2993&ssl=1" data-orig-size="4608,2993" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;E-M5&quot;,&quot;caption&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;created_timestamp&quot;:&quot;1541934783&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;1250&quot;,&quot;shutter_speed&quot;:&quot;0.0005&quot;,&quot;title&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="Bridge" data-image-description="" data-medium-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB110396.jpg?fit=300%2C195&ssl=1" data-large-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/PB110396.jpg?fit=840%2C546&ssl=1" /></a>
</div></figure>
</div>

View file

@ -0,0 +1,31 @@
---
id: 1758
title: Quick Photos from TRF
date: 2018-11-19T20:52:27-06:00
author: don
layout: post
guid: https://www.duckland.org/?p=1758
permalink: /2018/11/quick-photos-from-trf/
image: 'https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/11/P1010718.jpg?fit=1200%2C900&ssl=1'
categories:
- Photos
---
As is our habit, we often go to TRF.  This weekend, we finally made it.  However, the weather was less than perfect.  Around 50F and raining off and on.  I still had a good time, and the family mainly enjoyed themselves as well, but I kept the small camera I brought with me away for most of the day.
I did manage to get a couple of keepers, but not a lot.
<div data-carousel-extra='{"blog_id":1,"permalink":"https:\/\/www.duckland.org\/2018\/11\/quick-photos-from-trf\/"}' id='gallery-5' class='gallery galleryid-1758 gallery-columns-3 gallery-size-medium'>
<figure class='gallery-item'>
<div class='gallery-icon portrait'>
<a href='https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/11/P1010724.jpg?fit=2754%2C3672&ssl=1' title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-5"><img width="225" height="300" src="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/11/P1010724.jpg?fit=225%2C300&ssl=1" class="attachment-medium size-medium" alt="" srcset="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/11/P1010724.jpg?w=2754&ssl=1 2754w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/11/P1010724.jpg?resize=225%2C300&ssl=1 225w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/11/P1010724.jpg?resize=768%2C1024&ssl=1 768w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/11/P1010724.jpg?resize=1200%2C1600&ssl=1 1200w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/11/P1010724.jpg?w=1680&ssl=1 1680w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/11/P1010724.jpg?w=2520&ssl=1 2520w" sizes="(max-width: 225px) 85vw, 225px" data-attachment-id="1756" data-permalink="https://www.duckland.org/i-am-looking-at-you/" data-orig-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/11/P1010724.jpg?fit=2754%2C3672&ssl=1" data-orig-size="2754,3672" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;6.1&quot;,&quot;credit&quot;:&quot;Donald Harper&quot;,&quot;camera&quot;:&quot;DMC-ZS40&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1542552829&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;107.5&quot;,&quot;iso&quot;:&quot;400&quot;,&quot;shutter_speed&quot;:&quot;0.033333333333333&quot;,&quot;title&quot;:&quot;I am Looking At You&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="I am Looking At You" data-image-description="" data-medium-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/11/P1010724.jpg?fit=225%2C300&ssl=1" data-large-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/11/P1010724.jpg?fit=768%2C1024&ssl=1" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon landscape'>
<a href='https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/11/P1010718.jpg?fit=4896%2C3672&ssl=1' title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-5"><img width="300" height="225" src="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/11/P1010718.jpg?fit=300%2C225&ssl=1" class="attachment-medium size-medium" alt="" srcset="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/11/P1010718.jpg?w=4896&ssl=1 4896w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/11/P1010718.jpg?resize=300%2C225&ssl=1 300w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/11/P1010718.jpg?resize=768%2C576&ssl=1 768w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/11/P1010718.jpg?resize=1024%2C768&ssl=1 1024w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/11/P1010718.jpg?resize=1200%2C900&ssl=1 1200w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/11/P1010718.jpg?w=1680&ssl=1 1680w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/11/P1010718.jpg?w=2520&ssl=1 2520w" sizes="(max-width: 300px) 85vw, 300px" data-attachment-id="1755" data-permalink="https://www.duckland.org/leave-veins/" data-orig-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/11/P1010718.jpg?fit=4896%2C3672&ssl=1" data-orig-size="4896,3672" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;5.1&quot;,&quot;credit&quot;:&quot;Donald Harper&quot;,&quot;camera&quot;:&quot;DMC-ZS40&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1542539608&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;19&quot;,&quot;iso&quot;:&quot;400&quot;,&quot;shutter_speed&quot;:&quot;0.025&quot;,&quot;title&quot;:&quot;Leave Veins&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Leaf Veins" data-image-description="" data-medium-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/11/P1010718.jpg?fit=300%2C225&ssl=1" data-large-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/11/P1010718.jpg?fit=840%2C630&ssl=1" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon portrait'>
<a href='https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/P1010726.jpg?fit=3672%2C4896&ssl=1' title="" data-rl_title="" class="rl-gallery-link" data-rl_caption="" data-rel="lightbox-gallery-5"><img width="225" height="300" src="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/P1010726.jpg?fit=225%2C300&ssl=1" class="attachment-medium size-medium" alt="" srcset="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/P1010726.jpg?w=3672&ssl=1 3672w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/P1010726.jpg?resize=225%2C300&ssl=1 225w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/P1010726.jpg?resize=768%2C1024&ssl=1 768w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/P1010726.jpg?resize=1200%2C1600&ssl=1 1200w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/P1010726.jpg?w=1680&ssl=1 1680w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/P1010726.jpg?w=2520&ssl=1 2520w" sizes="(max-width: 225px) 85vw, 225px" data-attachment-id="1754" data-permalink="https://www.duckland.org/one-helm-to-scare-them-all/" data-orig-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/P1010726.jpg?fit=3672%2C4896&ssl=1" data-orig-size="3672,4896" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;3.5&quot;,&quot;credit&quot;:&quot;Donald Harper&quot;,&quot;camera&quot;:&quot;DMC-ZS40&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1542553866&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.4000000953674&quot;,&quot;iso&quot;:&quot;400&quot;,&quot;shutter_speed&quot;:&quot;0.066666666666667&quot;,&quot;title&quot;:&quot;One Helm To Scare Them All&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="One Helm To Scare Them All" data-image-description="" data-medium-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/P1010726.jpg?fit=225%2C300&ssl=1" data-large-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/11/P1010726.jpg?fit=768%2C1024&ssl=1" /></a>
</div></figure>
</div>

View file

@ -0,0 +1,45 @@
---
id: 1807
title: A look behind, and a look ahead
date: 2018-12-31T12:15:24-06:00
author: don
layout: post
guid: https://www.duckland.org/?p=1807
permalink: /2018/12/a-look-behind-and-a-look-ahead/
image: 'https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/08/20180806064337.jpg?fit=1200%2C675&ssl=1'
categories:
- Personal
- PixelBook
- R810
---
As 2018 draws to a close, it is the way of things to look at the year past, and then look ahead.
<!-- TEASER_END -->
## A look behind&#8230;
My main tech experience this year has been using the <a rel="noreferrer noopener" aria-label="PixelBook (opens in a new tab)" href="/category/os/chromeos/pixelbook/" target="_blank">PixelBook</a> as my main computing device. This for the most part has worked out well. Everything I needed to do I figured out a way to do it under ChromeOS, and most of the time it was as easy to do as under Linux.
The only place that I feel it was a struggle was with photo editing. If I chose to only use GApps, then it works well, but since I have 10+ years of photos not in the Google ecosystem, I need something else, and this is where ChromeOS currently hits a limit. While using <a rel="noreferrer noopener" aria-label="AfterShot Pro (opens in a new tab)" href="https://www.aftershotpro.com/" target="_blank">AfterShot Pro</a>, I notice that the Linux container struggles with both memory and disk IO. Given what I am planning on in the coming year, this may become bigger issue for me.
In playing around, I installed <a rel="noreferrer noopener" aria-label="Ubuntu 18.10 (opens in a new tab)" href="https://ubuntu.com" target="_blank">Ubuntu 18.10</a> on my <a rel="noreferrer noopener" aria-label="HP R810 (opens in a new tab)" href="/category/os/hardware/r810/" target="_blank">HP R810</a> to have a look, and surprisingly, I liked what I saw. If I do move back to Linux over ChromeOS, then 18.10 is the answer. I doubt the R810 will be the platform, as while I love the size, the battery is only good for 3-4 hours at best, and the PixelBook will run 8-10 hours, and is about 1/2 as think as well.
Looking at news from the $JOB, due to a co-worker moving to a different group, I find myself back in a managers role again. This is in addition to my normal work. My new team is US based operations folks (I work in Engineering), who thankfully all sit near me. Their day-to-day will be managed by someone currently on the team who has a deep understanding of the operational concerns. I should be more of the HR manager approving time off, helping with reviews, and that sort of fun.
## ..and a look ahead
I have come up with a few areas I am planning to work on in the coming year.
Professionally, I want to take the team management and use it as a catalyst to learn what being a manager in the 21st century looks like. I plan to use both resources from the $JOB and from reading that I am planning to do. Traditionally, I only read fiction books in my down time, so this will be a big shift for me there.
I also have looked into what it would take for me to get a promotion at work, and there are many areas in pure tech, tech management, and people management for me to explore and learn.
Personally, I have two areas I want to focus on: Photography and my health.
In photography, I want to get back into the habit of taking pictures every day, and looking at the world in terms of light and textures. To do this, I am planning on doing what is called a &#8216;Project 52&#8217; which is posting one photo per week for 52 weeks. I am planning on working 12 themes, one per month, to help me focus on what I am shooting.
For health, I want to train to run a 5K by Thanksgiving. This will help me in many areas, and seems to be a very doable goal. First step is to get up and get moving!
## Keeping it (me) real
I will try to post check-ins on how I am doing on the various projects and goals. The $JOB ones will have to be vague, but the personal ones I should be able to give more details.
I also have plans to be more active here, and try to post at least monthly with something real to share.

View file

@ -0,0 +1,55 @@
---
id: 1790
title: 'TRF 2018 Photos : General'
date: 2018-12-14T12:15:27-06:00
author: don
layout: post
guid: https://www.duckland.org/?p=1790
permalink: /2018/12/trf-2018-photos-general/
image: 'https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250090.jpg?fit=1200%2C900&ssl=1'
categories:
- Photos
---
Part four of my TRF Photos series.  This time the photos which did not fall into any of the other categories.
<ul data-carousel-extra='{"blog_id":1,"permalink":"https:\/\/www.duckland.org\/2018\/12\/trf-2018-photos-general\/"}' class="wp-block-gallery columns-3 is-cropped">
<li class="blocks-gallery-item">
<figure><img data-attachment-id="1803" data-permalink="https://www.duckland.org/2018/12/trf-2018-photos-general/pb250107/" data-orig-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250107.jpg?fit=4608%2C2592&ssl=1" data-orig-size="4608,2592" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;11&quot;,&quot;credit&quot;:&quot;Donald Harper&quot;,&quot;camera&quot;:&quot;E-M5&quot;,&quot;caption&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;created_timestamp&quot;:&quot;1543146370&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;40&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.00125&quot;,&quot;title&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Fall Colors II" data-image-description="" data-medium-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250107.jpg?fit=300%2C169&ssl=1" data-large-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250107.jpg?fit=840%2C473&ssl=1" src="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250107.jpg?resize=840%2C473&#038;ssl=1" alt="" data-id="1803" data-link="https://www.duckland.org/?attachment_id=1803" class="wp-image-1803" srcset="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250107.jpg?resize=1024%2C576&ssl=1 1024w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250107.jpg?resize=300%2C169&ssl=1 300w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250107.jpg?resize=768%2C432&ssl=1 768w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250107.jpg?resize=1200%2C675&ssl=1 1200w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250107.jpg?w=1680&ssl=1 1680w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250107.jpg?w=2520&ssl=1 2520w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 1362px) 62vw, 840px" data-recalc-dims="1" /><figcaption>Fall Colors II</figcaption></figure>
</li>
<li class="blocks-gallery-item">
<figure><img data-attachment-id="1802" data-permalink="https://www.duckland.org/2018/12/trf-2018-photos-general/pb250084/" data-orig-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250084.jpg?fit=4608%2C2592&ssl=1" data-orig-size="4608,2592" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;9&quot;,&quot;credit&quot;:&quot;Donald Harper&quot;,&quot;camera&quot;:&quot;E-M5&quot;,&quot;caption&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;created_timestamp&quot;:&quot;1543144935&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;30&quot;,&quot;iso&quot;:&quot;1250&quot;,&quot;shutter_speed&quot;:&quot;0.00125&quot;,&quot;title&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Fall Colors I" data-image-description="" data-medium-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250084.jpg?fit=300%2C169&ssl=1" data-large-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250084.jpg?fit=840%2C473&ssl=1" src="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250084.jpg?resize=840%2C473&#038;ssl=1" alt="" data-id="1802" data-link="https://www.duckland.org/?attachment_id=1802" class="wp-image-1802" srcset="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250084.jpg?resize=1024%2C576&ssl=1 1024w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250084.jpg?resize=300%2C169&ssl=1 300w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250084.jpg?resize=768%2C432&ssl=1 768w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250084.jpg?resize=1200%2C675&ssl=1 1200w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250084.jpg?w=1680&ssl=1 1680w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250084.jpg?w=2520&ssl=1 2520w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 1362px) 62vw, 840px" data-recalc-dims="1" /><figcaption>Fall Colors I</figcaption></figure>
</li>
<li class="blocks-gallery-item">
<figure><img data-attachment-id="1801" data-permalink="https://www.duckland.org/2018/12/trf-2018-photos-general/pb250080/" data-orig-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250080.jpg?fit=4608%2C2592&ssl=1" data-orig-size="4608,2592" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;3.2&quot;,&quot;credit&quot;:&quot;Donald Harper&quot;,&quot;camera&quot;:&quot;E-M5&quot;,&quot;caption&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;created_timestamp&quot;:&quot;1543144796&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;30&quot;,&quot;iso&quot;:&quot;1250&quot;,&quot;shutter_speed&quot;:&quot;0.01&quot;,&quot;title&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Yellow Dragon" data-image-description="" data-medium-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250080.jpg?fit=300%2C169&ssl=1" data-large-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250080.jpg?fit=840%2C473&ssl=1" src="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250080.jpg?resize=840%2C473&#038;ssl=1" alt="" data-id="1801" data-link="https://www.duckland.org/?attachment_id=1801" class="wp-image-1801" srcset="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250080.jpg?resize=1024%2C576&ssl=1 1024w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250080.jpg?resize=300%2C169&ssl=1 300w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250080.jpg?resize=768%2C432&ssl=1 768w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250080.jpg?resize=1200%2C675&ssl=1 1200w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250080.jpg?w=1680&ssl=1 1680w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250080.jpg?w=2520&ssl=1 2520w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 1362px) 62vw, 840px" data-recalc-dims="1" /><figcaption>Yellow Dragon</figcaption></figure>
</li>
<li class="blocks-gallery-item">
<figure><img data-attachment-id="1800" data-permalink="https://www.duckland.org/2018/12/trf-2018-photos-general/pb250092/" data-orig-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250092.jpg?fit=4608%2C2592&ssl=1" data-orig-size="4608,2592" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;9&quot;,&quot;credit&quot;:&quot;Donald Harper&quot;,&quot;camera&quot;:&quot;E-M5&quot;,&quot;caption&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;created_timestamp&quot;:&quot;1543145601&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;30&quot;,&quot;iso&quot;:&quot;1250&quot;,&quot;shutter_speed&quot;:&quot;0.00125&quot;,&quot;title&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Sunflower" data-image-description="" data-medium-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250092.jpg?fit=300%2C169&ssl=1" data-large-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250092.jpg?fit=840%2C473&ssl=1" src="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250092.jpg?resize=840%2C473&#038;ssl=1" alt="" data-id="1800" data-link="https://www.duckland.org/?attachment_id=1800" class="wp-image-1800" srcset="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250092.jpg?resize=1024%2C576&ssl=1 1024w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250092.jpg?resize=300%2C169&ssl=1 300w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250092.jpg?resize=768%2C432&ssl=1 768w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250092.jpg?resize=1200%2C675&ssl=1 1200w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250092.jpg?w=1680&ssl=1 1680w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250092.jpg?w=2520&ssl=1 2520w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 1362px) 62vw, 840px" data-recalc-dims="1" /><figcaption>Sunflower</figcaption></figure>
</li>
<li class="blocks-gallery-item">
<figure><img data-attachment-id="1799" data-permalink="https://www.duckland.org/2018/12/trf-2018-photos-general/pb250090/" data-orig-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250090.jpg?fit=4608%2C3456&ssl=1" data-orig-size="4608,3456" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;5.6&quot;,&quot;credit&quot;:&quot;Donald Harper&quot;,&quot;camera&quot;:&quot;E-M5&quot;,&quot;caption&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;created_timestamp&quot;:&quot;1543145484&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;30&quot;,&quot;iso&quot;:&quot;1250&quot;,&quot;shutter_speed&quot;:&quot;0.003125&quot;,&quot;title&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Green Man" data-image-description="" data-medium-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250090.jpg?fit=300%2C225&ssl=1" data-large-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250090.jpg?fit=840%2C630&ssl=1" src="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250090.jpg?resize=840%2C630&#038;ssl=1" alt="" data-id="1799" data-link="https://www.duckland.org/?attachment_id=1799" class="wp-image-1799" srcset="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250090.jpg?resize=1024%2C768&ssl=1 1024w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250090.jpg?resize=300%2C225&ssl=1 300w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250090.jpg?resize=768%2C576&ssl=1 768w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250090.jpg?resize=1200%2C900&ssl=1 1200w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250090.jpg?w=1680&ssl=1 1680w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250090.jpg?w=2520&ssl=1 2520w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 1362px) 62vw, 840px" data-recalc-dims="1" /><figcaption>Green Man</figcaption></figure>
</li>
<li class="blocks-gallery-item">
<figure><img data-attachment-id="1798" data-permalink="https://www.duckland.org/2018/12/trf-2018-photos-general/pb250109/" data-orig-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250109.jpg?fit=4608%2C3456&ssl=1" data-orig-size="4608,3456" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;4.1&quot;,&quot;credit&quot;:&quot;Donald Harper&quot;,&quot;camera&quot;:&quot;E-M5&quot;,&quot;caption&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;created_timestamp&quot;:&quot;1543146431&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;45&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.025&quot;,&quot;title&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Press" data-image-description="" data-medium-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250109.jpg?fit=300%2C225&ssl=1" data-large-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250109.jpg?fit=840%2C630&ssl=1" src="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250109.jpg?resize=840%2C630&#038;ssl=1" alt="" data-id="1798" data-link="https://www.duckland.org/?attachment_id=1798" class="wp-image-1798" srcset="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250109.jpg?resize=1024%2C768&ssl=1 1024w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250109.jpg?resize=300%2C225&ssl=1 300w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250109.jpg?resize=768%2C576&ssl=1 768w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250109.jpg?resize=1200%2C900&ssl=1 1200w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250109.jpg?w=1680&ssl=1 1680w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250109.jpg?w=2520&ssl=1 2520w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 1362px) 62vw, 840px" data-recalc-dims="1" /><figcaption>Press</figcaption></figure>
</li>
<li class="blocks-gallery-item">
<figure><img data-attachment-id="1797" data-permalink="https://www.duckland.org/2018/12/trf-2018-photos-general/pb250147/" data-orig-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250147.jpg?fit=4608%2C3456&ssl=1" data-orig-size="4608,3456" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;7.1&quot;,&quot;credit&quot;:&quot;Donald Harper&quot;,&quot;camera&quot;:&quot;E-M5&quot;,&quot;caption&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;created_timestamp&quot;:&quot;1543147728&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;150&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.0025&quot;,&quot;title&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Hanging Shadows" data-image-description="" data-medium-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250147.jpg?fit=300%2C225&ssl=1" data-large-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250147.jpg?fit=840%2C630&ssl=1" src="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250147.jpg?resize=840%2C630&#038;ssl=1" alt="" data-id="1797" data-link="https://www.duckland.org/?attachment_id=1797" class="wp-image-1797" srcset="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250147.jpg?resize=1024%2C768&ssl=1 1024w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250147.jpg?resize=300%2C225&ssl=1 300w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250147.jpg?resize=768%2C576&ssl=1 768w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250147.jpg?resize=1200%2C900&ssl=1 1200w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250147.jpg?w=1680&ssl=1 1680w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250147.jpg?w=2520&ssl=1 2520w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 1362px) 62vw, 840px" data-recalc-dims="1" /><figcaption>Hanging Shadows</figcaption></figure>
</li>
<li class="blocks-gallery-item">
<figure><img data-attachment-id="1796" data-permalink="https://www.duckland.org/2018/12/trf-2018-photos-general/pb250141/" data-orig-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250141.jpg?fit=4608%2C3456&ssl=1" data-orig-size="4608,3456" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.8&quot;,&quot;credit&quot;:&quot;Donald Harper&quot;,&quot;camera&quot;:&quot;E-M5&quot;,&quot;caption&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;created_timestamp&quot;:&quot;1543147057&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;30&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.02&quot;,&quot;title&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Rat Pack" data-image-description="" data-medium-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250141.jpg?fit=300%2C225&ssl=1" data-large-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250141.jpg?fit=840%2C630&ssl=1" src="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250141.jpg?resize=840%2C630&#038;ssl=1" alt="" data-id="1796" data-link="https://www.duckland.org/?attachment_id=1796" class="wp-image-1796" srcset="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250141.jpg?resize=1024%2C768&ssl=1 1024w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250141.jpg?resize=300%2C225&ssl=1 300w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250141.jpg?resize=768%2C576&ssl=1 768w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250141.jpg?resize=1200%2C900&ssl=1 1200w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250141.jpg?w=1680&ssl=1 1680w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250141.jpg?w=2520&ssl=1 2520w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 1362px) 62vw, 840px" data-recalc-dims="1" /><figcaption>Rat Pack</figcaption></figure>
</li>
<li class="blocks-gallery-item">
<figure><img data-attachment-id="1795" data-permalink="https://www.duckland.org/2018/12/trf-2018-photos-general/pb250192/" data-orig-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250192.jpg?fit=4608%2C2592&ssl=1" data-orig-size="4608,2592" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;7.1&quot;,&quot;credit&quot;:&quot;Donald Harper&quot;,&quot;camera&quot;:&quot;E-M5&quot;,&quot;caption&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;created_timestamp&quot;:&quot;1543154246&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;19&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.002&quot;,&quot;title&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Bird Whistles" data-image-description="" data-medium-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250192.jpg?fit=300%2C169&ssl=1" data-large-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250192.jpg?fit=840%2C473&ssl=1" src="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250192.jpg?resize=840%2C473&#038;ssl=1" alt="" data-id="1795" data-link="https://www.duckland.org/?attachment_id=1795" class="wp-image-1795" srcset="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250192.jpg?resize=1024%2C576&ssl=1 1024w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250192.jpg?resize=300%2C169&ssl=1 300w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250192.jpg?resize=768%2C432&ssl=1 768w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250192.jpg?resize=1200%2C675&ssl=1 1200w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250192.jpg?w=1680&ssl=1 1680w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250192.jpg?w=2520&ssl=1 2520w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 1362px) 62vw, 840px" data-recalc-dims="1" /><figcaption>Bird Whistles</figcaption></figure>
</li>
<li class="blocks-gallery-item">
<figure><img data-attachment-id="1794" data-permalink="https://www.duckland.org/2018/12/trf-2018-photos-general/pb250203/" data-orig-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250203.jpg?fit=3294%2C3294&ssl=1" data-orig-size="3294,3294" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;10&quot;,&quot;credit&quot;:&quot;Donald Harper&quot;,&quot;camera&quot;:&quot;E-M5&quot;,&quot;caption&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;created_timestamp&quot;:&quot;1543154578&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;19&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.001&quot;,&quot;title&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Here Be Dragons!" data-image-description="" data-medium-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250203.jpg?fit=300%2C300&ssl=1" data-large-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250203.jpg?fit=840%2C840&ssl=1" src="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250203.jpg?resize=840%2C840&#038;ssl=1" alt="" data-id="1794" data-link="https://www.duckland.org/?attachment_id=1794" class="wp-image-1794" srcset="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250203.jpg?resize=1024%2C1024&ssl=1 1024w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250203.jpg?resize=150%2C150&ssl=1 150w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250203.jpg?resize=300%2C300&ssl=1 300w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250203.jpg?resize=768%2C768&ssl=1 768w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250203.jpg?resize=1200%2C1200&ssl=1 1200w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250203.jpg?w=1680&ssl=1 1680w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250203.jpg?w=2520&ssl=1 2520w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 1362px) 62vw, 840px" data-recalc-dims="1" /><figcaption>Here Be Dragons!</figcaption></figure>
</li>
<li class="blocks-gallery-item">
<figure><img data-attachment-id="1793" data-permalink="https://www.duckland.org/2018/12/trf-2018-photos-general/pb250155/" data-orig-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250155.jpg?fit=3456%2C4608&ssl=1" data-orig-size="3456,4608" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;6.3&quot;,&quot;credit&quot;:&quot;Donald Harper&quot;,&quot;camera&quot;:&quot;E-M5&quot;,&quot;caption&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;created_timestamp&quot;:&quot;1543148913&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;40&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.005&quot;,&quot;title&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Straw Brooms" data-image-description="" data-medium-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250155.jpg?fit=225%2C300&ssl=1" data-large-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250155.jpg?fit=768%2C1024&ssl=1" src="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250155.jpg?resize=768%2C1024&#038;ssl=1" alt="" data-id="1793" data-link="https://www.duckland.org/?attachment_id=1793" class="wp-image-1793" srcset="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250155.jpg?resize=768%2C1024&ssl=1 768w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250155.jpg?resize=225%2C300&ssl=1 225w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250155.jpg?resize=1200%2C1600&ssl=1 1200w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250155.jpg?w=1680&ssl=1 1680w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250155.jpg?w=2520&ssl=1 2520w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 984px) 61vw, (max-width: 1362px) 45vw, 600px" data-recalc-dims="1" /><figcaption>Straw Brooms</figcaption></figure>
</li>
<li class="blocks-gallery-item">
<figure><img data-attachment-id="1792" data-permalink="https://www.duckland.org/2018/12/trf-2018-photos-general/pb250222/" data-orig-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250222.jpg?fit=4608%2C2592&ssl=1" data-orig-size="4608,2592" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;5.6&quot;,&quot;credit&quot;:&quot;Donald Harper&quot;,&quot;camera&quot;:&quot;E-M5&quot;,&quot;caption&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;created_timestamp&quot;:&quot;1543156500&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;132&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.003125&quot;,&quot;title&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Play with Me" data-image-description="" data-medium-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250222.jpg?fit=300%2C169&ssl=1" data-large-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250222.jpg?fit=840%2C473&ssl=1" src="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250222.jpg?resize=840%2C473&#038;ssl=1" alt="" data-id="1792" data-link="https://www.duckland.org/?attachment_id=1792" class="wp-image-1792" srcset="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250222.jpg?resize=1024%2C576&ssl=1 1024w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250222.jpg?resize=300%2C169&ssl=1 300w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250222.jpg?resize=768%2C432&ssl=1 768w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250222.jpg?resize=1200%2C675&ssl=1 1200w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250222.jpg?w=1680&ssl=1 1680w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250222.jpg?w=2520&ssl=1 2520w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 1362px) 62vw, 840px" data-recalc-dims="1" /><figcaption>Play with Me</figcaption></figure>
</li>
<li class="blocks-gallery-item">
<figure><img data-attachment-id="1791" data-permalink="https://www.duckland.org/2018/12/trf-2018-photos-general/pb250272/" data-orig-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250272.jpg?fit=4608%2C3456&ssl=1" data-orig-size="4608,3456" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;8&quot;,&quot;credit&quot;:&quot;Donald Harper&quot;,&quot;camera&quot;:&quot;E-M5&quot;,&quot;caption&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;created_timestamp&quot;:&quot;1543163335&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;116&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.0015625&quot;,&quot;title&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Fairy Wings" data-image-description="" data-medium-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250272.jpg?fit=300%2C225&ssl=1" data-large-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250272.jpg?fit=840%2C630&ssl=1" src="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250272.jpg?resize=840%2C630&#038;ssl=1" alt="" data-id="1791" data-link="https://www.duckland.org/?attachment_id=1791" class="wp-image-1791" srcset="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250272.jpg?resize=1024%2C768&ssl=1 1024w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250272.jpg?resize=300%2C225&ssl=1 300w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250272.jpg?resize=768%2C576&ssl=1 768w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250272.jpg?resize=1200%2C900&ssl=1 1200w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250272.jpg?w=1680&ssl=1 1680w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250272.jpg?w=2520&ssl=1 2520w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 1362px) 62vw, 840px" data-recalc-dims="1" /><figcaption>Fairy Wings</figcaption></figure>
</li>
</ul>

View file

@ -0,0 +1,34 @@
---
id: 1782
title: 'TRF 2018 Photos : Holiday'
date: 2018-12-11T12:15:26-06:00
author: don
layout: post
guid: https://www.duckland.org/?p=1782
permalink: /2018/12/trf-2018-photos-holiday/
image: 'https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250077.jpg?fit=1200%2C1200&ssl=1'
categories:
- Photos
---
Part three of my TRF Photos series.  This time looking at Holiday decorations.
<ul data-carousel-extra='{"blog_id":1,"permalink":"https:\/\/www.duckland.org\/2018\/12\/trf-2018-photos-holiday\/"}' class="wp-block-gallery columns-3 is-cropped">
<li class="blocks-gallery-item">
<figure><img data-attachment-id="1783" data-permalink="https://www.duckland.org/2018/12/trf-2018-photos-holiday/olympus-digital-camera-82/" data-orig-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250099.jpg?fit=3456%2C3456&ssl=1" data-orig-size="3456,3456" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;6.3&quot;,&quot;credit&quot;:&quot;Donald Harper&quot;,&quot;camera&quot;:&quot;E-M5&quot;,&quot;caption&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;created_timestamp&quot;:&quot;1543146098&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;58&quot;,&quot;iso&quot;:&quot;1250&quot;,&quot;shutter_speed&quot;:&quot;0.004&quot;,&quot;title&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Hanging Ornament III" data-image-description="" data-medium-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250099.jpg?fit=300%2C300&ssl=1" data-large-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250099.jpg?fit=840%2C840&ssl=1" src="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250099.jpg?resize=840%2C840&#038;ssl=1" alt="" data-id="1783" data-link="https://www.duckland.org/?attachment_id=1783" class="wp-image-1783" srcset="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250099.jpg?resize=1024%2C1024&ssl=1 1024w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250099.jpg?resize=150%2C150&ssl=1 150w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250099.jpg?resize=300%2C300&ssl=1 300w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250099.jpg?resize=768%2C768&ssl=1 768w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250099.jpg?resize=1200%2C1200&ssl=1 1200w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250099.jpg?w=1680&ssl=1 1680w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250099.jpg?w=2520&ssl=1 2520w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 1362px) 62vw, 840px" data-recalc-dims="1" /><figcaption>Hanging Ornament III</figcaption></figure>
</li>
<li class="blocks-gallery-item">
<figure><img data-attachment-id="1784" data-permalink="https://www.duckland.org/2018/12/trf-2018-photos-holiday/olympus-digital-camera-83/" data-orig-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250077.jpg?fit=3456%2C3456&ssl=1" data-orig-size="3456,3456" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;9&quot;,&quot;credit&quot;:&quot;Donald Harper&quot;,&quot;camera&quot;:&quot;E-M5&quot;,&quot;caption&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;created_timestamp&quot;:&quot;1543144456&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;30&quot;,&quot;iso&quot;:&quot;1250&quot;,&quot;shutter_speed&quot;:&quot;0.00125&quot;,&quot;title&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Beaver and Tree" data-image-description="" data-medium-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250077.jpg?fit=300%2C300&ssl=1" data-large-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250077.jpg?fit=840%2C840&ssl=1" src="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250077.jpg?resize=840%2C840&#038;ssl=1" alt="" data-id="1784" data-link="https://www.duckland.org/?attachment_id=1784" class="wp-image-1784" srcset="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250077.jpg?resize=1024%2C1024&ssl=1 1024w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250077.jpg?resize=150%2C150&ssl=1 150w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250077.jpg?resize=300%2C300&ssl=1 300w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250077.jpg?resize=768%2C768&ssl=1 768w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250077.jpg?resize=1200%2C1200&ssl=1 1200w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250077.jpg?w=1680&ssl=1 1680w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250077.jpg?w=2520&ssl=1 2520w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 1362px) 62vw, 840px" data-recalc-dims="1" /><figcaption>Beaver and Tree</figcaption></figure>
</li>
<li class="blocks-gallery-item">
<figure><img data-attachment-id="1785" data-permalink="https://www.duckland.org/2018/12/trf-2018-photos-holiday/olympus-digital-camera-84/" data-orig-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250158.jpg?fit=4424%2C3318&ssl=1" data-orig-size="4424,3318" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;5.6&quot;,&quot;credit&quot;:&quot;Donald Harper&quot;,&quot;camera&quot;:&quot;E-M5&quot;,&quot;caption&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;created_timestamp&quot;:&quot;1543149189&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;150&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.01&quot;,&quot;title&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Hanging Ornament II" data-image-description="" data-medium-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250158.jpg?fit=300%2C225&ssl=1" data-large-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250158.jpg?fit=840%2C630&ssl=1" src="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250158.jpg?resize=840%2C630&#038;ssl=1" alt="" data-id="1785" data-link="https://www.duckland.org/?attachment_id=1785" class="wp-image-1785" srcset="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250158.jpg?resize=1024%2C768&ssl=1 1024w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250158.jpg?resize=300%2C225&ssl=1 300w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250158.jpg?resize=768%2C576&ssl=1 768w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250158.jpg?resize=1200%2C900&ssl=1 1200w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250158.jpg?w=1680&ssl=1 1680w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250158.jpg?w=2520&ssl=1 2520w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 1362px) 62vw, 840px" data-recalc-dims="1" /><figcaption>Hanging Ornament II</figcaption></figure>
</li>
<li class="blocks-gallery-item">
<figure><img data-attachment-id="1786" data-permalink="https://www.duckland.org/2018/12/trf-2018-photos-holiday/olympus-digital-camera-85/" data-orig-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250229.jpg?fit=3421%2C3421&ssl=1" data-orig-size="3421,3421" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;7.1&quot;,&quot;credit&quot;:&quot;Donald Harper&quot;,&quot;camera&quot;:&quot;E-M5&quot;,&quot;caption&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;created_timestamp&quot;:&quot;1543157180&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;40&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.004&quot;,&quot;title&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Window Cat" data-image-description="" data-medium-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250229.jpg?fit=300%2C300&ssl=1" data-large-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250229.jpg?fit=840%2C840&ssl=1" src="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250229.jpg?resize=840%2C840&#038;ssl=1" alt="" data-id="1786" data-link="https://www.duckland.org/?attachment_id=1786" class="wp-image-1786" srcset="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250229.jpg?resize=1024%2C1024&ssl=1 1024w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250229.jpg?resize=150%2C150&ssl=1 150w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250229.jpg?resize=300%2C300&ssl=1 300w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250229.jpg?resize=768%2C768&ssl=1 768w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250229.jpg?resize=1200%2C1200&ssl=1 1200w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250229.jpg?w=1680&ssl=1 1680w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250229.jpg?w=2520&ssl=1 2520w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 1362px) 62vw, 840px" data-recalc-dims="1" /><figcaption>Window Cat</figcaption></figure>
</li>
<li class="blocks-gallery-item">
<figure><img data-attachment-id="1787" data-permalink="https://www.duckland.org/2018/12/trf-2018-photos-holiday/olympus-digital-camera-86/" data-orig-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250139.jpg?fit=4608%2C3456&ssl=1" data-orig-size="4608,3456" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;4&quot;,&quot;credit&quot;:&quot;Donald Harper&quot;,&quot;camera&quot;:&quot;E-M5&quot;,&quot;caption&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;created_timestamp&quot;:&quot;1543147012&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;30&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.008&quot;,&quot;title&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Holiday Duck!" data-image-description="" data-medium-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250139.jpg?fit=300%2C225&ssl=1" data-large-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250139.jpg?fit=840%2C630&ssl=1" src="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250139.jpg?resize=840%2C630&#038;ssl=1" alt="" data-id="1787" data-link="https://www.duckland.org/?attachment_id=1787" class="wp-image-1787" srcset="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250139.jpg?resize=1024%2C768&ssl=1 1024w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250139.jpg?resize=300%2C225&ssl=1 300w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250139.jpg?resize=768%2C576&ssl=1 768w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250139.jpg?resize=1200%2C900&ssl=1 1200w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250139.jpg?w=1680&ssl=1 1680w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250139.jpg?w=2520&ssl=1 2520w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 1362px) 62vw, 840px" data-recalc-dims="1" /><figcaption>Holiday Duck!</figcaption></figure>
</li>
<li class="blocks-gallery-item">
<figure><img data-attachment-id="1788" data-permalink="https://www.duckland.org/2018/12/trf-2018-photos-holiday/olympus-digital-camera-87/" data-orig-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250101.jpg?fit=4247%2C3185&ssl=1" data-orig-size="4247,3185" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;8&quot;,&quot;credit&quot;:&quot;Donald Harper&quot;,&quot;camera&quot;:&quot;E-M5&quot;,&quot;caption&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;created_timestamp&quot;:&quot;1543146169&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;150&quot;,&quot;iso&quot;:&quot;1250&quot;,&quot;shutter_speed&quot;:&quot;0.0015625&quot;,&quot;title&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Hanging Ornament I" data-image-description="" data-medium-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250101.jpg?fit=300%2C225&ssl=1" data-large-file="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250101.jpg?fit=840%2C630&ssl=1" src="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250101.jpg?resize=840%2C630&#038;ssl=1" alt="" data-id="1788" data-link="https://www.duckland.org/?attachment_id=1788" class="wp-image-1788" srcset="https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250101.jpg?resize=1024%2C768&ssl=1 1024w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250101.jpg?resize=300%2C225&ssl=1 300w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250101.jpg?resize=768%2C576&ssl=1 768w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250101.jpg?resize=1200%2C900&ssl=1 1200w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250101.jpg?w=1680&ssl=1 1680w, https://i1.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250101.jpg?w=2520&ssl=1 2520w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 1362px) 62vw, 840px" data-recalc-dims="1" /><figcaption>Hanging Ornament I</figcaption></figure>
</li>
</ul>

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,23 @@
---
id: 1778
title: 'TRF 2018 Photos : Water Lilies'
date: 2018-12-08T12:15:50-06:00
author: don
layout: post
guid: https://www.duckland.org/?p=1778
permalink: /2018/12/trf-2018-photos-water-lilies/
image: 'https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250243-2.jpg?fit=1200%2C675&ssl=1'
categories:
- Photos
---
Part two of my TRF Photos series. Today, Water Lilies from the Water Liley Garden.
<img data-attachment-id="1772" data-permalink="https://www.duckland.org/olympus-digital-camera-75/" data-orig-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250259-1.jpg?fit=2884%2C2884&ssl=1" data-orig-size="2884,2884" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;5.6&quot;,&quot;credit&quot;:&quot;Donald Harper&quot;,&quot;camera&quot;:&quot;E-M5&quot;,&quot;caption&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;created_timestamp&quot;:&quot;1543162631&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;30&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.003125&quot;,&quot;title&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="PB250259.jpg" data-image-description="" data-medium-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250259-1.jpg?fit=300%2C300&ssl=1" data-large-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250259-1.jpg?fit=840%2C840&ssl=1" src="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250259-1.jpg?resize=840%2C840&#038;ssl=1" class="wp-image-1772 alignnone size-full" width="840" height="840" srcset="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250259-1.jpg?w=2884&ssl=1 2884w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250259-1.jpg?resize=150%2C150&ssl=1 150w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250259-1.jpg?resize=300%2C300&ssl=1 300w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250259-1.jpg?resize=768%2C768&ssl=1 768w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250259-1.jpg?resize=1024%2C1024&ssl=1 1024w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250259-1.jpg?resize=1200%2C1200&ssl=1 1200w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250259-1.jpg?w=1680&ssl=1 1680w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250259-1.jpg?w=2520&ssl=1 2520w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 1362px) 62vw, 840px" data-recalc-dims="1" />
<img data-attachment-id="1776" data-permalink="https://www.duckland.org/olympus-digital-camera-79/" data-orig-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250253-1.jpg?fit=4608%2C2592&ssl=1" data-orig-size="4608,2592" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;6.3&quot;,&quot;credit&quot;:&quot;Donald Harper&quot;,&quot;camera&quot;:&quot;E-M5&quot;,&quot;caption&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;created_timestamp&quot;:&quot;1543162586&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;30&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.0025&quot;,&quot;title&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="PB250253.jpg" data-image-description="" data-medium-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250253-1.jpg?fit=300%2C169&ssl=1" data-large-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250253-1.jpg?fit=840%2C473&ssl=1" src="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250253-1.jpg?resize=840%2C473&#038;ssl=1" class="alignnone size-full wp-image-1776" width="840" height="473" srcset="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250253-1.jpg?w=4608&ssl=1 4608w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250253-1.jpg?resize=300%2C169&ssl=1 300w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250253-1.jpg?resize=768%2C432&ssl=1 768w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250253-1.jpg?resize=1024%2C576&ssl=1 1024w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250253-1.jpg?resize=1200%2C675&ssl=1 1200w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250253-1.jpg?w=1680&ssl=1 1680w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250253-1.jpg?w=2520&ssl=1 2520w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 1362px) 62vw, 840px" data-recalc-dims="1" />
<img data-attachment-id="1773" data-permalink="https://www.duckland.org/olympus-digital-camera-76/" data-orig-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250247-1.jpg?fit=4608%2C2592&ssl=1" data-orig-size="4608,2592" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;5.6&quot;,&quot;credit&quot;:&quot;Donald Harper&quot;,&quot;camera&quot;:&quot;E-M5&quot;,&quot;caption&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;created_timestamp&quot;:&quot;1543162448&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;150&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.0125&quot;,&quot;title&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="PB250247.jpg" data-image-description="" data-medium-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250247-1.jpg?fit=300%2C169&ssl=1" data-large-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250247-1.jpg?fit=840%2C473&ssl=1" src="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250247-1.jpg?resize=840%2C473&#038;ssl=1" class="wp-image-1773 alignnone size-full" width="840" height="473" srcset="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250247-1.jpg?w=4608&ssl=1 4608w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250247-1.jpg?resize=300%2C169&ssl=1 300w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250247-1.jpg?resize=768%2C432&ssl=1 768w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250247-1.jpg?resize=1024%2C576&ssl=1 1024w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250247-1.jpg?resize=1200%2C675&ssl=1 1200w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250247-1.jpg?w=1680&ssl=1 1680w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250247-1.jpg?w=2520&ssl=1 2520w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 1362px) 62vw, 840px" data-recalc-dims="1" />
<img data-attachment-id="1774" data-permalink="https://www.duckland.org/olympus-digital-camera-77/" data-orig-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250243-1.jpg?fit=4608%2C2592&ssl=1" data-orig-size="4608,2592" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;6.3&quot;,&quot;credit&quot;:&quot;Donald Harper&quot;,&quot;camera&quot;:&quot;E-M5&quot;,&quot;caption&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;created_timestamp&quot;:&quot;1543162399&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;150&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.0025&quot;,&quot;title&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="PB250243.jpg" data-image-description="" data-medium-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250243-1.jpg?fit=300%2C169&ssl=1" data-large-file="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250243-1.jpg?fit=840%2C473&ssl=1" src="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250243-1.jpg?resize=840%2C473&#038;ssl=1" class="wp-image-1774 alignnone size-full" width="840" height="473" srcset="https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250243-1.jpg?w=4608&ssl=1 4608w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250243-1.jpg?resize=300%2C169&ssl=1 300w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250243-1.jpg?resize=768%2C432&ssl=1 768w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250243-1.jpg?resize=1024%2C576&ssl=1 1024w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250243-1.jpg?resize=1200%2C675&ssl=1 1200w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250243-1.jpg?w=1680&ssl=1 1680w, https://i2.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250243-1.jpg?w=2520&ssl=1 2520w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 1362px) 62vw, 840px" data-recalc-dims="1" />
<img data-attachment-id="1775" data-permalink="https://www.duckland.org/olympus-digital-camera-78/" data-orig-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250237-1.jpg?fit=4608%2C2592&ssl=1" data-orig-size="4608,2592" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;6.3&quot;,&quot;credit&quot;:&quot;Donald Harper&quot;,&quot;camera&quot;:&quot;E-M5&quot;,&quot;caption&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;created_timestamp&quot;:&quot;1543162299&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;150&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.003125&quot;,&quot;title&quot;:&quot;OLYMPUS DIGITAL CAMERA&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="PB250237.jpg" data-image-description="" data-medium-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250237-1.jpg?fit=300%2C169&ssl=1" data-large-file="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250237-1.jpg?fit=840%2C473&ssl=1" src="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250237-1.jpg?resize=840%2C473&#038;ssl=1" class="alignnone size-full wp-image-1775" width="840" height="473" srcset="https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250237-1.jpg?w=4608&ssl=1 4608w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250237-1.jpg?resize=300%2C169&ssl=1 300w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250237-1.jpg?resize=768%2C432&ssl=1 768w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250237-1.jpg?resize=1024%2C576&ssl=1 1024w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250237-1.jpg?resize=1200%2C675&ssl=1 1200w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250237-1.jpg?w=1680&ssl=1 1680w, https://i0.wp.com/www.duckland.org/wp-content/uploads/2018/12/PB250237-1.jpg?w=2520&ssl=1 2520w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 1362px) 62vw, 840px" data-recalc-dims="1" />

View file

@ -0,0 +1,28 @@
---
id: 1817
title: 12 Months of Chrome OS
date: 2019-01-07T12:15:50-06:00
author: don
layout: post
guid: https://www.duckland.org/?p=1817
permalink: /2019/01/12-months-of-chrome-os/
categories:
- PixelBook
---
For the last 12+ months, Chrome OS has been my daily driver. And for the most part, it has treated me okay for all that time. Recently, some issues have cropped up.
I have successfully used my <a rel="noreferrer noopener" aria-label="PixelBook (opens in a new tab)" href="/category/os/chromeos/pixelbook/" target="_blank">PixelBook</a> in my day to day life doing things. Telecommuting to work a few days a week. Taking online training for work. Doing basic <a rel="noreferrer noopener" aria-label="photo editing (opens in a new tab)" href="/category/photos/" target="_blank">photo editing</a>. Talking with the family whilst <a rel="noreferrer noopener" aria-label="traveling (opens in a new tab)" href="/category/travel/" target="_blank">traveling.</a> <a rel="noreferrer noopener" aria-label="and helping launch a great father/child program (opens in a new tab)" href="https://www.katorination.com/" target="_blank">Helping launch a great father/child program</a>. I can run Linux apps, android apps, commercial apps, in addition to web based apps. It has been great.
And, the hardware is awesome. Thin, light, and has a battery to last all day working on it unplugged. The screen has served me well .
My problems started to come in one of the strengths of the platform: the automatic updates. Chrome OS will automatically download in the background any updates to the apps (besides the Linux apps, but I can deal with that), and will either install them and let you know in the case of apps, or will let you know that an OS update is ready, and I all need to do is reboot.
This is great, when it works. For most of the year, the OS updates came at a reasonable pace. They also added new features and fixed bugs without changing things on me without warning. However, this fall, the updates started getting few. I found odd since the PixelBook is the Google flagship for Chrome OS. There were even a few updates which skipped the PixelBook.
Then the last one hit, and performance took a dive. The worst part is, it is only sometimes. Sometimes I will move the mouse, and it takes a few to catch up. Video is choppy. Switching tabs or to a different app might take a few seconds. And no word from Google when the fix will come.
The performance issue would not be enough for me to stop using Chrome OS as Google does have a good track record of fixing things. Without any news on when it will be fix, I may have to start weighing my options.
The area this is really impacting me is my photography work-flow. As I <a rel="noreferrer noopener" aria-label="mentioned last time (opens in a new tab)" href="https://www.duckland.org/2018/12/a-look-behind-and-a-look-ahead/" target="_blank">mentioned last time</a>, I am trying to get back into photography a bit more seriously and the lag makes it hard when I am trying to process more than a handful of photos.
My main concern for finding a replacement is to find a laptop of similar specs as the PixelBook, preferably without paying serious money for it.

View file

@ -0,0 +1,18 @@
---
id: 1821
title: And Then, No More PixelBook
date: 2019-02-25T20:11:59-06:00
author: don
layout: post
guid: https://www.duckland.org/?p=1821
permalink: /2019/02/and-then-no-more-pixelbook/
categories:
- PixelBook
- R810
- Ubuntu
---
So, when we were <a rel="noreferrer noopener" aria-label="last here (opens in a new tab)" href="https://www.duckland.org/2019/01/12-months-of-chrome-os/" target="_blank">last here</a>, I was talking about how I had been happily using my <a href="/category/os/chromeos/pixelbook/" target="_blank" rel="noreferrer noopener" aria-label="PixelBook (opens in a new tab)">PixelBook</a> for a year, and everything was just fine. Then, life happened, and things changed, and I found myself working out of the house for a while.
Why should this be a problem? Well, the program I use to remote into the office has a desktop client as well as a web-based one. Under Chrome OS, all I could figure out how to use was the HTML5 web based one. The HTML5 one is fine for the getting and checking email and doing web work. However, it leaves a lot to be desired for any development work.
So, I went back to the trusty <a rel="noreferrer noopener" aria-label="HP R810 (opens in a new tab)" href="/category/hardware/r810/" target="_blank">HP R810</a> again. This time, I am trying out <a href="https://ubuntu.com" target="_blank" rel="noreferrer noopener" aria-label="Ubuntu 18.10 (opens in a new tab)">Ubuntu 18.10</a> with Gnome. I have been at it for about 6 weeks now, and I am still liking it. Even though this is an older laptop, the performance has been very good and it has handled everything I have thrown at it.

View file

@ -0,0 +1,13 @@
---
id: 1825
title: Where did the month go?
date: 2019-03-31T21:39:58-06:00
author: don
layout: post
guid: https://www.duckland.org/?p=1825
permalink: /2019/03/where-did-the-month-go/
categories:
- Personal
- R810
---
Life got very busy, and I have not had a chance to write in a while. And, the &#8216;hard drive&#8217; in my R810 died, so I am in the process of recovering from backup. Joy

View file

@ -0,0 +1,13 @@
---
id: 1827
title: A Quick Note on Citrix
date: 2019-04-01T07:37:11-06:00
author: don
layout: post
guid: https://www.duckland.org/?p=1827
permalink: /2019/04/a-quick-note-on-citrix/
categories:
- Software
- Ubuntu
---
Just so I remember this next time I do an install. The package to install under modern Ubuntu is the Web Receiver, not the Full Package. Sadly, both show up as icaclient under dpkg, hence the confusion.

View file

@ -0,0 +1,60 @@
---
id: 1861
title: Houston's Graffiti Wall
date: 2019-05-08T22:10:45-06:00
author: don
layout: post
guid: https://www.duckland.org/?p=1861
permalink: /2019/05/houstons-graffiti-wall/
image: https://i0.wp.com/www.duckland.org/wp-content/uploads/2019/05/20190505185801-1.jpg
categories:
- Photos
---
Houston's own Graffiti Wall is really a collection of buildings, some of which still house ongoing businesses. I took a stroll around it this past weekend and tried to document some of the great art present.
![pic](/uploads/2019/05/20190505183341-1.jpg)
![pic](/uploads/2019/05/20190505183410-1.jpg)
<!-- TEASER_END -->
![pic](/uploads/2019/05/20190505183632.jpg)
![pic](/uploads/2019/05/20190505183856.jpg)
![pic](/uploads/2019/05/20190505183906.jpg)
![pic](/uploads/2019/05/20190505183926.jpg)
![pic](/uploads/2019/05/20190505183957.jpg)
![pic](/uploads/2019/05/20190505184051.jpg)
![pic](/uploads/2019/05/20190505184302-1.jpg)
![pic](/uploads/2019/05/20190505184333-1.jpg)
![pic](/uploads/2019/05/20190505184438.jpg)
![pic](/uploads/2019/05/20190505184556.jpg)
![pic](/uploads/2019/05/20190505184616.jpg)
![pic](/uploads/2019/05/20190505184748.jpg)
![pic](/uploads/2019/05/20190505184944.jpg)
![pic](/uploads/2019/05/20190505185109.jpg)
![pic](/uploads/2019/05/20190505185146.jpg)
![pic](/uploads/2019/05/20190505185213.jpg)
![pic](/uploads/2019/05/20190505185223-1.jpg)
![pic](/uploads/2019/05/20190505185243.jpg)
![pic](/uploads/2019/05/20190505185632.jpg)
![pic](/uploads/2019/05/20190505185801-1.jpg)

View file

@ -19,12 +19,12 @@ source = 'pictures'
# Destination directory. Can be set here or as the second argument of the
# `sigal build` command (default: '_build')
destination = '/home/chronos/user/src/www/www.duckland.org/output/photos/'
destination = '/home/don/src/www.duckland.org/output/photos/'
# Theme :
# - colorbox (default), galleria, photoswipe, or the path to a custom theme directory
#theme = 'galleria'
theme = 'colorbox'
theme = 'galleria'
#theme = 'colorbox'
# Author. Used in the footer of the pages and in the author meta tag.
author = 'Don Harper'

View file

@ -0,0 +1,9 @@
The MIT License (MIT)
Copyright (c) 2017 Roberto Alsina, Valere Jeantet
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

View file

@ -0,0 +1,14 @@
A port of the Casper theme from Ghost, via https://github.com/vjeantet/hugo-theme-casper/
License is MIT
Included is a copy of Genericons, which is GPLv2
The Silk Road image is CC licensed from
[Jonathan Kos-Read](http://www.flickr.com/photos/jonathankosread/)
Special variables
* TWITTER_URL
* GITHUB_URL
* BANNER_URL

View file

@ -0,0 +1,108 @@
nav.breadcrumb{
margin-bottom:0px;
}
nav.breadcrumb li {
display: inline ;
font-size: 14px;
font-family: helvetica;
}
nav.breadcrumb li a {
text-decoration: none;
}
nav.breadcrumb li a:after {
content: " >";
}
nav.navpage {
font-size: 1em;
font-family: helvetica;
width: 100%;
}
nav.navpage > ul {
background: #efefef;
background: linear-gradient(top, #efefef 0%, #bbbbbb 100%);
background: -moz-linear-gradient(top, #efefef 0%, #bbbbbb 100%);
background: -webkit-linear-gradient(top, #efefef 0%,#bbbbbb 100%);
box-shadow: 0px 0px 90px rgba(0,0,0,0.15);
padding: 0 20px;
border-radius: 10px;
list-style: none;
position: relative;
display: inline-table;
width: 100%;
}
nav.navpage li {
list-style: none;
}
nav.navpage:after {
content: ""; clear: both; display: block;
}
nav.navpage > ul > li > a {
font-weight: bold;
text-decoration: none;
font-size: 1.2em;
font-variant: small-caps;
}
nav.navpage ul {
padding-left: 0px;
margin-left: 0px;
}
nav.navpage ul ul li {
display: block;
margin-left: 30px;
line-height: 1.2em;
}
nav.navpage ul ul li a {
text-decoration: none
}
nav.navpage ul ul li a:hover {
text-decoration: underline;
}
nav.navpage ul ul li:after {
content: "";
}
nav.navpage ul ul li ul li{
display: block;
font-size: smaller;
margin-left: 30px;
line-height: 1.1em;
}
nav.navchildren{
margin-top: 0px;
background: #efefef;
background: linear-gradient(top, #efefef 0%, #bbbbbb 100%);
background: -moz-linear-gradient(top, #efefef 0%, #bbbbbb 100%);
background: -webkit-linear-gradient(top, #efefef 0%,#bbbbbb 100%);
box-shadow: 0px 0px 90px rgba(0,0,0,0.15);
padding: 0 20px;
border-radius: 10px;
list-style: none;
position: relative;
display: inline-table;
width: 100%;
}
nav.navchildren li {
font-size: smaller;
line-height: 1.1em;
font-family: helvetica;
/*display: block;*/
}
nav.navchildren a {
line-height: 1.1em;
text-decoration: none
}
nav.navchildren a:hover {
text-decoration: underline;
}

File diff suppressed because it is too large Load diff

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 822 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 250 KiB

View file

@ -0,0 +1,61 @@
/**
* Main JS file for Casper behaviours
*/
/* globals jQuery, document */
(function ($, undefined) {
"use strict";
var $document = $(document);
$document.ready(function () {
var $postContent = $(".post-content");
$postContent.fitVids();
$(".scroll-down").arctic_scroll();
$(".menu-button[href='#'], .nav-cover, .nav-close").on("click", function(e){
e.preventDefault();
$("body").toggleClass("nav-opened nav-closed");
});
$(".nested-url").on("click", function(e) {
e.preventDefault();
var childrenClassName = $(e.target).data("children");
$("." + childrenClassName).toggleClass("hidden");
});
});
// Arctic Scroll by Paul Adam Davis
// https://github.com/PaulAdamDavis/Arctic-Scroll
$.fn.arctic_scroll = function (options) {
var defaults = {
elem: $(this),
speed: 500
},
allOptions = $.extend(defaults, options);
allOptions.elem.click(function (event) {
event.preventDefault();
var $this = $(this),
$htmlBody = $('html, body'),
offset = ($this.attr('data-offset')) ? $this.attr('data-offset') : false,
position = ($this.attr('data-position')) ? $this.attr('data-position') : false,
toMove;
if (offset) {
toMove = parseInt(offset);
$htmlBody.stop(true, false).animate({scrollTop: ($(this.hash).offset().top + toMove) }, allOptions.speed);
} else if (position) {
toMove = parseInt(position);
$htmlBody.stop(true, false).animate({scrollTop: toMove }, allOptions.speed);
} else {
$htmlBody.stop(true, false).animate({scrollTop: ($(this.hash).offset().top) }, allOptions.speed);
}
});
};
})(jQuery);

View file

@ -0,0 +1,67 @@
/*global jQuery */
/*jshint browser:true */
/*!
* FitVids 1.1
*
* Copyright 2013, Chris Coyier - http://css-tricks.com + Dave Rupert - http://daverupert.com
* Credit to Thierry Koblentz - http://www.alistapart.com/articles/creating-intrinsic-ratios-for-video/
* Released under the WTFPL license - http://sam.zoy.org/wtfpl/
*
*/
(function( $ ){
"use strict";
$.fn.fitVids = function( options ) {
var settings = {
customSelector: null
};
if(!document.getElementById('fit-vids-style')) {
// appendStyles: https://github.com/toddmotto/fluidvids/blob/master/dist/fluidvids.js
var head = document.head || document.getElementsByTagName('head')[0];
var css = '.fluid-width-video-wrapper{width:100%;position:relative;padding:0;}.fluid-width-video-wrapper iframe,.fluid-width-video-wrapper object,.fluid-width-video-wrapper embed {position:absolute;top:0;left:0;width:100%;height:100%;}';
var div = document.createElement('div');
div.innerHTML = '<p>x</p><style id="fit-vids-style">' + css + '</style>';
head.appendChild(div.childNodes[1]);
}
if ( options ) {
$.extend( settings, options );
}
return this.each(function(){
var selectors = [
"iframe[src*='player.vimeo.com']",
"iframe[src*='youtube.com']",
"iframe[src*='youtube-nocookie.com']",
"iframe[src*='kickstarter.com'][src*='video.html']",
"object",
"embed"
];
if (settings.customSelector) {
selectors.push(settings.customSelector);
}
var $allVideos = $(this).find(selectors.join(','));
$allVideos = $allVideos.not("object object"); // SwfObj conflict patch
$allVideos.each(function(){
var $this = $(this);
if (this.tagName.toLowerCase() === 'embed' && $this.parent('object').length || $this.parent('.fluid-width-video-wrapper').length) { return; }
var height = ( this.tagName.toLowerCase() === 'object' || ($this.attr('height') && !isNaN(parseInt($this.attr('height'), 10))) ) ? parseInt($this.attr('height'), 10) : $this.height(),
width = !isNaN(parseInt($this.attr('width'), 10)) ? parseInt($this.attr('width'), 10) : $this.width(),
aspectRatio = height / width;
if(!$this.attr('id')){
var videoID = 'fitvid' + Math.floor(Math.random()*999999);
$this.attr('id', videoID);
}
$this.wrap('<div class="fluid-width-video-wrapper"></div>').parent('.fluid-width-video-wrapper').css('padding-top', (aspectRatio * 100)+"%");
$this.removeAttr('height').removeAttr('width');
});
});
};
// Works with either jQuery or Zepto
})( window.jQuery || window.Zepto );

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,7 @@
[Theme]
engine = mako
parent = base
author = Roberto Alsina, Valere Jeantet
author_url = http://ralsina.me/
based_on = Casper for Hugo <https://github.com/vjeantet/hugo-theme-casper/>
license = MIT

View file

@ -0,0 +1,8 @@
THEME = 'canterville'
LOGO_URL = 'https://getnikola.com/assets/img/logo.svg'
GLOBAL_CONTEXT = {
'TWITTER_URL': 'https://twitter.com/getnikola',
'GITHUB_URL': 'https://github.com/getnikola',
'LINKEDIN_URL': None,
'BANNER_URL': '/assets/img/silk-road.jpg'
}

View file

@ -0,0 +1 @@
base

View file

@ -0,0 +1,65 @@
## -*- coding: utf-8 -*-
<%namespace name="base" file="base_helper.tmpl" import="*"/>
<%namespace name="header" file="base_header.tmpl" import="*"/>
<%namespace name="footer" file="base_footer.tmpl" import="*"/>
${set_locale(lang)}
${base.html_headstart()}
<%block name="extra_head">
### Leave this block alone.
</%block>
${template_hooks['extra_head']()}
</head>
<body class="nav-closed">
${header.html_navigation_links()}
<div class="site-wrapper">
% if 'main_index' in pagekind and BANNER_URL :
<header class="main-header" style="background-image: url(${BANNER_URL})">
% elif 'post_page' in pagekind and post.meta('banner'):
<header class="main-header" style="background-image: url(${post.meta('banner')})">
% else:
<header class="main-header post-head no-cover">
% endif
<nav class="main-nav overlay clearfix">
<a class="blog-logo" href="${blog_url}"><img src="${logo_url}" alt="Blog Logo" /></a>
<a class="menu-button" href="#"><span class="burger">&#9776;</span><span class="word">Menu</span></a>
</nav>
% if 'main_index' in pagekind:
<div class="vertical">
<div class="main-header-content inner">
% if GITHUB_URL:
<a href="${GITHUB_URL}" target="_blank">
<span class="icon-github" style="color:white;font-size:2em"></span>
</a>
&nbsp;
% endif
% if TWITTER_URL:
<a class="bloglogo" href=${TWITTER_URL} target="_blank">
<span class="icon-twitter" style="color:white;font-size:2em"></span>
</a>
&nbsp;
% endif
% if LINKEDIN_URL:
<a href="${LINKEDIN_URL}" target="_blank">
<span class="icon-linkedin" style="color:white;font-size:2em"></span>
</a>
&nbsp;
% endif
<h1 class="page-title">${title}</h1>
<h2 class="page-description">${description}</h2>
</div>
</div>
<a class="scroll-down icon-arrow-left" href="#content"><span class="hidden">Scroll Down</span></a>
% endif
</header>
<main id="content" class="content" role="main">
<%block name="content"></%block>
</main>
${footer.html_footer()}
</div>
${base.late_load_js()}
<%block name="extra_js"></%block>
${body_end}
${template_hooks['body_end']()}
</body>
</html>

View file

@ -0,0 +1,11 @@
## -*- coding: utf-8 -*-
<%namespace name="base" file="base_helper.tmpl" import="*"/>
<%def name="html_footer()">
%if content_footer:
<footer class="site-footer clearfix">
<section class="poweredby">${content_footer}</section>
${template_hooks['page_footer']()}
</footer>
%endif
</%def>

View file

@ -0,0 +1,79 @@
## -*- coding: utf-8 -*-
<%namespace name="base" file="base_helper.tmpl" import="*"/>
<%def name="html_header()">
<header id="header">
${html_site_title()}
${html_translation_header()}
${html_navigation_links()}
%if search_form:
<div class="searchform" role="search">
${search_form}
</div>
%endif
</header>
${template_hooks['page_header']()}
</%def>
<%def name="html_site_title()">
<h1 id="brand"><a href="${abs_link(_link("root", None, lang))}" title="${blog_title|h}" rel="home">
%if logo_url:
<img src="${logo_url}" alt="${blog_title|h}" id="logo">
%endif
% if show_blog_title:
<span id="blog-title">${blog_title|h}</span>
% endif
</a></h1>
</%def>
<%def name="html_navigation_links()">
<div class="nav">
<h3 class="nav-title">Menu</h3>
<a href="#" class="nav-close">
<span class="hidden">Close</span>
</a>
<ul>
%for url, text in navigation_links[lang]:
% if isinstance(url, tuple):
<%!
from nikola.utils import slugify
%>
<li class="nav-opened" role="presentation">
<a href="javascript:void(0)" class="nested-url" data-children="nested-${slugify(text, lang)}">
${text}
</a>
</li>
%for sublink, subtext in url:
<li class="nav-opened nested-${slugify(text, lang)} hidden" role="presentation">
<a href="${sublink}" class="child">
${subtext}
</a>
</li>
%endfor
% else:
% if rel_link(permalink, url) == "#":
<li class="nav-opened nav-current" role="presentation">
% else:
<li class="nav-opened" role="presentation">
% endif
<a href="${url}">${text}</a>
</li>
% endif
%endfor
${template_hooks['menu']()}
${template_hooks['menu_alt']()}
</ul>
</div>
<span class="nav-cover"></span>
</%def>
<%def name="html_translation_header()">
%if len(translations) > 1:
<div id="toptranslations">
<h2>${messages("Languages:")}</h2>
${base.html_translations()}
</div>
%endif
</%def>

View file

@ -0,0 +1,121 @@
## -*- coding: utf-8 -*-
<%def name="html_headstart()">
<!DOCTYPE html>
<html \
prefix='\
%if use_open_graph or (twitter_card and twitter_card['use_twitter_cards']):
og: http://ogp.me/ns# article: http://ogp.me/ns/article# \
%endif
%if comment_system == 'facebook':
fb: http://ogp.me/ns/fb#
%endif
' \
%if use_open_graph or (twitter_card and twitter_card['use_twitter_cards']):
vocab="http://ogp.me/ns" \
%endif
% if is_rtl:
dir="rtl" \
% endif
\
lang="${lang}">
<head>
<meta charset="utf-8">
% if use_base_tag:
<base href="${abs_link(permalink)}">
% endif
%if description:
<meta name="description" content="${description|h}">
%endif
<meta name="viewport" content="width=device-width">
%if title == blog_title:
<title>${blog_title|h}</title>
%else:
<title>${title|h} | ${blog_title|h}</title>
%endif
${html_stylesheets()}
<meta name="theme-color" content="${theme_color}">
% if meta_generator_tag:
<meta name="generator" content="Nikola (getnikola.com)">
% endif
${html_feedlinks()}
<link rel="canonical" href="${abs_link(permalink)}">
%if favicons:
%for name, file, size in favicons:
<link rel="${name}" href="${file}" sizes="${size}"/>
%endfor
%endif
% if comment_system == 'facebook':
<meta property="fb:app_id" content="${comment_system_id}">
% endif
%if prevlink:
<link rel="prev" href="${prevlink}" type="text/html">
%endif
%if nextlink:
<link rel="next" href="${nextlink}" type="text/html">
%endif
%if use_cdn:
<!--[if lt IE 9]><script src="https://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
%else:
<!--[if lt IE 9]><script src="${url_replacer(permalink, '/assets/js/html5.js', lang, url_type)}"></script><![endif]-->
%endif
${extra_head_data}
</%def>
<%def name="late_load_js()">
<script type="text/javascript" src="/assets/js/jquery.js"></script>
<script type="text/javascript" src="/assets/js/jquery.fitvids.js"></script>
<script type="text/javascript" src="/assets/js/index.js"></script>
</%def>
<%def name="html_stylesheets()">
<link href="/assets/css/rst.css" rel="stylesheet" type="text/css">
<link href="/assets/css/code.css" rel="stylesheet" type="text/css">
<link href="/assets/css/theme.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="/assets/css/screen.css" />
<link rel="stylesheet" type="text/css" href="/assets/css/nav.css" />
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Merriweather:300,700,700italic,300italic|Open+Sans:700,400|Inconsolata" />
% if needs_ipython_css:
<link href="/assets/css/ipython.min.css" rel="stylesheet" type="text/css">
<link href="/assets/css/nikola_ipython.css" rel="stylesheet" type="text/css">
% endif
</%def>
<%def name="html_feedlinks()">
%if rss_link:
${rss_link}
%elif generate_rss:
%if len(translations) > 1:
%for language in sorted(translations):
<link rel="alternate" type="application/rss+xml" title="RSS (${language})" href="${_link('rss', None, language)}">
%endfor
%else:
<link rel="alternate" type="application/rss+xml" title="RSS" href="${_link('rss', None)}">
%endif
%endif
%if generate_atom:
%if len(translations) > 1:
%for language in sorted(translations):
<link rel="alternate" type="application/atom+xml" title="Atom (${language})" href="${_link('index_atom', None, language)}">
%endfor
%else:
<link rel="alternate" type="application/atom+xml" title="Atom" href="${_link('index_atom', None)}">
%endif
%endif
</%def>
<%def name="html_translations()">
<ul class="translations">
%for langname in sorted(translations):
%if langname != lang:
<li><a href="${abs_link(_link("root", None, langname))}" rel="alternate" hreflang="${langname}">${messages("LANGUAGE", langname)}</a></li>
%endif
%endfor
</ul>
</%def>

View file

@ -0,0 +1,62 @@
## -*- coding: utf-8 -*-
<%namespace name="helper" file="index_helper.tmpl"/>
<%namespace name="math" file="math_helper.tmpl"/>
<%namespace name="comments" file="comments_helper.tmpl"/>
<%namespace name="pagination" file="pagination_helper.tmpl"/>
<%inherit file="base.tmpl"/>
<%block name="extra_head">
${parent.extra_head()}
% if posts and (permalink == '/' or permalink == '/' + index_file):
<link rel="prefetch" href="${posts[0].permalink()}" type="text/html">
% endif
${math.math_styles_ifposts(posts)}
</%block>
<%block name="content">
<%block name="content_header"></%block>
% if 'main_index' in pagekind:
${front_index_header}
% endif
% if page_links:
${pagination.page_navigation(current_page, page_links, prevlink, nextlink, prev_next_links_reversed)}
% endif
<div class="postindex">
% for post in posts:
<article class="post post">
<header class="post-header">
<h2 class="post-title"><a href="${post.permalink()}">${post.title()|h}</a></h2>
</header>
%if index_teasers:
<section class="post-excerpt">
${post.text(teaser_only=True)}
%else:
<section class="post-excerpt">
${post.text(teaser_only=False)}
%endif
</section>
<footer class="post-meta">
% if author_pages_generated:
<a href="${_link('author', post.author())}">${post.author()|h}</a>
% else:
${post.author()|h}
% endif
on
% for tag in post.tags:
<a href="link://tag/${tag}">#${tag}</a>,
% endfor
<time class="post-date" datetime="${post.formatted_date('webiso')}">
${post.formatted_date(date_format)|h}
</time>
</footer>
</article>
% endfor
</div>
${helper.html_pager()}
${comments.comment_link_script()}
${math.math_scripts_ifposts(posts)}
</%block>

View file

@ -0,0 +1,63 @@
## -*- coding: utf-8 -*-
<%namespace name="helper" file="post_helper.tmpl"/>
<%namespace name="pheader" file="post_header.tmpl"/>
<%namespace name="comments" file="comments_helper.tmpl"/>
<%namespace name="math" file="math_helper.tmpl"/>
<%inherit file="base.tmpl"/>
<%block name="extra_head">
${parent.extra_head()}
% if post.meta('keywords'):
<meta name="keywords" content="${post.meta('keywords')|h}">
% endif
<meta name="author" content="${post.author()|h}">
%if post.prev_post:
<link rel="prev" href="${post.prev_post.permalink()}" title="${post.prev_post.title()|h}" type="text/html">
%endif
%if post.next_post:
<link rel="next" href="${post.next_post.permalink()}" title="${post.next_post.title()|h}" type="text/html">
%endif
% if post.is_draft:
<meta name="robots" content="noindex">
% endif
${helper.open_graph_metadata(post)}
${helper.twitter_card_information(post)}
${helper.meta_translations(post)}
${math.math_styles_ifpost(post)}
</%block>
<%block name="content">
<article class="post post">
<header class="post-header">
<h1 class="post-title">${post.title()}</h1>
<section class="post-meta"> by
% if author_pages_generated:
<a href="${_link('author', post.author())}">${post.author()|h}</a>
% else:
${post.author()|h}
% endif
on
% for tag in post.tags:
<a href="link://tag/${tag}">#${tag}</a>,
% endfor
<time class="post-date" datetime="${post.formatted_date('webiso')}">
${post.formatted_date(date_format)|h}
</time>
</section>
</header>
<section class="post-content">
${post.text()}
</section>
<footer class="post-footer">
% if not post.meta('nocomments') and site_has_comments:
<section class="comments hidden-print">
<h2>${messages("Comments")}</h2>
${comments.comment_form(post.permalink(absolute=True), post.title(), post._base_path)}
</section>
% endif
${math.math_scripts_ifpost(post)}
</article>
${comments.comment_link_script()}
</%block>