One OClock in the Morning

I took a break from breaking into computers, with some of my children, to play an accordion with others of my children. I was too tired to pull out the Cordovox.. it’s heavy, and I’m old!

Yep, I am the head of a really weird household.

Me playing accordion a 1 AM

NOTE: Braeden is holding the accordion I started playing when I was 6 years old, Donovan is holding the accordion I started playing when I was 11. 😱

Lazy Holiday 2021

When I am on vacation, I usually do a few things.

<read books><insert picture here>

<play music><insert picture here>

<watch movies><insert picture here>

✅ Grow a beard
# Write some code
def print_alpha_rangoli(size):
    alpha = [x for x in 'abcdefghijklmnopqrstuvwxyz'] 
    output = []
    display = []
    
    # determine the total width of the alphabet rangoli
    width = (size + (size - 1)) + ((size + (size - 1)) - 1)
    
    # for each of the letters in reverse order (starting inside out)
    for lin in range(size -1, -1, -1):
        design = []
        # build the individual line top down
        output.append(str(alpha[lin]))
        for int_lin in range(len(output) -1, -1, -1):
            design.append(output[int_lin])
            if int_lin != len(output) - 1:
                design.insert(0, output[int_lin])
        # pull the line together           
        display.append(('-'.join(design)).center(width, '-'))
    
    # built to the center, now reverse to the bottom
    for lin in range(len(display) -2, -1, -1):
        display.append(display[lin])
    
    print('\n'.join(display))
    
    
    
    
if __name__ == '__main__':
    while True:
        n = int(input('Please enter a number of letters between 2 and 26: '))
        if n < 2 or n > 26: 
            continue
        else:
            print_alpha_rangoli(n)
            break
Watch best friends roast by the fire.

Where were you when I needed you!?

Over the last year, it’s been pretty hard to not put on a couple COVID pounds… or, let’s be honest, about 20 COVID pounds; and as of late, when I’m looking in the mirror, and I say “Man, I’ve gotten pretty fat”, my wife @amandarachael is quick to say “You’re not fat”…..

Well, today, I went to the chiropractor (long overdue), and the chiropractor says… hrm… “you’re kind of fat, that’s gonna hurt your back”.

AND Amanda is sitting in the chair, right next to me, and she didn’t jump to defend my honor! Where were you when I needed you?!?

Well played, fairweather friend! 😜

All grown up!

It’s hard to describe the pride as a parent when I look forward, (or behind) and see my first born on his first ride. After 8 hours of his second day of the course, he spent an hour and a half with me training in the neighborhood.

I still have two more riders to go in the house… someday we will have our own MC.

Summer rain and a motorcycle!

Raining so hard, I couldn’t see or breathe.

When those first big raindrops hit your face, and you know it’s all over! Trying to see the lights of the car in front of you, so you can stay on the road, barely able to breath because it was raining so hard and it felt like a swimming pool.

What a great summer ride! 😀