Breaking Up is Hard to Do - The Journey from Jekyll to Bridgetown
Last Updated On: 2025-09-01 04:31:52 -0400
The Breakup Letter
Dear Jekyll,
You and I have had a good damn run. For the past N (where N is at least 8 and likely quite a bit more), we’ve laughed, we’ve loved, we’ve built some damn content ! But, you know what, it is time to breakup. Specifically:
- You stopped evolving; software has to grow or die and you’ve chosen the slow senesce of death
- You, my dear, are just plain slow. While I’m currently facing a 258 second full content build, Bridgetown does the same thing in 18.8 seconds
- Github Pages hasn’t treated you well. Now this one might not be you but the simple fact that it takes me 25 plus minutes to go from git push to live on Github Pages means I have to find a better way to publish or I’ll simply stop writing. And, as any reader of mine knows, I cannot stop writing.
Thank you my old friend for your loyal service. You, however, will not be missed.
Best Scott
But Seriously - Why Am I Migrating?
A Dear Jekyll letter is amusing and all but let’s talk turkey. I’m a hard core Ruby developer and I could likely keep Jekyll running indefinitely but two things are killing me:
- 258 seconds to rebuild my site means that from the moment I save a file, I can’t see a result for almost 5 minutes; that’s intolerable (and no incremental mode is oddly not any better)
- 25 minutes from git push to live on Github is equally intolerable. Given that it generally takes me 3 to 4 cycles of write / edit / publish to get a post done, that makes anything I write a frightful time investment. And as noted above, this may be more Github Pages than Jekyll but if I’m going to change away from Github pages, I may as well consider changing from Jekyll also.
Disclaimer /blog/
I run my blog on the domain fuzzyblog.io with all my content being on /blog/. So all of my examples below show blog/ but that has nothing to do with Bridgetown; it is just a choice that I made by setting the base_path variable in the file:
bridgetownrb.config.yml
Bridgetown is vastly more sophisticated than just a blog – it is a whole server side rendered (SSR) website platform. I simply chose to use it as a blog. And I think that I’m in the minority of people using it for blogging; I suspect most Bridgetown users are creating custom websites with it.
On To Bridgetown
Bridgetown is, a brilliantly, fantastically done rewrite of Jekyll that takes it into the future. Bridgetown was built by Jared White (@jaredcwhite) and he is doing both fantastic work in terms of engineering, product vision and nurturing the community. I honestly don’t think, long winded tho I am, that I have enough good things to say about Jared’s work.
Before you continue reading this, there is a formal migration guide which you should read. Please do that now.
The Differences Between Jekyll and Bridgetown
This section talks about the obvious differences between Jekyll and Bridgetown.
The Directories
There are actually quite a few directory level differences between Jekyll and Bridgetown. Let’s go over the key ones.
The Top Level Directory Structure
Here is the current state of my Jekyll directory structure:
tree ~/Sync/blogging/blog -d -L 1
/Users/sjohnson/Sync/blogging/blog
├── _attachments
├── _drafts
├── _includes
├── _layouts
├── _pages
├── _plugins
├── _posts
├── _sass
├── _site
├── assets
├── css
├── galleries
├── photos
└── tmp
And here is what a freshly created Bridgetown blog looks like:
tree ~/Sync/blogging/bridgetown/blog -d -L 1
/Users/sjohnson/Sync/blogging/bridgetown/blog
├── bin
├── config
├── frontend
├── node_modules
├── output
├── plugins
├── server
└── src
Bye Bye _drafts
The _drafts root folder is now gone. And it is replaced with an yaml tag of:
published: false
And from the docs:
In order to see those items locally in order to preview, pass the –unpublished or -U command line option.
I will admit to having mildly mixed feelings about this. Personally I like the _drafts directory structure because I have 500+ drafts and this makes using something like ls or grep on it very, very simple but I respect the decisions Jared has made so I’m likely wrong here.
Top Level _posts Is Gone and src Is In
The new src directory is where your markdown files live. Here’s what src looks like:
ree ~/Sync/blogging/bridgetown/blog/src -d -L 1
/Users/sjohnson/Sync/blogging/bridgetown/blog/src
├── _components
├── _data
├── _layouts
├── _posts
└── images
I can’t tell you just what an improvement this is. Simply put this is clean and elegant.
Sidebar: I have always found that a sign of a poorly designed, inconsistent system is when after using it for an age, you still have problems finding things and doing simple tasks. I can’t customize my Jekyll installation with a literal raft of four letter words even after all these years. When I started down the DevOps path, I first chose Chef (since it was in Ruby) and after a year of Chef I still had problems. Contrast that with Ansible where after less than a month, I was giving presentations on Ansible to a local meetup.
I honestly can’t wait to start tinkering with my blog again. When I understood my templates better, I used to do this a lot. Now I can do it again.
_site versus output
Jekyll publishes your site to _site whereas Bridgetown uses a directory called output.
Directory Changes in Review
The overall change of moving from top level directories – _site, _posts and _drafts to output and src is excellent. This groups all your inputs into one place (src) and the result of using Bridgetown into another (output). Personally I’d have been tempted to make the directories input and output but I’m also the guy who owns a lot of .io domains.
Post Creation
I have been using the command:
jekyll post "blog post title"
and
jekyll draft "blog post title"
since the very day I started using Jekyll. This comes from the jekyll-compose gem and it handles initial post naming and creation. Now Bridgetown lacks jekyll-compose and this, to a blogger like myself, is a very, very big deal. Blogging works, imho, largely because it abstracts away file creation and file naming.
Happily Bridgetown embeds the classic Rails Rakefile approach to life so I was able to write my own replacement for jekyll-compose just by writing a Rake task and adapting my syntax. The new syntax to create a post is:
bin/bridgetown post:new POST="Equity Allocation For Advisors in Early Stage Startups"
-or-
bridgetown post:new POST="Equity Allocation For Advisors in Early Stage Startups" DRAFT=1
Yes that isn’t quite as nice as jekyll-compose but given that I spun this up in less than a half hour while waiting around my house, I’ll take that for a return on investment in time.
Here’s the source code. Just drop it into the end of your Rakefile.
namespace :post do
# create a new post like jekyll post or jekyll draft
# Example filename: 2022-08-11-equity-allocation-for-advisors-in-early-stage-startups.md
# Usage:
# bridgetown post:new POST="Equity Allocation For Advisors in Early Stage Startups"
# -or-
# bridgetown post:new POST="Equity Allocation For Advisors in Early Stage Startups" DRAFT=1
task :new do #, [:title] do |task, args|
title = ENV['POST']
puts "title = #{title}"
title_for_filename = title.gsub(/ +/, ' ').downcase.gsub(/ /,'-')
date_for_filename = "#{Date.today.year}-#{format('%03d', Date.today.month)}-#{format('%03d', Date.today.day)}"
extension = ".md"
filename = "#{date_for_filename}-#{title_for_filename}#{extension}"
output_dest = File.join(Dir.pwd, 'src/_posts', filename)
output_lines = []
output_lines << "---"
output_lines << "layout: post"
output_lines << "title: #{title}"
output_lines << "category: "
output_lines << "tags: ['']"
if ENV['DRAFT'] == '1'
output_lines << "published: false"
end
output_lines << "---"
output_lines << ""
output_lines << ""
File.open(output_dest, "w+") do |f|
f.puts(output_lines)
end
# todo
# * colorize the output like jekyll
starting_offset = output_dest.index("src/_posts")
puts "\n\nNew post created at: #{output_dest[starting_offset, output_dest.length]}"
end
end
Markdown Templates with Liquid versus HTML Templates with Liquid
Of all the new computer skills I’ve gained in the last decade, I think Markdown is the most significant. Jekyll used to use markdown for content authoring but then revert to index.html with liquid for your table of contents / category / tags pages. To see index.md instead of index.html was utterly delightful. Thank you Jared.
Permalinks
For any blogging tool, permalink structure is key. And the goal with any migration is to maintain fidelity from one iteration of your content to the next.
Here are my existing urls:
- Root: https://fuzzyblog.io/blog/
- Category: https://fuzzyblog.io/blog/category.html
- Tag: https://fuzzyblog.io/blog/tag.html
- Sample Post: https://fuzzyblog.io/blog/rails/2022/07/27/testing-rails-apps-with-factorybot-and-minitest.html
And here is the initial way that Bridgetown was configured:
- Root: http://localhost:4000/blog/
- Category: http://localhost:4000/blog/category/index.html
- Tag: http://localhost:4000/blog/tag/index.html
- Sample Post: http://localhost:4000/blog/rails/2022/07/27/testing-rails-apps-with-factorybot-and-minitest/
The differences between category and tag urls are simply two individual urls and can be ignored but the difference on post urls is actually significant and would break Google search results. Here’s how to fix this:
You need to open the file bridgetown.config.yml and then add an entry like this:
permalink: ":categories/:year/:month/:day/:slug.html"
This then gives you a generated url in your template like this:
http://localhost:4000/blog/javascript/2022/07/31/the-javascript-of-the-twitter-gods
Now the lack of .html confused me so I checked my output directory and I saw this:
ls output/javascript/2022/07/31/
the-javascript-of-the-twitter-gods.html
This made me think that Bridgetown in the interest of clean urls was server side suppressing the “.html” so I just tried the url:
http://localhost:4000/blog/javascript/2022/07/31/the-javascript-of-the-twitter-gods.html
And everything worked. I’m sure there is a way to fix that but as long as my urls work then I don’t really care.
Sidebar: I’m a Dumb Ass (Again)
Debugging my images led me back to my github pages blog where I discovered the url:
https://fuzzyblog.io/blog/twitter/2016/11/26/understanding-twitter-why-is-this-person-following-me
And you can clearly see that there is no .html extension. So clearly Bridgetown is emulating what Jekyll has always done and I simply didn’t realize.
Sigh. As I’ve heard Bryan Cantrill of DTrace fame say, the older I get, the more I realize the less I actually know about computers. I am finding that this is also true for myself.
Debugging Images
In my Jekyll blog, I have images stored in:
/assets
and calls to display images written like this:
/blog/assets/untangling_twitter_why_would_this_person_ever_follow_me.png
Bridgetown uses
src/images
for images and generates image urls like this:
http://localhost:4000/blog/images/untangling_twitter_why_would_this_person_ever_follow_me.png
Now I’m not certain if I was ever supposed to have images in /assets or if that was in the result of using the jekyll-assets plugin or what but this means is that all my existing images have this crappy /assets/ path structure.
The easy way to address this in Bridgetown is simple:
# move to the root of my Bridgetown blog
cd ~/Sync/blogging/bridgetown/blog/
# make a directory called assets
mkdir src/assets
# copy everything from my jekyll assets directory to the new directory
cp -p -r ~/Sync/blogging/blog/assets/* src/assets
Plugin Development is Way Simpler
I talk about this more below but one point I want to make upfront is that plugin development is dramatically easier with Bridgetown. Jared has beautifully simplified the API for plugins, particularly for custom liquid tags.
Doing the Migration
And now we’re at the point of actually doing the migration. I will admit that writing the bits above really fleshed out much of the overall migration.
Installation
My installation on OSX went something like this (please note that I’m going from command line history here since I didn’t document this as I went):
cd ~/Sync/blogging/
gem install bridgetown -N
mkdir bridgetown
cd bridgetown/
bridgetown new blog
bundle binstubs bridgetown-core
This was done on an OSX box running RVM.
The Commands You Need
Here are the commands I’ve had to use:
# get help
bin/bridgetown --help
# build my content
bin/bridgetown build
# start the server
bin/bridgetown start
# clean out a bad build
bin/bridgetown clean
# run the console; advanced users only
bin/bridgetown clean
Sidebar: Pro Tip - When You rm /rf, Make Sure You Restart Your Server
The command
bin/bridgetown build
rebuilds your content. You are likely to run this over and over.
The command
bin/bridgetown clean
wipes your output directory. At one point, due to errors on my part, I ended up with two copies of my content in output (I manually used a string at the start of my permalink so Bridgetown output everything underneath that string as a subdirectory). Naturally I then used:
cd output
rm -rf *
The end result of this was to also wipe out all my asset stuff needed for esbuild. I then got errors like this:
[Server] 127.0.0.1 - - [12/Aug/2022:03:31:46 -0400] "GET /blog/MISSING_ESBUILD_MANIFEST_FILE HTTP/1.1" 404 1760 0.0002
[Server] 127.0.0.1 - - [12/Aug/2022:03:31:47 -0400] "GET /blog/MISSING_ESBUILD_MANIFEST_FILE HTTP/1.1" 404 1760 0.0002
[Server] 127.0.0.1 - - [12/Aug/2022:03:31:47 -0400] "GET /blog/MISSING_ESBUILD_MANIFEST_FILE HTTP/1.1" 404 1760 0.0003
[Server] 127.0.0.1 - - [12/Aug/2022:03:31:47 -0400] "GET /blog/tag/MISSING_ESBUILD_MANIFEST_FILE HTTP/1.1" 404 1760 0.0003
The fix for this is to, well, not do that but also to simply restart the server with ctrl+c and then:
bin/bridgetown start
Copying In Your Content
The basic migration task is as follows:
- Copy _posts over to src/_posts
- Copy images over to src/images (you may need to rename this directory)
- Edit all your drafts to have “published: false” in the yaml front matter. And then you need to copy these into src/_posts. Hopefully you aren’t like me and have over 500 draft posts dating back years. Ah aspirational writing …
- CSS. I’m not normally competent to do much with CSS (still a huge knowledge hole of mine) so I’m going to state that you need to copy these over but I’m still not clear on this issue.
Templates - index.md
The template index.md replaces the jekyll index.html file. Here’s the before and after (note the feed link in the after still isn’t right).
The Before Jekyll Version
---
layout: default
---
<div class="home">
<h1 class="page-heading">Posts</h1>
<p class="rss-subscribe">subscribe <a href="/feed.xml">via RSS</a></p>
</div>
The After Bridgetown Version
---
layout: default
---
<div class="home">
<h1 class="page-heading">Posts</h1>
<h1 id="y2025">August 2025</h1>
<ul>
<li><a href="/">Rails Refactoring - From Enum to Model</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#refactoring">refactoring</a>,
<a href="//tag.html#software_engineering">software_engineering</a>
</li>
<li><a href="/">Useful Postgres Snippets</a> in <a href="//category.html#"></a> tagged as
<a href="//tag.html#"></a>
</li>
<li><a href="/">Understanding Bridgetown Part 2</a> in <a href="//category.html#bridgetown">bridgetown</a> tagged as
<a href="//tag.html#bridgetown">bridgetown</a>,
<a href="//tag.html#theme">theme</a>,
<a href="//tag.html#blogging">blogging</a>,
<a href="//tag.html#ruby">ruby</a>
</li>
<li><a href="/">Solid Kamal Rails 8 Deployment Tutorial</a> in <a href="//category.html#rails8">rails8</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#rails8">rails8</a>,
<a href="//tag.html#kamal">kamal</a>
</li>
<li><a href="/">Rails 8 Activesupport Messageencryptor Invalidmessage</a> in <a href="//category.html#"></a> tagged as
</li>
<li><a href="/">A Key Lesson from 40 Years of Parsing Free Text Data</a> in <a href="//category.html#software_engineering">software_engineering</a> tagged as
<a href="//tag.html#software_engineering">software_engineering</a>,
<a href="//tag.html#parsing">parsing</a>
</li>
<li><a href="/">Using Two Git Accounts and Not Being Able to Commit on the Second One</a> in <a href="//category.html#git">git</a> tagged as
<a href="//tag.html#git">git</a>
</li>
<li><a href="/">Understanding the Git Development Process</a> in <a href="//category.html#development">development</a> tagged as
<a href="//tag.html#development">development</a>,
<a href="//tag.html#git">git</a>
</li>
<li><a href="/">Useful Kamal Command Lines</a> in <a href="//category.html#rails8">rails8</a> tagged as
<a href="//tag.html#kamal">kamal</a>
</li>
<li><a href="/">Best Rails One Liner for Debugging</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#debugging">debugging</a>
</li>
</ul>
<h1 id="y2025">May 2025</h1>
<ul>
<li><a href="/">Useful Kamal Command Lines for Rails Deployment</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#deploy">deploy</a>,
<a href="//tag.html#kamal">kamal</a>,
<a href="//tag.html#docker">docker</a>
</li>
</ul>
<h1 id="y2023">October 2023</h1>
<ul>
<li><a href="/">New Client Git Workflow</a> in <a href="//category.html#git">git</a> tagged as
<a href="//tag.html#git">git</a>
</li>
</ul>
<h1 id="y2023">February 2023</h1>
<ul>
<li><a href="/">Making Money from Hosting as a Small Dev Shop</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#hosting">hosting</a>
</li>
<li><a href="/">Useful NGINX Command Lines and Config Stuff</a> in <a href="//category.html#nginx">nginx</a> tagged as
<a href="//tag.html#nginx">nginx</a>
</li>
<li><a href="/">Rails Coding: How I Seed</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">How To Ensure Crappy Onboarding of New Developers</a> in <a href="//category.html#software_engineering">software_engineering</a> tagged as
<a href="//tag.html#"></a>
</li>
<li><a href="/">Creating Blog Posts Easily in Bridgetown</a> in <a href="//category.html#bridgetown">bridgetown</a> tagged as
<a href="//tag.html#bridgetown">bridgetown</a>
</li>
<li><a href="/">Breaking Up is Hard to Do - The Journey from Jekyll to Bridgetown</a> in <a href="//category.html#bridgetown">bridgetown</a> tagged as
<a href="//tag.html#bridgetown">bridgetown</a>,
<a href="//tag.html#jekyll">jekyll</a>
</li>
<li><a href="/">A Shell Script to Move Files from 1 Rails App to Another</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#bash">bash</a>
</li>
<li><a href="/">Working with Rails 7 and ActiveStorage</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#ActiveStorage">ActiveStorage</a>
</li>
<li><a href="/">Getting Past Lack of Describe Blocks in MiniTest by Using Multiple Test Files</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">From TextMate to Visual Studio Code</a> in <a href="//category.html#textmate">textmate</a> tagged as
<a href="//tag.html#textmate">textmate</a>,
<a href="//tag.html#visual_studio_code">visual_studio_code</a>
</li>
<li><a href="/">Rails 7, HatchBox and the Rails Master Key</a> in <a href="//category.html#hatchbox">hatchbox</a> tagged as
<a href="//tag.html#hatchbox">hatchbox</a>,
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">Learning to Use the Bambu P1P 3D Printer</a> in <a href="//category.html#3d_printing">3d_printing</a> tagged as
<a href="//tag.html#3d_printing">3d_printing</a>,
<a href="//tag.html#bambu">bambu</a>
</li>
<li><a href="/">The Dreaded GitHub Rebase Message</a> in <a href="//category.html#git">git</a> tagged as
<a href="//tag.html#git">git</a>
</li>
<li><a href="/">Increasing The Audience for Your Podcast</a> in <a href="//category.html#podcasting">podcasting</a> tagged as
<a href="//tag.html#podcasting">podcasting</a>
</li>
<li><a href="/">Increasing The Audience for Your Podcast</a> in <a href="//category.html#podcasting">podcasting</a> tagged as
<a href="//tag.html#podcasting">podcasting</a>
</li>
</ul>
<h1 id="y2023">January 2023</h1>
<ul>
<li><a href="/">Django vs Rails 04 - Verifying the Django ORM is Working in the Shell</a> in <a href="//category.html#django">django</a> tagged as
<a href="//tag.html#django">django</a>
</li>
<li><a href="/">Learning Python and Scrapy 01</a> in <a href="//category.html#python">python</a> tagged as
<a href="//tag.html#python">python</a>,
<a href="//tag.html#scrapy">scrapy</a>
</li>
<li><a href="/">Working the hotrails.dev tutorial - Chapter 4 Turbo Frames</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#turbo">turbo</a>,
<a href="//tag.html#hotwire">hotwire</a>
</li>
<li><a href="/">Working the hotrails.dev tutorial - Chapter 3 Turbo Drive</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#turbo">turbo</a>,
<a href="//tag.html#hotwire">hotwire</a>
</li>
<li><a href="/">Working the hotrails.dev tutorial - Chapter 2 CSS</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#turbo">turbo</a>,
<a href="//tag.html#hotwire">hotwire</a>
</li>
<li><a href="/">Working the hotrails.dev tutorial - Chapter 1 Basics</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#turbo">turbo</a>,
<a href="//tag.html#hotwire">hotwire</a>
</li>
<li><a href="/">Working the hotrails.dev tutorial - Chapter 0</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#turbo">turbo</a>,
<a href="//tag.html#hotwire">hotwire</a>
</li>
<li><a href="/">Django versus Rails 03 - Working with the Django ORM versus ActiveRecord</a> in <a href="//category.html#django">django</a> tagged as
<a href="//tag.html#django">django</a>,
<a href="//tag.html#python">python</a>,
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#active_record">active_record</a>,
<a href="//tag.html#ActiveRecord">ActiveRecord</a>
</li>
<li><a href="/">Dynamic Method Introspection in Ruby Versus Python</a> in <a href="//category.html#python">python</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#python">python</a>
</li>
<li><a href="/">Django versus Rails 02 - Working in Python with the Db Layer using ChatGPT to Help Learn</a> in <a href="//category.html#django">django</a> tagged as
<a href="//tag.html#django">django</a>,
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">Django versus Rails 01 - Getting Started</a> in <a href="//category.html#django">django</a> tagged as
<a href="//tag.html#django">django</a>
</li>
<li><a href="/">Using ChatGPT for Web Development</a> in <a href="//category.html#chatgpt">chatgpt</a> tagged as
<a href="//tag.html#chatgpt">chatgpt</a>
</li>
<li><a href="/">Slugs versus Ids in Rails Step by Step</a> in <a href="//category.html#"></a> tagged as
<a href="//tag.html#"></a>
</li>
<li><a href="/">Upgrading Your HatchBox Classic App to Ruby 3.2</a> in <a href="//category.html#hatchbox">hatchbox</a> tagged as
<a href="//tag.html#hatchbox">hatchbox</a>,
<a href="//tag.html#ruby">ruby</a>
</li>
<li><a href="/">Thoughts on Claro</a> in <a href="//category.html#claro">claro</a> tagged as
<a href="//tag.html#claro">claro</a>,
<a href="//tag.html#open_source">open_source</a>
</li>
<li><a href="/">How Kagi Can Get Even Better</a> in <a href="//category.html#kagi">kagi</a> tagged as
<a href="//tag.html#kagi">kagi</a>
</li>
<li><a href="/">What Linux Version Am I Running</a> in <a href="//category.html#linux">linux</a> tagged as
<a href="//tag.html#linux">linux</a>
</li>
<li><a href="/">Use Git from Day 1 Even for Side Projects</a> in <a href="//category.html#software_engineering">software_engineering</a> tagged as
<a href="//tag.html#software_engineering">software_engineering</a>,
<a href="//tag.html#git">git</a>
</li>
<li><a href="/">Creating a New JumpStart App in 2023</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#jumpstart">jumpstart</a>
</li>
</ul>
<h1 id="y2022">December 2022</h1>
<ul>
<li><a href="/">Getting it So Very Wrong in Rails - Foreman, Byebug and Debug</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#debugging">debugging</a>
</li>
<li><a href="/">Using the Internationalization t Function in Rails Console</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#internationalization">internationalization</a>,
<a href="//tag.html#t">t</a>
</li>
<li><a href="/">Giving zsh A Global History</a> in <a href="//category.html#zsh">zsh</a> tagged as
<a href="//tag.html#zsh">zsh</a>,
<a href="//tag.html#shell">shell</a>
</li>
<li><a href="/">Creating a Bridgetown Theme with an Automation</a> in <a href="//category.html#bridgetown">bridgetown</a> tagged as
<a href="//tag.html#bridgetown">bridgetown</a>,
<a href="//tag.html#blog">blog</a>,
<a href="//tag.html#theme">theme</a>
</li>
<li><a href="/">Examples of Using Curl for API Testing</a> in <a href="//category.html#curl">curl</a> tagged as
<a href="//tag.html#curl">curl</a>
</li>
<li><a href="/">How to Deploy a Rails App with HatchBox Classic in Late 2022</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#hatchbox">hatchbox</a>
</li>
<li><a href="/">Bringing up a New Rails 7 App from a Git Clone</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>
</li>
</ul>
<h1 id="y2022">November 2022</h1>
<ul>
<li><a href="/">TheStoryGraph Import Thoughts</a> in <a href="//category.html#storygraph">storygraph</a> tagged as
<a href="//tag.html#storygraph">storygraph</a>
</li>
<li><a href="/">Ruby on Rails - Using the PaperTrail Gem When You Already Have a Version Table</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#paper_trail">paper_trail</a>
</li>
</ul>
<h1 id="y2022">October 2022</h1>
<ul>
<li><a href="/">Ruby - FactoryBot - When Factories with Dependencies Toss Validation Errors</a> in <a href="//category.html#"></a> tagged as
<a href="//tag.html#"></a>
</li>
<li><a href="/">A Review of Tuple for Screen Sharing</a> in <a href="//category.html#screen_sharing">screen_sharing</a> tagged as
<a href="//tag.html#tuple">tuple</a>,
<a href="//tag.html#screen_sharing">screen_sharing</a>
</li>
<li><a href="/">Ruby on Rails - Using the PaperTrail Gem When You Already Have a Version Table</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#paper_trail">paper_trail</a>
</li>
<li><a href="/">Loading YAML with ERB Correctly</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#yaml">yaml</a>
</li>
<li><a href="/">Kill All OSX Processes By a User</a> in <a href="//category.html#osx">osx</a> tagged as
<a href="//tag.html#osx">osx</a>
</li>
<li><a href="/">How do I list all postgres databases on my system</a> in <a href="//category.html#postgres">postgres</a> tagged as
<a href="//tag.html#postgres">postgres</a>
</li>
<li><a href="/">Writing a Health Check Controller for Rails</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">The Security Corollary to Clarkes's First Law</a> in <a href="//category.html#software_engineering">software_engineering</a> tagged as
<a href="//tag.html#software_engineering">software_engineering</a>
</li>
<li><a href="/">How to Ensure a Crappy Developer Onboarding Experience</a> in <a href="//category.html#software_engineering">software_engineering</a> tagged as
<a href="//tag.html#software_engineering">software_engineering</a>
</li>
<li><a href="/">Rails Coding: How I Seed</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">Answering How Do You Get to 10 Million in Sales, 100 Million in Sales?</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>
</li>
</ul>
<h1 id="y2022">September 2022</h1>
<ul>
<li><a href="/">Startup Looking At Design Joy</a> in <a href="//category.html#"></a> tagged as
</li>
<li><a href="/">Solving Redis ERR DB index is out of range</a> in <a href="//category.html#redis">redis</a> tagged as
<a href="//tag.html#redis">redis</a>,
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#jumpstart">jumpstart</a>
</li>
<li><a href="/">Solving Database Seeding Issues - database.yml Is Your Best Friend</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">Rails Scaffold Examples</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">Notes on Using Jumpstart Pro - Logo, Controller Authentication, Controller Admin Authentication</a> in <a href="//category.html#jumpstart">jumpstart</a> tagged as
<a href="//tag.html#jumpstart">jumpstart</a>
</li>
<li><a href="/">A Basic Introduction to SQL</a> in <a href="//category.html#sql">sql</a> tagged as
<a href="//tag.html#sql">sql</a>
</li>
</ul>
<h1 id="y2022">August 2022</h1>
<ul>
<li><a href="/">My Belated Goals for 2022</a> in <a href="//category.html#goals">goals</a> tagged as
<a href="//tag.html#goals">goals</a>
</li>
<li><a href="/">Equity Allocation For Advisors in Early Stage Startups</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>
</li>
<li><a href="/">Being Stupid and Betting Against John Carmack</a> in <a href="//category.html#predictions">predictions</a> tagged as
<a href="//tag.html#predictions">predictions</a>
</li>
<li><a href="/">Your First Post on Bridgetown</a> in <a href="//category.html#updates">updates</a> tagged as
</li>
<li><a href="/">Startup: Looking at Design Joy</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#designjoy">designjoy</a>
</li>
<li><a href="/">Test Blog Post</a> in <a href="//category.html#"></a> tagged as
</li>
<li><a href="/">Deleting Arbitrary Tables and Migrations from a Rails Application</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">Fear, Loathing and Regret with Rails 7 Credentials Edit</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">Deciphering Families of Microcontrollers and Single Board Computers</a> in <a href="//category.html#flow_intelligence">flow_intelligence</a> tagged as
<a href="//tag.html#flow_intelligence">flow_intelligence</a>,
<a href="//tag.html#hardware">hardware</a>,
<a href="//tag.html#raspberry_pi">raspberry_pi</a>,
<a href="//tag.html#arduino">arduino</a>,
<a href="//tag.html#intel_edison">intel_edison</a>,
<a href="//tag.html#beagle_board">beagle_board</a>
</li>
</ul>
<h1 id="y2022">July 2022</h1>
<ul>
<li><a href="/">The JavaScript of the Twitter Gods</a> in <a href="//category.html#javascript">javascript</a> tagged as
<a href="//tag.html#javascript">javascript</a>,
<a href="//tag.html#twitter">twitter</a>
</li>
<li><a href="/">Testing Rails Apps with FactoryBot and MiniTest</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#testing">testing</a>
</li>
<li><a href="/">Hardware Learning 01 - LEDs have a plus side</a> in <a href="//category.html#flow_analytics">flow_analytics</a> tagged as
<a href="//tag.html#flow_analytics">flow_analytics</a>,
<a href="//tag.html#hardware_learning">hardware_learning</a>
</li>
<li><a href="/">Rails Tip : When You Are Testing Model Files without a Database Table Delete Fixtures File</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#software_testing">software_testing</a>,
<a href="//tag.html#flow_analytics">flow_analytics</a>
</li>
<li><a href="/">Maybe I can Stay in NuShell -or- Living in a Diverse Land of Shells</a> in <a href="//category.html#nushell">nushell</a> tagged as
<a href="//tag.html#nushell">nushell</a>
</li>
<li><a href="/">Running Multiple Rails Apps Concurrently with Foreman and Procfile.dev</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#foreman">foreman</a>,
<a href="//tag.html#procfile">procfile</a>
</li>
<li><a href="/">Getting NuShell Usable Under OSX for Myself</a> in <a href="//category.html#nushell">nushell</a> tagged as
<a href="//tag.html#nushell">nushell</a>,
<a href="//tag.html#rust">rust</a>
</li>
<li><a href="/">Value Statements for My New Company</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#flow_analytics">flow_analytics</a>
</li>
<li><a href="/">Modifying Zed's Default Keystrokes</a> in <a href="//category.html#zed">zed</a> tagged as
<a href="//tag.html#zed">zed</a>,
<a href="//tag.html#rust">rust</a>
</li>
<li><a href="/">NuShell - When /bin/bash curl installs fail</a> in <a href="//category.html#nushell">nushell</a> tagged as
<a href="//tag.html#nushell">nushell</a>,
<a href="//tag.html#rust">rust</a>
</li>
<li><a href="/">Fixing a Hosed HomeBrew Installation</a> in <a href="//category.html#osx">osx</a> tagged as
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#homebrew">homebrew</a>
</li>
<li><a href="/">Rust Editors to Replace TextMate 2 - The Agony of Despair</a> in <a href="//category.html#rust">rust</a> tagged as
<a href="//tag.html#rust">rust</a>,
<a href="//tag.html#editor">editor</a>
</li>
<li><a href="/">Registering a Domain with Name Silo</a> in <a href="//category.html#dns">dns</a> tagged as
<a href="//tag.html#dns">dns</a>
</li>
<li><a href="/">Creating a Rails App Using JumpStart Pro</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#jumpstart">jumpstart</a>
</li>
<li><a href="/">Surviving Polyphasic Sleeping</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#health">health</a>,
<a href="//tag.html#life">life</a>
</li>
<li><a href="/">Software Has Rework Too -- Reworking a Rails App</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#software_engineering">software_engineering</a>
</li>
</ul>
<h1 id="y2022">June 2022</h1>
<ul>
<li><a href="/">Web Based Rust Development Tools</a> in <a href="//category.html#rust">rust</a> tagged as
<a href="//tag.html#rust">rust</a>
</li>
<li><a href="/">Rails Deployment - Dysfunctional Relationships Don't Just Happen with People</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#deploy">deploy</a>
</li>
<li><a href="/">Where Is My Rails 7 Master Key</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">An Annotated Startup History Bibliography</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#books">books</a>
</li>
<li><a href="/">Getting Past strscan Gem Issues in Rails</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#hatchbox">hatchbox</a>,
<a href="//tag.html#cartazzi">cartazzi</a>
</li>
<li><a href="/">Using SSL in HatchBox with AWS Route 53</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#hatchbox">hatchbox</a>,
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#route53">route53</a>,
<a href="//tag.html#cartazzi">cartazzi</a>
</li>
<li><a href="/">Building a Bootstrap App with Rails 7 and SCSS Files</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#bootstrap">bootstrap</a>,
<a href="//tag.html#sass">sass</a>,
<a href="//tag.html#scss">scss</a>
</li>
<li><a href="/">Declaring Ruby Bankruptcy, The Ruby Psych 3.1 Issue, RVM and RBEnv</a> in <a href="//category.html#ruby">ruby</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#rvm">rvm</a>,
<a href="//tag.html#rbenv">rbenv</a>
</li>
<li><a href="/">Learning Twitter in 2022</a> in <a href="//category.html#twitter">twitter</a> tagged as
<a href="//tag.html#twitter">twitter</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
<li><a href="/">Thinking About Rails Database Objects and Idempotency</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">Fixing FactoryBot Validation Name Has Already Been Taken Controller Test or Spec Errors</a> in <a href="//category.html#"></a> tagged as
</li>
<li><a href="/">Rails 7, Rodauth, BootRails, Nested Resources and Testing Controllers</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#rodauth">rodauth</a>,
<a href="//tag.html#testing">testing</a>
</li>
<li><a href="/">Getting Font Awesome Working On Rails 7 and Bootstrap albeit Perhaps Poorly</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#fontawesome">fontawesome</a>
</li>
<li><a href="/">Warning in Rails Console Factory Bot Doesn't Seem to reload! Correctly</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#FactoryBot">FactoryBot</a>
</li>
<li><a href="/">Back to Rails Test - Putting Rspec in the Rear View - Test Examples</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#test">test</a>,
<a href="//tag.html#rspec">rspec</a>
</li>
<li><a href="/">Another Day, Another Missing Image from Asset Pipeline</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#asset_pipeline">asset_pipeline</a>
</li>
<li><a href="/">Rails 7 Madness: No such middleware to insert before: ActionDispatch::Static</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">Keeping Your Sanity as a Solo Entrepreneur 01 - Make Everything as Easy as Possible</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>
</li>
</ul>
<h1 id="y2022">May 2022</h1>
<ul>
<li><a href="/">Using MeiliSearch in a Production Rails Environment</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#meilisearch">meilisearch</a>
</li>
<li><a href="/">Specifying Ruby Version for HatchBox Deployment</a> in <a href="//category.html#"></a> tagged as
</li>
<li><a href="/">Git Error: failed to push some refs to</a> in <a href="//category.html#git">git</a> tagged as
<a href="//tag.html#git">git</a>
</li>
<li><a href="/">When RVM Seems Insane Run bundle install</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#rvm">rvm</a>
</li>
<li><a href="/">That Bad Client Job Posting</a> in <a href="//category.html#consulting">consulting</a> tagged as
<a href="//tag.html#consulting">consulting</a>
</li>
<li><a href="/">Job Hound is Back</a> in <a href="//category.html#jobhound">jobhound</a> tagged as
<a href="//tag.html#jobhound">jobhound</a>
</li>
<li><a href="/">Improving Your Podcast Audio Quality</a> in <a href="//category.html#podcasting">podcasting</a> tagged as
<a href="//tag.html#podcasting">podcasting</a>
</li>
<li><a href="/">Miller - A Swiss Army Chainsaw for CSV Data, Data Science and Data Munging</a> in <a href="//category.html#data_science">data_science</a> tagged as
<a href="//tag.html#data_science">data_science</a>,
<a href="//tag.html#csv">csv</a>,
<a href="//tag.html#miller">miller</a>
</li>
</ul>
<h1 id="y2022">April 2022</h1>
<ul>
<li><a href="/">When Rails 7 Doesn't Process application.js</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">Postgres Woes on OSX with libicui18n.69.dylib</a> in <a href="//category.html#postgres">postgres</a> tagged as
<a href="//tag.html#postgres">postgres</a>,
<a href="//tag.html#osx">osx</a>
</li>
<li><a href="/">And Now For Starting Again with Elixir and Phoenix Not Elm</a> in <a href="//category.html#elixir">elixir</a> tagged as
<a href="//tag.html#elixir">elixir</a>,
<a href="//tag.html#phoenix">phoenix</a>
</li>
</ul>
<h1 id="y2022">March 2022</h1>
<ul>
<li><a href="/">Getting Started with Elm 01 - The Very Basics</a> in <a href="//category.html#elm">elm</a> tagged as
<a href="//tag.html#elm">elm</a>
</li>
<li><a href="/">Bad Clients, Gordian Knots and Transparency</a> in <a href="//category.html#consulting">consulting</a> tagged as
<a href="//tag.html#consulting">consulting</a>
</li>
<li><a href="/">Upgrading Elix on OSX with Brew</a> in <a href="//category.html#elixir">elixir</a> tagged as
<a href="//tag.html#elixir">elixir</a>
</li>
</ul>
<h1 id="y2021">December 2021</h1>
<ul>
<li><a href="/">Forcing Grid Stacking with Bootstrap on Mobile</a> in <a href="//category.html#bootstrap">bootstrap</a> tagged as
<a href="//tag.html#bootstrap">bootstrap</a>
</li>
<li><a href="/">Why master.blade.php Isn't Processed in Laravel</a> in <a href="//category.html#laravel">laravel</a> tagged as
<a href="//tag.html#laravel">laravel</a>,
<a href="//tag.html#php">php</a>
</li>
<li><a href="/">Rails 6 - Can't Find Application.js</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>
</li>
</ul>
<h1 id="y2021">August 2021</h1>
<ul>
<li><a href="/">Converting a Laravel App to a Shopify App</a> in <a href="//category.html#laravel">laravel</a> tagged as
<a href="//tag.html#shopify">shopify</a>,
<a href="//tag.html#laravel">laravel</a>,
<a href="//tag.html#php">php</a>
</li>
</ul>
<h1 id="y2021">June 2021</h1>
<ul>
<li><a href="/">Implementing a Master Template and Bootstrap in Laravel 8</a> in <a href="//category.html#laravel">laravel</a> tagged as
<a href="//tag.html#laravel">laravel</a>,
<a href="//tag.html#php">php</a>
</li>
</ul>
<h1 id="y2021">May 2021</h1>
<ul>
<li><a href="/">A Simple Laravel Hello World</a> in <a href="//category.html#laravel">laravel</a> tagged as
<a href="//tag.html#laravel">laravel</a>,
<a href="//tag.html#php">php</a>
</li>
</ul>
<h1 id="y2020">September 2020</h1>
<ul>
<li><a href="/">Converting from MySQL to Postgres using NMIG</a> in <a href="//category.html#mysql">mysql</a> tagged as
<a href="//tag.html#mysql">mysql</a>,
<a href="//tag.html#postgres">postgres</a>
</li>
<li><a href="/">Things I Do To My Every Rails Code Base</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#sysadmin">sysadmin</a>
</li>
<li><a href="/">Taking Another Look at Phoenix and Elixir - Part 1 - Upgrading</a> in <a href="//category.html#elixir">elixir</a> tagged as
<a href="//tag.html#elixir">elixir</a>,
<a href="//tag.html#phoenix">phoenix</a>
</li>
<li><a href="/">Deploying to HatchBox with Rails 5.x</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#deploy">deploy</a>,
<a href="//tag.html#hatchbox">hatchbox</a>
</li>
<li><a href="/">When Postgres Won't Start</a> in <a href="//category.html#postgres">postgres</a> tagged as
<a href="//tag.html#postgres">postgres</a>,
<a href="//tag.html#sysadmin">sysadmin</a>
</li>
</ul>
<h1 id="y2020">August 2020</h1>
<ul>
<li><a href="/">Converting a Ruby Class Library to a Gem</a> in <a href="//category.html#ruby">ruby</a> tagged as
<a href="//tag.html#ruby">ruby</a>
</li>
<li><a href="/">A Shorty But a Goody, Sorting mdfind Results by Date or Size</a> in <a href="//category.html#osx">osx</a> tagged as
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#mdfind">mdfind</a>
</li>
<li><a href="/">An Email to a Fellow Founder Regarding a Possible Acquihire</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#acquisition">acquisition</a>,
<a href="//tag.html#acquihire">acquihire</a>
</li>
</ul>
<h1 id="y2020">July 2020</h1>
<ul>
<li><a href="/">The Complete Idiot's Guide to Refactoring Python Using Multiprocessing Pools</a> in <a href="//category.html#python">python</a> tagged as
<a href="//tag.html#python">python</a>,
<a href="//tag.html#scalability">scalability</a>
</li>
<li><a href="/">Docker Madness - When The Output Order of Debugging Seems Impossible</a> in <a href="//category.html#docker">docker</a> tagged as
<a href="//tag.html#docker">docker</a>,
<a href="//tag.html#python">python</a>
</li>
<li><a href="/">Coding with Python Dictionaries the Ruby Way With Respect to Missing Keys</a> in <a href="//category.html#python">python</a> tagged as
<a href="//tag.html#python">python</a>,
<a href="//tag.html#ruby">ruby</a>
</li>
<li><a href="/">Stupid Docker Tricks - Validating Outbound Connectivity from an Image</a> in <a href="//category.html#docker">docker</a> tagged as
<a href="//tag.html#docker">docker</a>
</li>
<li><a href="/">An Engineering Anti Pattern - New Code Being Written During an Engineer's Final Days</a> in <a href="//category.html#software_engineering">software_engineering</a> tagged as
<a href="//tag.html#software_engineering">software_engineering</a>
</li>
<li><a href="/">When You Can't Ping, You Dig</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>
</li>
<li><a href="/">Dating in the Age of COVID-19</a> in <a href="//category.html#dating">dating</a> tagged as
<a href="//tag.html#social">social</a>,
<a href="//tag.html#dating">dating</a>
</li>
<li><a href="/">So That One Time You Played with Docker</a> in <a href="//category.html#docker">docker</a> tagged as
<a href="//tag.html#docker">docker</a>
</li>
<li><a href="/">Building Data Pipelines Learning Number 01- Die Monolith Die</a> in <a href="//category.html#data_pipeline">data_pipeline</a> tagged as
<a href="//tag.html#data_pipeline">data_pipeline</a>
</li>
<li><a href="/">AWS SQS Pro Tip - Lower Your Costs By Batching Up Data</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#sqs">sqs</a>,
<a href="//tag.html#data_pipeline">data_pipeline</a>
</li>
<li><a href="/">Python Machine Learning Best Practice - Lock Down Your Versions</a> in <a href="//category.html#python">python</a> tagged as
<a href="//tag.html#python">python</a>,
<a href="//tag.html#pipeline">pipeline</a>,
<a href="//tag.html#machine_learning">machine_learning</a>
</li>
<li><a href="/">Linux, Docker and Where Did My Disc Space Go?</a> in <a href="//category.html#pipeline">pipeline</a> tagged as
<a href="//tag.html#linux">linux</a>,
<a href="//tag.html#docker">docker</a>,
<a href="//tag.html#pipeline">pipeline</a>
</li>
<li><a href="/">Embrace Your Tagline at Every Opportunity</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
</ul>
<h1 id="y2020">June 2020</h1>
<ul>
<li><a href="/">Startup Learnings What Piloting Palm Taught Me or Examples of Equity Splits</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#equity">equity</a>
</li>
<li><a href="/">Getting Past Bash Argument list too long</a> in <a href="//category.html#bash">bash</a> tagged as
<a href="//tag.html#bash">bash</a>,
<a href="//tag.html#linux">linux</a>
</li>
<li><a href="/">Using Spacy for Part of Speech Tagging</a> in <a href="//category.html#python">python</a> tagged as
<a href="//tag.html#python">python</a>,
<a href="//tag.html#nlp">nlp</a>,
<a href="//tag.html#spacy">spacy</a>
</li>
<li><a href="/">Making OSX Fonts Display Better</a> in <a href="//category.html#osx">osx</a> tagged as
<a href="//tag.html#osx">osx</a>
</li>
<li><a href="/">Configuring NGINX to Serve a Directory Listing</a> in <a href="//category.html#nginx">nginx</a> tagged as
<a href="//tag.html#nginx">nginx</a>
</li>
<li><a href="/">Debugging an OHI Pipeline Component</a> in <a href="//category.html#python">python</a> tagged as
<a href="//tag.html#python">python</a>,
<a href="//tag.html#debugging">debugging</a>,
<a href="//tag.html#adl">adl</a>,
<a href="//tag.html#ohi">ohi</a>
</li>
<li><a href="/">A Conceptual Architecture for a Filesystem to SQS Loader</a> in <a href="//category.html#lambda">lambda</a> tagged as
<a href="//tag.html#lambda">lambda</a>,
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#sqs">sqs</a>
</li>
<li><a href="/">Sorting the Keys of a Python JSON Object</a> in <a href="//category.html#python">python</a> tagged as
<a href="//tag.html#python">python</a>
</li>
<li><a href="/">The ADL Anti Semitism Expert</a> in <a href="//category.html#python">python</a> tagged as
<a href="//tag.html#python">python</a>,
<a href="//tag.html#debugging">debugging</a>,
<a href="//tag.html#adl">adl</a>,
<a href="//tag.html#ohi">ohi</a>
</li>
<li><a href="/">Fixing the Docker Permission Denied While Trying to Connect to the Docker Daemon Socket Error</a> in <a href="//category.html#docker">docker</a> tagged as
<a href="//tag.html#docker">docker</a>,
<a href="//tag.html#ubuntu">ubuntu</a>,
<a href="//tag.html#linux">linux</a>,
<a href="//tag.html#ansible">ansible</a>
</li>
<li><a href="/">Programming Rule Number 0 - Never, Ever Work too Hard</a> in <a href="//category.html#ruby">ruby</a> tagged as
<a href="//tag.html#programming">programming</a>,
<a href="//tag.html#ruby">ruby</a>
</li>
<li><a href="/">Sharing iPhone Photos via ChromeCast</a> in <a href="//category.html#chrome_cast">chrome_cast</a> tagged as
<a href="//tag.html#iphone">iphone</a>,
<a href="//tag.html#chrome_cast">chrome_cast</a>
</li>
<li><a href="/">Setting Up CI / CD with Jenkins, Blue Ocean, Github for a Rust Program</a> in <a href="//category.html#cicd">cicd</a> tagged as
<a href="//tag.html#cicd">cicd</a>,
<a href="//tag.html#ci">ci</a>,
<a href="//tag.html#cd">cd</a>,
<a href="//tag.html#jenkins">jenkins</a>,
<a href="//tag.html#blue_ocean">blue_ocean</a>,
<a href="//tag.html#github">github</a>,
<a href="//tag.html#rust">rust</a>
</li>
<li><a href="/">Fixing zsh Compaudit Problem on OSX Catalina</a> in <a href="//category.html#osx">osx</a> tagged as
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#zsh">zsh</a>,
<a href="//tag.html#catalina">catalina</a>
</li>
<li><a href="/">Simple Rust Programming 01 - Checking The Existence of a Directory</a> in <a href="//category.html#rust">rust</a> tagged as
<a href="//tag.html#rust">rust</a>
</li>
<li><a href="/">Getting Past Ansible Password Required Issues</a> in <a href="//category.html#ansible">ansible</a> tagged as
<a href="//tag.html#ansible">ansible</a>
</li>
</ul>
<h1 id="y2020">May 2020</h1>
<ul>
<li><a href="/">_new versus _blank in HTML 5</a> in <a href="//category.html#html">html</a> tagged as
<a href="//tag.html#html">html</a>
</li>
<li><a href="/">Visting Long Distance Family in the Age of COVID-19</a> in <a href="//category.html#covid">covid</a> tagged as
<a href="//tag.html#covid">covid</a>
</li>
<li><a href="/">Design Constraints of an Application Based On AWS SQS</a> in <a href="//category.html#"></a> tagged as
</li>
<li><a href="/">Finding a Domain for Your Side Project</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#side_project">side_project</a>,
<a href="//tag.html#sideproject">sideproject</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
<li><a href="/">Simple Search and Replace in Ruby</a> in <a href="//category.html#ruby">ruby</a> tagged as
<a href="//tag.html#ruby">ruby</a>
</li>
<li><a href="/">Installing Jenkins on Ubuntu 18 on AWS</a> in <a href="//category.html#jenkins">jenkins</a> tagged as
<a href="//tag.html#jenkins">jenkins</a>,
<a href="//tag.html#linux">linux</a>,
<a href="//tag.html#ubuntu">ubuntu</a>
</li>
<li><a href="/">Installing Ansible on Ubuntu 18 on AWS</a> in <a href="//category.html#ansible">ansible</a> tagged as
<a href="//tag.html#ansible">ansible</a>,
<a href="//tag.html#linux">linux</a>,
<a href="//tag.html#ubuntu">ubuntu</a>
</li>
<li><a href="/">Die URI.parse Die; Long Live the Zen of Addressable</a> in <a href="//category.html#ruby">ruby</a> tagged as
<a href="//tag.html#ruby">ruby</a>
</li>
<li><a href="/">Your Basic Rust Workflow For the Noobie Rustacean</a> in <a href="//category.html#rust">rust</a> tagged as
<a href="//tag.html#rust">rust</a>
</li>
<li><a href="/">Using Netflix to Improve YouTube Uploading on Mobile</a> in <a href="//category.html#youtube">youtube</a> tagged as
<a href="//tag.html#youtube">youtube</a>,
<a href="//tag.html#netflix">netflix</a>
</li>
<li><a href="/">Six Tips on Inventing</a> in <a href="//category.html#inventing">inventing</a> tagged as
<a href="//tag.html#inventing">inventing</a>
</li>
</ul>
<h1 id="y2020">April 2020</h1>
<ul>
<li><a href="/">Adventures in Below Ground Plumbing - The Lift Pump</a> in <a href="//category.html#home_ownership">home_ownership</a> tagged as
<a href="//tag.html#home_ownership">home_ownership</a>,
<a href="//tag.html#plumbing">plumbing</a>
</li>
<li><a href="/">How to Find the Latest Version of a File on OSX Using mdfind</a> in <a href="//category.html#osx">osx</a> tagged as
<a href="//tag.html#osx">osx</a>
</li>
<li><a href="/">Covid and Your Personal Bus Factor</a> in <a href="//category.html#covid">covid</a> tagged as
<a href="//tag.html#covid">covid</a>,
<a href="//tag.html#startup">startup</a>
</li>
<li><a href="/">Taking Control of One's Workaholic Tendencies - The IT Anonymous Edition</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>
</li>
<li><a href="/">Using Explain in Postgres</a> in <a href="//category.html#postgres">postgres</a> tagged as
<a href="//tag.html#postgres">postgres</a>,
<a href="//tag.html#sql">sql</a>
</li>
<li><a href="/">Python Kafka Basics</a> in <a href="//category.html#python">python</a> tagged as
<a href="//tag.html#kafka">kafka</a>
</li>
<li><a href="/">Rails Asset Pipeline Failures and Capistrano</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#deploy">deploy</a>,
<a href="//tag.html#capistrano">capistrano</a>
</li>
<li><a href="/">YES YES YES - Importing Constants from Python to Ruby at Execution Time</a> in <a href="//category.html#ruby">ruby</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#python">python</a>,
<a href="//tag.html#adl">adl</a>
</li>
<li><a href="/">The Two AWS RDS Postgres Errors I Always Make</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#rds">rds</a>
</li>
<li><a href="/">PG ConnectionBad (could not connect to server No such file or directory)</a> in <a href="//category.html#postgres">postgres</a> tagged as
<a href="//tag.html#postgres">postgres</a>
</li>
<li><a href="/">Covid-19 - Good News, Bad News or the Weekend?</a> in <a href="//category.html#covidnearme.org">covidnearme.org</a> tagged as
<a href="//tag.html#covidnearme.org">covidnearme.org</a>,
<a href="//tag.html#covid">covid</a>
</li>
<li><a href="/">Upgrading Python and Pip and VirtualEnv on Ubuntu</a> in <a href="//category.html#python">python</a> tagged as
<a href="//tag.html#python">python</a>
</li>
<li><a href="/">Adding Chartkick to a Rails 6 App - Things I Always Forget</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>
</li>
</ul>
<h1 id="y2020">March 2020</h1>
<ul>
<li><a href="/">send.firefox.com rocks</a> in <a href="//category.html#firefox">firefox</a> tagged as
<a href="//tag.html#firefox">firefox</a>,
<a href="//tag.html#large_files">large_files</a>
</li>
<li><a href="/">Having Hatchbox Redirect All http Sites it Manages to https</a> in <a href="//category.html#hatchbox">hatchbox</a> tagged as
<a href="//tag.html#hatchbox">hatchbox</a>,
<a href="//tag.html#https">https</a>
</li>
<li><a href="/">ruby invalid option dash colon Or When Ruby Goes Insane in the Brain</a> in <a href="//category.html#ruby">ruby</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#jekyll">jekyll</a>
</li>
<li><a href="/">A Social Marketing Strategy that Mom Would Approve</a> in <a href="//category.html#marketing">marketing</a> tagged as
<a href="//tag.html#marketing">marketing</a>,
<a href="//tag.html#covidnearme">covidnearme</a>
</li>
<li><a href="/">Deploying a Rails App Using HatchBox onto Google Cloud Platform</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#hatchbox">hatchbox</a>
</li>
<li><a href="/">So You're Going to Have Visitors to Your Home in the Age of Covid - Here's What to Do</a> in <a href="//category.html#covidnearme.org">covidnearme.org</a> tagged as
<a href="//tag.html#covidnearme.org">covidnearme.org</a>,
<a href="//tag.html#covid">covid</a>
</li>
<li><a href="/">A Drop Dead Stupid Rails Testing Trick</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#testing">testing</a>
</li>
<li><a href="/">Loading Zip Codes with SmarterCSV Gem</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#csv">csv</a>,
<a href="//tag.html#covidnearme.org">covidnearme.org</a>
</li>
<li><a href="/">How to Help a Quarantined Person</a> in <a href="//category.html#covidnearme.org">covidnearme.org</a> tagged as
<a href="//tag.html#covidnearme.org">covidnearme.org</a>,
<a href="//tag.html#covid">covid</a>
</li>
<li><a href="/">Gluten Free Baking 101</a> in <a href="//category.html#food">food</a> tagged as
<a href="//tag.html#food">food</a>,
<a href="//tag.html#gluten_free">gluten_free</a>
</li>
<li><a href="/">Assembly Line Workers and COVID-19 - What Does An Employer Do About Touching Your Face?</a> in <a href="//category.html#covidnearme.org">covidnearme.org</a> tagged as
<a href="//tag.html#covidnearme.org">covidnearme.org</a>,
<a href="//tag.html#covid">covid</a>
</li>
<li><a href="/">My AI History</a> in <a href="//category.html#ai">ai</a> tagged as
<a href="//tag.html#ai">ai</a>
</li>
<li><a href="/">Making Urls Paste with Metadata Preview In Facebook, Facebook Messenger, Twitter, Apple Messages</a> in <a href="//category.html#webdev">webdev</a> tagged as
<a href="//tag.html#facebook">facebook</a>,
<a href="//tag.html#twitter">twitter</a>,
<a href="//tag.html#messages">messages</a>
</li>
<li><a href="/">The Five Second Rule No Longer Applies in the Age of Covid</a> in <a href="//category.html#covid">covid</a> tagged as
<a href="//tag.html#covid">covid</a>
</li>
<li><a href="/">Restart ID sequences in Postgres on Truncation</a> in <a href="//category.html#sql">sql</a> tagged as
<a href="//tag.html#sql">sql</a>,
<a href="//tag.html#postgres">postgres</a>,
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">What is covidnearme.org ?</a> in <a href="//category.html#covidnearme.org">covidnearme.org</a> tagged as
<a href="//tag.html#covidnearme.org">covidnearme.org</a>,
<a href="//tag.html#covid">covid</a>
</li>
<li><a href="/">The Bullcrappery That is Offering Only Magic Link Authentication</a> in <a href="//category.html#login">login</a> tagged as
<a href="//tag.html#authentication">authentication</a>,
<a href="//tag.html#login">login</a>
</li>
<li><a href="/">Six Tips for Interviewing Software Engineers When You Aren't Technical</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#hr">hr</a>
</li>
<li><a href="/">COVID-19 / Coronavirus Prep</a> in <a href="//category.html#covid">covid</a> tagged as
<a href="//tag.html#covid">covid</a>
</li>
<li><a href="/">Machine Learning Datasets for NLP</a> in <a href="//category.html#netlabeler">netlabeler</a> tagged as
<a href="//tag.html#netlabeler">netlabeler</a>,
<a href="//tag.html#machine_learning">machine_learning</a>
</li>
<li><a href="/">Casting in Python and Redis</a> in <a href="//category.html#python">python</a> tagged as
<a href="//tag.html#python">python</a>,
<a href="//tag.html#redis">redis</a>
</li>
<li><a href="/">Reloading the REPL in Python</a> in <a href="//category.html#python">python</a> tagged as
<a href="//tag.html#python">python</a>,
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">Emulating Ruby's Benchmark.real_time in Python Using a Context Manager</a> in <a href="//category.html#python">python</a> tagged as
<a href="//tag.html#python">python</a>,
<a href="//tag.html#ruby">ruby</a>
</li>
<li><a href="/">PDF Text Extraction Is Hard Even for AWS Textract</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#python">python</a>
</li>
<li><a href="/">When to Use a Helper Method in Rails</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#netlabeler">netlabeler</a>
</li>
<li><a href="/">Your Global .gitconfig</a> in <a href="//category.html#git">git</a> tagged as
<a href="//tag.html#git">git</a>
</li>
<li><a href="/">No React Native Didn't Just Get Killed</a> in <a href="//category.html#react">react</a> tagged as
<a href="//tag.html#react">react</a>
</li>
<li><a href="/">Using Rust Playground for Hello World and Variable Interpolation</a> in <a href="//category.html#rust">rust</a> tagged as
<a href="//tag.html#rust">rust</a>,
<a href="//tag.html#variables">variables</a>
</li>
<li><a href="/">Rails Form Technique - Using collection_select with Open Structs</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#open_struct">open_struct</a>
</li>
</ul>
<h1 id="y2020">February 2020</h1>
<ul>
<li><a href="/">Getting Access to Rust Docs When You are Offline</a> in <a href="//category.html#rust">rust</a> tagged as
<a href="//tag.html#rust">rust</a>,
<a href="//tag.html#docs">docs</a>
</li>
<li><a href="/">Stupid Simple Duplicate Prevention Using Redis</a> in <a href="//category.html#redis">redis</a> tagged as
<a href="//tag.html#redis">redis</a>
</li>
<li><a href="/">Generating Your First Rust App with Cargo</a> in <a href="//category.html#rust">rust</a> tagged as
<a href="//tag.html#rust">rust</a>,
<a href="//tag.html#docs">docs</a>
</li>
<li><a href="/">Advice on Importing Wunderlist to Todoist</a> in <a href="//category.html#wunderlist">wunderlist</a> tagged as
<a href="//tag.html#wunderlist">wunderlist</a>
</li>
<li><a href="/">Great Rust Libraries / Tools</a> in <a href="//category.html#rust">rust</a> tagged as
<a href="//tag.html#rust">rust</a>
</li>
<li><a href="/">ADL Bias and Diversity Training</a> in <a href="//category.html#bias">bias</a> tagged as
<a href="//tag.html#bias">bias</a>,
<a href="//tag.html#diversity">diversity</a>
</li>
<li><a href="/">Rails Console and Test Mode</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#test">test</a>
</li>
<li><a href="/">Great Con Signage</a> in <a href="//category.html#cons">cons</a> tagged as
<a href="//tag.html#cons">cons</a>,
<a href="//tag.html#gender">gender</a>,
<a href="//tag.html#consent">consent</a>
</li>
<li><a href="/">So You Just Graduated with a Computer Degree</a> in <a href="//category.html#student">student</a> tagged as
<a href="//tag.html#student">student</a>
</li>
<li><a href="/">Writing Ruby Programs Like a Python Programmer</a> in <a href="//category.html#ruby">ruby</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#python">python</a>
</li>
<li><a href="/">Installing Ruby using rbenv on Ubuntu 18</a> in <a href="//category.html#ruby">ruby</a> tagged as
<a href="//tag.html#ruby">ruby</a>
</li>
<li><a href="/">Making Ruby Scripts work Under System D Using rbenv</a> in <a href="//category.html#ruby">ruby</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#systemd">systemd</a>
</li>
<li><a href="/">Getting Started with Ruby and an AWS Managed Kafka Server</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#kafka">kafka</a>
</li>
<li><a href="/">Management Anti Pattern - How to Demoralize Team Members Without Doing Anything</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#management">management</a>,
<a href="//tag.html#remote_work">remote_work</a>
</li>
<li><a href="/">Ruby vs Rails</a> in <a href="//category.html#ruby">ruby</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">When You Need a Ruby Data Structure that Responds to Method Calls - Use OpenStruct</a> in <a href="//category.html#ruby">ruby</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#open_struct">open_struct</a>
</li>
<li><a href="/">A Regular Expression for Validating An Internet Domain</a> in <a href="//category.html#regex">regex</a> tagged as
<a href="//tag.html#regex">regex</a>
</li>
<li><a href="/">When You Can't Run Rails Console Restart Spring</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">The Power of Using Production In Development</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">Belt and Suspenders and Possible Overcomplications in Home Control</a> in <a href="//category.html#hardware">hardware</a> tagged as
<a href="//tag.html#hardware">hardware</a>,
<a href="//tag.html#home_control">home_control</a>
</li>
</ul>
<h1 id="y2020">January 2020</h1>
<ul>
<li><a href="/">Notes on Setting Up Stripe for Use with Jumpstart Pro</a> in <a href="//category.html#stripe">stripe</a> tagged as
<a href="//tag.html#stripe">stripe</a>,
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#jumpstart">jumpstart</a>
</li>
<li><a href="/">So My Mac Keeps Crashing</a> in <a href="//category.html#osx">osx</a> tagged as
<a href="//tag.html#osx">osx</a>
</li>
<li><a href="/">Where is my Rails 6 Master Key</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">Turning Off Ruby Deprecation Warnings When Running Tests</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">Rails Test Basics</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#test">test</a>
</li>
<li><a href="/">Rails -- NoMethodError undefined method unpack1 for nil NilClass</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">Getting Started with Pundit</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#pundit">pundit</a>,
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#security">security</a>
</li>
<li><a href="/">When rails credentials:edit Won't Save Your Credentials</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#credentials">credentials</a>
</li>
<li><a href="/">We Live in a Science Fiction Universe After All</a> in <a href="//category.html#machine_learning">machine_learning</a> tagged as
<a href="//tag.html#machine_learning">machine_learning</a>,
<a href="//tag.html#nlp">nlp</a>
</li>
<li><a href="/">Understanding the Power of rails g scaffold</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">Looking Back - Jumpstart Pro - The Best Development Decision I Made in 2019</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#jumpstart">jumpstart</a>
</li>
<li><a href="/">Getting Used to Postgres from MySQL - I Choose You, Postico</a> in <a href="//category.html#postgres">postgres</a> tagged as
<a href="//tag.html#postgres">postgres</a>,
<a href="//tag.html#mysql">mysql</a>,
<a href="//tag.html#postico">postico</a>
</li>
<li><a href="/">When Zoom Is Too Heavy for Your Laptop Just Use Your Phone or iPad</a> in <a href="//category.html#remote_work">remote_work</a> tagged as
<a href="//tag.html#remote_work">remote_work</a>
</li>
<li><a href="/">Markdown Editors</a> in <a href="//category.html#markdown">markdown</a> tagged as
<a href="//tag.html#markdown">markdown</a>,
<a href="//tag.html#internet">internet</a>
</li>
<li><a href="/">Welcome to gist.github.com/username</a> in <a href="//category.html#git">git</a> tagged as
<a href="//tag.html#git">git</a>,
<a href="//tag.html#gist">gist</a>,
<a href="//tag.html#markdown">markdown</a>,
<a href="//tag.html#internet">internet</a>
</li>
<li><a href="/">Two New Tools for Git</a> in <a href="//category.html#git">git</a> tagged as
<a href="//tag.html#git">git</a>
</li>
<li><a href="/">Fixing TextMate 2 When It Goes Insane</a> in <a href="//category.html#textmate">textmate</a> tagged as
<a href="//tag.html#textmate">textmate</a>
</li>
<li><a href="/">What is Machine Learning?</a> in <a href="//category.html#machine_learning">machine_learning</a> tagged as
<a href="//tag.html#machine_learning">machine_learning</a>
</li>
<li><a href="/">How To Detox Someone From Alcohol</a> in <a href="//category.html#alcohol">alcohol</a> tagged as
<a href="//tag.html#alcohol">alcohol</a>,
<a href="//tag.html#life">life</a>
</li>
<li><a href="/">Protecting Your Kid From the Internet</a> in <a href="//category.html#"></a> tagged as
</li>
<li><a href="/">Startup Coach 02 - How to Learn Technology Stuff Quickly Part 1</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#startup_coach">startup_coach</a>
</li>
<li><a href="/">Tools for Tailwind CSS</a> in <a href="//category.html#css">css</a> tagged as
<a href="//tag.html#css">css</a>,
<a href="//tag.html#tailwind">tailwind</a>
</li>
<li><a href="/">Adding Explainability to Machine Learning Routines via Runtime Execution of Labeling Functions</a> in <a href="//category.html#machine_learning">machine_learning</a> tagged as
<a href="//tag.html#machine_learning">machine_learning</a>,
<a href="//tag.html#python">python</a>,
<a href="//tag.html#snorkel">snorkel</a>
</li>
<li><a href="/">Creating an All New Rails App</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">Finding Your Rhythm as a Remote Worker</a> in <a href="//category.html#remote_work">remote_work</a> tagged as
<a href="//tag.html#remote">remote</a>,
<a href="//tag.html#work_from_home">work_from_home</a>
</li>
<li><a href="/">An Open Letter to Bob Frankston</a> in <a href="//category.html#rss">rss</a> tagged as
<a href="//tag.html#rss">rss</a>,
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">Python Tips - Playing with Pandas</a> in <a href="//category.html#python">python</a> tagged as
<a href="//tag.html#python">python</a>,
<a href="//tag.html#pandas">pandas</a>
</li>
<li><a href="/">Pundit and Group By Operations - DOH</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#pundit">pundit</a>
</li>
<li><a href="/">Startup Coach 01 The Opportunity Profile</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#startup_coach">startup_coach</a>
</li>
<li><a href="/">When Jupyter Notebooks Won't Import Libraries</a> in <a href="//category.html#python">python</a> tagged as
<a href="//tag.html#python">python</a>,
<a href="//tag.html#jupyter">jupyter</a>,
<a href="//tag.html#data_science">data_science</a>
</li>
<li><a href="/">Ruby Testing Technique - The Power and Stupidity of def foo</a> in <a href="//category.html#rspec">rspec</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#testing">testing</a>,
<a href="//tag.html#rspec">rspec</a>
</li>
<li><a href="/">In Celebration of Event Organizers - Happy Birthday Kevin Werbach</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#events">events</a>
</li>
<li><a href="/">Jumpstart Rails Tutorial 01 - Bringing an Existing Codebase In</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#jumpstart">jumpstart</a>
</li>
<li><a href="/">Making the Trix Editor Resizable</a> in <a href="//category.html#trix">trix</a> tagged as
<a href="//tag.html#css">css</a>,
<a href="//tag.html#trix">trix</a>
</li>
</ul>
<h1 id="y2019">December 2019</h1>
<ul>
<li><a href="/">Updating to the Latest Version of JumpStart Pro</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#jumpstart">jumpstart</a>
</li>
<li><a href="/">Heroku and Route 53 - Using Amazon for Domain Registration with Heroku for Hosting</a> in <a href="//category.html#"></a> tagged as
</li>
<li><a href="/">Getting Past the unpack1 error on Heroku</a> in <a href="//category.html#"></a> tagged as
</li>
<li><a href="/">How Do You Know What ActiveRecord Table Has a user_id Attribute?</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#active_record">active_record</a>,
<a href="//tag.html#metaprogramming">metaprogramming</a>,
<a href="//tag.html#jumpstart">jumpstart</a>
</li>
<li><a href="/">When Your Brand New Windows PC Goes into a The Computer Restarted Unexpectedly Loop</a> in <a href="//category.html#windows">windows</a> tagged as
<a href="//tag.html#windows">windows</a>
</li>
<li><a href="/">Don't Beat Yourself Up - That's the World's Job</a> in <a href="//category.html#philosophy">philosophy</a> tagged as
<a href="//tag.html#philosophy">philosophy</a>
</li>
<li><a href="/">Understanding OKRs</a> in <a href="//category.html#okr">okr</a> tagged as
<a href="//tag.html#okr">okr</a>,
<a href="//tag.html#startup">startup</a>
</li>
<li><a href="/">How Do You Know the Charge Status of Your Apple Pencil</a> in <a href="//category.html#ipad">ipad</a> tagged as
<a href="//tag.html#ipad">ipad</a>,
<a href="//tag.html#apple_pencil">apple_pencil</a>
</li>
<li><a href="/">Ruby, ChartKick and chart.js versus Google Charts and the Y Axis Auto Sizing</a> in <a href="//category.html#ruby">ruby</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#chartkick">chartkick</a>,
<a href="//tag.html#chartjs">chartjs</a>,
<a href="//tag.html#google_charts">google_charts</a>,
<a href="//tag.html#yaxis">yaxis</a>
</li>
<li><a href="/">Using Xargs to Get Past Argument List Too Long</a> in <a href="//category.html#linux">linux</a> tagged as
<a href="//tag.html#linux">linux</a>
</li>
<li><a href="/">The 12 Bugs of Christmas - A Software Developers' Version</a> in <a href="//category.html#humor">humor</a> tagged as
<a href="//tag.html#humor">humor</a>,
<a href="//tag.html#christmas">christmas</a>
</li>
<li><a href="/">Ruby to Python Translation Guide</a> in <a href="//category.html#python">python</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#python">python</a>
</li>
<li><a href="/">A Week of Whole 30 Meals From My Recipes</a> in <a href="//category.html#change">change</a> tagged as
<a href="//tag.html#change">change</a>,
<a href="//tag.html#weight_loss">weight_loss</a>,
<a href="//tag.html#whole30">whole30</a>
</li>
<li><a href="/">Dear Bootstrap Why Aren't My Tables Full Width</a> in <a href="//category.html#bootstrap">bootstrap</a> tagged as
<a href="//tag.html#bootstrap">bootstrap</a>,
<a href="//tag.html#css">css</a>
</li>
<li><a href="/">Scott's Approach to Weight Loss</a> in <a href="//category.html#change">change</a> tagged as
<a href="//tag.html#change">change</a>,
<a href="//tag.html#weight_loss">weight_loss</a>,
<a href="//tag.html#whole30">whole30</a>
</li>
<li><a href="/">Startup Learnings - What Taylor Williams Taught Me</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#learnings">learnings</a>,
<a href="//tag.html#git">git</a>,
<a href="//tag.html#taylor_williams">taylor_williams</a>
</li>
<li><a href="/">What is the President's Role in a Stage Zero Startup?</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>
</li>
<li><a href="/">Starbase Indy / SBI Engineering Post Mortem for 2019</a> in <a href="//category.html#sbi">sbi</a> tagged as
<a href="//tag.html#sbi">sbi</a>,
<a href="//tag.html#con">con</a>
</li>
<li><a href="/">Offsite In Hell</a> in <a href="//category.html#work">work</a> tagged as
<a href="//tag.html#work">work</a>,
<a href="//tag.html#offsite">offsite</a>,
<a href="//tag.html#hell">hell</a>
</li>
</ul>
<h1 id="y2019">November 2019</h1>
<ul>
<li><a href="/">Using a Cron Job to Run Rake Tasks Inside Your Docker Container</a> in <a href="//category.html#docker">docker</a> tagged as
<a href="//tag.html#docker">docker</a>,
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#rake">rake</a>
</li>
<li><a href="/">How to Win the Thanksgiving Meal War</a> in <a href="//category.html#cooking">cooking</a> tagged as
<a href="//tag.html#cooking">cooking</a>,
<a href="//tag.html#thanksgiving">thanksgiving</a>,
<a href="//tag.html#holiday">holiday</a>
</li>
<li><a href="/">Using Eternal Terminal with OSX and AWS Including Ansible Support</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#eternal_terminal">eternal_terminal</a>,
<a href="//tag.html#osx">osx</a>
</li>
<li><a href="/">When You Forget Your Branch Name Use Git Reflog</a> in <a href="//category.html#git">git</a> tagged as
<a href="//tag.html#git">git</a>,
<a href="//tag.html#cmn">cmn</a>
</li>
<li><a href="/">Using Github Hub to Create an Issue and Streamline Your Branch Workflow</a> in <a href="//category.html#git">git</a> tagged as
<a href="//tag.html#git">git</a>,
<a href="//tag.html#software_engineering">software_engineering</a>
</li>
<li><a href="/">Understanding Docker Multi Stage Builds - Installing Python and Ruby in the Same Dockerfile</a> in <a href="//category.html#docker">docker</a> tagged as
<a href="//tag.html#docker">docker</a>,
<a href="//tag.html#python">python</a>,
<a href="//tag.html#ruby">ruby</a>
</li>
<li><a href="/">Making Your Jekyll Blog Searchable with HTML, JavaScript and Google</a> in <a href="//category.html#search">search</a> tagged as
<a href="//tag.html#search">search</a>,
<a href="//tag.html#jekyll">jekyll</a>
</li>
<li><a href="/">If You Pair Program Buy Tuple Now</a> in <a href="//category.html#pair_programming">pair_programming</a> tagged as
<a href="//tag.html#pair_programming">pair_programming</a>,
<a href="//tag.html#software_engineering">software_engineering</a>
</li>
<li><a href="/">Installing mysql2 Gem on OSX when Headers Can't Be Found</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#mysql">mysql</a>
</li>
<li><a href="/">dockerbash - Making docker exec -it Suck Less</a> in <a href="//category.html#docker">docker</a> tagged as
<a href="//tag.html#docker">docker</a>,
<a href="//tag.html#bash">bash</a>
</li>
<li><a href="/">So You Have A Chance to Go Freelance</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#freelance">freelance</a>,
<a href="//tag.html#startup">startup</a>
</li>
<li><a href="/">Do I Buy My Wife Flowers Tonight or Not</a> in <a href="//category.html#relationships">relationships</a> tagged as
<a href="//tag.html#relationships">relationships</a>
</li>
<li><a href="/">I'm Copying You Since You're So Effective</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>
</li>
<li><a href="/">Adding Decimal Types to Rails Migrations</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#mysql">mysql</a>
</li>
<li><a href="/">Adding an Includes Clause to ActiveRecord and Watching the Joy Flow</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#activerecord">activerecord</a>,
<a href="//tag.html#performance">performance</a>
</li>
<li><a href="/">The Ruby Safe Navigation Operator</a> in <a href="//category.html#ruby">ruby</a> tagged as
<a href="//tag.html#ruby">ruby</a>
</li>
<li><a href="/">Getting Local Development Data for Rails from Your Production Site using Heroku</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#heroku">heroku</a>
</li>
<li><a href="/">Updating to the Latest Ansible on Ubuntu</a> in <a href="//category.html#ansible">ansible</a> tagged as
<a href="//tag.html#ansible">ansible</a>,
<a href="//tag.html#ubuntu">ubuntu</a>
</li>
<li><a href="/">A Redis Hello World in Ruby and Python</a> in <a href="//category.html#redis">redis</a> tagged as
<a href="//tag.html#redis">redis</a>,
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#python">python</a>
</li>
<li><a href="/">A Warning About Git LFS and Large Machine Learning Models and Automated Deployments</a> in <a href="//category.html#machine_learning">machine_learning</a> tagged as
<a href="//tag.html#machine_learning">machine_learning</a>,
<a href="//tag.html#git">git</a>,
<a href="//tag.html#git_lfs">git_lfs</a>
</li>
<li><a href="/">Making a Streamlit Machine Learning App into a SystemD Service for Deployment via Ansible</a> in <a href="//category.html#python">python</a> tagged as
<a href="//tag.html#python">python</a>,
<a href="//tag.html#streamlit">streamlit</a>,
<a href="//tag.html#systemd">systemd</a>,
<a href="//tag.html#linux">linux</a>
</li>
<li><a href="/">Implementing Safe ActiveRecord Like Queries for Rails</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#activerecord">activerecord</a>
</li>
<li><a href="/">Changing Button Text on Simple Form Submit Buttons</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#simple_form">simple_form</a>
</li>
<li><a href="/">Using CapRover on AWS</a> in <a href="//category.html#caprover">caprover</a> tagged as
<a href="//tag.html#caprover">caprover</a>,
<a href="//tag.html#aws">aws</a>
</li>
<li><a href="/">Equity Allocation in Startups</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#equity">equity</a>
</li>
<li><a href="/">Adding a Show / Hide Feature to Your Bootstrap 4 Divs</a> in <a href="//category.html#bootstrap">bootstrap</a> tagged as
<a href="//tag.html#bootstrap">bootstrap</a>,
<a href="//tag.html#html">html</a>,
<a href="//tag.html#css">css</a>
</li>
<li><a href="/">Ruby Madness - Right Hand If Statements and Syntax Error, Unexpected end-of-input, Expecting End</a> in <a href="//category.html#ruby">ruby</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#debugging">debugging</a>
</li>
<li><a href="/">Running Effective Agile Standup Meetings</a> in <a href="//category.html#management">management</a> tagged as
<a href="//tag.html#management">management</a>,
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#offsite">offsite</a>,
<a href="//tag.html#team">team</a>,
<a href="//tag.html#meetings">meetings</a>
</li>
<li><a href="/">Stupid Simple ActiveRecord Optimizations or Why Rails Console is Essential for Development</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#active_record">active_record</a>,
<a href="//tag.html#optimization">optimization</a>
</li>
<li><a href="/">Reading Files to Strings using Python and then Loading them to JSON</a> in <a href="//category.html#python">python</a> tagged as
<a href="//tag.html#python">python</a>
</li>
<li><a href="/">Using Git Commits to Learn to Program Ruby on Rails</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#git">git</a>,
<a href="//tag.html#learning">learning</a>
</li>
<li><a href="/">Running a Team Retrospective Meeting</a> in <a href="//category.html#management">management</a> tagged as
<a href="//tag.html#management">management</a>,
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#offsite">offsite</a>,
<a href="//tag.html#team">team</a>,
<a href="//tag.html#meetings">meetings</a>
</li>
<li><a href="/">Running a Daily Agile Standup Meeting</a> in <a href="//category.html#agile">agile</a> tagged as
<a href="//tag.html#agile">agile</a>
</li>
</ul>
<h1 id="y2019">October 2019</h1>
<ul>
<li><a href="/">Running a P1, P2, P3 Team Prioritization Meeting</a> in <a href="//category.html#management">management</a> tagged as
<a href="//tag.html#management">management</a>,
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#offsite">offsite</a>,
<a href="//tag.html#team">team</a>,
<a href="//tag.html#meetings">meetings</a>
</li>
<li><a href="/">How to Make Progress on a Side Project - Invert</a> in <a href="//category.html#side_project">side_project</a> tagged as
<a href="//tag.html#side_project">side_project</a>
</li>
<li><a href="/">Essential Technology for a Team Offsite</a> in <a href="//category.html#offsite">offsite</a> tagged as
<a href="//tag.html#offsite">offsite</a>,
<a href="//tag.html#management">management</a>,
<a href="//tag.html#startup">startup</a>
</li>
<li><a href="/">What Does Snark to our Alexas Teach Our Kids</a> in <a href="//category.html#gender">gender</a> tagged as
<a href="//tag.html#gender">gender</a>,
<a href="//tag.html#alexa">alexa</a>,
<a href="//tag.html#manners">manners</a>
</li>
<li><a href="/">Calling Python Methods - Subtleties with and without Parens</a> in <a href="//category.html#python">python</a> tagged as
<a href="//tag.html#python">python</a>
</li>
<li><a href="/">Improving Your Terminal Prompt with a Starship</a> in <a href="//category.html#terminal">terminal</a> tagged as
<a href="//tag.html#zsh">zsh</a>,
<a href="//tag.html#terminal">terminal</a>,
<a href="//tag.html#prompt">prompt</a>,
<a href="//tag.html#rust">rust</a>,
<a href="//tag.html#starship">starship</a>
</li>
<li><a href="/">Heroku Is Amazing or Fixing INSERT command denied to user (MySQL)</a> in <a href="//category.html#heroku">heroku</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#heroku">heroku</a>,
<a href="//tag.html#mysql">mysql</a>
</li>
<li><a href="/">Using Python to Get an Object's Methods / Attributes Dynamically</a> in <a href="//category.html#python">python</a> tagged as
<a href="//tag.html#python">python</a>,
<a href="//tag.html#ruby">ruby</a>
</li>
<li><a href="/">Three Ways to Count the Objects in an AWS S3 Bucket</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#s3">s3</a>
</li>
<li><a href="/">Thank You Thoughbot for Your Timezone Article</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#timezone">timezone</a>
</li>
<li><a href="/">So You Don't Want Controller Level Helpers, Controller Level Javascripts, Controller Level Stylesheets</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">Turn Off Automatic Prompting for OSX Updates Because Catalina is Bad So Far</a> in <a href="//category.html#osx">osx</a> tagged as
<a href="//tag.html#osx">osx</a>
</li>
<li><a href="/">Getting Used to Heroku and Rails</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#heroku">heroku</a>
</li>
<li><a href="/">Configuring a Git Repo for CI / CD Style Pull Requests</a> in <a href="//category.html#git">git</a> tagged as
<a href="//tag.html#git">git</a>,
<a href="//tag.html#software_engineering">software_engineering</a>
</li>
<li><a href="/">Working with Python and Firefly and Tensor Flow Machine Learning</a> in <a href="//category.html#python">python</a> tagged as
<a href="//tag.html#python">python</a>,
<a href="//tag.html#firefly">firefly</a>,
<a href="//tag.html#machine_learning">machine_learning</a>,
<a href="//tag.html#tensor_flow">tensor_flow</a>
</li>
<li><a href="/">HoneyBadger - Even More Awesome than Ever</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">Accessing Your Mac via SSH / Rsync and Making Mac Networking Work for SMB</a> in <a href="//category.html#OSX">OSX</a> tagged as
<a href="//tag.html#OSX">OSX</a>,
<a href="//tag.html#ssh">ssh</a>,
<a href="//tag.html#rsync">rsync</a>
</li>
<li><a href="/">Rails 6 and Markdown Rendering - An Abject Personal Failure</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">An Observation on TensorFlow and PyTorch Startup Time</a> in <a href="//category.html#python">python</a> tagged as
<a href="//tag.html#pytorch">pytorch</a>,
<a href="//tag.html#python">python</a>,
<a href="//tag.html#tensorflow">tensorflow</a>
</li>
<li><a href="/">You Don't Need Catalina to Give Your Laptop a Second Monitor</a> in <a href="//category.html#osx">osx</a> tagged as
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#ipad">ipad</a>
</li>
<li><a href="/">Git Large File Support Silently Skips Over Checkouts When Git LFS Isn't Installed</a> in <a href="//category.html#git">git</a> tagged as
<a href="//tag.html#git">git</a>,
<a href="//tag.html#python">python</a>,
<a href="//tag.html#pytorch">pytorch</a>,
<a href="//tag.html#streamlit">streamlit</a>
</li>
<li><a href="/">A Step by Step Guide to Running Streamlit, PyTorch and Bert on a Cheap AWS Instance</a> in <a href="//category.html#python">python</a> tagged as
<a href="//tag.html#python">python</a>,
<a href="//tag.html#streamlit">streamlit</a>,
<a href="//tag.html#pytorch">pytorch</a>,
<a href="//tag.html#aws">aws</a>
</li>
<li><a href="/">Wading Back into RSS Nerdery After So Many Years</a> in <a href="//category.html#rss">rss</a> tagged as
<a href="//tag.html#rss">rss</a>,
<a href="//tag.html#atom">atom</a>
</li>
<li><a href="/">Importing Your Local MySQL Database Into Heroku</a> in <a href="//category.html#heroku">heroku</a> tagged as
<a href="//tag.html#mysql">mysql</a>,
<a href="//tag.html#heroku">heroku</a>
</li>
<li><a href="/">AWS Security 101</a> in <a href="//category.html#"></a> tagged as
</li>
<li><a href="/">Time Machine Stuck On Preparing Backup</a> in <a href="//category.html#osx">osx</a> tagged as
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#time_machine">time_machine</a>
</li>
<li><a href="/">More Thoughts on Python vs Ruby</a> in <a href="//category.html#python">python</a> tagged as
<a href="//tag.html#python">python</a>,
<a href="//tag.html#ruby">ruby</a>
</li>
<li><a href="/">Python vs Ruby / Subtracting Arrays of Strings</a> in <a href="//category.html#python">python</a> tagged as
<a href="//tag.html#python">python</a>,
<a href="//tag.html#ruby">ruby</a>
</li>
<li><a href="/">Wow - Google Custom Search Is Badly Broken</a> in <a href="//category.html#search">search</a> tagged as
<a href="//tag.html#search">search</a>,
<a href="//tag.html#ruby">ruby</a>
</li>
<li><a href="/">I'm Open Sourcing An Active Record Extension for find_or_create_by_attributes</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#ruby">ruby</a>
</li>
<li><a href="/">Never Underestimate Your Own Stupidity - A Jekyll CSS Issue</a> in <a href="//category.html#css">css</a> tagged as
<a href="//tag.html#css">css</a>,
<a href="//tag.html#jekyll">jekyll</a>
</li>
<li><a href="/">Google Calendar Tip - Custom Repeat</a> in <a href="//category.html#google_calendar">google_calendar</a> tagged as
<a href="//tag.html#google_calendar">google_calendar</a>
</li>
<li><a href="/">And So I Decide to Release Some Ruby Code as Open Source</a> in <a href="//category.html#ruby">ruby</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#consulting">consulting</a>,
<a href="//tag.html#open_source">open_source</a>
</li>
<li><a href="/">Thoughts on Python and Elixir from a Rubyist's Perspective</a> in <a href="//category.html#ruby">ruby</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#python">python</a>,
<a href="//tag.html#elixir">elixir</a>
</li>
<li><a href="/">OSX Spotlight Does Math</a> in <a href="//category.html#OSX">OSX</a> tagged as
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#spotlight">spotlight</a>
</li>
<li><a href="/">Making DevSecOps Easier - Ticket Squirrely Little Installation Steps NOW</a> in <a href="//category.html#devops">devops</a> tagged as
<a href="//tag.html#devops">devops</a>,
<a href="//tag.html#devsecops">devsecops</a>,
<a href="//tag.html#python">python</a>
</li>
<li><a href="/">Get it Right Spacy, Get it Right</a> in <a href="//category.html#python">python</a> tagged as
<a href="//tag.html#python">python</a>,
<a href="//tag.html#nlp">nlp</a>,
<a href="//tag.html#spacy">spacy</a>
</li>
<li><a href="/">OSX argument list too long; Sigh</a> in <a href="//category.html#bash">bash</a> tagged as
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#bash">bash</a>
</li>
</ul>
<h1 id="y2019">September 2019</h1>
<ul>
<li><a href="/">Understanding AWS S3 Limitations and Performance</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#s3">s3</a>
</li>
<li><a href="/">iPython and Virtual Environments</a> in <a href="//category.html#python">python</a> tagged as
<a href="//tag.html#python">python</a>,
<a href="//tag.html#ipython">ipython</a>
</li>
<li><a href="/">It Sucks When You Are the Answer</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#font-awesome">font-awesome</a>,
<a href="//tag.html#google">google</a>
</li>
<li><a href="/">Dear Drop Box You Suck</a> in <a href="//category.html#sync">sync</a> tagged as
<a href="//tag.html#drop_box">drop_box</a>
</li>
<li><a href="/">The Python Equivalent of byebug is pdb.set_trace()</a> in <a href="//category.html#python">python</a> tagged as
<a href="//tag.html#python">python</a>,
<a href="//tag.html#debugging">debugging</a>
</li>
<li><a href="/">How a Software Engineer Cuts Video Down to Size</a> in <a href="//category.html#video">video</a> tagged as
<a href="//tag.html#video">video</a>,
<a href="//tag.html#starbase_indy">starbase_indy</a>
</li>
<li><a href="/">An Idiot Rubyist's Guide to Messing About with Pandas Data Frames</a> in <a href="//category.html#python">python</a> tagged as
<a href="//tag.html#python">python</a>,
<a href="//tag.html#data_science">data_science</a>,
<a href="//tag.html#pandas">pandas</a>,
<a href="//tag.html#data_frame">data_frame</a>
</li>
<li><a href="/">The Real Reason We Have Rake Tasks - Developers Make Mistakes</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#rake">rake</a>
</li>
<li><a href="/">So You Have to Make a Meta Schema</a> in <a href="//category.html#software_engineering">software_engineering</a> tagged as
<a href="//tag.html#software_engineering">software_engineering</a>,
<a href="//tag.html#schema">schema</a>
</li>
<li><a href="/">Remote Management Tip - The Atta Person Email</a> in <a href="//category.html#remote_work">remote_work</a> tagged as
<a href="//tag.html#remote_work">remote_work</a>,
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#management">management</a>
</li>
<li><a href="/">Making Better Passwords from /dev/urandom</a> in <a href="//category.html#"></a> tagged as
<a href="//tag.html#linux">linux</a>,
<a href="//tag.html#password">password</a>,
<a href="//tag.html#security">security</a>
</li>
<li><a href="/">Tiny Rails Tip - Don't Let byebug into Production using Git Hooks and precommit</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#git">git</a>
</li>
<li><a href="/">So You Just Got Your First Mac and You Need Software</a> in <a href="//category.html#osx">osx</a> tagged as
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#mac">mac</a>
</li>
<li><a href="/">A Chrome Extension for Fixing Google Image Search</a> in <a href="//category.html#chrome">chrome</a> tagged as
<a href="//tag.html#chrome">chrome</a>,
<a href="//tag.html#chrome_extension">chrome_extension</a>
</li>
<li><a href="/">Implementing a Search System</a> in <a href="//category.html#search">search</a> tagged as
<a href="//tag.html#search">search</a>
</li>
<li><a href="/">It Is 2 AM and Postgres Won't Start - What Do You Do?</a> in <a href="//category.html#postgres">postgres</a> tagged as
<a href="//tag.html#postgres">postgres</a>,
<a href="//tag.html#brew">brew</a>,
<a href="//tag.html#jumpstart">jumpstart</a>
</li>
<li><a href="/">Writing Command Line Tools in Python - Enter Fire</a> in <a href="//category.html#python">python</a> tagged as
<a href="//tag.html#python">python</a>
</li>
<li><a href="/">Code - Data Versus Algorithms or There Is Always Another Way</a> in <a href="//category.html#software_engineering">software_engineering</a> tagged as
<a href="//tag.html#software_engineering">software_engineering</a>,
<a href="//tag.html#ruby">ruby</a>
</li>
<li><a href="/">Data Science - Data Sets versus a Data Repository</a> in <a href="//category.html#data_science">data_science</a> tagged as
<a href="//tag.html#data_science">data_science</a>,
<a href="//tag.html#python">python</a>
</li>
<li><a href="/">Rails Tip - When in Doubt Bundle Exec</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">Testing Sites on Mobile - Responsinator Rocks</a> in <a href="//category.html#mobile">mobile</a> tagged as
<a href="//tag.html#webdev">webdev</a>,
<a href="//tag.html#mobile">mobile</a>
</li>
<li><a href="/">Questions to Ask During a Job Interview</a> in <a href="//category.html#jobhound">jobhound</a> tagged as
<a href="//tag.html#hiring">hiring</a>,
<a href="//tag.html#jobhound">jobhound</a>,
<a href="//tag.html#interview">interview</a>
</li>
<li><a href="/">Building a Python requirements.txt File</a> in <a href="//category.html#python">python</a> tagged as
<a href="//tag.html#python">python</a>,
<a href="//tag.html#requirements">requirements</a>,
<a href="//tag.html#pip">pip</a>
</li>
<li><a href="/">A Universal Resume Tool</a> in <a href="//category.html#jobhound">jobhound</a> tagged as
<a href="//tag.html#jobhound">jobhound</a>,
<a href="//tag.html#hiring">hiring</a>,
<a href="//tag.html#job">job</a>,
<a href="//tag.html#resume">resume</a>
</li>
<li><a href="/">Working with ZSTD Files</a> in <a href="//category.html#linux">linux</a> tagged as
<a href="//tag.html#linux">linux</a>,
<a href="//tag.html#zstd">zstd</a>
</li>
<li><a href="/">Working Up to Bert - Installing TensorFlow for Python</a> in <a href="//category.html#python">python</a> tagged as
<a href="//tag.html#python">python</a>,
<a href="//tag.html#tensorflow">tensorflow</a>,
<a href="//tag.html#pip">pip</a>,
<a href="//tag.html#virtualenv">virtualenv</a>
</li>
<li><a href="/">Becoming a Rails Developer - Bundle Install Completes; What's Next</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">Setting Up a Github Pages Jekyll Blog</a> in <a href="//category.html#jekyll">jekyll</a> tagged as
<a href="//tag.html#jekyll">jekyll</a>,
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">12 Practical Tips for Job Seekers</a> in <a href="//category.html#jobhound">jobhound</a> tagged as
<a href="//tag.html#jobhound">jobhound</a>,
<a href="//tag.html#hiring">hiring</a>,
<a href="//tag.html#job">job</a>
</li>
<li><a href="/">Moving to Zsh on OSX in 2019</a> in <a href="//category.html#shell">shell</a> tagged as
<a href="//tag.html#shell">shell</a>,
<a href="//tag.html#zsh">zsh</a>,
<a href="//tag.html#osx">osx</a>
</li>
<li><a href="/">What to Do When an Engineer Leaves Your Organization</a> in <a href="//category.html#management">management</a> tagged as
<a href="//tag.html#management">management</a>,
<a href="//tag.html#hr">hr</a>,
<a href="//tag.html#startup">startup</a>
</li>
<li><a href="/">Rails on Windows Resources</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#windows">windows</a>,
<a href="//tag.html#ruby">ruby</a>
</li>
<li><a href="/">A Stupid Mac Performance Optimization for 2019</a> in <a href="//category.html#mac">mac</a> tagged as
<a href="//tag.html#mac">mac</a>,
<a href="//tag.html#osx">osx</a>
</li>
<li><a href="/">17 Years of Blogging</a> in <a href="//category.html#blogging">blogging</a> tagged as
<a href="//tag.html#blogging">blogging</a>,
<a href="//tag.html#linux">linux</a>
</li>
<li><a href="/">Interesting Data Science Utilities</a> in <a href="//category.html#data_science">data_science</a> tagged as
<a href="//tag.html#data_science">data_science</a>,
<a href="//tag.html#machine_learning">machine_learning</a>
</li>
<li><a href="/">Great Chrome Extensions - Tab Switcher and The Great Suspender</a> in <a href="//category.html#chrome">chrome</a> tagged as
<a href="//tag.html#chrome">chrome</a>,
<a href="//tag.html#chrome_extension">chrome_extension</a>
</li>
<li><a href="/">Generating a Good Password from the Command Line</a> in <a href="//category.html#linux">linux</a> tagged as
<a href="//tag.html#linux">linux</a>,
<a href="//tag.html#password">password</a>,
<a href="//tag.html#security">security</a>
</li>
<li><a href="/">Testing A Health Check Endpoint with Curl</a> in <a href="//category.html#curl">curl</a> tagged as
<a href="//tag.html#curl">curl</a>,
<a href="//tag.html#serverless">serverless</a>
</li>
<li><a href="/">Software Engineering Management - Rules for Successful Employee Transitions</a> in <a href="//category.html#software_engineering">software_engineering</a> tagged as
<a href="//tag.html#software_engineering">software_engineering</a>,
<a href="//tag.html#startup">startup</a>
</li>
<li><a href="/">Remote Work 02 - Use Video Conferencing</a> in <a href="//category.html#remote_work">remote_work</a> tagged as
<a href="//tag.html#remote_work">remote_work</a>
</li>
<li><a href="/">Remote Work 01 - Write It Down</a> in <a href="//category.html#remote_work">remote_work</a> tagged as
<a href="//tag.html#remote_work">remote_work</a>
</li>
<li><a href="/">Color Coding Your Gmail with Labels</a> in <a href="//category.html#gmail">gmail</a> tagged as
<a href="//tag.html#gmail">gmail</a>,
<a href="//tag.html#email">email</a>,
<a href="//tag.html#inbox_buddy">inbox_buddy</a>
</li>
<li><a href="/">A Python and Data Science Tooling Vocabulary for a Rubyist</a> in <a href="//category.html#python">python</a> tagged as
<a href="//tag.html#python">python</a>,
<a href="//tag.html#data_science">data_science</a>,
<a href="//tag.html#machine_learning">machine_learning</a>
</li>
</ul>
<h1 id="y2019">August 2019</h1>
<ul>
<li><a href="/">Fixing Ruby readline.bundle Image Not Found</a> in <a href="//category.html#ruby">ruby</a> tagged as
<a href="//tag.html#ruby">ruby</a>
</li>
<li><a href="/">Getting Your First Tech Job</a> in <a href="//category.html#jobhound">jobhound</a> tagged as
<a href="//tag.html#jobhound">jobhound</a>,
<a href="//tag.html#hiring">hiring</a>,
<a href="//tag.html#job">job</a>
</li>
<li><a href="/">Nushell Rocks - Go Yehuda Go</a> in <a href="//category.html#nushell">nushell</a> tagged as
<a href="//tag.html#nushell">nushell</a>,
<a href="//tag.html#rust">rust</a>
</li>
<li><a href="/">Forensic Computing 3 - When Docker Breaks SSH</a> in <a href="//category.html#docker">docker</a> tagged as
<a href="//tag.html#docker">docker</a>,
<a href="//tag.html#linux">linux</a>,
<a href="//tag.html#networking">networking</a>,
<a href="//tag.html#ssh">ssh</a>
</li>
<li><a href="/">The Power of Why</a> in <a href="//category.html#mtu">mtu</a> tagged as
<a href="//tag.html#software_engineering">software_engineering</a>,
<a href="//tag.html#chapter_02">chapter_02</a>
</li>
<li><a href="/">Jumpstart and GoRails Has Outstanding Tech Support - Go Chris Oliver Go - Recommended</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#jumpstart">jumpstart</a>
</li>
<li><a href="/">Installing Ruby 2.6 on OSX and a Creating New Application</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">Rails Scopes are Elegant</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#database">database</a>
</li>
</ul>
<h1 id="y2019">July 2019</h1>
<ul>
<li><a href="/">Rails Migration Tips and Tricks</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#migration">migration</a>,
<a href="//tag.html#db">db</a>,
<a href="//tag.html#database">database</a>
</li>
<li><a href="/">Nerd Humor - When You Blog in Bright Sunlight in a Convertible</a> in <a href="//category.html#humor">humor</a> tagged as
<a href="//tag.html#humor">humor</a>,
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">Patterns and Anti-Patterns</a> in <a href="//category.html#anti_patterns">anti_patterns</a> tagged as
<a href="//tag.html#software_development">software_development</a>,
<a href="//tag.html#anti_patterns">anti_patterns</a>
</li>
<li><a href="/">Development Anti Pattern - Two Objects with Almost the Same Structure</a> in <a href="//category.html#anti_patterns">anti_patterns</a> tagged as
<a href="//tag.html#software_development">software_development</a>,
<a href="//tag.html#anti_patterns">anti_patterns</a>
</li>
<li><a href="/">A Bootstrap 4 Two Column Example that Just Works</a> in <a href="//category.html#bootstrap">bootstrap</a> tagged as
<a href="//tag.html#boostrap">boostrap</a>,
<a href="//tag.html#css">css</a>
</li>
<li><a href="/">Git Rebasing Old Migrations Easily When SourceTree Fails</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#migrations">migrations</a>
</li>
<li><a href="/">Bullshite rsync Subtleties</a> in <a href="//category.html#osx">osx</a> tagged as
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#rsync">rsync</a>,
<a href="//tag.html#mac">mac</a>
</li>
<li><a href="/">Getting Around the Makara ActiveRecord Proxy</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">So You Need to Write</a> in <a href="//category.html#writing">writing</a> tagged as
<a href="//tag.html#writing">writing</a>,
<a href="//tag.html#blogging">blogging</a>,
<a href="//tag.html#heinlein">heinlein</a>
</li>
<li><a href="/">Backing Mac to Mac via scp / rsync</a> in <a href="//category.html#osx">osx</a> tagged as
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#backup">backup</a>
</li>
<li><a href="/">Employee Transitions - Don't Kill Your Organizational Memory</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#hr">hr</a>
</li>
<li><a href="/">Using redis-cli on An Encrypted AWS Redis Server</a> in <a href="//category.html#redis">redis</a> tagged as
<a href="//tag.html#redis">redis</a>,
<a href="//tag.html#aws">aws</a>
</li>
<li><a href="/">Adding Quick and Dirty JSON Serialization to Database Objects</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#ruby">ruby</a>
</li>
<li><a href="/">Never Type Bundle Exec Again</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#ruby">ruby</a>
</li>
<li><a href="/">Your Daily Remote Worker Management Tip</a> in <a href="//category.html#remote_work">remote_work</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#remote">remote</a>
</li>
<li><a href="/">Getting Around Spotlight's Madness</a> in <a href="//category.html#osx">osx</a> tagged as
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#spotlight">spotlight</a>,
<a href="//tag.html#mdfind">mdfind</a>
</li>
<li><a href="/">Fixing ByeBug Madness</a> in <a href="//category.html#ruby">ruby</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">When RbEnv, well, Won't RbEnv - Fixing Shell Extension Madness</a> in <a href="//category.html#ruby">ruby</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#rbenv">rbenv</a>,
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">RSpec - Uninitialized Constant Errors on Model Tests</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#rspec">rspec</a>
</li>
<li><a href="/">Bad Ansible Error Message - No handler was ready to authenticate</a> in <a href="//category.html#ansible">ansible</a> tagged as
<a href="//tag.html#ansible">ansible</a>
</li>
<li><a href="/">Time Bounding</a> in <a href="//category.html#software_engineering">software_engineering</a> tagged as
<a href="//tag.html#mtum_chapter4">mtum_chapter4</a>,
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#mtum">mtum</a>
</li>
<li><a href="/">Programming versus Software Engineering or The Parable of Jim and Ed</a> in <a href="//category.html#software_engineering">software_engineering</a> tagged as
<a href="//tag.html#mtum_chapter1">mtum_chapter1</a>,
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#mtum">mtum</a>
</li>
</ul>
<h1 id="y2019">June 2019</h1>
<ul>
<li><a href="/">Understanding a Small Organization's Communications Model - Github Issues vs Google Docs vs Slack</a> in <a href="//category.html#software_engineering">software_engineering</a> tagged as
<a href="//tag.html#software_engineering">software_engineering</a>,
<a href="//tag.html#startup">startup</a>
</li>
<li><a href="/">Understanding a Small Organization's Agile Model</a> in <a href="//category.html#software_engineering">software_engineering</a> tagged as
<a href="//tag.html#software_engineering">software_engineering</a>,
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#agile">agile</a>
</li>
<li><a href="/">Understanding a Small Organization's Git Development Model</a> in <a href="//category.html#git">git</a> tagged as
<a href="//tag.html#software_engineering">software_engineering</a>,
<a href="//tag.html#git">git</a>,
<a href="//tag.html#github">github</a>
</li>
<li><a href="/">If I Was a Science Fiction Author, I Would Read This</a> in <a href="//category.html#writing">writing</a> tagged as
<a href="//tag.html#writing">writing</a>,
<a href="//tag.html#sciencefiction">sciencefiction</a>,
<a href="//tag.html#sf">sf</a>
</li>
<li><a href="/">Tools for Publishing an Ebook</a> in <a href="//category.html#ebook">ebook</a> tagged as
<a href="//tag.html#ebook">ebook</a>
</li>
<li><a href="/">Software Can Always Be Better - An Amazon Example</a> in <a href="//category.html#software_engineering">software_engineering</a> tagged as
<a href="//tag.html#software_engineering">software_engineering</a>
</li>
<li><a href="/">Building My First Node App</a> in <a href="//category.html#node">node</a> tagged as
<a href="//tag.html#node">node</a>,
<a href="//tag.html#javascrpt">javascrpt</a>
</li>
<li><a href="/">Welcome to An Alexa House</a> in <a href="//category.html#alexa">alexa</a> tagged as
<a href="//tag.html#alexa">alexa</a>,
<a href="//tag.html#amazon">amazon</a>
</li>
<li><a href="/">So You Want to Start a Consulting Practice ...</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#consulting">consulting</a>,
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
<li><a href="/">Sales, Marketing, Advertising and Public Relations</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
<li><a href="/">Production of Cocktails at Scale for a Fan Run Event</a> in <a href="//category.html#cocktails">cocktails</a> tagged as
<a href="//tag.html#cocktails">cocktails</a>,
<a href="//tag.html#event">event</a>
</li>
<li><a href="/">Zsh and RbEnv Madness</a> in <a href="//category.html#ruby">ruby</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#zsh">zsh</a>,
<a href="//tag.html#rbenv ">rbenv </a>
</li>
<li><a href="/">The Most Horrible, Awful Aspect of Startups and Remote Employees</a> in <a href="//category.html#remote_work">remote_work</a> tagged as
<a href="//tag.html#remote">remote</a>,
<a href="//tag.html#startup">startup</a>
</li>
<li><a href="/">Tabaholics of the Chrome World Unite for the Great Suspender!</a> in <a href="//category.html#chrome">chrome</a> tagged as
<a href="//tag.html#chrome">chrome</a>,
<a href="//tag.html#browser">browser</a>
</li>
<li><a href="/">Road Warrior 2019 Edition</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#road_warrior">road_warrior</a>,
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#travel">travel</a>
</li>
</ul>
<h1 id="y2019">May 2019</h1>
<ul>
<li><a href="/">Summer Games - An Overview for Noobs by a Noob</a> in <a href="//category.html#barfleet">barfleet</a> tagged as
<a href="//tag.html#barfleet">barfleet</a>
</li>
<li><a href="/">And Now for Something New</a> in <a href="//category.html#slumgullion">slumgullion</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#slumgullion">slumgullion</a>
</li>
<li><a href="/">Using Ansible ec2.py Directly</a> in <a href="//category.html#ansible">ansible</a> tagged as
<a href="//tag.html#ansible">ansible</a>,
<a href="//tag.html#devops">devops</a>,
<a href="//tag.html#python">python</a>,
<a href="//tag.html#aws">aws</a>
</li>
<li><a href="/">Camel Camel Camel - A Way to Get Amazon Stuff Cheaper</a> in <a href="//category.html#amazon">amazon</a> tagged as
<a href="//tag.html#amazon">amazon</a>
</li>
<li><a href="/">A Mobile First Blogging Strategy</a> in <a href="//category.html#blogging">blogging</a> tagged as
<a href="//tag.html#blogging">blogging</a>,
<a href="//tag.html#writing">writing</a>
</li>
<li><a href="/">When libreadline Goes Whack</a> in <a href="//category.html#brew">brew</a> tagged as
<a href="//tag.html#brew">brew</a>,
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#libreadline">libreadline</a>
</li>
<li><a href="/">The Schema WTF Moment Take 2 - An Excursion into SourceTree</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#db">db</a>,
<a href="//tag.html#schema">schema</a>
</li>
<li><a href="/">So You Want to Delete Temp Files - An Excursion into Software Engineering Suckitude</a> in <a href="//category.html#software_engineering">software_engineering</a> tagged as
<a href="//tag.html#software_engineering">software_engineering</a>,
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#ruby">ruby</a>
</li>
<li><a href="/">Rails, Migrations, Multiple Developers and the Schema WTF Moment</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#schema">schema</a>,
<a href="//tag.html#migration">migration</a>
</li>
<li><a href="/">Linux Tip - Find All Files Older than 10 Days and Delete Them</a> in <a href="//category.html#Linux">Linux</a> tagged as
<a href="//tag.html#linux">linux</a>
</li>
<li><a href="/">So You Get Ideas In the Car And Don't Want to Die</a> in <a href="//category.html#phone">phone</a> tagged as
<a href="//tag.html#phone">phone</a>,
<a href="//tag.html#writing">writing</a>
</li>
<li><a href="/">HTTPS And Your Custom Domain on Github Pages</a> in <a href="//category.html#https">https</a> tagged as
<a href="//tag.html#https">https</a>,
<a href="//tag.html#blogging">blogging</a>,
<a href="//tag.html#GitHub">GitHub</a>,
<a href="//tag.html#git">git</a>
</li>
<li><a href="/">Managing An Attack of Hives</a> in <a href="//category.html#health">health</a> tagged as
<a href="//tag.html#health">health</a>,
<a href="//tag.html#hives">hives</a>
</li>
<li><a href="/">Getting AWS Costs Under Control</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>
</li>
</ul>
<h1 id="y2018">May 2018</h1>
<ul>
<li><a href="/">New Job Hound Feature - Create Cover Letters More Easily</a> in <a href="//category.html#jobhound">jobhound</a> tagged as
<a href="//tag.html#jobhound">jobhound</a>
</li>
</ul>
<h1 id="y2018">April 2018</h1>
<ul>
<li><a href="/">Anatomy of an Accidental Product Launch with Metrics - Day 1</a> in <a href="//category.html#jobhound">jobhound</a> tagged as
<a href="//tag.html#jobhound">jobhound</a>,
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#metrics">metrics</a>
</li>
<li><a href="/">Ten Things I Learned from a Job Hunt for a Senior Engineering Role</a> in <a href="//category.html#jobhound">jobhound</a> tagged as
<a href="//tag.html#jobhound">jobhound</a>,
<a href="//tag.html#jobs">jobs</a>
</li>
<li><a href="/">Using Elastic Search and Rails for a Compound Query with Text Strings and User ID</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#elastic_search">elastic_search</a>
</li>
<li><a href="/">Converting from FactoryGirl to FactoryBot</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#testing">testing</a>
</li>
</ul>
<h1 id="y2017">November 2017</h1>
<ul>
<li><a href="/">Enabling Github Security Alerts on Your Private Repositories</a> in <a href="//category.html#github">github</a> tagged as
<a href="//tag.html#github">github</a>,
<a href="//tag.html#git">git</a>,
<a href="//tag.html#security">security</a>,
<a href="//tag.html#rails">rails</a>
</li>
</ul>
<h1 id="y2017">October 2017</h1>
<ul>
<li><a href="/">Forensic Computing 2 - Kernel Panics and Kexts</a> in <a href="//category.html#osx">osx</a> tagged as
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#kernel_panics">kernel_panics</a>,
<a href="//tag.html#kexts">kexts</a>
</li>
<li><a href="/">Forensic Computing 1 - Finding TextMate Untitled Documents</a> in <a href="//category.html#text">text</a> tagged as
<a href="//tag.html#textmate">textmate</a>,
<a href="//tag.html#computer_forensics">computer_forensics</a>
</li>
<li><a href="/">The Game Nanny Story Or When Life Gives You Lemons</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#game_nanny">game_nanny</a>,
<a href="//tag.html#startup">startup</a>
</li>
<li><a href="/">Self Hosting a Jekyll Site</a> in <a href="//category.html#jekyll">jekyll</a> tagged as
<a href="//tag.html#jekyll">jekyll</a>,
<a href="//tag.html#blogging">blogging</a>,
<a href="//tag.html#startup">startup</a>
</li>
</ul>
<h1 id="y2017">September 2017</h1>
<ul>
<li><a href="/">Using Chrome Driver with Docker, Rails and Selenium on AWS</a> in <a href="//category.html#docker">docker</a> tagged as
<a href="//tag.html#docker">docker</a>,
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#selenium">selenium</a>,
<a href="//tag.html#aws">aws</a>
</li>
<li><a href="/">Creating an HTTPS Site on AWS with a .IO Domain</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#io">io</a>,
<a href="//tag.html#https">https</a>
</li>
<li><a href="/">Rails, AuthLogic, CSRF, 422 and session_store.rb</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#authlogic">authlogic</a>,
<a href="//tag.html#csrf">csrf</a>
</li>
<li><a href="/">Docker Won't Install Libxml</a> in <a href="//category.html#docker">docker</a> tagged as
<a href="//tag.html#docker">docker</a>,
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">Analyzing iPhone X, iPhone 8 and iPhone 8 Plus</a> in <a href="//category.html#iphone">iphone</a> tagged as
<a href="//tag.html#iphone">iphone</a>,
<a href="//tag.html#apple">apple</a>
</li>
<li><a href="/">Remembering Jerry Pournelle</a> in <a href="//category.html#personal">personal</a> tagged as
<a href="//tag.html#personal">personal</a>,
<a href="//tag.html#scifi">scifi</a>
</li>
<li><a href="/">SAAS Business Best Practices from Jonathan Siegel</a> in <a href="//category.html#saas">saas</a> tagged as
<a href="//tag.html#saas">saas</a>,
<a href="//tag.html#marketing">marketing</a>,
<a href="//tag.html#best_practices">best_practices</a>,
<a href="//tag.html#business">business</a>
</li>
<li><a href="/">Reclaiming Docker Disc Space on OSX</a> in <a href="//category.html#docker">docker</a> tagged as
<a href="//tag.html#docker">docker</a>,
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#mac">mac</a>
</li>
<li><a href="/">Notes on Upgrading to Rails 5.1</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#puma">puma</a>,
<a href="//tag.html#apartment">apartment</a>
</li>
</ul>
<h1 id="y2017">August 2017</h1>
<ul>
<li><a href="/">Running out of Disc Space with Docker</a> in <a href="//category.html#docker">docker</a> tagged as
<a href="//tag.html#docker">docker</a>,
<a href="//tag.html#aufs">aufs</a>,
<a href="//tag.html#disc_space">disc_space</a>,
<a href="//tag.html#bloat">bloat</a>
</li>
<li><a href="/">When Gems Won't Install - The mkmf.log Problem</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#gems">gems</a>
</li>
<li><a href="/">Rails, Apartment, Tenancy and Sidekiq</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#apartment">apartment</a>,
<a href="//tag.html#tenancy">tenancy</a>,
<a href="//tag.html#multi_tenant">multi_tenant</a>,
<a href="//tag.html#sidekiq">sidekiq</a>
</li>
<li><a href="/">Marketing 101 - Ride the Wave If You Can</a> in <a href="//category.html#marketing">marketing</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
<li><a href="/">10 Steps to Debugging Containerized Applications</a> in <a href="//category.html#docker">docker</a> tagged as
<a href="//tag.html#docker">docker</a>,
<a href="//tag.html#debugging">debugging</a>,
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#monolith">monolith</a>,
<a href="//tag.html#aws">aws</a>
</li>
<li><a href="/">Fundamental Usability Problems with Medium</a> in <a href="//category.html#medium">medium</a> tagged as
<a href="//tag.html#medium">medium</a>,
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">When Font Awesome Won't Render in Production on Rails 5.x</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#font_awesome">font_awesome</a>,
<a href="//tag.html#asset_pipeline">asset_pipeline</a>
</li>
<li><a href="/">Using Errbit To Host Your own Error Tracker on AWS for Rails Apps</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#errbit">errbit</a>
</li>
<li><a href="/">Referencing Images in Rails 5 CSS Stylesheets</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#CSS">CSS</a>
</li>
<li><a href="/">Expanding an AWS Instance Volume</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#docker">docker</a>,
<a href="//tag.html#aufs">aufs</a>
</li>
<li><a href="/">Utter and Complete Heroku Fail</a> in <a href="//category.html#fail">fail</a> tagged as
<a href="//tag.html#heroku">heroku</a>,
<a href="//tag.html#fail">fail</a>,
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">Adding AutoSave on Focus Lost to TextMate 2</a> in <a href="//category.html#textmate">textmate</a> tagged as
<a href="//tag.html#textmate">textmate</a>
</li>
<li><a href="/">A Bash Function for the 2 AM Blind Deploy</a> in <a href="//category.html#bash">bash</a> tagged as
<a href="//tag.html#devops">devops</a>,
<a href="//tag.html#deploy">deploy</a>,
<a href="//tag.html#bash">bash</a>
</li>
<li><a href="/">Monitoring Free Disc Space On AWS Instances with Monit, Ansible and SparkPost</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#ansible">ansible</a>,
<a href="//tag.html#monit">monit</a>,
<a href="//tag.html#SparkPost">SparkPost</a>
</li>
<li><a href="/">Hacks for When Ansible Galaxy Isn't Working</a> in <a href="//category.html#ansible">ansible</a> tagged as
<a href="//tag.html#ansible">ansible</a>,
<a href="//tag.html#ansible-galaxy">ansible-galaxy</a>
</li>
</ul>
<h1 id="y2017">July 2017</h1>
<ul>
<li><a href="/">Configuring Your Mac with Ansible Take 2</a> in <a href="//category.html#mac">mac</a> tagged as
<a href="//tag.html#mac">mac</a>,
<a href="//tag.html#ansible">ansible</a>,
<a href="//tag.html#hackintosh">hackintosh</a>
</li>
<li><a href="/">Rails and Address Already In Use - Bind Error</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#sysadmin">sysadmin</a>,
<a href="//tag.html#bind">bind</a>
</li>
<li><a href="/">Why I Haven't Switched Away from OSX</a> in <a href="//category.html#osx">osx</a> tagged as
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#linux">linux</a>
</li>
<li><a href="/">Improving Your Bash Scripting with shellcheck</a> in <a href="//category.html#bash">bash</a> tagged as
<a href="//tag.html#bash">bash</a>,
<a href="//tag.html#shellcheck">shellcheck</a>
</li>
<li><a href="/">JavaScript and CSS Magic for the Rails Front End Challenged using Zoom.js for Image Zooming</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#javascript">javascript</a>,
<a href="//tag.html#css">css</a>,
<a href="//tag.html#images">images</a>
</li>
<li><a href="/">How To Be A Developer 001 - Commit</a> in <a href="//category.html#how_to_be_a_developer">how_to_be_a_developer</a> tagged as
<a href="//tag.html#how_to_be_a_developer">how_to_be_a_developer</a>,
<a href="//tag.html#software_development">software_development</a>
</li>
<li><a href="/">Adding Mosh Support to Your AWS Servers</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#mosh">mosh</a>,
<a href="//tag.html#devops">devops</a>,
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#ansible">ansible</a>
</li>
</ul>
<h1 id="y2017">June 2017</h1>
<ul>
<li><a href="/">Beware Docker Swarm</a> in <a href="//category.html#docker">docker</a> tagged as
<a href="//tag.html#docker">docker</a>,
<a href="//tag.html#swarm">swarm</a>,
<a href="//tag.html#devops">devops</a>
</li>
<li><a href="/">Docker Tutorial Understanding Container Memory Usage</a> in <a href="//category.html#docker">docker</a> tagged as
<a href="//tag.html#docker">docker</a>
</li>
<li><a href="/">Using Ansible on Ubuntu 16.04 When which python Fails</a> in <a href="//category.html#ansible">ansible</a> tagged as
<a href="//tag.html#ansible">ansible</a>,
<a href="//tag.html#devops">devops</a>
</li>
<li><a href="/">OSX Tip Using mdfind to search your hard disc for files by name</a> in <a href="//category.html#osx">osx</a> tagged as
<a href="//tag.html#find">find</a>,
<a href="//tag.html#mdfind">mdfind</a>,
<a href="//tag.html#command_line">command_line</a>,
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#locate">locate</a>
</li>
<li><a href="/">No CI and No CD - Deploying Docker Swarm with Bash and Ansible</a> in <a href="//category.html#devops">devops</a> tagged as
<a href="//tag.html#ci">ci</a>,
<a href="//tag.html#cd">cd</a>,
<a href="//tag.html#docker">docker</a>,
<a href="//tag.html#swarm">swarm</a>,
<a href="//tag.html#docker_swarm">docker_swarm</a>,
<a href="//tag.html#bash">bash</a>,
<a href="//tag.html#ansible">ansible</a>
</li>
<li><a href="/">Freelance Billing Issues 1099 C2C W2</a> in <a href="//category.html#freelance">freelance</a> tagged as
<a href="//tag.html#freelance">freelance</a>,
<a href="//tag.html#billing">billing</a>,
<a href="//tag.html#w2">w2</a>,
<a href="//tag.html#1099">1099</a>,
<a href="//tag.html#c2c">c2c</a>
</li>
<li><a href="/">The Tools I Use</a> in <a href="//category.html#osx">osx</a> tagged as
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#tools">tools</a>,
<a href="//tag.html#development">development</a>
</li>
<li><a href="/">To Compress or Not to Compress - An S3 Question</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#hosting">hosting</a>,
<a href="//tag.html#s3">s3</a>,
<a href="//tag.html#pricing">pricing</a>
</li>
</ul>
<h1 id="y2017">May 2017</h1>
<ul>
<li><a href="/">Adding Cron to a Dockerized Rails Application Using Clockwork</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#docker">docker</a>,
<a href="//tag.html#cron">cron</a>,
<a href="//tag.html#clockwork">clockwork</a>
</li>
<li><a href="/">Building a Rails API App Which Accepts Data from JavaScript</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#javascript">javascript</a>,
<a href="//tag.html#api">api</a>,
<a href="//tag.html#cors">cors</a>,
<a href="//tag.html#fingerprint">fingerprint</a>
</li>
</ul>
<h1 id="y2017">April 2017</h1>
<ul>
<li><a href="/">Testing Out New Programming Languages Using Docker</a> in <a href="//category.html#docker">docker</a> tagged as
<a href="//tag.html#docker">docker</a>,
<a href="//tag.html#programming">programming</a>,
<a href="//tag.html#elixir">elixir</a>
</li>
<li><a href="/">OSX MySQL Disc Space Usage and Location</a> in <a href="//category.html#mysql">mysql</a> tagged as
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#mysql">mysql</a>,
<a href="//tag.html#mariadb">mariadb</a>,
<a href="//tag.html#saas">saas</a>,
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#hyde">hyde</a>
</li>
<li><a href="/">Returning to a Better Diff Tool</a> in <a href="//category.html#software_engineering">software_engineering</a> tagged as
<a href="//tag.html#software_engineering">software_engineering</a>,
<a href="//tag.html#diff">diff</a>
</li>
<li><a href="/">Rails Idiocy - When Params In Your Controller Are Nil</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">Executing Word Counts with Bash</a> in <a href="//category.html#bash">bash</a> tagged as
<a href="//tag.html#bash">bash</a>,
<a href="//tag.html#linux">linux</a>,
<a href="//tag.html#shell">shell</a>
</li>
<li><a href="/">Color Palette Design Tools</a> in <a href="//category.html#design">design</a> tagged as
<a href="//tag.html#design">design</a>,
<a href="//tag.html#color">color</a>
</li>
<li><a href="/">Rails Tip - When Puma Doesn't Run on the Specified Port</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#puma">puma</a>
</li>
</ul>
<h1 id="y2017">March 2017</h1>
<ul>
<li><a href="/">Setting Up a Router LeveL VPN Take 2</a> in <a href="//category.html#vpn">vpn</a> tagged as
<a href="//tag.html#vpn">vpn</a>,
<a href="//tag.html#privacy">privacy</a>,
<a href="//tag.html#security">security</a>,
<a href="//tag.html#router">router</a>
</li>
<li><a href="/">Setting Up a Router Level VPN to Secure Your Browsing</a> in <a href="//category.html#vpn">vpn</a> tagged as
<a href="//tag.html#vpn">vpn</a>,
<a href="//tag.html#privacy">privacy</a>,
<a href="//tag.html#security">security</a>,
<a href="//tag.html#router">router</a>
</li>
<li><a href="/">Getting Started with Ansible when You Know Literally Nothing</a> in <a href="//category.html#ansible">ansible</a> tagged as
<a href="//tag.html#ansible">ansible</a>
</li>
<li><a href="/">Gluten Warning - Mushrooms May Not Actually Be Gluten Free</a> in <a href="//category.html#gluten_free">gluten_free</a> tagged as
<a href="//tag.html#warning">warning</a>,
<a href="//tag.html#gluten_free">gluten_free</a>,
<a href="//tag.html#food">food</a>
</li>
<li><a href="/">Getting Around OSX Bash Fork Issues</a> in <a href="//category.html#osx">osx</a> tagged as
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#bash">bash</a>,
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#fork">fork</a>,
<a href="//tag.html#mac">mac</a>
</li>
<li><a href="/">Disabling Spring in Rails</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#monolith">monolith</a>,
<a href="//tag.html#hyde">hyde</a>,
<a href="//tag.html#spring">spring</a>
</li>
<li><a href="/">Questioning the Nature of Gem'ified JavaScript</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#javascript">javascript</a>,
<a href="//tag.html#d3">d3</a>
</li>
<li><a href="/">When Your Font Awesome Etsy Icon Doesn't Display</a> in <a href="//category.html#css">css</a> tagged as
<a href="//tag.html#css">css</a>,
<a href="//tag.html#fontawesome">fontawesome</a>
</li>
<li><a href="/">Developer Employee Transitions When You're an AWS Shop</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#management">management</a>
</li>
<li><a href="/">Ansible Error with AWS, AMI Creation and Encrypted</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>
</li>
<li><a href="/">Dropbox for the Software Developer</a> in <a href="//category.html#dropbox">dropbox</a> tagged as
<a href="//tag.html#dropbox">dropbox</a>
</li>
<li><a href="/">Leveling Up as a Developer Part 2 - Interstitial Time</a> in <a href="//category.html#software_engineering">software_engineering</a> tagged as
<a href="//tag.html#software_engineering">software_engineering</a>,
<a href="//tag.html#learning">learning</a>
</li>
<li><a href="/">When Sidekiq Makes You Nuts Check Your Types</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#sidekiq">sidekiq</a>
</li>
<li><a href="/">Using Ansible as a Development Tool with Rails and AWS for Large Scale Data Processing Automation</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#ansible">ansible</a>,
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#shell">shell</a>,
<a href="//tag.html#bash">bash</a>,
<a href="//tag.html#sidekiq">sidekiq</a>,
<a href="//tag.html#devops">devops</a>,
<a href="//tag.html#meta_programming">meta_programming</a>
</li>
<li><a href="/">Things Winston Taught Me - Better Git Shortcuts</a> in <a href="//category.html#git">git</a> tagged as
<a href="//tag.html#git">git</a>,
<a href="//tag.html#terminal">terminal</a>
</li>
<li><a href="/">Things Ganesh Taught Me</a> in <a href="//category.html#learning">learning</a> tagged as
<a href="//tag.html#terminal">terminal</a>,
<a href="//tag.html#podcasting">podcasting</a>,
<a href="//tag.html#screen_recording">screen_recording</a>,
<a href="//tag.html#keep">keep</a>
</li>
<li><a href="/">Increasing Linux Open File Limits</a> in <a href="//category.html#linux">linux</a> tagged as
<a href="//tag.html#linux">linux</a>,
<a href="//tag.html#sys_admin">sys_admin</a>,
<a href="//tag.html#sidekiq">sidekiq</a>
</li>
<li><a href="/">An Engineer's Guide To Having Your Credit Card Stolen</a> in <a href="//category.html#misc">misc</a> tagged as
<a href="//tag.html#misc">misc</a>,
<a href="//tag.html#credit_card">credit_card</a>,
<a href="//tag.html#cloudflare">cloudflare</a>,
<a href="//tag.html#cloudbleed">cloudbleed</a>
</li>
</ul>
<h1 id="y2017">February 2017</h1>
<ul>
<li><a href="/">Working with the Gem Ecosystem Part 2 - Updating Gems and Writing Generators</a> in <a href="//category.html#ruby">ruby</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#generators">generators</a>,
<a href="//tag.html#pattern_generator">pattern_generator</a>,
<a href="//tag.html#hyde">hyde</a>
</li>
<li><a href="/">Setting Up Rails with Rspec From the Start</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#rspec">rspec</a>,
<a href="//tag.html#hyde">hyde</a>
</li>
<li><a href="/">Multi Line Comments in Ruby - Finally</a> in <a href="//category.html#ruby">ruby</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">Understanding Low Level Index Issues in MySQL and Rails</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#mysql">mysql</a>,
<a href="//tag.html#index">index</a>,
<a href="//tag.html#performance">performance</a>,
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">Leveling Up as a Developer</a> in <a href="//category.html#software_engineering">software_engineering</a> tagged as
<a href="//tag.html#software_engineering">software_engineering</a>
</li>
<li><a href="/">Advice on Complex Caching Schemes</a> in <a href="//category.html#software_engineering">software_engineering</a> tagged as
<a href="//tag.html#software_engineering">software_engineering</a>,
<a href="//tag.html#caching">caching</a>,
<a href="//tag.html#aws">aws</a>
</li>
<li><a href="/">Rails Humor The Sound of Crickets when rails g Is Used</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#humor">humor</a>
</li>
<li><a href="/">ASCII Rules; Binary Drools - Markdown Over PowerPoint FTW</a> in <a href="//category.html#software_engineering">software_engineering</a> tagged as
<a href="//tag.html#markdown">markdown</a>,
<a href="//tag.html#writing">writing</a>,
<a href="//tag.html#udemy">udemy</a>,
<a href="//tag.html#deckset">deckset</a>,
<a href="//tag.html#software_engineering">software_engineering</a>,
<a href="//tag.html#knowledge_capture">knowledge_capture</a>
</li>
<li><a href="/">Visual Studio Code for a Rails Guy</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#hyde">hyde</a>
</li>
<li><a href="/">Troubleshooting Rails and Sidekiq</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#sidekiq">sidekiq</a>
</li>
<li><a href="/">OSX to Linux in 10 Minutes 01 - Installing Albert on Ubuntu Mac</a> in <a href="//category.html#osx_to_linux">osx_to_linux</a> tagged as
<a href="//tag.html#osx_to_linux">osx_to_linux</a>,
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#postmac">postmac</a>,
<a href="//tag.html#linux">linux</a>,
<a href="//tag.html#ubuntu">ubuntu</a>
</li>
<li><a href="/">Getting Rid of Smart Quotes on OSX</a> in <a href="//category.html#osx">osx</a> tagged as
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#mac">mac</a>
</li>
<li><a href="/">Reversing CSS Minification</a> in <a href="//category.html#css">css</a> tagged as
<a href="//tag.html#css">css</a>,
<a href="//tag.html#hyde">hyde</a>
</li>
<li><a href="/">Bash on OSX versus Bash on Ubuntu and Upgrading Your Bash</a> in <a href="//category.html#osx">osx</a> tagged as
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#linux">linux</a>,
<a href="//tag.html#bash">bash</a>
</li>
<li><a href="/">Rails in 10 Minutes - How to Add a Fav Icon to Your Rails App</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#hyde">hyde</a>,
<a href="//tag.html#design">design</a>,
<a href="//tag.html#user_interface">user_interface</a>,
<a href="//tag.html#ui">ui</a>,
<a href="//tag.html#rails_in_10_minutes">rails_in_10_minutes</a>
</li>
<li><a href="/">How to Make a Side Project Interesting</a> in <a href="//category.html#side_project">side_project</a> tagged as
<a href="//tag.html#side_project">side_project</a>,
<a href="//tag.html#hyde">hyde</a>
</li>
<li><a href="/">Linux Tip of the Day - curl</a> in <a href="//category.html#linux">linux</a> tagged as
<a href="//tag.html#linux_tip_of_the_day">linux_tip_of_the_day</a>,
<a href="//tag.html#linux">linux</a>,
<a href="//tag.html#curl">curl</a>
</li>
<li><a href="/">On Merging Files - Diff Alternatives on the Mac</a> in <a href="//category.html#software_engineering">software_engineering</a> tagged as
<a href="//tag.html#software_engineering">software_engineering</a>,
<a href="//tag.html#version_control">version_control</a>,
<a href="//tag.html#merge">merge</a>,
<a href="//tag.html#git">git</a>,
<a href="//tag.html#diff">diff</a>
</li>
<li><a href="/">Linux Tip Of The Day - recode</a> in <a href="//category.html#linux">linux</a> tagged as
<a href="//tag.html#linux_tip_of_the_day">linux_tip_of_the_day</a>,
<a href="//tag.html#linux">linux</a>,
<a href="//tag.html#jq">jq</a>
</li>
<li><a href="/">Linux Tip of the Day - jq</a> in <a href="//category.html#linux">linux</a> tagged as
<a href="//tag.html#linux_tip_of_the_day">linux_tip_of_the_day</a>,
<a href="//tag.html#linux">linux</a>,
<a href="//tag.html#jq">jq</a>
</li>
<li><a href="/">Ruby Regex Performance - Scan versus Match</a> in <a href="//category.html#ruby">ruby</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#regex">regex</a>,
<a href="//tag.html#performance">performance</a>,
<a href="//tag.html#ntergaid">ntergaid</a>,
<a href="//tag.html#hyper_awk">hyper_awk</a>,
<a href="//tag.html#gene_callahan">gene_callahan</a>,
<a href="//tag.html#pete_jenney">pete_jenney</a>
</li>
<li><a href="/">Linux Tip of the Day - git-standup</a> in <a href="//category.html#linux">linux</a> tagged as
<a href="//tag.html#linux_tip_of_the_day">linux_tip_of_the_day</a>,
<a href="//tag.html#linux">linux</a>,
<a href="//tag.html#git">git</a>
</li>
<li><a href="/">Redirecting HTTP to HTTPS with AWS and ELB</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#apache">apache</a>,
<a href="//tag.html#elb">elb</a>,
<a href="//tag.html#http">http</a>,
<a href="//tag.html#https">https</a>
</li>
<li><a href="/">Linux Tip Of The Day - Using rsync for Backup</a> in <a href="//category.html#linux">linux</a> tagged as
<a href="//tag.html#linux">linux</a>,
<a href="//tag.html#sysadmin">sysadmin</a>,
<a href="//tag.html#devops">devops</a>,
<a href="//tag.html#backup">backup</a>,
<a href="//tag.html#linux_tip_of_the_day">linux_tip_of_the_day</a>
</li>
<li><a href="/">Apache2 and Mod Rewrite and Automatic Redirect to https</a> in <a href="//category.html#apache">apache</a> tagged as
<a href="//tag.html#apache">apache</a>,
<a href="//tag.html#mod_rewrite">mod_rewrite</a>
</li>
<li><a href="/">Linux Tip of the Day rvm --default</a> in <a href="//category.html#linux">linux</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#linux">linux</a>,
<a href="//tag.html#rvm">rvm</a>,
<a href="//tag.html#linux_tip_of_the_day">linux_tip_of_the_day</a>
</li>
<li><a href="/">Gitlab and The Danger of Short Names</a> in <a href="//category.html#sysadmin">sysadmin</a> tagged as
<a href="//tag.html#sysadmin">sysadmin</a>,
<a href="//tag.html#devops">devops</a>,
<a href="//tag.html#gitlab">gitlab</a>,
<a href="//tag.html#iterm">iterm</a>
</li>
<li><a href="/">Startup Learnings The Smartest Thing I've Ever Seen PayPal Do</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#learnings">learnings</a>,
<a href="//tag.html#paypal">paypal</a>
</li>
<li><a href="/">Linux Tip Of The Day - lsblk</a> in <a href="//category.html#linux">linux</a> tagged as
<a href="//tag.html#linux_tip_of_the_day">linux_tip_of_the_day</a>,
<a href="//tag.html#linux">linux</a>,
<a href="//tag.html#sys_admin">sys_admin</a>,
<a href="//tag.html#aws">aws</a>
</li>
</ul>
<h1 id="y2017">January 2017</h1>
<ul>
<li><a href="/">Working with Windows 10 Pro HyperVisor When You Are a Mac Guy</a> in <a href="//category.html#devops">devops</a> tagged as
<a href="//tag.html#devops">devops</a>,
<a href="//tag.html#sysadmin">sysadmin</a>,
<a href="//tag.html#windows">windows</a>
</li>
<li><a href="/">Linux Tip of the Day inotifywait</a> in <a href="//category.html#linux">linux</a> tagged as
<a href="//tag.html#linux_tip_of_the_day">linux_tip_of_the_day</a>,
<a href="//tag.html#linux">linux</a>,
<a href="//tag.html#git">git</a>,
<a href="//tag.html#sys_admin">sys_admin</a>
</li>
<li><a href="/">Linux Tip of the Day - git recall</a> in <a href="//category.html#linux">linux</a> tagged as
<a href="//tag.html#linux_tip_of_the_day">linux_tip_of_the_day</a>,
<a href="//tag.html#linux">linux</a>,
<a href="//tag.html#git">git</a>
</li>
<li><a href="/">20 Days of Zero</a> in <a href="//category.html#weight_loss">weight_loss</a> tagged as
<a href="//tag.html#diet">diet</a>,
<a href="//tag.html#weight_loss">weight_loss</a>,
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#kevin_rose">kevin_rose</a>
</li>
<li><a href="/">Linux Tip of the Day - Use bmon for Bandwidth Monitoring</a> in <a href="//category.html#linux">linux</a> tagged as
<a href="//tag.html#linux_tip_of_the_day">linux_tip_of_the_day</a>,
<a href="//tag.html#linux">linux</a>,
<a href="//tag.html#sysadmin">sysadmin</a>,
<a href="//tag.html#aws">aws</a>
</li>
<li><a href="/">Choosing Account Software For Your Freelance Life</a> in <a href="//category.html#freelance">freelance</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#freelance">freelance</a>,
<a href="//tag.html#accounting">accounting</a>,
<a href="//tag.html#quicken">quicken</a>,
<a href="//tag.html#hurdlr">hurdlr</a>,
<a href="//tag.html#freshbooks">freshbooks</a>
</li>
<li><a href="/">A Guideline for Working with SSL Certs You Get From Someone Else</a> in <a href="//category.html#ssl">ssl</a> tagged as
<a href="//tag.html#ssl">ssl</a>,
<a href="//tag.html#sysadmin">sysadmin</a>,
<a href="//tag.html#devops">devops</a>,
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#life_is_too_short">life_is_too_short</a>
</li>
<li><a href="/">S3 Ruby Api Programming Tip</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#s3">s3</a>
</li>
<li><a href="/">Rails Tutorial - Making Font Awesome Work with Rails 5</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#tutorial">tutorial</a>,
<a href="//tag.html#font_awesome">font_awesome</a>,
<a href="//tag.html#hyde">hyde</a>,
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#css">css</a>
</li>
<li><a href="/">How to Handle Your Personal Taxes when You Are Startup Folk</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#taxes">taxes</a>
</li>
<li><a href="/">If I Was a Traveling Musician</a> in <a href="//category.html#music">music</a> tagged as
<a href="//tag.html#music">music</a>,
<a href="//tag.html#random">random</a>,
<a href="//tag.html#echo">echo</a>,
<a href="//tag.html#alexa">alexa</a>,
<a href="//tag.html#10x">10x</a>,
<a href="//tag.html#david_rovics">david_rovics</a>
</li>
<li><a href="/">Tmux Mouse Mode Problems Under Linux</a> in <a href="//category.html#tmux">tmux</a> tagged as
<a href="//tag.html#tmux">tmux</a>,
<a href="//tag.html#linux">linux</a>,
<a href="//tag.html#sys_admin">sys_admin</a>
</li>
<li><a href="/">Building a Real Parser in Ruby Using Parslet</a> in <a href="//category.html#ruby">ruby</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#parsing">parsing</a>,
<a href="//tag.html#software_engineering">software_engineering</a>,
<a href="//tag.html#parslet">parslet</a>
</li>
<li><a href="/">Why I Didn't Look at Phusion's Union Station But You Should</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#marketing">marketing</a>,
<a href="//tag.html#oobe">oobe</a>,
<a href="//tag.html#hyde">hyde</a>,
<a href="//tag.html#phusion">phusion</a>
</li>
<li><a href="/">Nylas Mail Review</a> in <a href="//category.html#email">email</a> tagged as
<a href="//tag.html#email">email</a>,
<a href="//tag.html#nylas">nylas</a>,
<a href="//tag.html#slack">slack</a>
</li>
<li><a href="/">Rails Tutorial - Making Awesome Print Work Everywhere</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#awesome_print">awesome_print</a>
</li>
<li><a href="/">Ruby - How to Sort an Open Struct</a> in <a href="//category.html#ruby">ruby</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#hyde">hyde</a>
</li>
<li><a href="/">When rails g won't generate a Model</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#model">model</a>,
<a href="//tag.html#spring">spring</a>,
<a href="//tag.html#listen">listen</a>,
<a href="//tag.html#hyde">hyde</a>
</li>
<li><a href="/">Electron Development is Like Mos Eisley</a> in <a href="//category.html#electron">electron</a> tagged as
<a href="//tag.html#javascript">javascript</a>,
<a href="//tag.html#electron">electron</a>,
<a href="//tag.html#hyde">hyde</a>
</li>
<li><a href="/">How to Install Ruby 2.4 on OSX Using RVM</a> in <a href="//category.html#ruby">ruby</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#rvm">rvm</a>,
<a href="//tag.html#hyde">hyde</a>
</li>
<li><a href="/">2016 Pop Culture Review</a> in <a href="//category.html#pop_culture">pop_culture</a> tagged as
<a href="//tag.html#pop_culture">pop_culture</a>
</li>
<li><a href="/">Protecting Your Home from Water Damage</a> in <a href="//category.html#house">house</a> tagged as
<a href="//tag.html#house">house</a>,
<a href="//tag.html#hacking">hacking</a>,
<a href="//tag.html#home_ownership">home_ownership</a>,
<a href="//tag.html#water_damage">water_damage</a>
</li>
<li><a href="/">How Tech Companies Can Easily Create Jobs</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#jobs">jobs</a>,
<a href="//tag.html#economy">economy</a>,
<a href="//tag.html#ross_mayfield">ross_mayfield</a>
</li>
<li><a href="/">Scott's Rule of API Development</a> in <a href="//category.html#software_engineering">software_engineering</a> tagged as
<a href="//tag.html#software_engineering">software_engineering</a>,
<a href="//tag.html#api">api</a>,
<a href="//tag.html#curl">curl</a>,
<a href="//tag.html#ansible">ansible</a>,
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">Returning to RSS Programming After 14 Years</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#hyde">hyde</a>,
<a href="//tag.html#rss">rss</a>,
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#software_engineering">software_engineering</a>
</li>
<li><a href="/">On the Changes at Medium</a> in <a href="//category.html#medium">medium</a> tagged as
<a href="//tag.html#medium">medium</a>,
<a href="//tag.html#blogging">blogging</a>,
<a href="//tag.html#startup">startup</a>
</li>
<li><a href="/">Capistrano Failure - Asset Manifest Not Created</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#capistrano">capistrano</a>,
<a href="//tag.html#asset_pipeline">asset_pipeline</a>
</li>
<li><a href="/">Ansible Unable to Find Boto Errors</a> in <a href="//category.html#ansible">ansible</a> tagged as
<a href="//tag.html#ansible">ansible</a>,
<a href="//tag.html#boto">boto</a>,
<a href="//tag.html#aws">aws</a>
</li>
<li><a href="/">Tutorial How To Upgrade Your PS4 to 2 Terabytes of Storage</a> in <a href="//category.html#gaming">gaming</a> tagged as
<a href="//tag.html#tutorial">tutorial</a>,
<a href="//tag.html#ps4">ps4</a>,
<a href="//tag.html#gaming">gaming</a>
</li>
<li><a href="/">Recent PostMac Round Up</a> in <a href="//category.html#postmac">postmac</a> tagged as
<a href="//tag.html#apple">apple</a>,
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#postmac">postmac</a>,
<a href="//tag.html#windows">windows</a>,
<a href="//tag.html#mac">mac</a>
</li>
<li><a href="/">Processing Large Datasets On AWS Using Ruby, Rails and SideKiq</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#sidekiq">sidekiq</a>,
<a href="//tag.html#aws">aws</a>
</li>
</ul>
<h1 id="y2016">December 2016</h1>
<ul>
<li><a href="/">Invalid route name, already in use 'page'</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#pages">pages</a>,
<a href="//tag.html#authlogic">authlogic</a>,
<a href="//tag.html#bootstrap">bootstrap</a>
</li>
<li><a href="/">Getting Past SSH Errors in OSX Sierra</a> in <a href="//category.html#osx">osx</a> tagged as
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#ssh">ssh</a>,
<a href="//tag.html#sierra">sierra</a>,
<a href="//tag.html#sshagent">sshagent</a>
</li>
<li><a href="/">Fixing Sudo on OSX Sierra</a> in <a href="//category.html#osx">osx</a> tagged as
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#sierra">sierra</a>,
<a href="//tag.html#sudo">sudo</a>
</li>
<li><a href="/">Ansible Error Fixing ControlPath Too Long Error</a> in <a href="//category.html#ansible">ansible</a> tagged as
<a href="//tag.html#ansible">ansible</a>,
<a href="//tag.html#osx">osx</a>
</li>
<li><a href="/">How to Build Rails views with Markdown</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#markdown">markdown</a>,
<a href="//tag.html#kramdown">kramdown</a>,
<a href="//tag.html#hyde">hyde</a>
</li>
<li><a href="/">Product Review Amazon Echo is Excellent</a> in <a href="//category.html#amazon_echo">amazon_echo</a> tagged as
<a href="//tag.html#alexa">alexa</a>,
<a href="//tag.html#echo">echo</a>,
<a href="//tag.html#music">music</a>,
<a href="//tag.html#echo_dot">echo_dot</a>,
<a href="//tag.html#review">review</a>
</li>
<li><a href="/">My Worst Git Commit Message Ever</a> in <a href="//category.html#git">git</a> tagged as
<a href="//tag.html#git">git</a>,
<a href="//tag.html#humor">humor</a>
</li>
<li><a href="/">PostMac Roundup</a> in <a href="//category.html#postmac">postmac</a> tagged as
<a href="//tag.html#postmac">postmac</a>,
<a href="//tag.html#mac">mac</a>,
<a href="//tag.html#osx">osx</a>
</li>
<li><a href="/">David Rovics Community Supported Art or a Tale of PayWoe and UI / UX Failures for Startups to Learn From</a> in <a href="//category.html#rant">rant</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#paypal">paypal</a>,
<a href="//tag.html#paywoe">paywoe</a>,
<a href="//tag.html#rant">rant</a>,
<a href="//tag.html#art">art</a>,
<a href="//tag.html#rovics">rovics</a>,
<a href="//tag.html#ui">ui</a>,
<a href="//tag.html#ux">ux</a>,
<a href="//tag.html#usability">usability</a>,
<a href="//tag.html#david_rovics">david_rovics</a>
</li>
<li><a href="/">The Worst Business Decision I Ever Saw Disney Make</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#business">business</a>,
<a href="//tag.html#disney">disney</a>,
<a href="//tag.html#pricing">pricing</a>
</li>
<li><a href="/">Rails Refactoring Tip - When You Remove a Database Column and You Are Still Trying to Use It</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#refactor">refactor</a>,
<a href="//tag.html#activerecord">activerecord</a>,
<a href="//tag.html#database">database</a>
</li>
<li><a href="/">Tech Interviewing is Broken - A Suggestion</a> in <a href="//category.html#software_engineering">software_engineering</a> tagged as
<a href="//tag.html#software_engineering">software_engineering</a>,
<a href="//tag.html#hr">hr</a>,
<a href="//tag.html#hiring">hiring</a>,
<a href="//tag.html#interview">interview</a>
</li>
<li><a href="/">Vacation Insomnia and the Hotel Business Office</a> in <a href="//category.html#remote_work">remote_work</a> tagged as
<a href="//tag.html#vacation">vacation</a>,
<a href="//tag.html#remote_work">remote_work</a>
</li>
<li><a href="/">When Ruby bzip2 Won't Install</a> in <a href="//category.html#ruby">ruby</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#bzip">bzip</a>,
<a href="//tag.html#gem">gem</a>
</li>
<li><a href="/">What Just Happened To Your Database In the Past 10 Minutes</a> in <a href="//category.html#mysql">mysql</a> tagged as
<a href="//tag.html#mysql">mysql</a>,
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#sql">sql</a>
</li>
<li><a href="/">So You Want to Hire a Freelancer to Be Full Time</a> in <a href="//category.html#hiring">hiring</a> tagged as
<a href="//tag.html#hr">hr</a>,
<a href="//tag.html#hiring">hiring</a>,
<a href="//tag.html#software_engineering">software_engineering</a>,
<a href="//tag.html#freelance">freelance</a>,
<a href="//tag.html#gig">gig</a>
</li>
<li><a href="/">Recent PostMac Notes</a> in <a href="//category.html#postmac">postmac</a> tagged as
<a href="//tag.html#postmac">postmac</a>,
<a href="//tag.html#osx">osx</a>
</li>
<li><a href="/">Adhoc Ansible Example</a> in <a href="//category.html#ansible">ansible</a> tagged as
<a href="//tag.html#ansible">ansible</a>,
<a href="//tag.html#adhoc">adhoc</a>
</li>
<li><a href="/">Apple MacBook Pro Alternatives</a> in <a href="//category.html#postmac">postmac</a> tagged as
<a href="//tag.html#postmac">postmac</a>,
<a href="//tag.html#apple">apple</a>,
<a href="//tag.html#mac">mac</a>
</li>
<li><a href="/">The Incredible Smartness of Bezos or A New Revenue Stream for Amazon with Amazon Go</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#amazon">amazon</a>,
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#bezos">bezos</a>
</li>
<li><a href="/">No Rdoc Once and For All</a> in <a href="//category.html#ruby">ruby</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#gem">gem</a>,
<a href="//tag.html#rdoc">rdoc</a>
</li>
<li><a href="/">Code Rot is Very, Very Real</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#software_engineering">software_engineering</a>
</li>
<li><a href="/">Bringing an Old MacBook Pro Back to Life</a> in <a href="//category.html#osx">osx</a> tagged as
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#mac">mac</a>,
<a href="//tag.html#rvm">rvm</a>,
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#bundler">bundler</a>,
<a href="//tag.html#gem">gem</a>,
<a href="//tag.html#brew">brew</a>,
<a href="//tag.html#cask">cask</a>,
<a href="//tag.html#mysql">mysql</a>
</li>
<li><a href="/">Accessing MariaDB without sudo on Ubuntu</a> in <a href="//category.html#mariadb">mariadb</a> tagged as
<a href="//tag.html#mariadb">mariadb</a>,
<a href="//tag.html#ubuntu">ubuntu</a>,
<a href="//tag.html#sudo">sudo</a>
</li>
<li><a href="/">MySQL and Time Machine Woes Part 2</a> in <a href="//category.html#mysql">mysql</a> tagged as
<a href="//tag.html#mysql">mysql</a>,
<a href="//tag.html#time_machine">time_machine</a>,
<a href="//tag.html#backup">backup</a>,
<a href="//tag.html#mac">mac</a>,
<a href="//tag.html#osx">osx</a>
</li>
<li><a href="/">More Ansible on AWS for Sidekiq</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#ansible">ansible</a>,
<a href="//tag.html#sidekiq">sidekiq</a>
</li>
<li><a href="/">When MySQL Loads Go Wrong - What Do You Do?</a> in <a href="//category.html#mysql">mysql</a> tagged as
<a href="//tag.html#mysql">mysql</a>
</li>
<li><a href="/">Killing Sidekiq on AWS with Ansible</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#ansible">ansible</a>,
<a href="//tag.html#sidekiq">sidekiq</a>,
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">Clearing Rails Log Files on AWS with Ansible</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#ansible">ansible</a>,
<a href="//tag.html#logs">logs</a>,
<a href="//tag.html#rails">rails</a>
</li>
<li><a href="/">Debugging Christmas Lights</a> in <a href="//category.html#debugging">debugging</a> tagged as
<a href="//tag.html#debugging">debugging</a>,
<a href="//tag.html#christmas">christmas</a>,
<a href="//tag.html#software_engineering">software_engineering</a>
</li>
<li><a href="/">AWS, Ansible and Boto or Virtualization IS the Answer</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#ansible">ansible</a>,
<a href="//tag.html#boto">boto</a>,
<a href="//tag.html#virtualization">virtualization</a>,
<a href="//tag.html#vagrant">vagrant</a>
</li>
</ul>
<h1 id="y2016">November 2016</h1>
<ul>
<li><a href="/">Time Machine Backup Woes</a> in <a href="//category.html#osx">osx</a> tagged as
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#time_machine">time_machine</a>,
<a href="//tag.html#mysql">mysql</a>,
<a href="//tag.html#mac">mac</a>
</li>
<li><a href="/">Startup Learnings - Four Things that Betsy Devine Taught Me</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#learnings">learnings</a>,
<a href="//tag.html#betsy_devine">betsy_devine</a>
</li>
<li><a href="/">Native Apps Are Not Doomed</a> in <a href="//category.html#mobile">mobile</a> tagged as
<a href="//tag.html#apps">apps</a>,
<a href="//tag.html#iphone">iphone</a>,
<a href="//tag.html#google_play">google_play</a>,
<a href="//tag.html#android">android</a>,
<a href="//tag.html#xvt">xvt</a>,
<a href="//tag.html#qt">qt</a>,
<a href="//tag.html#software_development">software_development</a>,
<a href="//tag.html#mobile">mobile</a>
</li>
<li><a href="/">AWS Tech Note - Problems with Ubuntu 16.04 and Ansible</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#ansible">ansible</a>,
<a href="//tag.html#ubuntu">ubuntu</a>,
<a href="//tag.html#python">python</a>
</li>
<li><a href="/">Parenting Actually Does Work</a> in <a href="//category.html#parenting">parenting</a> tagged as
<a href="//tag.html#parenting">parenting</a>,
<a href="//tag.html#fatherhood">fatherhood</a>
</li>
<li><a href="/">A Poor Man's Load Balancer</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#proxy">proxy</a>,
<a href="//tag.html#load_balancer">load_balancer</a>,
<a href="//tag.html#ruby">ruby</a>
</li>
<li><a href="/">Understanding Twitter - Why Is This Person Following Me?</a> in <a href="//category.html#twitter">twitter</a> tagged as
<a href="//tag.html#twitter">twitter</a>,
<a href="//tag.html#blogging">blogging</a>,
<a href="//tag.html#siri">siri</a>
</li>
<li><a href="/">Postmac - Glad I Got the Older MacBook Pro</a> in <a href="//category.html#postmac">postmac</a> tagged as
<a href="//tag.html#postmac">postmac</a>,
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#mac">mac</a>
</li>
<li><a href="/">Fear and Loathing in AWS or Adventures in Partition Resizing</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#ebs">ebs</a>,
<a href="//tag.html#volume">volume</a>,
<a href="//tag.html#linux">linux</a>,
<a href="//tag.html#partition">partition</a>,
<a href="//tag.html#mysql">mysql</a>,
<a href="//tag.html#innodb">innodb</a>,
<a href="//tag.html#tuning">tuning</a>
</li>
<li><a href="/">pkill Rocks</a> in <a href="//category.html#unix">unix</a> tagged as
<a href="//tag.html#linux">linux</a>,
<a href="//tag.html#unix">unix</a>,
<a href="//tag.html#command_line">command_line</a>,
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#pkill">pkill</a>
</li>
<li><a href="/">visudo On OSX Sierra</a> in <a href="//category.html#osx">osx</a> tagged as
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#visudo">visudo</a>,
<a href="//tag.html#mac">mac</a>
</li>
<li><a href="/">In Defense of Facebook's Fake News Policy</a> in <a href="//category.html#facebook">facebook</a> tagged as
<a href="//tag.html#facebook">facebook</a>,
<a href="//tag.html#trump">trump</a>,
<a href="//tag.html#zuckerberg">zuckerberg</a>,
<a href="//tag.html#spam">spam</a>
</li>
<li><a href="/">Buying a Mac as a Developer in Fall 2016</a> in <a href="//category.html#mac">mac</a> tagged as
<a href="//tag.html#mac">mac</a>,
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#rage">rage</a>
</li>
<li><a href="/">Ansible for Configuring Your Mac - SO MUCH BETTER</a> in <a href="//category.html#osx">osx</a> tagged as
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#mac">mac</a>,
<a href="//tag.html#ansible">ansible</a>,
<a href="//tag.html#postmac">postmac</a>
</li>
<li><a href="/">The Engineer's Design Notebook or What's in the Notebook Scott?</a> in <a href="//category.html#software_engineering">software_engineering</a> tagged as
<a href="//tag.html#software_engineering">software_engineering</a>,
<a href="//tag.html#aws">aws</a>
</li>
<li><a href="/">Best Nerd Humor Ever Bad Horse</a> in <a href="//category.html#humor">humor</a> tagged as
<a href="//tag.html#humor">humor</a>
</li>
<li><a href="/">Startup Learnings - Something My Dad Taught Me</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#learnings">learnings</a>
</li>
<li><a href="/">Cui Bono or the Only Latin You Need - The Theranos / Shultz Example</a> in <a href="//category.html#current_events">current_events</a> tagged as
<a href="//tag.html#theranos">theranos</a>,
<a href="//tag.html#latin">latin</a>
</li>
<li><a href="/">A Tricky Bit of Rails ActiveRecord Optimization</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#active_record">active_record</a>,
<a href="//tag.html#sql">sql</a>,
<a href="//tag.html#optimization">optimization</a>,
<a href="//tag.html#mysql">mysql</a>
</li>
<li><a href="/">Perhaps My Proudest Moment as a Father</a> in <a href="//category.html#fatherhood">fatherhood</a> tagged as
<a href="//tag.html#fatherhood">fatherhood</a>,
<a href="//tag.html#parenting">parenting</a>,
<a href="//tag.html#max">max</a>,
<a href="//tag.html#personal">personal</a>
</li>
<li><a href="/">PostMac Linux Take 2 - Ubuntu Mate</a> in <a href="//category.html#postmac">postmac</a> tagged as
<a href="//tag.html#postmac">postmac</a>,
<a href="//tag.html#linux">linux</a>,
<a href="//tag.html#ubuntu">ubuntu</a>,
<a href="//tag.html#mate">mate</a>,
<a href="//tag.html#elementary">elementary</a>
</li>
<li><a href="/">How to Set a New URL in Chrome on New Tab</a> in <a href="//category.html#chrome">chrome</a> tagged as
<a href="//tag.html#chrome">chrome</a>,
<a href="//tag.html#extension">extension</a>
</li>
<li><a href="/">Going Deeper Debugging SAML</a> in <a href="//category.html#saml">saml</a> tagged as
<a href="//tag.html#saml">saml</a>,
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#debugging">debugging</a>,
<a href="//tag.html#mindtouch">mindtouch</a>,
<a href="//tag.html#xml">xml</a>,
<a href="//tag.html#idp">idp</a>,
<a href="//tag.html#sp">sp</a>,
<a href="//tag.html#assertion">assertion</a>,
<a href="//tag.html#saml_idp">saml_idp</a>
</li>
<li><a href="/">Extending Devise</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#devise">devise</a>,
<a href="//tag.html#login">login</a>,
<a href="//tag.html#authorization">authorization</a>,
<a href="//tag.html#authentication">authentication</a>
</li>
<li><a href="/">When Bundler Insists On Putting Gems into vendor/cache</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#bundler">bundler</a>,
<a href="//tag.html#gem">gem</a>
</li>
<li><a href="/">Git Tip - Resetting Master to A Previous Commit</a> in <a href="//category.html#git">git</a> tagged as
<a href="//tag.html#git">git</a>,
<a href="//tag.html#version_control">version_control</a>
</li>
<li><a href="/">AWS Tutorial 22 - Making Your Boxes Pingable</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#security_group">security_group</a>,
<a href="//tag.html#ping">ping</a>,
<a href="//tag.html#security">security</a>
</li>
<li><a href="/">PostMac 001 -- Adding pbcopy to ElementaryOS or Another Unix</a> in <a href="//category.html#postmac">postmac</a> tagged as
<a href="//tag.html#postmac">postmac</a>,
<a href="//tag.html#linux">linux</a>,
<a href="//tag.html#mac">mac</a>
</li>
<li><a href="/">Life in a Postmac World</a> in <a href="//category.html#postmac">postmac</a> tagged as
<a href="//tag.html#postmac">postmac</a>,
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#mac">mac</a>
</li>
<li><a href="/">Friends Don't Let Friends Bundle Under Tmux</a> in <a href="//category.html#ruby">ruby</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#gem">gem</a>,
<a href="//tag.html#bundle">bundle</a>,
<a href="//tag.html#bundler">bundler</a>,
<a href="//tag.html#tmux">tmux</a>
</li>
<li><a href="/">AWS Tutorial 21 - Protecting Your Rails App In an Unfriendly Environment Using Rack Attack</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#security">security</a>
</li>
</ul>
<h1 id="y2016">October 2016</h1>
<ul>
<li><a href="/">The Coming Post Mac World</a> in <a href="//category.html#post_mac">post_mac</a> tagged as
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#post_mac">post_mac</a>,
<a href="//tag.html#mac">mac</a>
</li>
<li><a href="/">Startup Learnings - I Do All My Coding Before Anyone Gets to Work or What Ed Fisher Taught Me</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#software_engineering">software_engineering</a>,
<a href="//tag.html#learnings">learnings</a>,
<a href="//tag.html#ed_fisher">ed_fisher</a>
</li>
<li><a href="/">Understanding SAML and SSO and Rails</a> in <a href="//category.html#saml">saml</a> tagged as
<a href="//tag.html#sso">sso</a>,
<a href="//tag.html#saml">saml</a>,
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#ruby">ruby</a>
</li>
<li><a href="/">Rails Tip How to Fix Incomplete response received from application</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#apache">apache</a>,
<a href="//tag.html#passenger">passenger</a>,
<a href="//tag.html#bundler">bundler</a>,
<a href="//tag.html#capistrano">capistrano</a>,
<a href="//tag.html#deploy">deploy</a>
</li>
<li><a href="/">Rails Tip How to Fix Could not find a JavaScript runtime</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#javascript">javascript</a>,
<a href="//tag.html#therubyracer">therubyracer</a>,
<a href="//tag.html#bundler">bundler</a>,
<a href="//tag.html#capistrano">capistrano</a>,
<a href="//tag.html#deploy">deploy</a>
</li>
<li><a href="/">Rails Tip How to Fix Cannot/Load Bundler/setup</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#apache">apache</a>,
<a href="//tag.html#passenger">passenger</a>,
<a href="//tag.html#bundler">bundler</a>,
<a href="//tag.html#capistrano">capistrano</a>,
<a href="//tag.html#deploy">deploy</a>
</li>
<li><a href="/">Consulting - The Answer Is Yes</a> in <a href="//category.html#consulting">consulting</a> tagged as
<a href="//tag.html#consulting">consulting</a>,
<a href="//tag.html#business">business</a>,
<a href="//tag.html#freelance">freelance</a>
</li>
<li><a href="/">Startup Learnings What Francois Schiettecatte Taught Me</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#learnings">learnings</a>,
<a href="//tag.html#francois_schiettecatte">francois_schiettecatte</a>
</li>
<li><a href="/">AWS Tutorial 20 - Adding Machine and Process Monitoring To Your AWS Instances with Inspeqtor</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#inspeqtor">inspeqtor</a>,
<a href="//tag.html#ubuntu">ubuntu</a>
</li>
<li><a href="/">Review - Indianpolis Ansible Meetup</a> in <a href="//category.html#ansible">ansible</a> tagged as
<a href="//tag.html#ansible">ansible</a>,
<a href="//tag.html#tdd">tdd</a>,
<a href="//tag.html#humor">humor</a>,
<a href="//tag.html#serverspec">serverspec</a>,
<a href="//tag.html#meetup">meetup</a>
</li>
<li><a href="/">Gluten Free Cookies for a Wedding</a> in <a href="//category.html#cooking">cooking</a> tagged as
<a href="//tag.html#wedding">wedding</a>,
<a href="//tag.html#cookies">cookies</a>,
<a href="//tag.html#cooking">cooking</a>,
<a href="//tag.html#recipes">recipes</a>
</li>
<li><a href="/">Adapting your Rails Tmux Development Flow to a Docker Development Flow</a> in <a href="//category.html#docker">docker</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#docker">docker</a>,
<a href="//tag.html#tmux">tmux</a>
</li>
<li><a href="/">Understanding Systems By Observation - Dropbox</a> in <a href="//category.html#software_engineering">software_engineering</a> tagged as
<a href="//tag.html#software_engineering">software_engineering</a>
</li>
<li><a href="/">Thinking About a Ruby Driven AWS Lambda Approach for Big Data Computing</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#lambda">lambda</a>,
<a href="//tag.html#software_engineering">software_engineering</a>
</li>
<li><a href="/">AWS Tutorial 19 - Back to the Basics, Let's Talk AMIs and EC2 basics</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#ami">ami</a>,
<a href="//tag.html#linux">linux</a>,
<a href="//tag.html#ec2">ec2</a>
</li>
<li><a href="/">AWS Tutorial 18 - When You've Lost Your Web Server, How to Find an AWS Resource</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>
</li>
<li><a href="/">AWS Tutorial 17 - Wrapping Up Our SSH Issues By Using Monit For Process Monitoring</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#ssh">ssh</a>,
<a href="//tag.html#monit">monit</a>,
<a href="//tag.html#ansible">ansible</a>
</li>
<li><a href="/">Brew XZ and Nokogiri and Tmux - An Unmitigated Disaster</a> in <a href="//category.html#ruby">ruby</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#nokogiri">nokogiri</a>,
<a href="//tag.html#rvm">rvm</a>,
<a href="//tag.html#brew">brew</a>,
<a href="//tag.html#tmux">tmux</a>
</li>
<li><a href="/">Sidekiq - Graceful Versus Forceful</a> in <a href="//category.html#ruby">ruby</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#sidekiq">sidekiq</a>,
<a href="//tag.html#unix">unix</a>
</li>
<li><a href="/">AWS Tutorial 16 - SSH Failures Take 4 - Time to Write Some Monitoring Code</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#ssh">ssh</a>,
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#monitoring">monitoring</a>
</li>
<li><a href="/">Ansible Tutorial 02 - Configuring a Sidekiq Upstart Job on Ubuntu 14.04</a> in <a href="//category.html#ansible">ansible</a> tagged as
<a href="//tag.html#ansible">ansible</a>,
<a href="//tag.html#sidekiq">sidekiq</a>,
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#rvm">rvm</a>
</li>
<li><a href="/">OSX Tip - How to Reposition Your Dock When Google Hangout Messes With It</a> in <a href="//category.html#osx">osx</a> tagged as
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#spaces">spaces</a>,
<a href="//tag.html#dock">dock</a>,
<a href="//tag.html#virtual_desktop">virtual_desktop</a>
</li>
<li><a href="/">What to Do When Bundle Install Fails with JSON 1.8.1</a> in <a href="//category.html#ruby">ruby</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#json">json</a>,
<a href="//tag.html#gem">gem</a>,
<a href="//tag.html#bundle">bundle</a>,
<a href="//tag.html#things_that_make_me_postal">things_that_make_me_postal</a>
</li>
<li><a href="/">AWS Tutorial 15 - SSH Take 3 - Using Ansible To Diagnose my SSH Troubles</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#ansible">ansible</a>,
<a href="//tag.html#ssh">ssh</a>,
<a href="//tag.html#ruby">ruby</a>
</li>
<li><a href="/">A Conversation with Mike Perham</a> in <a href="//category.html#ruby">ruby</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#sidekiq">sidekiq</a>,
<a href="//tag.html#open_source">open_source</a>
</li>
<li><a href="/">Ansible Quickie Fixing a Poorly Designed Galaxy Role</a> in <a href="//category.html#ansible">ansible</a> tagged as
<a href="//tag.html#ansible">ansible</a>,
<a href="//tag.html#galaxy">galaxy</a>,
<a href="//tag.html#sidekiq">sidekiq</a>,
<a href="//tag.html#ansible-galaxy">ansible-galaxy</a>
</li>
<li><a href="/">Ansible Quickie - Checking the Memory Status on All Machines</a> in <a href="//category.html#ansible">ansible</a> tagged as
<a href="//tag.html#ansible">ansible</a>,
<a href="//tag.html#aws">aws</a>
</li>
<li><a href="/">AWS Tutorial 14 - Diagnosing SSH Failures Take 2</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#ssh">ssh</a>,
<a href="//tag.html#linux">linux</a>,
<a href="//tag.html#ansible">ansible</a>,
<a href="//tag.html#tmux">tmux</a>,
<a href="//tag.html#tmuxinator">tmuxinator</a>,
<a href="//tag.html#debugging">debugging</a>,
<a href="//tag.html#software_engineering">software_engineering</a>,
<a href="//tag.html#ruby">ruby</a>
</li>
<li><a href="/">You Do All This On A MacBook Air???</a> in <a href="//category.html#macbook">macbook</a> tagged as
<a href="//tag.html#macbook">macbook</a>,
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#aws">aws</a>
</li>
<li><a href="/">Ansible Quickie - Turning Off Services On A Group of Machines</a> in <a href="//category.html#ansible">ansible</a> tagged as
<a href="//tag.html#ansible">ansible</a>,
<a href="//tag.html#devops">devops</a>,
<a href="//tag.html#services">services</a>
</li>
<li><a href="/">Ansible Basics Presentation at Indy Elixir Meetup</a> in <a href="//category.html#ansible">ansible</a> tagged as
<a href="//tag.html#ansible">ansible</a>,
<a href="//tag.html#elixir">elixir</a>
</li>
<li><a href="/">Recommended Tool - httpstat</a> in <a href="//category.html#tools">tools</a> tagged as
<a href="//tag.html#httpstat">httpstat</a>,
<a href="//tag.html#tools">tools</a>
</li>
<li><a href="/">Ansible Tutorial 02 - Understanding How Failures Are Handled</a> in <a href="//category.html#ansible">ansible</a> tagged as
<a href="//tag.html#ansible">ansible</a>
</li>
<li><a href="/">Rails Post Mortem - An Analysis of Breaking the Build</a> in <a href="//category.html#software_engineering">software_engineering</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#software_engineering">software_engineering</a>
</li>
<li><a href="/">AWS Tutorial 13 - Adding Idempotency to Our CloudWatch Monitoring Playbook</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#ansible">ansible</a>,
<a href="//tag.html#cloudwatch">cloudwatch</a>
</li>
<li><a href="/">AWS Tutorial 12 - Using Ansible to Quickly Fix Your Server's TCP Connections</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#ansible">ansible</a>,
<a href="//tag.html#redis">redis</a>
</li>
<li><a href="/">AWS Tutorial 11 - An Ansible Role for Installing AWS Cloud Watch Monitoring On Ubuntu</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#ansible">ansible</a>,
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#cloudwatch">cloudwatch</a>
</li>
<li><a href="/">AWS Tutorial 10 - Diagnosing SSH Failures or When Ping Works But SSH Fails</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#ssh">ssh</a>
</li>
</ul>
<h1 id="y2016">September 2016</h1>
<ul>
<li><a href="/">Using Ansible to Drive Down Hosting Costs</a> in <a href="//category.html#ansible">ansible</a> tagged as
<a href="//tag.html#ansible">ansible</a>,
<a href="//tag.html#hosting">hosting</a>
</li>
<li><a href="/">Ansible Tutorial 01 - Examples of Ansible Ad Hoc Commands</a> in <a href="//category.html#ansible">ansible</a> tagged as
<a href="//tag.html#ansible">ansible</a>,
<a href="//tag.html#ad_hoc">ad_hoc</a>
</li>
<li><a href="/">Software Engineering - How Do You Fill The Time Between Times?</a> in <a href="//category.html#software_engineering">software_engineering</a> tagged as
<a href="//tag.html#software_engineering">software_engineering</a>,
<a href="//tag.html#ruby">ruby</a>
</li>
<li><a href="/">How to Become a Better Cook</a> in <a href="//category.html#cooking">cooking</a> tagged as
<a href="//tag.html#cooking">cooking</a>
</li>
<li><a href="/">Elixir Example Using Ecto for An Existing MySQL Database</a> in <a href="//category.html#elixir">elixir</a> tagged as
<a href="//tag.html#elixir">elixir</a>,
<a href="//tag.html#ecto">ecto</a>,
<a href="//tag.html#mysql">mysql</a>
</li>
<li><a href="/">Why Old Engineers Are Cranky Engineers</a> in <a href="//category.html#software_engineering">software_engineering</a> tagged as
<a href="//tag.html#ci">ci</a>,
<a href="//tag.html#software_engineering">software_engineering</a>
</li>
<li><a href="/">AWS Tutorial 09 - Deploying Rails Apps With Capistrano Take 1</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#capistrano">capistrano</a>,
<a href="//tag.html#deploy">deploy</a>
</li>
<li><a href="/">Software Engineering - Training a New Engineer the Outside In Way</a> in <a href="//category.html#software_engineering">software_engineering</a> tagged as
<a href="//tag.html#software_engineering">software_engineering</a>,
<a href="//tag.html#economics">economics</a>
</li>
<li><a href="/">Elixir Tutorial 04 Actually Writing Some Code For Our Page Fetcher</a> in <a href="//category.html#elixir">elixir</a> tagged as
<a href="//tag.html#elixir">elixir</a>
</li>
<li><a href="/">Notes from Elixir Remote Meetup</a> in <a href="//category.html#elixir">elixir</a> tagged as
<a href="//tag.html#elixir">elixir</a>,
<a href="//tag.html#meetup">meetup</a>,
<a href="//tag.html#remote">remote</a>,
<a href="//tag.html#josh_adams">josh_adams</a>
</li>
<li><a href="/">Gem Review Fuzzyurl Or How Do You Know if a Gem is Ready for Production Use?</a> in <a href="//category.html#software_engineering">software_engineering</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#gem">gem</a>,
<a href="//tag.html#software_engineering">software_engineering</a>,
<a href="//tag.html#gem_review">gem_review</a>
</li>
<li><a href="/">AWS Tutorial 08 - Using SSH's Config File with Your AWS Boxes</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#ssh">ssh</a>
</li>
<li><a href="/">A Father's Guide to Surviving Disney World</a> in <a href="//category.html#disney">disney</a> tagged as
<a href="//tag.html#disney">disney</a>,
<a href="//tag.html#parenting">parenting</a>
</li>
<li><a href="/">Quick Tip - How to Get the Best Hotel Wifi at Disney</a> in <a href="//category.html#wifi">wifi</a> tagged as
<a href="//tag.html#wifi">wifi</a>,
<a href="//tag.html#disney">disney</a>
</li>
<li><a href="/">Tripmate Titan Instructions</a> in <a href="//category.html#wifi">wifi</a> tagged as
<a href="//tag.html#wifi">wifi</a>,
<a href="//tag.html#tripmate">tripmate</a>
</li>
<li><a href="/">Interesting Kubernetes Stuff</a> in <a href="//category.html#kubernetes">kubernetes</a> tagged as
<a href="//tag.html#kubernetes">kubernetes</a>,
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#docker">docker</a>
</li>
<li><a href="/">Elixir Tutorial 03 - Deploying to Ubuntu</a> in <a href="//category.html#elixir">elixir</a> tagged as
<a href="//tag.html#elixir">elixir</a>
</li>
<li><a href="/">Dad Why Is Your Face Bloody? An Essay on Shaving Economics</a> in <a href="//category.html#dad_why_do_you">dad_why_do_you</a> tagged as
<a href="//tag.html#dad_why_do_you">dad_why_do_you</a>,
<a href="//tag.html#m">m</a>,
<a href="//tag.html#shaving">shaving</a>,
<a href="//tag.html#razor">razor</a>,
<a href="//tag.html#economics">economics</a>,
<a href="//tag.html#fatherhood">fatherhood</a>,
<a href="//tag.html#personal">personal</a>
</li>
<li><a href="/">Software Worth Purchasing 02 - Enpass</a> in <a href="//category.html#software_worth_purchasing">software_worth_purchasing</a> tagged as
<a href="//tag.html#software">software</a>,
<a href="//tag.html#tools">tools</a>,
<a href="//tag.html#password_managers">password_managers</a>,
<a href="//tag.html#enpass">enpass</a>,
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#iphone">iphone</a>
</li>
<li><a href="/">Rails2Elixir - Generating a New Elixir Project</a> in <a href="//category.html#rails2elixir">rails2elixir</a> tagged as
<a href="//tag.html#rails2elixir">rails2elixir</a>,
<a href="//tag.html#elixir">elixir</a>
</li>
<li><a href="/">Elixir Tutorial 02 - Adding Redis Support to our Page Fetcher</a> in <a href="//category.html#elixir">elixir</a> tagged as
<a href="//tag.html#elixir">elixir</a>
</li>
<li><a href="/">Dad - Why Do You Read the Newspaper?</a> in <a href="//category.html#dad_why_do_you">dad_why_do_you</a> tagged as
<a href="//tag.html#dad_why_do_you">dad_why_do_you</a>,
<a href="//tag.html#personal">personal</a>,
<a href="//tag.html#parenting">parenting</a>,
<a href="//tag.html#m">m</a>
</li>
<li><a href="/">Startup Learnings - What Kevin Burton Taught Me</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#learnings">learnings</a>,
<a href="//tag.html#entrepreneurship">entrepreneurship</a>,
<a href="//tag.html#kevin_burton">kevin_burton</a>
</li>
<li><a href="/">iPad for Productivity Take Two</a> in <a href="//category.html#ipad">ipad</a> tagged as
<a href="//tag.html#ios">ios</a>,
<a href="//tag.html#ipad">ipad</a>
</li>
<li><a href="/">Childhood Memories</a> in <a href="//category.html#parenting">parenting</a> tagged as
<a href="//tag.html#m">m</a>,
<a href="//tag.html#disney">disney</a>,
<a href="//tag.html#safari">safari</a>,
<a href="//tag.html#personal">personal</a>
</li>
<li><a href="/">Is an iPad a Serious Productivity Tool?</a> in <a href="//category.html#ipad">ipad</a> tagged as
<a href="//tag.html#ios">ios</a>,
<a href="//tag.html#ipad">ipad</a>
</li>
<li><a href="/">Elixir Sips - Fantastic Customer Service</a> in <a href="//category.html#elixir">elixir</a> tagged as
<a href="//tag.html#elixir">elixir</a>,
<a href="//tag.html#elixir_sips">elixir_sips</a>,
<a href="//tag.html#josh_adams">josh_adams</a>
</li>
<li><a href="/">The Importance of Inserting NO-OPs Into Your Programming Day</a> in <a href="//category.html#software_engineering">software_engineering</a> tagged as
<a href="//tag.html#software_engineering">software_engineering</a>,
<a href="//tag.html#programming">programming</a>
</li>
<li><a href="/">Tutorial - Sideloading Content in iBooks on an iPhone or iPad</a> in <a href="//category.html#ibooks">ibooks</a> tagged as
<a href="//tag.html#iphone">iphone</a>,
<a href="//tag.html#ipad">ipad</a>,
<a href="//tag.html#ibooks">ibooks</a>,
<a href="//tag.html#sync">sync</a>,
<a href="//tag.html#ios">ios</a>
</li>
<li><a href="/">AWS Tutorial 0x - Using SSH Config to Make Access Easier</a> in <a href="//category.html#"></a> tagged as
</li>
<li><a href="/">Software Worth Purchasing 01 - Acorn</a> in <a href="//category.html#software_worth_purchasing">software_worth_purchasing</a> tagged as
<a href="//tag.html#software">software</a>,
<a href="//tag.html#tools">tools</a>,
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#acorn">acorn</a>
</li>
<li><a href="/">How to Turn off Flash on Safari</a> in <a href="//category.html#osx">osx</a> tagged as
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#security">security</a>,
<a href="//tag.html#stability">stability</a>,
<a href="//tag.html#flash">flash</a>
</li>
<li><a href="/">AWS Tutorial 07 - Understanding Elastic IPs</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#elastic_ip">elastic_ip</a>,
<a href="//tag.html#networking">networking</a>
</li>
<li><a href="/">Howto - Upgrading Elixir to 1.3 on OSX</a> in <a href="//category.html#elixir">elixir</a> tagged as
<a href="//tag.html#elixir">elixir</a>
</li>
<li><a href="/">CodeTree Rebuttal on Buying a SAAS App</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#saas">saas</a>,
<a href="//tag.html#marketing">marketing</a>,
<a href="//tag.html#acquisition">acquisition</a>,
<a href="//tag.html#google_ads">google_ads</a>,
<a href="//tag.html#adwords">adwords</a>
</li>
<li><a href="/">A Template for Rails 5 Apps with MySQL, Capistrano, Devise</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#devise">devise</a>,
<a href="//tag.html#mysql">mysql</a>
</li>
<li><a href="/">Small World - CodeTree vs ZenHub for GitHub</a> in <a href="//category.html#software_engineering">software_engineering</a> tagged as
<a href="//tag.html#software_engineering">software_engineering</a>,
<a href="//tag.html#git">git</a>,
<a href="//tag.html#ticketing">ticketing</a>,
<a href="//tag.html#project_management">project_management</a>
</li>
<li><a href="/">Gluten Free Fettuccine Alfredo That is Actually Good</a> in <a href="//category.html#cooking">cooking</a> tagged as
<a href="//tag.html#cooking">cooking</a>,
<a href="//tag.html#recipes">recipes</a>,
<a href="//tag.html#gluten_free">gluten_free</a>,
<a href="//tag.html#celiac">celiac</a>
</li>
<li><a href="/">Startup Learnings - What Dave McClure Taught Me</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#learnings">learnings</a>,
<a href="//tag.html#entrepreneurship">entrepreneurship</a>,
<a href="//tag.html#feedster">feedster</a>,
<a href="//tag.html#dave_mcclure">dave_mcclure</a>
</li>
<li><a href="/">Dear Apple Please Make iTunes Sync Suck Less</a> in <a href="//category.html#iphone">iphone</a> tagged as
<a href="//tag.html#iphone">iphone</a>,
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#apple">apple</a>,
<a href="//tag.html#itunes">itunes</a>
</li>
<li><a href="/">AWS Tutorial 06 - Getting Your Instance ID and Why It Matters</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#instance-id">instance-id</a>
</li>
<li><a href="/">AWS - An Example of Development Speed with AWS</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>
</li>
<li><a href="/">Rails2Elixir - rake spec</a> in <a href="//category.html#rails2elixir">rails2elixir</a> tagged as
<a href="//tag.html#rails2elixir">rails2elixir</a>,
<a href="//tag.html#elixir">elixir</a>
</li>
<li><a href="/">Rails2Elixir - rake db:migrate</a> in <a href="//category.html#rails2elixir">rails2elixir</a> tagged as
<a href="//tag.html#rails2elixir">rails2elixir</a>,
<a href="//tag.html#elixir">elixir</a>
</li>
<li><a href="/">Rails2Elixir - rails new</a> in <a href="//category.html#rails2elixir">rails2elixir</a> tagged as
<a href="//tag.html#rails2elixir">rails2elixir</a>,
<a href="//tag.html#elixir">elixir</a>
</li>
<li><a href="/">Rails2Elixir - rails g migration something_to_change</a> in <a href="//category.html#rails2elixir">rails2elixir</a> tagged as
<a href="//tag.html#rails2elixir">rails2elixir</a>,
<a href="//tag.html#elixir">elixir</a>
</li>
<li><a href="/">Rails2Elixir - rails c</a> in <a href="//category.html#rails2elixir">rails2elixir</a> tagged as
<a href="//tag.html#rails2elixir">rails2elixir</a>,
<a href="//tag.html#elixir">elixir</a>
</li>
<li><a href="/">Rails2Elixir - bundle install</a> in <a href="//category.html#rails2elixir">rails2elixir</a> tagged as
<a href="//tag.html#rails2elixir">rails2elixir</a>,
<a href="//tag.html#elixir">elixir</a>
</li>
<li><a href="/">Practical Things Learned at ElixirConf</a> in <a href="//category.html#elixir">elixir</a> tagged as
<a href="//tag.html#elixir">elixir</a>,
<a href="//tag.html#elixirconf">elixirconf</a>
</li>
<li><a href="/">Notes from My ElixirConf Trip Report at Indianapolis Meetup</a> in <a href="//category.html#elixir">elixir</a> tagged as
<a href="//tag.html#meetup">meetup</a>,
<a href="//tag.html#elixir">elixir</a>
</li>
<li><a href="/">AWS - I was Wrong; Dead Wrong</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>
</li>
<li><a href="/">Startup Learnings - What Eric Howard Taught Me</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#learnings">learnings</a>,
<a href="//tag.html#entrepreneurship">entrepreneurship</a>,
<a href="//tag.html#eric_howard">eric_howard</a>,
<a href="//tag.html#outreach_indiana">outreach_indiana</a>
</li>
<li><a href="/">MySQL - How Do You Know Your MySQL Data Load Worked?</a> in <a href="//category.html#mysql">mysql</a> tagged as
<a href="//tag.html#mysql">mysql</a>
</li>
<li><a href="/">The Anthony Bourdain of Finance - A Book Review of Straight to Hell</a> in <a href="//category.html#book_review">book_review</a> tagged as
<a href="//tag.html#book_review">book_review</a>,
<a href="//tag.html#finance">finance</a>
</li>
<li><a href="/">Good Riddance to Zoom or Video Conferencing Is Still Not the Future</a> in <a href="//category.html#video conferencing">video conferencing</a> tagged as
<a href="//tag.html#zoom">zoom</a>,
<a href="//tag.html#video conferencing">video conferencing</a>,
<a href="//tag.html#rant">rant</a>
</li>
<li><a href="/">Software Engineering Learnings - What Wolfram Arnold Taught Me</a> in <a href="//category.html#software_engineering">software_engineering</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#learnings">learnings</a>,
<a href="//tag.html#entrepreneurship">entrepreneurship</a>,
<a href="//tag.html#feedster">feedster</a>,
<a href="//tag.html#software_engineering">software_engineering</a>,
<a href="//tag.html#wolfram_arnold">wolfram_arnold</a>
</li>
<li><a href="/">Startup Learnings - What Scott Rafer Taught Me</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#learnings">learnings</a>,
<a href="//tag.html#entrepreneurship">entrepreneurship</a>,
<a href="//tag.html#feedster">feedster</a>,
<a href="//tag.html#scott_rafer">scott_rafer</a>
</li>
<li><a href="/">What Keeps You From Using Using Elixir</a> in <a href="//category.html#elixir">elixir</a> tagged as
<a href="//tag.html#elixir">elixir</a>,
<a href="//tag.html#phoenix">phoenix</a>
</li>
<li><a href="/">Slides from Elixircon Days 0, 1 and 2</a> in <a href="//category.html#elixir">elixir</a> tagged as
<a href="//tag.html#elixir">elixir</a>,
<a href="//tag.html#phoenix">phoenix</a>
</li>
<li><a href="/">ElixirCon Review and Closing Thoughts</a> in <a href="//category.html#elixir">elixir</a> tagged as
<a href="//tag.html#elixir">elixir</a>,
<a href="//tag.html#phoenix">phoenix</a>
</li>
<li><a href="/">Startup Learnings - What Matt Mullenweg Taught Me</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#learnings">learnings</a>,
<a href="//tag.html#entrepreneurship">entrepreneurship</a>
</li>
<li><a href="/">Tools for Elixir Development</a> in <a href="//category.html#elixir">elixir</a> tagged as
<a href="//tag.html#elixir">elixir</a>,
<a href="//tag.html#elixirconf">elixirconf</a>,
<a href="//tag.html#tools">tools</a>
</li>
<li><a href="/">Random Thoughts on Elixir</a> in <a href="//category.html#elixir">elixir</a> tagged as
<a href="//tag.html#elixir">elixir</a>,
<a href="//tag.html#elixirconf">elixirconf</a>,
<a href="//tag.html#phoenix">phoenix</a>
</li>
<li><a href="/">How to Turn Off Rails 5 Default Foreign Key Migrations</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#mysql">mysql</a>,
<a href="//tag.html#migration">migration</a>,
<a href="//tag.html#foreign key">foreign key</a>
</li>
<li><a href="/">How to Be a Professional Freelancer</a> in <a href="//category.html#freelance">freelance</a> tagged as
<a href="//tag.html#freelance">freelance</a>,
<a href="//tag.html#business">business</a>
</li>
</ul>
<h1 id="y2016">August 2016</h1>
<ul>
<li><a href="/">Top 10 things Likely to be Overheard if a Klingon was Running Your Engineering Department</a> in <a href="//category.html#humor">humor</a> tagged as
<a href="//tag.html#humor">humor</a>,
<a href="//tag.html#star_trek">star_trek</a>
</li>
<li><a href="/">Startup Learnings - What Mark Fletcher Taught Me</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#learnings">learnings</a>,
<a href="//tag.html#feedster">feedster</a>,
<a href="//tag.html#mark_fletcher">mark_fletcher</a>
</li>
<li><a href="/">Learning Phoenix from Sonny</a> in <a href="//category.html#elixir">elixir</a> tagged as
<a href="//tag.html#elixir">elixir</a>,
<a href="//tag.html#elixirconf">elixirconf</a>,
<a href="//tag.html#phoenix">phoenix</a>
</li>
<li><a href="/">Klingon Open Source</a> in <a href="//category.html#humor">humor</a> tagged as
<a href="//tag.html#humor">humor</a>,
<a href="//tag.html#klingon">klingon</a>,
<a href="//tag.html#open_source">open_source</a>
</li>
<li><a href="/">Hiring and Firing - What If It Doesn't Work Out?</a> in <a href="//category.html#management">management</a> tagged as
<a href="//tag.html#firing">firing</a>,
<a href="//tag.html#hiring">hiring</a>,
<a href="//tag.html#hr">hr</a>
</li>
<li><a href="/">Dated Nerd Humor - Klingon Open Source</a> in <a href="//category.html#humor">humor</a> tagged as
<a href="//tag.html#humor">humor</a>,
<a href="//tag.html#klingon">klingon</a>,
<a href="//tag.html#open_source">open_source</a>
</li>
<li><a href="/">Using Mission Control and Loving It</a> in <a href="//category.html#osx">osx</a> tagged as
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#mission_control">mission_control</a>,
<a href="//tag.html#total_spaces">total_spaces</a>,
<a href="//tag.html#virtual_desktops">virtual_desktops</a>
</li>
<li><a href="/">Who Gave You Permission To Keep My Credit Card Number?</a> in <a href="//category.html#rant">rant</a> tagged as
<a href="//tag.html#rant">rant</a>,
<a href="//tag.html#business">business</a>,
<a href="//tag.html#security">security</a>
</li>
<li><a href="/">AWS Tutorial 5 - Aurora RDS Issues</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#rds">rds</a>,
<a href="//tag.html#mysql">mysql</a>,
<a href="//tag.html#aurora">aurora</a>
</li>
<li><a href="/">Where Startups Get It Wrong - What We Know from Software Engineering Research</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#software engineering">software engineering</a>,
<a href="//tag.html#startup">startup</a>
</li>
<li><a href="/">AWS Tutorial 4 - RDS Data Loading into Aurora Run In Circles Scream and Shout - The Oh Shite Moment</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#rds">rds</a>,
<a href="//tag.html#mysql">mysql</a>,
<a href="//tag.html#aurora">aurora</a>
</li>
<li><a href="/">AWS Tutorial 3 - Notes on S3 Sync</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#mariadb">mariadb</a>,
<a href="//tag.html#mysql">mysql</a>,
<a href="//tag.html#s3">s3</a>
</li>
<li><a href="/">In the World of Containers HoneyBadger Will Reign Supreme - Bye Bye AirBrake</a> in <a href="//category.html#docker">docker</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#containers">containers</a>,
<a href="//tag.html#docker">docker</a>,
<a href="//tag.html#logs">logs</a>,
<a href="//tag.html#error messages">error messages</a>,
<a href="//tag.html#honey badger">honey badger</a>
</li>
<li><a href="/">An Introduction to HyperTerm</a> in <a href="//category.html#hyperterm">hyperterm</a> tagged as
<a href="//tag.html#betty">betty</a>,
<a href="//tag.html#hyperterm">hyperterm</a>,
<a href="//tag.html#node">node</a>
</li>
<li><a href="/">AWS Tutorial 2 - Importing a Large MySQL Instance from S3</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#mariadb">mariadb</a>,
<a href="//tag.html#mysql">mysql</a>,
<a href="//tag.html#s3">s3</a>
</li>
<li><a href="/">Git Howto - Add Your Git Hash to Your Deployed Rails Application</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#git">git</a>,
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#ruby">ruby</a>
</li>
<li><a href="/">Development Tooling - Github Issues, ZenHub, GitLab and More</a> in <a href="//category.html#git">git</a> tagged as
<a href="//tag.html#git">git</a>,
<a href="//tag.html#issues">issues</a>,
<a href="//tag.html#zenhub">zenhub</a>,
<a href="//tag.html#gitlab">gitlab</a>
</li>
<li><a href="/">AWS Tutorial 1 - Exporting a Large MySQL Instance to S3</a> in <a href="//category.html#aws">aws</a> tagged as
<a href="//tag.html#aws">aws</a>,
<a href="//tag.html#mariadb">mariadb</a>,
<a href="//tag.html#mysql">mysql</a>,
<a href="//tag.html#s3">s3</a>
</li>
<li><a href="/">Multi Threaded Debugging Hell</a> in <a href="//category.html#debugging">debugging</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#threading">threading</a>,
<a href="//tag.html#hell">hell</a>
</li>
<li><a href="/">Learning to Extend Betty</a> in <a href="//category.html#betty">betty</a> tagged as
<a href="//tag.html#betty">betty</a>,
<a href="//tag.html#ruby">ruby</a>
</li>
<li><a href="/">Foolishness in Open Source Marketing or On the State of Pony Take 2</a> in <a href="//category.html#marketing">marketing</a> tagged as
<a href="//tag.html#open source">open source</a>,
<a href="//tag.html#pony">pony</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
<li><a href="/">Working with the Gem Ecosystem</a> in <a href="//category.html#ruby">ruby</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#gem">gem</a>
</li>
<li><a href="/">Show Hidden Files On OSX</a> in <a href="//category.html#osx">osx</a> tagged as
<a href="//tag.html#osx">osx</a>
</li>
<li><a href="/">AuthLogic Tutorial</a> in <a href="//category.html#rails">rails</a> tagged as
<a href="//tag.html#rails">rails</a>,
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#authlogic">authlogic</a>,
<a href="//tag.html#authentication">authentication</a>
</li>
<li><a href="/">Welcome to Jekyll!</a> in <a href="//category.html#jekyll">jekyll</a> tagged as
<a href="//tag.html#jekyll">jekyll</a>
</li>
<li><a href="/">Case Study What Can You Do In 30 Days Using Ruby and Rails 5</a> in <a href="//category.html#mvp">mvp</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#mvp">mvp</a>,
<a href="//tag.html#startup">startup</a>
</li>
<li><a href="/">Importing a WordPress Site into Jekyll</a> in <a href="//category.html#jekyll">jekyll</a> tagged as
<a href="//tag.html#jekyll">jekyll</a>,
<a href="//tag.html#wordpress">wordpress</a>
</li>
</ul>
<h1 id="y2016">March 2016</h1>
<ul>
<li><a href="/">Rails2Elixir - Object.methods or Getting a Module to List Its Methods</a> in <a href="//category.html#rails2elixir">rails2elixir</a> tagged as
<a href="//tag.html#rails2elixir">rails2elixir</a>,
<a href="//tag.html#elixir">elixir</a>
</li>
<li><a href="/">Building a Blog with Phoenix</a> in <a href="//category.html#elixir">elixir</a> tagged as
<a href="//tag.html#elixir">elixir</a>,
<a href="//tag.html#phoenix">phoenix</a>
</li>
<li><a href="/">MySql Mistake - Its All About Maria</a> in <a href="//category.html#elixir">elixir</a> tagged as
<a href="//tag.html#elixir">elixir</a>,
<a href="//tag.html#mariadb">mariadb</a>,
<a href="//tag.html#ecto">ecto</a>
</li>
<li><a href="/">Getting Started : Installation</a> in <a href="//category.html#elixir">elixir</a> tagged as
<a href="//tag.html#elixir">elixir</a>
</li>
<li><a href="/">Building a Todo App</a> in <a href="//category.html#elixir">elixir</a> tagged as
<a href="//tag.html#elixir">elixir</a>,
<a href="//tag.html#phoenix">phoenix</a>
</li>
</ul>
<h1 id="y2014">November 2014</h1>
<ul>
<li><a href="/">Surviving a Detour through MacHell or What to Do When Your Mac Won't Boot</a> in <a href="//category.html#osx">osx</a> tagged as
<a href="//tag.html#osx">osx</a>
</li>
<li><a href="/">Recommended Reading Roundup</a> in <a href="//category.html#reading">reading</a> tagged as
<a href="//tag.html#reading">reading</a>,
<a href="//tag.html#links">links</a>
</li>
<li><a href="/">Useful Tmux Resources</a> in <a href="//category.html#tmux">tmux</a> tagged as
<a href="//tag.html#tmux">tmux</a>
</li>
<li><a href="/">Concept of the Week - Immutable Infrastructure</a> in <a href="//category.html#software_engineering">software_engineering</a> tagged as
</li>
<li><a href="/">When OSX 10.9 + and MySQL 5.6 Don't Work</a> in <a href="//category.html#mysql">mysql</a> tagged as
<a href="//tag.html#mysql">mysql</a>,
<a href="//tag.html#osx">osx</a>
</li>
<li><a href="/">Highly Recommended - Chris Kottom's Forthcoming Book</a> in <a href="//category.html#tdd">tdd</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#testing">testing</a>,
<a href="//tag.html#tdd">tdd</a>,
<a href="//tag.html#book review">book review</a>
</li>
</ul>
<h1 id="y2014">October 2014</h1>
<ul>
<li><a href="/">Things I'm Again Not Reading</a> in <a href="//category.html#reading">reading</a> tagged as
<a href="//tag.html#reading">reading</a>,
<a href="//tag.html#links">links</a>
</li>
<li><a href="/">Re-indexing a Sphinx Search Database when You're Confused</a> in <a href="//category.html#sphinx">sphinx</a> tagged as
<a href="//tag.html#sphinx">sphinx</a>
</li>
<li><a href="/">Running out of iNodes, Coo Coo Cachoo</a> in <a href="//category.html#sysadmin">sysadmin</a> tagged as
<a href="//tag.html#sysadmin">sysadmin</a>,
<a href="//tag.html#unix">unix</a>,
<a href="//tag.html#inode">inode</a>,
<a href="//tag.html#linux">linux</a>
</li>
<li><a href="/">Again the Things I Wish I was Actually Reading instead of Posting</a> in <a href="//category.html#reading">reading</a> tagged as
<a href="//tag.html#reading">reading</a>,
<a href="//tag.html#links">links</a>
</li>
<li><a href="/">Things I'm Not Reading But I Wish I Was</a> in <a href="//category.html#reading">reading</a> tagged as
<a href="//tag.html#reading">reading</a>,
<a href="//tag.html#links">links</a>
</li>
</ul>
<h1 id="y2014">September 2014</h1>
<ul>
<li><a href="/">Things I'm Not Reading But I Wish I Was</a> in <a href="//category.html#reading">reading</a> tagged as
<a href="//tag.html#reading">reading</a>,
<a href="//tag.html#links">links</a>
</li>
<li><a href="/">Test Coverage 101 - A Teeny Tiny Example</a> in <a href="//category.html#test coverage">test coverage</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#tdd">tdd</a>,
<a href="//tag.html#testing">testing</a>,
<a href="//tag.html#test coverage">test coverage</a>
</li>
<li><a href="/">Archiving HTML Pages to the Database with Compression Using Rails</a> in <a href="//category.html#mysql">mysql</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#mysql">mysql</a>,
<a href="//tag.html#serialize">serialize</a>,
<a href="//tag.html#compression">compression</a>
</li>
<li><a href="/">Blocking Site Abusers</a> in <a href="//category.html#sysadmin">sysadmin</a> tagged as
<a href="//tag.html#sysadmin">sysadmin</a>,
<a href="//tag.html#ufw">ufw</a>,
<a href="//tag.html#linux">linux</a>
</li>
<li><a href="/">ActionMailer, Vlad and Rake Remote Task Issues</a> in <a href="//category.html#actionmailer">actionmailer</a> tagged as
<a href="//tag.html#actionmailer">actionmailer</a>,
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#vlad">vlad</a>
</li>
<li><a href="/">Wednesday's Worth Reading</a> in <a href="//category.html#reading">reading</a> tagged as
<a href="//tag.html#reading">reading</a>,
<a href="//tag.html#links">links</a>
</li>
<li><a href="/">Changing a Timestamp on OSX When Your Camera has 1979 as its Date</a> in <a href="//category.html#osx">osx</a> tagged as
<a href="//tag.html#osx">osx</a>,
<a href="//tag.html#sysadmin">sysadmin</a>
</li>
</ul>
<h1 id="y2014">August 2014</h1>
<ul>
<li><a href="/">Adding Wireless IP Security Web Cams to Your House or a Wretched Hive of Scum and Villany</a> in <a href="//category.html#home_security">home_security</a> tagged as
<a href="//tag.html#home_security">home_security</a>,
<a href="//tag.html#wifi">wifi</a>,
<a href="//tag.html#web cam">web cam</a>,
<a href="//tag.html#security">security</a>
</li>
<li><a href="/">The Importance of Git Hooks</a> in <a href="//category.html#git">git</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#git">git</a>,
<a href="//tag.html#hooks">hooks</a>
</li>
<li><a href="/">Optimizing Your Filesystem for MySQL</a> in <a href="//category.html#mysql">mysql</a> tagged as
<a href="//tag.html#mysql">mysql</a>,
<a href="//tag.html#filesystem">filesystem</a>,
<a href="//tag.html#performance">performance</a>
</li>
<li><a href="/">Innodb Performance Tuning Tips and Research</a> in <a href="//category.html#mysql">mysql</a> tagged as
<a href="//tag.html#mysql">mysql</a>,
<a href="//tag.html#innodb">innodb</a>,
<a href="//tag.html#performance">performance</a>
</li>
<li><a href="/">MySQL Tip - How do you shut down mysql when you don't use upstart or init.d</a> in <a href="//category.html#mysql">mysql</a> tagged as
<a href="//tag.html#mysql">mysql</a>,
<a href="//tag.html#sysadmin">sysadmin</a>
</li>
<li><a href="/">Fixing Tmux So it Loads Window Names from tmuxinator config files</a> in <a href="//category.html#tmux">tmux</a> tagged as
<a href="//tag.html#tmux">tmux</a>,
<a href="//tag.html#tmuxinator">tmuxinator</a>
</li>
<li><a href="/">A Damn Fine Day from an Engineer's Perspective</a> in <a href="//category.html#optimization">optimization</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#optimization">optimization</a>,
<a href="//tag.html#performance">performance</a>
</li>
<li><a href="/">Worth Reading</a> in <a href="//category.html#reading">reading</a> tagged as
<a href="//tag.html#reading">reading</a>,
<a href="//tag.html#links">links</a>
</li>
<li><a href="/">How to Vendor Gem a Gem</a> in <a href="//category.html#ruby">ruby</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#gem">gem</a>,
<a href="//tag.html#vendor gem">vendor gem</a>
</li>
<li><a href="/">Anatomy of a Business Trip Gone Horribly Wrong</a> in <a href="//category.html#humor">humor</a> tagged as
<a href="//tag.html#humor">humor</a>,
<a href="//tag.html#road warrior">road warrior</a>
</li>
<li><a href="/">Road Warrior Tips - Use Your iPad as GPS When Traveling and More</a> in <a href="//category.html#road warrior">road warrior</a> tagged as
<a href="//tag.html#ipad">ipad</a>,
<a href="//tag.html#road warrior">road warrior</a>,
<a href="//tag.html#gps">gps</a>
</li>
<li><a href="/">Best Place to Charge Your Phone or Laptop in Atlanta Airport</a> in <a href="//category.html#road warrior">road warrior</a> tagged as
<a href="//tag.html#power">power</a>,
<a href="//tag.html#road warrior">road warrior</a>,
<a href="//tag.html#airport">airport</a>
</li>
<li><a href="/">OSX Tip - Using Toshiba External Hard Drives</a> in <a href="//category.html#osx">osx</a> tagged as
<a href="//tag.html#ntfs">ntfs</a>,
<a href="//tag.html#osx">osx</a>
</li>
<li><a href="/">Curse Your Curly Quotes or Crazy Chef Error Messages</a> in <a href="//category.html#chef">chef</a> tagged as
<a href="//tag.html#ruby">ruby</a>,
<a href="//tag.html#curly quotes">curly quotes</a>
</li>
</ul>
<h1 id="y2005">December 2005</h1>
<ul>
<li><a href="/">A Mea Culpa or Here's My New Blog Url</a> in <a href="//category.html#blogging">blogging</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">ServerBeach versus XLHost</a> in <a href="//category.html#hosting">hosting</a> tagged as
<a href="//tag.html#serverbeach">serverbeach</a>,
<a href="//tag.html#xlhost">xlhost</a>,
<a href="//tag.html#hosting">hosting</a>
</li>
<li><a href="/">Busy Podcasters Guide</a> in <a href="//category.html#podcasting">podcasting</a> tagged as
<a href="//tag.html#podcasting">podcasting</a>
</li>
<li><a href="/">Google Desktop Continued</a> in <a href="//category.html#computing_tips">computing_tips</a> tagged as
<a href="//tag.html#computing_tips">computing_tips</a>,
<a href="//tag.html#windows">windows</a>,
<a href="//tag.html#google_desktop">google_desktop</a>
</li>
<li><a href="/">Understanding Just Why Podcasting Will be Huge</a> in <a href="//category.html#podcasting">podcasting</a> tagged as
<a href="//tag.html#podcasting">podcasting</a>
</li>
<li><a href="/">Hardware Recommendation Requested</a> in <a href="//category.html#rant">rant</a> tagged as
<a href="//tag.html#rant">rant</a>
</li>
<li><a href="/">Link : How to change your AIM password without downloadin the client software</a> in <a href="//category.html#computing_tips">computing_tips</a> tagged as
<a href="//tag.html#computing_tips">computing_tips</a>,
<a href="//tag.html#aim">aim</a>
</li>
<li><a href="/">Podcasting -- How to save money on your bandwidth</a> in <a href="//category.html#podcasting">podcasting</a> tagged as
<a href="//tag.html#podcasting">podcasting</a>
</li>
<li><a href="/">Ubuntu -- where is the apache root ?</a> in <a href="//category.html#ubuntu">ubuntu</a> tagged as
<a href="//tag.html#ubuntu">ubuntu</a>,
<a href="//tag.html#apache">apache</a>
</li>
<li><a href="/">Ubuntu - where is the apache error log ?</a> in <a href="//category.html#ubuntu">ubuntu</a> tagged as
<a href="//tag.html#ubuntu">ubuntu</a>,
<a href="//tag.html#apache">apache</a>
</li>
<li><a href="/">Ubuntu - how do you restart apache ?</a> in <a href="//category.html#ubuntu">ubuntu</a> tagged as
<a href="//tag.html#ubuntu">ubuntu</a>,
<a href="//tag.html#apache">apache</a>
</li>
<li><a href="/">Ubuntu - Where is httpd.conf for setting up apache ?</a> in <a href="//category.html#ubuntu">ubuntu</a> tagged as
<a href="//tag.html#ubuntu">ubuntu</a>,
<a href="//tag.html#apache">apache</a>
</li>
<li><a href="/">Ubunto - Installing Django</a> in <a href="//category.html#ubuntu">ubuntu</a> tagged as
</li>
<li><a href="/">Hosting Review Requested</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#hosting">hosting</a>
</li>
<li><a href="/">Venture Capital : Raising the Right Amount of Money</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#venture_capital">venture_capital</a>
</li>
<li><a href="/">1st Notes on Google Desktop</a> in <a href="//category.html#computing_tips">computing_tips</a> tagged as
<a href="//tag.html#computing_tips">computing_tips</a>,
<a href="//tag.html#google_desktop">google_desktop</a>
</li>
<li><a href="/">New Google Deskbar Rocks</a> in <a href="//category.html#computing_tips">computing_tips</a> tagged as
<a href="//tag.html#computing_tips">computing_tips</a>,
<a href="//tag.html#search">search</a>,
<a href="//tag.html#windows">windows</a>
</li>
<li><a href="/">Wanting to Riff Like Niall</a> in <a href="//category.html#podcasting">podcasting</a> tagged as
<a href="//tag.html#podcasting">podcasting</a>
</li>
<li><a href="/">The Om and Niall Riff</a> in <a href="//category.html#podcasting">podcasting</a> tagged as
<a href="//tag.html#podcasting">podcasting</a>
</li>
<li><a href="/">Usability Goes Everywhere</a> in <a href="//category.html#usability">usability</a> tagged as
<a href="//tag.html#usability">usability</a>
</li>
<li><a href="/">Question of the Day</a> in <a href="//category.html#rant">rant</a> tagged as
<a href="//tag.html#rant">rant</a>
</li>
<li><a href="/">Admitting My Geekiness for all to See</a> in <a href="//category.html#misc">misc</a> tagged as
<a href="//tag.html#misc">misc</a>
</li>
<li><a href="/">The Dark Side of Russell</a> in <a href="//category.html#humor">humor</a> tagged as
<a href="//tag.html#humor">humor</a>
</li>
<li><a href="/">Live with Webmail</a> in <a href="//category.html#usability">usability</a> tagged as
<a href="//tag.html#usability">usability</a>,
<a href="//tag.html#gmail">gmail</a>
</li>
<li><a href="/">A Devil Dog Indeed</a> in <a href="//category.html#humor">humor</a> tagged as
<a href="//tag.html#humor">humor</a>,
<a href="//tag.html#photo">photo</a>
</li>
<li><a href="/">Great shell command : Find all files modified in the past week using class library foo</a> in <a href="//category.html#linux">linux</a> tagged as
</li>
<li><a href="/">Escape from hackerdom or How to Implement Engineering Processes</a> in <a href="//category.html#software_engineering">software_engineering</a> tagged as
<a href="//tag.html#software_engineering">software_engineering</a>,
<a href="//tag.html#startup">startup</a>
</li>
<li><a href="/">10 Things About My Web 2.0 Startup</a> in <a href="//category.html#humor">humor</a> tagged as
<a href="//tag.html#humor">humor</a>
</li>
<li><a href="/">Python Link of the Day: EZT</a> in <a href="//category.html#php">php</a> tagged as
<a href="//tag.html#php">php</a>,
<a href="//tag.html#python">python</a>
</li>
<li><a href="/">Python Link of the Day</a> in <a href="//category.html#python">python</a> tagged as
<a href="//tag.html#python">python</a>,
<a href="//tag.html#software_engineering">software_engineering</a>
</li>
<li><a href="/">Engineering Management 101 : BitRot and Why Engineers Hate Building Tools</a> in <a href="//category.html#software_engineering">software_engineering</a> tagged as
<a href="//tag.html#software_engineering">software_engineering</a>
</li>
<li><a href="/">Paying for Web 2.0</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>
</li>
<li><a href="/">Marcia Brady the Startup Window</a> in <a href="//category.html#humor">humor</a> tagged as
<a href="//tag.html#humor">humor</a>
</li>
<li><a href="/">Meet Some Feedsterites</a> in <a href="//category.html#feedster">feedster</a> tagged as
<a href="//tag.html#feedster">feedster</a>
</li>
<li><a href="/">Why Python?</a> in <a href="//category.html#python">python</a> tagged as
<a href="//tag.html#python">python</a>
</li>
<li><a href="/">FireFox 1.5 is Out</a> in <a href="//category.html#firefox">firefox</a> tagged as
<a href="//tag.html#firefox">firefox</a>
</li>
<li><a href="/">Blog This All Over the Place</a> in <a href="//category.html#misc">misc</a> tagged as
<a href="//tag.html#misc">misc</a>
</li>
<li><a href="/">First Python Project: Gaim + GMail Integration</a> in <a href="//category.html#python">python</a> tagged as
<a href="//tag.html#python">python</a>
</li>
<li><a href="/">If a feature fell in the forest</a> in <a href="//category.html#humor">humor</a> tagged as
<a href="//tag.html#humor">humor</a>
</li>
</ul>
<h1 id="y2005">November 2005</h1>
<ul>
<li><a href="/">The Annotated Evhead</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>
</li>
<li><a href="/">Becoming P^3</a> in <a href="//category.html#python">python</a> tagged as
<a href="//tag.html#python">python</a>
</li>
<li><a href="/">Advice for New Startups : Metrics</a> in <a href="//category.html#startup">startup</a> tagged as
</li>
<li><a href="/">Making Google Talk Better</a> in <a href="//category.html#usability">usability</a> tagged as
<a href="//tag.html#im">im</a>,
<a href="//tag.html#usability">usability</a>,
<a href="//tag.html#google_talk">google_talk</a>
</li>
<li><a href="/">im quote of the day</a> in <a href="//category.html#humor">humor</a> tagged as
<a href="//tag.html#humor">humor</a>
</li>
<li><a href="/">Techniques for Staying Awake and Functional When Caffeine Fails You</a> in <a href="//category.html#software_engineering">software_engineering</a> tagged as
<a href="//tag.html#software_engineering">software_engineering</a>,
<a href="//tag.html#misc">misc</a>
</li>
<li><a href="/">Great VIM Tip: Set paste</a> in <a href="//category.html#vim">vim</a> tagged as
<a href="//tag.html#vim">vim</a>,
<a href="//tag.html#linux">linux</a>,
<a href="//tag.html#computing_tips">computing_tips</a>
</li>
<li><a href="/">Digital Camera Recommendation Wanted</a> in <a href="//category.html#camera">camera</a> tagged as
<a href="//tag.html#camera">camera</a>,
<a href="//tag.html#misc">misc</a>
</li>
<li><a href="/">Great Thoughts on Options in Software</a> in <a href="//category.html#software_engineering">software_engineering</a> tagged as
<a href="//tag.html#software_engineering">software_engineering</a>
</li>
<li><a href="/">Thanks Dave!</a> in <a href="//category.html#feedster">feedster</a> tagged as
<a href="//tag.html#feedster">feedster</a>
</li>
<li><a href="/">Getting down to the wire</a> in <a href="//category.html#feedster">feedster</a> tagged as
<a href="//tag.html#feedster">feedster</a>
</li>
<li><a href="/">Well Said Jeremy, Well Said</a> in <a href="//category.html#feedster">feedster</a> tagged as
<a href="//tag.html#feedster">feedster</a>
</li>
<li><a href="/">Advice on Consumer Electronics / Sharp Aquous Requested</a> in <a href="//category.html#misc">misc</a> tagged as
<a href="//tag.html#misc">misc</a>
</li>
<li><a href="/">Robert on the XBox 360 Shortage</a> in <a href="//category.html#xbox">xbox</a> tagged as
<a href="//tag.html#xbox">xbox</a>
</li>
<li><a href="/">Greg on XBox 360 Shortages</a> in <a href="//category.html#xbox">xbox</a> tagged as
<a href="//tag.html#xbox">xbox</a>
</li>
<li><a href="/">iTunes on Windows Easier than on Mac ?</a> in <a href="//category.html#itunes">itunes</a> tagged as
<a href="//tag.html#itunes">itunes</a>
</li>
<li><a href="/">My Boy's First Blog Post</a> in <a href="//category.html#humor">humor</a> tagged as
<a href="//tag.html#humor">humor</a>
</li>
<li><a href="/">The Relative's PC</a> in <a href="//category.html#misc">misc</a> tagged as
<a href="//tag.html#misc">misc</a>
</li>
<li><a href="/">Buying an XBox 360</a> in <a href="//category.html#xbox">xbox</a> tagged as
<a href="//tag.html#xbox">xbox</a>
</li>
<li><a href="/">The Finals Steps</a> in <a href="//category.html#feedster">feedster</a> tagged as
<a href="//tag.html#feedster">feedster</a>
</li>
<li><a href="/">San Francisco Hotel Recommendation Needed</a> in <a href="//category.html#feedster">feedster</a> tagged as
<a href="//tag.html#feedster">feedster</a>,
<a href="//tag.html#misc">misc</a>
</li>
<li><a href="/">Tagyu -- Very Cool</a> in <a href="//category.html#misc">misc</a> tagged as
<a href="//tag.html#misc">misc</a>,
<a href="//tag.html#tagyu">tagyu</a>
</li>
<li><a href="/">Favorite SQL Feature of the Day</a> in <a href="//category.html#sql">sql</a> tagged as
<a href="//tag.html#sql">sql</a>
</li>
<li><a href="/">The Coming Yahoo Microsoft Merger</a> in <a href="//category.html#humor">humor</a> tagged as
<a href="//tag.html#humor">humor</a>
</li>
<li><a href="/">A Joke</a> in <a href="//category.html#humor">humor</a> tagged as
<a href="//tag.html#humor">humor</a>
</li>
<li><a href="/">The Hacker Has Left the Offices</a> in <a href="//category.html#humor">humor</a> tagged as
<a href="//tag.html#humor">humor</a>
</li>
<li><a href="/">IM Quote of the Day</a> in <a href="//category.html#humor">humor</a> tagged as
</li>
<li><a href="/">The Hacker Has Left the Hotel</a> in <a href="//category.html#feedster">feedster</a> tagged as
</li>
<li><a href="/">Crunch Mode or What Can Go Wrong Will Go Wrong</a> in <a href="//category.html#feedster">feedster</a> tagged as
<a href="//tag.html#feedster">feedster</a>,
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#software_engineering">software_engineering</a>
</li>
<li><a href="/">Juice Rocks</a> in <a href="//category.html#podcasting">podcasting</a> tagged as
<a href="//tag.html#podcasting">podcasting</a>
</li>
<li><a href="/">First Test of Flock to Post to Wordpress</a> in <a href="//category.html#wordpress">wordpress</a> tagged as
<a href="//tag.html#wordpress">wordpress</a>,
<a href="//tag.html#flock">flock</a>
</li>
<li><a href="/">Understanding Yahoo's RSS Ad Server</a> in <a href="//category.html#feedster">feedster</a> tagged as
<a href="//tag.html#feedster">feedster</a>
</li>
<li><a href="/">Live from Tornado Alley (Literally)</a> in <a href="//category.html#humor">humor</a> tagged as
<a href="//tag.html#humor">humor</a>
</li>
<li><a href="/">Maxthon - Huh ?</a> in <a href="//category.html#browser">browser</a> tagged as
<a href="//tag.html#browser">browser</a>,
<a href="//tag.html#maxthon">maxthon</a>
</li>
<li><a href="/">Kayak is Bloody Well Brilliant as well as Fantastic</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#kayak">kayak</a>
</li>
<li><a href="/">Microsoft Project - Any Improvements</a> in <a href="//category.html#software_engineering">software_engineering</a> tagged as
<a href="//tag.html#software_engineering">software_engineering</a>
</li>
<li><a href="/">A Feedster Widget for OSX Dashboard</a> in <a href="//category.html#feedster">feedster</a> tagged as
<a href="//tag.html#feedster">feedster</a>,
<a href="//tag.html#osx">osx</a>
</li>
<li><a href="/">An Easy PHP Install</a> in <a href="//category.html#php">php</a> tagged as
<a href="//tag.html#php">php</a>
</li>
<li><a href="/">Dr. Seuss Startrek</a> in <a href="//category.html#humor">humor</a> tagged as
<a href="//tag.html#humor">humor</a>
</li>
<li><a href="/">I Made Memeorandum</a> in <a href="//category.html#feedster">feedster</a> tagged as
<a href="//tag.html#feedster">feedster</a>
</li>
<li><a href="/">Lunch is Just a Time Offset</a> in <a href="//category.html#misc">misc</a> tagged as
<a href="//tag.html#misc">misc</a>
</li>
<li><a href="/">My Apologies for Not Responding to the Comments Yet</a> in <a href="//category.html#blogging">blogging</a> tagged as
<a href="//tag.html#blogging">blogging</a>,
<a href="//tag.html#misc">misc</a>
</li>
<li><a href="/">How Microsoft Can Compete Against Open Source</a> in <a href="//category.html#rant">rant</a> tagged as
<a href="//tag.html#rant">rant</a>,
<a href="//tag.html#open_source">open_source</a>
</li>
<li><a href="/">A Gaim Plugin I Want</a> in <a href="//category.html#gaim">gaim</a> tagged as
<a href="//tag.html#gaim">gaim</a>,
<a href="//tag.html#aim">aim</a>,
<a href="//tag.html#im">im</a>
</li>
<li><a href="/">WordPress and FireFox 1.5 Quick Testing Results</a> in <a href="//category.html#wordpress">wordpress</a> tagged as
<a href="//tag.html#wordpress">wordpress</a>,
<a href="//tag.html#firefox">firefox</a>
</li>
<li><a href="/">Advice for People Writing Podcast Engines / Tools</a> in <a href="//category.html#podcasting">podcasting</a> tagged as
<a href="//tag.html#podcasting">podcasting</a>,
<a href="//tag.html#opml">opml</a>
</li>
<li><a href="/">Happiness is Vietnamese Iced Coffee</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#software_engineering">software_engineering</a>,
<a href="//tag.html#coffee">coffee</a>
</li>
<li><a href="/">Good Review of BlinkSale</a> in <a href="//category.html#startup">startup</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#blinksale">blinksale</a>
</li>
<li><a href="/">RSS Owl Updates</a> in <a href="//category.html#rss">rss</a> tagged as
<a href="//tag.html#rss">rss</a>,
<a href="//tag.html#aggregator">aggregator</a>
</li>
<li><a href="/">Useful Ajax Resources</a> in <a href="//category.html#php">php</a> tagged as
<a href="//tag.html#ajax">ajax</a>,
<a href="//tag.html#php">php</a>
</li>
<li><a href="/">Firefox Tip of the Day</a> in <a href="//category.html#firefox">firefox</a> tagged as
<a href="//tag.html#firefox">firefox</a>
</li>
<li><a href="/">Why Feedster Used Linux</a> in <a href="//category.html#feedster">feedster</a> tagged as
<a href="//tag.html#feedster">feedster</a>,
<a href="//tag.html#linux">linux</a>
</li>
</ul>
<h1 id="y2005">October 2005</h1>
<ul>
<li><a href="/">BlogBridge is Beautiful</a> in <a href="//category.html#aggregator">aggregator</a> tagged as
<a href="//tag.html#aggregator">aggregator</a>
</li>
<li><a href="/">A Steaming Pile of Camel Dung</a> in <a href="//category.html#rant">rant</a> tagged as
<a href="//tag.html#rant">rant</a>
</li>
<li><a href="/">Thanks Mike!</a> in <a href="//category.html#misc">misc</a> tagged as
<a href="//tag.html#misc">misc</a>
</li>
</ul>
<h1 id="y2003">July 2003</h1>
<ul>
<li><a href="/">INBOX BUDDY 1.2 SHIPS!!!</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#inbox_buddy">inbox_buddy</a>
</li>
<li><a href="/">INBOX BUDDY 1.1 SHIPS!!!</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#inbox_buddy">inbox_buddy</a>
</li>
</ul>
<h1 id="y2003">June 2003</h1>
<ul>
<li><a href="/">Welcome Back David Gerrold and Chapters from a Method for Madness</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#scifi">scifi</a>
</li>
</ul>
<h1 id="y2003">May 2003</h1>
<ul>
<li><a href="/">Searching and Chicken Nuggets</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#misc">misc</a>
</li>
<li><a href="/">Scott In a Nutshell</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#misc">misc</a>
</li>
<li><a href="/">Boston Beach Blogging Bingo</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">Inbox Buddy Product Vision</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#inbox_buddy">inbox_buddy</a>
</li>
<li><a href="/">Feedster FAQ</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#feedster">feedster</a>
</li>
<li><a href="/">Feedster -- URL Api</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#feedster">feedster</a>
</li>
</ul>
<h1 id="y2003">April 2003</h1>
<ul>
<li><a href="/">Why You Shouldn't Watch CNN Anymore</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#misc">misc</a>
</li>
<li><a href="/">PHP Free Space Monitor Code</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#php">php</a>
</li>
</ul>
<h1 id="y2003">February 2003</h1>
<ul>
<li><a href="/">Understanding The Owl Document Management Permissioning Model</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
</li>
</ul>
<h1 id="y2003">January 2003</h1>
<ul>
<li><a href="/">How to Find an Open Source Package</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#open_source">open_source</a>
</li>
<li><a href="/">Marketing 101- Doing the Right Thing or Good Going Amazon</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
<li><a href="/">Marketing 101- Stupidity Begins at Home</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
</ul>
<h1 id="y2002">December 2002</h1>
<ul>
<li><a href="/">Creating an Email Marketing Campaign for Your Software Product</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
<li><a href="/">Understanding the Imprtance of Release Early, Release Often</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
</li>
<li><a href="/">Understanding the Importance of Release Early, Release Often</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
</li>
</ul>
<h1 id="y2002">November 2002</h1>
<ul>
<li><a href="/">PHP Code for Testing If an SMTP Address Exists</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#php">php</a>
</li>
<li><a href="/">Marketing 101- So What is Business Development Anyway?</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
<li><a href="/">What Can One Non-Geek Do?*</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#open_source">open_source</a>
</li>
<li><a href="/">PHP Pear Programming Tutorial</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#php">php</a>,
<a href="//tag.html#pear">pear</a>
</li>
<li><a href="/">Email Based Knowledge Management</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#email">email</a>,
<a href="//tag.html#knowledge_management">knowledge_management</a>
</li>
<li><a href="/">Marketing an Open Source Product - The Product Literature</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>,
<a href="//tag.html#open_source">open_source</a>
</li>
<li><a href="/">A Feature List for Drupal</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#drupal">drupal</a>
</li>
</ul>
<h1 id="y2002">October 2002</h1>
<ul>
<li><a href="/">Software Engineering- Picking a Real World Release Dates</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#software_engineering">software_engineering</a>
</li>
<li><a href="/">What About PHPJ ?</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#php">php</a>
</li>
<li><a href="/">Marketing 101 / Search Critic- Watch Out For Accented Terms !!!</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>,
<a href="//tag.html#search">search</a>
</li>
<li><a href="/">Transmitter -- Rethinking the Blog Creation User Interface</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">Transmitter -- Problems with Radio UserLand</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>,
<a href="//tag.html#radio_userland">radio_userland</a>
</li>
<li><a href="/">Transmitter -- Blogging Versus KLogging -- One and the Same</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">Explosion in Finland: 7 Dead</a> in <a href="//category.html#"></a> tagged as
</li>
<li><a href="/">Frothy Good PHP Stuff</a> in <a href="//category.html#php">php</a> tagged as
<a href="//tag.html#php">php</a>
</li>
<li><a href="/">Blogback, BlogForward, Whatever</a> in <a href="//category.html#tech">tech</a> tagged as
<a href="//tag.html#tech">tech</a>
</li>
<li><a href="/">Greece Bans Video Games and Now France Taxes Pornography at 93%</a> in <a href="//category.html#news">news</a> tagged as
<a href="//tag.html#news">news</a>
</li>
<li><a href="/">Come On! XDocs is Easy to Understand!</a> in <a href="//category.html#tech">tech</a> tagged as
<a href="//tag.html#tech">tech</a>
</li>
<li><a href="/">10 - 12 Software Development Jobs Available !</a> in <a href="//category.html#tech">tech</a> tagged as
<a href="//tag.html#tech">tech</a>
</li>
<li><a href="/">ISP Horror Stories from Hell</a> in <a href="//category.html#tech">tech</a> tagged as
<a href="//tag.html#tech">tech</a>
</li>
<li><a href="/">If You Take Prescription Drugs Visit RxNorth</a> in <a href="//category.html#"></a> tagged as
</li>
<li><a href="/">Your Past Returns or The Largest Email You've Ever Seen</a> in <a href="//category.html#ntergaid">ntergaid</a> tagged as
<a href="//tag.html#ntergaid">ntergaid</a>,
<a href="//tag.html#hyperwriter">hyperwriter</a>,
<a href="//tag.html#dataware">dataware</a>
</li>
<li><a href="/">That Inbox Buddy Tutorial About Spam ...</a> in <a href="//category.html#inbox_buddy">inbox_buddy</a> tagged as
<a href="//tag.html#inbox_buddy">inbox_buddy</a>
</li>
<li><a href="/">Ah... If You Recently Installed Sendmail</a> in <a href="//category.html#inbox_buddy">inbox_buddy</a> tagged as
<a href="//tag.html#inbox_buddy">inbox_buddy</a>,
<a href="//tag.html#sendmail">sendmail</a>
</li>
<li><a href="/">Reposting: Hey ! I Can Find that Blog on the Radio</a> in <a href="//category.html#blogging">blogging</a> tagged as
<a href="//tag.html#blogging">blogging</a>,
<a href="//tag.html#blogging_book">blogging_book</a>,
<a href="//tag.html#oreilly">oreilly</a>
</li>
<li><a href="/">Inbox Buddy Update</a> in <a href="//category.html#inbox_buddy">inbox_buddy</a> tagged as
<a href="//tag.html#inbox_buddy">inbox_buddy</a>
</li>
<li><a href="/">Google Revisited: Comparing Search Engine Results</a> in <a href="//category.html#google">google</a> tagged as
<a href="//tag.html#google">google</a>,
<a href="//tag.html#search">search</a>
</li>
<li><a href="/">To Amazon, Do Not Pass Go, Do Not Collect , Go Stand in the Corner</a> in <a href="//category.html#rant">rant</a> tagged as
<a href="//tag.html#amazon">amazon</a>,
<a href="//tag.html#rant">rant</a>
</li>
<li><a href="/">Thank You Dawn ! Ten Best Things to Say If You Are Caught Sleeping At Your Desk</a> in <a href="//category.html#humor">humor</a> tagged as
<a href="//tag.html#humor">humor</a>
</li>
<li><a href="/">Any Elance Users Out There?</a> in <a href="//category.html#consulting">consulting</a> tagged as
<a href="//tag.html#consulting">consulting</a>,
<a href="//tag.html#elance">elance</a>
</li>
<li><a href="/">Ah, Hollywood... Could You Buy a Clue ?</a> in <a href="//category.html#rant">rant</a> tagged as
<a href="//tag.html#rant">rant</a>,
<a href="//tag.html#hollywood">hollywood</a>
</li>
<li><a href="/">Read This ! Generation Wrecked</a> in <a href="//category.html#news">news</a> tagged as
<a href="//tag.html#news">news</a>,
<a href="//tag.html#jobs">jobs</a>,
<a href="//tag.html#economy">economy</a>
</li>
<li><a href="/">A Follow Up to the Google Post</a> in <a href="//category.html#google">google</a> tagged as
<a href="//tag.html#google">google</a>
</li>
<li><a href="/">Hmmm.... Google's Different</a> in <a href="//category.html#google">google</a> tagged as
<a href="//tag.html#google">google</a>
</li>
<li><a href="/">Non-ADA Compliant Websites Under Attack</a> in <a href="//category.html#blogging">blogging</a> tagged as
<a href="//tag.html#blogging">blogging</a>,
<a href="//tag.html#ada">ada</a>
</li>
<li><a href="/">Have You Faxed From DigitalConsumer.Org ?</a> in <a href="//category.html#politics">politics</a> tagged as
<a href="//tag.html#politics">politics</a>
</li>
<li><a href="/">Watch Out for the BugBear</a> in <a href="//category.html#security">security</a> tagged as
<a href="//tag.html#tech">tech</a>,
<a href="//tag.html#security">security</a>,
<a href="//tag.html#virus">virus</a>
</li>
<li><a href="/">Negotiation 101-</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#negotiation">negotiation</a>
</li>
<li><a href="/">Negotiation 101- Analyzing a Contract for Sale of a Business</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#negotiation">negotiation</a>
</li>
<li><a href="/">Rethinking Search and Retrieval for Blogs</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>,
<a href="//tag.html#search">search</a>
</li>
<li><a href="/">If I Was Interviewing Jeff Raikes</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#microsoft">microsoft</a>,
<a href="//tag.html#office">office</a>,
<a href="//tag.html#microsoft_office">microsoft_office</a>
</li>
</ul>
<h1 id="y2002">September 2002</h1>
<ul>
<li><a href="/">Scott's Radio -- A Recipe for Multi Blogging with Radio</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">Welcome to mnoGoSearch</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#search">search</a>
</li>
<li><a href="/">Should I Take that Shiny New Job ?</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#misc">misc</a>
</li>
<li><a href="/">Consulting 101- Evaluating Vertical Market Business Software for Yoga Studios</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#consulting101">consulting101</a>,
<a href="//tag.html#consulting">consulting</a>
</li>
<li><a href="/">Consulting 101- How Do I Market Myself as a New Consultant</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#consulting101">consulting101</a>,
<a href="//tag.html#consulting">consulting</a>,
<a href="//tag.html#freelance">freelance</a>
</li>
<li><a href="/">Draft- Why Software Sucks- An Alternate Perspective</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#software_engineering">software_engineering</a>
</li>
<li><a href="/">Marketing 101- The Sign</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
<li><a href="/">When Windows Profiles Fail and Why</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#windows">windows</a>
</li>
<li><a href="/">Who and What is FuzzyBlog ?</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">Marketing 101 - General Comments On Starting Your Own Business</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
</ul>
<h1 id="y2002">August 2002</h1>
<ul>
<li><a href="/">Getting Started with Blogging for the Attractive Female Blogger</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">Marketing 101- Accounting Tips for Startups</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
<li><a href="/">Getting All Jobs for You From HotJobs or Monster.com - or Understanding Online Jobs Searches</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#job_search">job_search</a>,
<a href="//tag.html#jobs">jobs</a>
</li>
<li><a href="/">PHPLarge -- FuzzyOffice -- Scotts Radio -- Quite Possibly The Simplest Template Example</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#php">php</a>
</li>
<li><a href="/">AAAAA DRAFT BLOG ENTRY HOLDER</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">Marketing 101 - When Good People Do Things That Make Them LOOK Like a Spammer!</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
<li><a href="/">Scotts Searching -- A Bad Search Trick -- Screwing Up Over Searching By Ignoring Search Context</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#search">search</a>
</li>
<li><a href="/">Scotts Searching -- Good Search Trick -- Over Searching</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#search">search</a>
</li>
<li><a href="/">Scotts Radio -- Understanding this Online Book</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">Scotts Radio -- Radio UserLand RCS Step by Step / FAQ</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">Scotts Radio -- Radio UserLand Part 2 or Starting to Grok</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">Scotts Radio -- Radio UserLand Part 1 or Its Not Just a Web Application</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">Scotts Radio -- Radio Exposed or I Delve Deep Under the Hood of Radio</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">Scotts Radio -- Preface or Why We Released this Under the GNU Free Documentation License</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">Scotts Radio -- Missing Sections</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">Scotts Radio -- FAQ</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">Scotts Radio -- Cover</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">Scotts Radio -- Becoming Part of the Blogging Community</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">Scotts Radio -- An Excursion into UserTalk</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">Radio UserLand RCS Step by Step and FAQ</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">PHPLarge -- FuzzyOffice -- User Case 3- Karen</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#php">php</a>
</li>
<li><a href="/">PHPLarge -- FuzzyOffice -- User Case 2- Gwen</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#php">php</a>
</li>
<li><a href="/">PHPLarge -- FuzzyOffice -- User Case 1- Sam</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#php">php</a>
</li>
<li><a href="/">PHPLarge -- FuzzyOffice -- Sidebar- Some Common SQL Examples</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#php">php</a>
</li>
<li><a href="/">PHPLarge -- FuzzyOffice -- Building a Database Backed Registry of Applications</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#php">php</a>
</li>
<li><a href="/">Marketing 101- When the Product Manager Needs to Take Control</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
<li><a href="/">Instructions for FuzzyGroup Hosting Customers</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
</li>
<li><a href="/">Marketing 101- How to Piss Off Web Customers</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
<li><a href="/">Business 101- Working From Home -- Keeping It Under Control</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
</li>
<li><a href="/">Usable Open Source Applications</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#open_source">open_source</a>
</li>
<li><a href="/">PHPLarge -- FuzzyOffice -- Appendix 1 - Terms of Use</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#php">php</a>
</li>
<li><a href="/">People are Just Plain Nice All Over the World! Thank You Libby the Photographer! And Thank You iPhoto!</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#misc">misc</a>
</li>
<li><a href="/">Marketing 101 - Blatantly Anti Customer Technology</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
<li><a href="/">PHPLarge -- FuzzyOffice -- Sidebar- Some Common Linux Examples</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#php">php</a>
</li>
<li><a href="/">PHPLarge -- FuzzyOffice -- Rethinking My URL Approach</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#php">php</a>
</li>
<li><a href="/">PHPLarge -- FuzzyOffice -- Cover</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#php">php</a>
</li>
<li><a href="/">PHP Beginner- More on Security - 2</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#php">php</a>
</li>
<li><a href="/">Open Source Market Research Statistics</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#open_source">open_source</a>
</li>
<li><a href="/">eVectors -- Press Release -- Launch of the eVectors Store</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#evectors">evectors</a>
</li>
<li><a href="/">PHPLarge -- FuzzyOffice -- 002 - Starting Small</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#php">php</a>
</li>
<li><a href="/">Marketing 101 - Getting People to Read Your Email</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
<li><a href="/">FuzzyOffice -- Docs -- The Bookmarks Module</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
</li>
<li><a href="/">PHPLarge -- FuzzyOffice -- 001 - Constraints</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#php">php</a>
</li>
<li><a href="/">Marketing 101 - Getting Your Ecommerce Site Ready to Go</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
<li><a href="/">Life at BlogSpeed</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">PHPLarge -- FuzzyOffice -- 000 - Genesis</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#php">php</a>
</li>
<li><a href="/">Ack! When TCP Attacks!!!</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#linux">linux</a>
</li>
<li><a href="/">So... Do I Edit Blog Posts or Not? Paolo Says NO. Alex Says YES. I'm Divided.</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">Marketing 101 - The Myth of Intended Use</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
<li><a href="/">Where's Gretchen ? Or There's More Than One Want to Skin a Blog (or Get a Newbie to Blog)...</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">Scott Is Back in the Commercial Software Business ... Or Why Is Inbox Buddy NOT Open Source?</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#inbox_buddy">inbox_buddy</a>
</li>
<li><a href="/">Open Source And the Future of the Software Business</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#open_source">open_source</a>
</li>
<li><a href="/">Marketing 101- The New Product Palm Needs to Make (And it's NOT a Treo Equivalent)</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
<li><a href="/">Marketing 101- How to Actually Get Someone's Email Address</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
<li><a href="/">Open Source -- Why Do People Write Open Source? Self Improvement.</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#open_source">open_source</a>
</li>
<li><a href="/">Marketing 101- How Dr. Dobb's Technetcast Can Make Money from Web Content</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
<li><a href="/">Open Source is Not Slavery</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#open_source">open_source</a>
</li>
<li><a href="/">PHP Beginner- More on Security</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#php">php</a>
</li>
</ul>
<h1 id="y2002">July 2002</h1>
<ul>
<li><a href="/">From Design Geek to Web Geek- Part 02- Understanding Our Whacky Site and Template Architecture</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#startup">startup</a>
</li>
<li><a href="/">The Non Commercial, Ongoing Review- Products and Services I Recommend -- Or Don't Recommend with Biases Clear and Open</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#misc">misc</a>
</li>
<li><a href="/">Marketing 101- Great Customer Service is Great Marketing</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
<li><a href="/">Marketing 101 - How O'Reilly Could Make More Money from Safari</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>,
<a href="//tag.html#safari">safari</a>
</li>
<li><a href="/">Drupal - Drupal Versus Movable Type</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#drupal">drupal</a>,
<a href="//tag.html#movable_type">movable_type</a>
</li>
<li><a href="/">PhotoBlog Spec 01</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">FuzzyOffice -- Spec 02 -- Rethinking the Subject Parser</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
</li>
<li><a href="/">FuzzyOffice -- Spec 01 -- Rethinking Todo Lists in an Age of Distributed, Virtual Teams and Cross Organization Projects</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
</li>
<li><a href="/">From Design Geek to Web Geek- Part 01- File Transfer to and From Unix using SCP</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#linux">linux</a>
</li>
<li><a href="/">From Design Geek to Web Geek- Part 0- Introduction</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#startup">startup</a>
</li>
<li><a href="/">eVectors -- Press Release -- New Calendaring Features Released</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#evectors">evectors</a>
</li>
<li><a href="/">eVectors -- Press Release -- Launch of eVectors North America</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#evectors">evectors</a>
</li>
<li><a href="/">An Open Source Evangelist Explains Open Source</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#open_source">open_source</a>
</li>
<li><a href="/">Marketing 101- Choosing A Name for Your Company</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>,
<a href="//tag.html#startup">startup</a>
</li>
<li><a href="/">How Software Gets GPL'd</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#open_source">open_source</a>
</li>
<li><a href="/">Dealing with Loss and Difficult Times</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#personal">personal</a>,
<a href="//tag.html#cancer">cancer</a>
</li>
<li><a href="/">Marketing 101 - How to Blow a Sale Cleanly, Clearly and Quickly</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
<li><a href="/">Enhancing an Article by Adam Bosworth about State</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#software_engineering">software_engineering</a>
</li>
<li><a href="/">Business 101- A Next Generation Software Company Based on Digital Piece Work</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#startup">startup</a>
</li>
<li><a href="/">Business 101- Cross Managing or How do I manage an Equal?</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#management">management</a>,
<a href="//tag.html#startup">startup</a>
</li>
<li><a href="/">Marketing 101- Humor is Powerful</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>,
<a href="//tag.html#humor">humor</a>
</li>
<li><a href="/">eVectors IdeaTools available in the United States</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
</li>
<li><a href="/">Business 101- Commitment</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#startup">startup</a>
</li>
<li><a href="/">10 Signs You Might Be an Alpha Geek</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#humor">humor</a>
</li>
<li><a href="/">Ten Linux Tips and Tricks that Mom Never Told You</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#linux">linux</a>
</li>
</ul>
<h1 id="y2002">June 2002</h1>
<ul>
<li><a href="/">Travel- Getting Ready to Be Away from Your PC for an Extended Trip</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#travel">travel</a>,
<a href="//tag.html#computing_tips">computing_tips</a>
</li>
<li><a href="/">Planning for an Extended Trip</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#travel">travel</a>,
<a href="//tag.html#computing_tips">computing_tips</a>
</li>
<li><a href="/">Mandrake 8.2- 85% Icky Poo (that's Bad), IMHO</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#linux">linux</a>,
<a href="//tag.html#mandrake">mandrake</a>
</li>
<li><a href="/">Drupal- Installing Drupal for a Web Site</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#drupal">drupal</a>
</li>
<li><a href="/">MacStuff- Comments on OS X from a Die Hard 15 + Year Intel Guy</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#mac">mac</a>,
<a href="//tag.html#osx">osx</a>
</li>
<li><a href="/">Consulting 101- Partners</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#consulting101">consulting101</a>,
<a href="//tag.html#startup">startup</a>,
<a href="//tag.html#partner">partner</a>
</li>
<li><a href="/">Chris Prince- The Smartest ex-Dot Commer of them All ?</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#startup">startup</a>
</li>
<li><a href="/">WhitePaper- Internet + Intranet + Extranet = A SuperNet</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#intranet">intranet</a>,
<a href="//tag.html#extranet">extranet</a>
</li>
<li><a href="/">Product Literature- The Starck Intranet</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#intranet">intranet</a>
</li>
<li><a href="/">Optimizing Email Addresses for Remote, Mobile Workers in an Age of Spam</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#email">email</a>,
<a href="//tag.html#spam">spam</a>
</li>
<li><a href="/">Laptops, Linux, Restore CD's and Why I'll Never, Ever Buy a ThinkPad Again</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#linux">linux</a>,
<a href="//tag.html#thinkpad">thinkpad</a>
</li>
<li><a href="/">The PHP 4.2 Issues In Detail</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#php">php</a>
</li>
<li><a href="/">SysAdmin- When the SysAdmin Is Forced to Leave the Building</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#sysadmin">sysadmin</a>,
<a href="//tag.html#hr">hr</a>
</li>
<li><a href="/">Online Relationships- Brains Are All Around You</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#misc">misc</a>
</li>
<li><a href="/">Marketing 101 - Ten Guidelines for Building an Internet Company in 2002</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>,
<a href="//tag.html#startup">startup</a>
</li>
<li><a href="/">Basic Network Troubleshooting or What Do I Do Before I Call My SysAdmin ?</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#computing_tips">computing_tips</a>
</li>
<li><a href="/">Very, Very Practical Tips for the Busy Person - Part 3 - More Computer Stuff</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#misc">misc</a>,
<a href="//tag.html#tips">tips</a>
</li>
<li><a href="/">UserTalk- The Radio Scripting Language</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>,
<a href="//tag.html#radio_userland">radio_userland</a>,
<a href="//tag.html#usertalk">usertalk</a>
</li>
<li><a href="/">Marketing 101- Your Very First Website in 5 Steps</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
<li><a href="/">Drupal - Hosting Drupal for Multiple Users</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#drupal">drupal</a>
</li>
<li><a href="/">Drupal - Drupal from a Radio User's Perspective</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>,
<a href="//tag.html#drupal">drupal</a>
</li>
<li><a href="/">Writing - Geeky - How to Write a Computer Book - Part 1</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>,
<a href="//tag.html#writing">writing</a>
</li>
<li><a href="/">Why Intel Needs to Buy Detto Technologies and Give it Away</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#rant">rant</a>
</li>
<li><a href="/">Memes for the Next Three to Five Years</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#misc">misc</a>
</li>
<li><a href="/">Business 101- Structuring Your Business -- Partnership, Corporation, Sub S or LLC</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#startup">startup</a>
</li>
<li><a href="/">Very, Very Practical Tips for the Busy Person - Part 2</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#misc">misc</a>,
<a href="//tag.html#tips">tips</a>
</li>
<li><a href="/">If I Was Jeff Bezos of Amazon and I wanted to do the Right Thing, Here's What I'd Do</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#amazon">amazon</a>,
<a href="//tag.html#jeff_bezos">jeff_bezos</a>
</li>
<li><a href="/">Email -- Understanding SMTP Headers or Outlook's View -> Options Command</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#smtp">smtp</a>,
<a href="//tag.html#outlook">outlook</a>
</li>
<li><a href="/">Very, Very Practical Tips for the Busy Person</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#misc">misc</a>,
<a href="//tag.html#tips">tips</a>
</li>
<li><a href="/">Don't Steal My Focus</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#misc">misc</a>,
<a href="//tag.html#rant">rant</a>
</li>
<li><a href="/">Writing - Technical - Writing API Documentation</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
</li>
<li><a href="/">Marketing 101 - The Minimum Level High Tech Company Website</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
<li><a href="/">Marketing 101 - Pricing Your Software</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>,
<a href="//tag.html#pricing">pricing</a>
</li>
<li><a href="/">Marketing 101 - Picking a Vertical Market for your Software</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
<li><a href="/">General - I Just Graduated with a Computer Science Degree And Please, Please Don't Make Me Work at the Mall</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#misc">misc</a>
</li>
<li><a href="/">Consulting 101- Computers for Consultants -- Laptop versus Desktop Revisited</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#consulting101">consulting101</a>,
<a href="//tag.html#consulting">consulting</a>
</li>
<li><a href="/">Marketing 101 Home Page</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
<li><a href="/">Emails from Zeldman About Font Sizes and Readibility</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#usability">usability</a>,
<a href="//tag.html#font">font</a>,
<a href="//tag.html#css">css</a>
</li>
<li><a href="/">Emails from Tim About Font Sizes and Readibility</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#usability">usability</a>,
<a href="//tag.html#font">font</a>,
<a href="//tag.html#css">css</a>
</li>
<li><a href="/">Business 101- Choosing Vars for Your Product</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing">marketing</a>,
<a href="//tag.html#var">var</a>
</li>
<li><a href="/">Scott's Radio Articles</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">Scott's Guide to Python</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#python">python</a>
</li>
<li><a href="/">Making a Difficult Decision- When You Decide to NOT Ship</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
</li>
</ul>
<h1 id="y2002">May 2002</h1>
<ul>
<li><a href="/">Making a Difficult Decision- When You Decide to NOT Ship</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
</li>
<li><a href="/">Marketing 101- Selling Services as if they were Products</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
<li><a href="/">Marketing 101- How to Handle a Difficult Sales Call -- Perfectly!</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
<li><a href="/">So What Am I Trying to Sell You Anyway....</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#misc">misc</a>
</li>
<li><a href="/">Marketing 101- Where Silly Product Names Come From or Your Worst Nightmares Confirmed...</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
<li><a href="/">Revisiting the XP Versus 2K Issues</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#windows">windows</a>
</li>
<li><a href="/">Open Source 101- Performance of Open Source Portal Software</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#open_source">open_source</a>
</li>
<li><a href="/">Open Source 101- Examining Open Source Business Models</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#open_source">open_source</a>
</li>
<li><a href="/">Marketing 101- How Do I Get Started Doing Market Research</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
<li><a href="/">Marketing 101- How Do I Get People to Change Platforms?</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
<li><a href="/">Marketing 101- How Do I Get People to Change Platforms - Part 2</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
<li><a href="/">Linux -- Examples of Everyday Linux Commands</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#linux">linux</a>
</li>
<li><a href="/">Consulting 101- So You Want to Hire a Consultant, Do You?</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#consulting101">consulting101</a>
</li>
<li><a href="/">Consulting 101- How Do I Convince a Client to Let Me Work Remote?</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#consulting101">consulting101</a>
</li>
<li><a href="/">Consulting 101- Do My Clients Really Need a T1?</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#consulting101">consulting101</a>
</li>
<li><a href="/">testpoll</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#misc">misc</a>
</li>
<li><a href="/">Marketing 101- Marketing Your Blog</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
<li><a href="/">Blogging and a Gift Economy for Appreciation or If I were Jeff Bezos...</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">Bloggers Available for Hire</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">Marketing 101- Why I Think that Apple Uses Proprietary Connectors</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
<li><a href="/">Spec -- Taxonomies, Blog Entries and a Distributed Global Content Architecture</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>,
<a href="//tag.html#taxonomy">taxonomy</a>
</li>
<li><a href="/">Scott's Silly Ass Community Outreach</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">Marketing 101, Consulting 101, Business 101- Table of Contents</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
<li><a href="/">Blogging Essentials -- User Feedback On the Radio Chapters</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">What Am I Selling?</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#misc">misc</a>
</li>
<li><a href="/">The Complete Idiot's Guide to Drupal</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#drupal">drupal</a>
</li>
<li><a href="/">Table of Contents</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">Consulting 101 -- Pricing -- How do I Price, well, Me?</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#consulting101">consulting101</a>,
<a href="//tag.html#consulting">consulting</a>,
<a href="//tag.html#freelance">freelance</a>,
<a href="//tag.html#gig">gig</a>
</li>
<li><a href="/">Marketing 101- How Do I Get My Software Installed on Every Computer In the World?</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
<li><a href="/">Can a Book on Blogging Survive Being Blogged By One of Its Authors?</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">Blogging -- Book -- Scott on Blogging</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">What Violating the Golden Rule Means in an Era of Blogging</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">Rethinking Redirectors for Book Publishers</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#publishing">publishing</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
<li><a href="/">PHP -- Using the Google API from PHP</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#php">php</a>,
<a href="//tag.html#google">google</a>
</li>
<li><a href="/">Microsoft, Microsoft, Microsoft -- Where the Frack is Word's Spell Checker?</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#microsoft">microsoft</a>,
<a href="//tag.html#word">word</a>,
<a href="//tag.html#spell_check">spell_check</a>
</li>
<li><a href="/">If I Wanted to Make Outline Based Coding A Reality</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#software_engineering">software_engineering</a>,
<a href="//tag.html#outlining">outlining</a>
</li>
<li><a href="/">Solving the MP3 Piracy Issues By Adding Responsibility to the Mix</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#mp3">mp3</a>
</li>
<li><a href="/">Blogging a Book or How I Learned to Leave Word Behind and Love Radio</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">BlogBook -- C07 -- Updating Radio.root</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">BlogBook -- C07 -- Instant Outlining</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">BlogBook -- C07 -- Getting Rid of Formatting</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">BlogBook -- C03 -- Common Radio Gotchas -- Additions</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">BlogBook -- C03 -- Backing Up Your Radio Data on the Mac</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">Working on Blog Time</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">Marketing 101- Making Money from a Website- PHPBeginner Case Study</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#php">php</a>,
<a href="//tag.html#marketing">marketing</a>,
<a href="//tag.html#marketing101">marketing101</a>
</li>
</ul>
<h1 id="y2002">April 2002</h1>
<ul>
<li><a href="/">Open Source 101- What is it and Why havent I Used it Yet?</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#open_source">open_source</a>
</li>
<li><a href="/">Building a Large Scale Distributed Outline Renderer for OPML</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#opml">opml</a>
</li>
<li><a href="/">Marketing Software When You Are a Small Company</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing101">marketing101</a>,
<a href="//tag.html#marketing">marketing</a>
</li>
<li><a href="/">Ray Hunter's Resume</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#misc">misc</a>
</li>
<li><a href="/">Drop Dead Simple Competitive Research</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#marketing">marketing</a>,
<a href="//tag.html#competitive_research">competitive_research</a>
</li>
<li><a href="/">NewsRadio Overview</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
<li><a href="/">Instant Editing Transcript</a> in <a href="//category.html#story.radio.weblogs.com">story.radio.weblogs.com</a> tagged as
<a href="//tag.html#blogging">blogging</a>
</li>
</ul>
<p class="rss-subscribe">subscribe <a href="/feed.xml">via RSS</a></p>
</div>
You should note that:
- site.posts became collections.posts.resources
- getting the category became quite a bit more complicated due to the underlying taxonomy model of Bridgetown
- baseurl became base_path
category.html versus category.md and tag.html versus tag.md
Similar changes to the above were made to category.md and tag.md
Looking at the Migration Results
Point #1: Don’t Point Fingers – It is You Not Bridgetown
I have to feel stupid as I write this but feeling stupid has never stopped me before. The first thing I’m going to say is this:
When there’s a problem, it is your blog’s data -or- your template, not Bridgetown
The first thing I noticed when I looked at the generated files was this:
drwxr-xr-x 3 sjohnson staff 96B Aug 10 09:28 2002/ ± ls output/2022/05/31/specifying-ruby-version-for-hatchbox-[sjohnson:~/Sync/blogging/bri31m* ±n/blog] [base] mainor-drwxr-xr-x 3 sjohnson staff 96B Aug 10 09:28 2016/
-rw-r--r-- 1 sjohnson staff 1.6K Jun 26 22:34 2016-08-07-failing-at-react-native-just-by-starting.md
drwxr-xr-x 5 sjohnson staff 160B Aug 10 12:20 2019/
drwxr-xr-x 4 sjohnson staff 128B Aug 10 12:20 2020/
drwxr-xr-x 5 sjohnson staff 160B Aug 10 12:20 2022/
-rw-r--r-- 1 sjohnson staff 1.7K Aug 11 00:28 404.html
-rw-r--r-- 1 sjohnson staff 1.8K Aug 11 00:28 500.html
drwxr-xr-x 3 sjohnson staff 96B Aug 10 09:20 _bridgetown/
drwxr-xr-x 3 sjohnson staff 96B Aug 10 09:20 about/
drwxr-xr-x 3 sjohnson staff 96B Aug 10 09:28 actionmailer/
drwxr-xr-x 3 sjohnson staff 96B Aug 10 09:28 aggregator/
drwxr-xr-x 3 sjohnson staff 96B Aug 10 12:20 agile/
I looked at that and immediately, without hesitation, thought “bug; By Golly there’s a damn bug!!!”. I, dear reader, am an idiot and here’s why.
Here is the never posted post from the upgrade-help thread on Bridgetown’s discord server about this:
So I've continued to dig into why posts DON'T show up in /output/year/month/day and
what I've observed so far is that when a post has yaml tags for category or tags,
it doesn't appear in output/year/month/day but instead only in the category directory.
examples:
---
layout: post
title: An Annotated Startup History Bibliography
date: 2022-06-23 04:43 -0400
category: startup
tags: ["startup", "books"]
---
appears in /startup
but this:
---
layout: post
title: Fixing FactoryBot Validation Name Has Already Been Taken Controller Test or Spec Errors
date: 2022-06-10 08:41 -0400
---
appears only in /output/year/month/day
Sigh. It physically pains me to write this next bit but I feel in the interests of intellectual honesty, it is necessary (and no one will ever get this far, right? If you do send me a Twitter message with FooBarBlah and I’ll know). So:
This is just what Jekyll has always done!!!
Deeper Sigh. The way Jekyll operates is that blog posts only flow into the date stamped directories when it doesn’t have categories at all. I don’t know how I never noticed this before but since I cut my blogging teeth on a system which:
- wrote to date stamped directories
- also wrote the same content to the category directory
that apparently is the mental model I’ve had for blogging tools since sheepish grin 2002. I just can’t believe I never knew this.
Point #3: It is Still You
One odd thing I noticed when I looked at my output directory is this:
ls -l ../output | more
total 1160
drwxr-xr-x 3 sjohnson staff 96B Aug 12 03:31 2002/
drwxr-xr-x 3 sjohnson staff 96B Aug 12 03:31 2016/
-rw-r--r-- 1 sjohnson staff 1.6K Jun 26 22:34 2016-08-07-failing-at-react-native-just-by-starting.md
drwxr-xr-x 5 sjohnson staff 160B Aug 12 03:31 2019/
drwxr-xr-x 4 sjohnson staff 128B Aug 12 03:31 2020/
drwxr-xr-x 5 sjohnson staff 160B Aug 12 03:31 2022/
-rw-r--r-- 1 sjohnson staff 1.7K Aug 12 05:11 404.html
-rw-r--r-- 1 sjohnson staff 1.8K Aug 12 05:11 500.html
drwxr-xr-x 3 sjohnson staff 96B Aug 12 03:38 _bridgetown/
drwxr-xr-x 3 sjohnson staff 96B Aug 12 03:31 about/
drwxr-xr-x 3 sjohnson staff 96B Aug 12 03:31 actionmailer/
I saw that 2016-08-07-failing-at-react-native-just-by-starting.md file and I again thought “Bug!!!”. And, again, I was wrong. The source of that was a malformed yaml front matter where the initial ‘—’ was missing. Bad inputs lead to bad outputs.
Thus endeth the Mea Culpa because this was the point that I fully understood I was wrong.
You Need to Rewrite Your Plugins
One thing to know is that you are going to need to rewrite your plugins. Now, before you piss and moan about this, let’s look at a simple plugin that just adds in the publish time (the plugin is called rendertime):
class RenderTime < SiteBuilder
def build
liquid_tag :render_time do |attributes|
"#{attributes} #{Time.now}"
end
end
end
And now here’s the pizzaforukraine plugin which takes an image from our Random Image api and inserts it into a Bridgetown rendered page. But, in this case, let’s start with the Jekyll version:
require "jekyll"
require 'net/http'
require 'net/https'
class PizzaForUkraineEmbed < Liquid::Tag
def initialize(tagName, content, tokens)
super
@content = content
end
def render(context)
picture_api = "https://pizzaforukraine.com/api/randompic"
@random_picture_url = Net::HTTP.get(URI.parse(picture_api))
%Q{<img style="display: block; margin-left: auto; margin-right: auto; width: 75%; height: 75%" src="#{ @random_picture_url }">
{:.center}
Pizza courtesy of Pizza for Ukraine!
{:.center}
[Donate Now to Pizza for Ukraine](https://www.pizzaforukraine.com/)
<p> </p>
}
end
end
Liquid::Template.register_tag "pizzaforukraine", self
end
And here’s the Bridgetown version:
class Pizzaforukraine < SiteBuilder
require 'net/http'
require 'net/https'
def build
picture_api = "https://pizzaforukraine.com/api/randompic"
@random_picture_url = Net::HTTP.get(URI.parse(picture_api))
liquid_tag :pizzaforukraine do |attributes|
%Q{<img style="display: block; margin-left: auto; margin-right: auto; width: 75%; height: 75%" src="#{ @random_picture_url }">
{:.center}
Pizza courtesy of Pizza for Ukraine!
{:.center}
[Donate Now to Pizza for Ukraine](https://www.pizzaforukraine.com/)
<p> </p>
}
end
end
end
That’s considerably simpler. Bravo Jared, Bravo!
Sidebar: For Expert Users - Using the Bridgetown Console
The single most delightful aspect of Bridgetown to me is the use of the console. Just like rails itself there is a Bridgetown console. Here’s how to launch it:
bin/bridgetown console
And once in console you can write expressions to understand your content like this:
site.collections.posts.resources
site.collections.posts.resources.size
site.collections.posts.static_files
[
[0] #<Bridgetown::StaticFile @relative_path="_posts/2016-08-07-failing-at-react-native-just-by-starting.md">
]
(site.collections.posts.methods - Object.methods).sort
site.collections.posts.resources[0].taxonomies["category"]
site.collections.posts.resources[3].taxonomies["category"]["terms"].label
site.collections.posts.resources[3].date
site.collections.posts.resources[27].taxonomies
{
"category" => {
"type" => #<Bridgetown::Resource::TaxonomyType label=category>,
"terms" => [
[0] #<Bridgetown::Resource::TaxonomyTerm:0x000000010a60aaf8 @resource=#<Bridgetown::Resource::Base repo://posts.collection/_posts/2022-06-23-an-startup-history-bibliography.md>, @label="startup", @type=#<Bridgetown::Resource::TaxonomyType label=category>>
]
},
"tag" => {
"type" => #<Bridgetown::Resource::TaxonomyType label=tag>,
"terms" => [
[0] #<Bridgetown::Resource::TaxonomyTerm:0x000000010a60a530 @resource=#<Bridgetown::Resource::Base repo://posts.collection/_posts/2022-06-23-an-startup-history-bibliography.md>, @label="startup", @type=#<Bridgetown::Resource::TaxonomyType label=tag>>,
[1] #<Bridgetown::Resource::TaxonomyTerm:0x000000010a60a288 @resource=#<Bridgetown::Resource::Base repo://posts.collection/_posts/2022-06-23-an-startup-history-bibliography.md>, @label="books", @type=#<Bridgetown::Resource::TaxonomyType label=tag>>
]
}
}
site.collections.posts.resources[27].taxonomies["category"]["terms"]
[
[0] #<Bridgetown::Resource::TaxonomyTerm:0x000000010a60aaf8 @resource=#<Bridgetown::Resource::Base repo://posts.collection/_posts/2022-06-23-an-startup-history-bibliography.md>, @label="startup", @type=#<Bridgetown::Resource::TaxonomyType label=category>>
]
site.collections.posts.resources[27].taxonomies["tag"]["terms"]
[
[0] #<Bridgetown::Resource::TaxonomyTerm:0x000000010a60a530 @resource=#<Bridgetown::Resource::Base repo://posts.collection/_posts/2022-06-23-an-startup-history-bibliography.md>, @label="startup", @type=#<Bridgetown::Resource::TaxonomyType label=tag>>,
[1] #<Bridgetown::Resource::TaxonomyTerm:0x000000010a60a288 @resource=#<Bridgetown::Resource::Base repo://posts.collection/_posts/2022-06-23-an-startup-history-bibliography.md>, @label="books", @type=#<Bridgetown::Resource::TaxonomyType label=tag>>
]
Everything is simply a Ruby data structure and easy to work with.