Vegetarian cooking class tonight at Kitchen Window! Instructors name is Anna Dvorak. Wonder if she is related to that Dvorak.
Chimay is so good. Drink good beer.
Very good and informative.
Shutting Down Some Websites
I recently decided to prune some websites that I was hosting, mostly ideas that I set up and then never took anywhere. Tammy had also decided to take her blog, Smaller Than a Redwood, down. I could have just deleted them but I wanted to be a good “net.citizen” and not give people “404 Page not found” errors but instead the more appropriate “410 Gone” message. Here is a simple way to do this with nginx.
First, I catch the websites main configuration which I keep in a file
for each site in /opt/etc/nginx/sites-available. I
try to keep these configurations really simple, just handling the URLs,
ports and then doing the application configuration in an include.
# Redirect to non-www hostname
server {
listen 80;
listen [::]:80;
server_name www.roadsignwordplay.com;
rewrite ^ [roadsignwordplay.com](http://roadsignwordplay.com)$request_uri? permanent;
}
server {
listen 80;
listen [::]:80;
server_name roadsignwordplay.com;
include /opt/etc/nginx/site-gone;
}
The include line then pulls in this configuration. I pointed this at a
new directory in /srv/www so that any files that
the site used to have could be left wherever they are. I also turn on an
access log so I can easily see how many people are still going to the
website. I still do a try_files because I have a robots.txt to help
search engines know to go away. The important part is returning a 410
status and not a 404. The 410 is then handled by the @site-gone rule.
# this config is loaded into sites that are dead
root /srv/www/site-gone/public_html;
access_log /srv/www/site-gone/logs/$host-access.log;
error_log /srv/www/site-gone/logs/error.log ;
location / {
try_files $uri =410;
}
error_page 410 @site-gone;
location @site-gone {
rewrite ^(.*)$ /site-gone.html break;
}
Voila! Site is now “gone”. I whipped up a simple HTML page to serve so people would know that the site was no longer available. And with that I wish Smaller Than a Redwood, Road Sign Wordplay, Road Sign Bingo, MediaWiki Cookbook, Sandbox Wiki and thinglesBot farewell!
Warming up on Kubb pitch for winter tournament at Theodore Wirth Park.
Huh, vim was originally written for the Amiga? Had no idea.
Tyler's Domain
Tyler’s domain name came up for renewal, tylerthing.com. I didn’t even realize this the registration date is the same day as his birthday.
Domain Name : tylerthing.com Registered on : 2/12/2010
Nice. 😊
Super Fort

This morning Mazie, Tyler and I built a super fort in the living room! Here is the view from inside!

It was awesome!

We anchored it on the couch and then built support structures with OGOBILD Kit Pod sets. For Christmas Mazie got one of these sets from Grandma and Grandpa Olson. These things were as much a toy for me as them it seemed. The only problem with the kit? There was only 30 poles and 10 connectors. We couldn’t build big enough.
So, on my 40th birthday I decided the kids each needed a present from me. Two OGOBILD Kit Pods later (Amazon) and we were ready to build! We made some pretty big structures but always wanted to turn them into forts. Sheets weren’t big enough, and they weighed too much. What to do?
Parachute!

Not just any parachute. A 20 foot parachute! I thought about getting the 12 foot one but it seemed like it could be too small. A few days later and we got to build some huge stuff and wrap it in an awesome parachute. More fun than you can shake a stick at!
Honestly the parachute is too big for inside use, but it has plenty of room to make forts out of. Plus it is pretty light so it hangs way better than a sheet. It’s still plenty durable for the kids and even Chase the dog. We had a great morning hanging out in the Super Fort.
Now we just need even more OGOBILD’s to make bigger stuff! Just kidding!
Double event day!
8thBridge team and family ice skating this afternoon at The Depot Minneapolis.
CaringBridge annual event tonight.
Morning Smoothie
We’ve had the Vitamix for about three months now and a morning smoothie has become part of our routine now. We use the Vitamix for many other things as well, but most mornings it will be stacked like this.

We’ve learned that for us we like our smoothies to start with a base. Similar to soups starting with a Mirepoix (onions, carrots and celery), we start every smoothie with a banana, apple and carrot. After that, it’s always a good idea to heap a couple of cups of spinach. It’s great to start the day with a healthy helping of greens. The smoothie above was had a number of frozen berries added on top; blackberries, strawberries, blueberries and raspberries. I also love to put a bunch of peaches with other stuff.
I will typically splash a little almond milk in and pour a teaspoon or so of chia seeds. Sometimes a small dollop of honey as well, but avoid the honey to keep it vegan.
A few seconds later and I’ve got a delicious smoothie!

The only thing not great is that the green spinach and colorful berries tend to make a brown smoothie. But it tastes awesome!