TrickJarrett.com

Be excellent to each other.

5Flix

I've had a variety of ideas in this space for some daily film-based sort of social game. I've finally put it together and launched it for a first attempt.

The premise is simple: Rank five films in the order of best to worst according to their IMDB ratings.

Tags: movie, project | Share to:

"We’re Not Fucking Around Anymore"

The following is an excellent recap write-up after the USMNT defeated Bosnia and Herzegovina 2-0 on July 1st to move to the Round of 16. I've archiving it here as it is from X and I don't trust it to last as a digital archive.

Originally posted by @ClawForThatInch:

For twenty years this team walked in hoping.

You could see it in the body language. Sitting ten yards deeper than the plan called for. Holding a lead like borrowed money that a loanshark would come collect on. A tight loss to a half decent European side got dressed up as a moral victory, and a moral victory is the thing you hand a crying kid so he'll shut up and eat his cereal. This program ran on those for two decades. Lost with dignity. Went home proud of how close it got. Twenty miles up the road from Santa Clara there's a stadium where the '94 side lost 1-0 to Brazil and half the country decided that was a good day out.

Wednesday night, ten Americans got sick of close.

Balogun put them up in the 45th. Ream robbed a Bosnia goal kick at midfield, ball came across, left foot, buried. Third of the tournament. He hit the LeBron Silencer over the corner flag and LeBron nodded back at him, and a couple years ago that would've looked like a kid in his dad's suit. Wednesday it looked like a guy who'd earned the right to talk.

Then he came down on an ankle in the 64th. Ref went to the monitor. Red. Gone for Belgium. Ten men, biggest game this country's played in a generation, and the whole night tilted sideways.

The old USMNT dies right there. Parks the bus. Everybody home, kill the clock, pray for penalties, call surviving a result and mean it. Bosnia had Dzeko. Had the extra man. Had thirty minutes and every reason on earth to think the equalizer was already in the mail.

They got jack shit. Not a sniff.

The guy who slammed the door changed his right boot before he took the free kick. Had a bloody sock wrapped around his big toe and didn't say a word about it. Think about that. Your golden boy's in the tunnel and the man left holding the game is bleeding into his cleat and just gets on with the job. Off the keeper's hands and in. First direct free kick this program's scored in a real match since 2017, same damn stadium. Down a man. And they didn't sit on the lead like scared money. They went and got a second. Who does that shorthanded. Nobody we've ever produced, that's who.

The goal was the noise. The work was McKennie, forty yards behind it, shoving five balls clean through Bosnia's back line on the night. Thirteen for the tournament, four more than any man alive at this World Cup. Most of them threaded after his team went short and started sucking wind, when the tidy, sensible, gutless move was to keep it simple and hold. Moxie isn't the celebration. It's the guy nobody points a camera at doing the ugly thing that actually breaks your spine.

You already know the reflex. Somebody saw the result and reached straight for the old blanket. Belgium beat us not long ago, so why bother. That's the sickness right there. Reading the tape and deciding the man before he's kicked a ball. Same rot that turned twenty years of this program into a highlight reel of respectable losses and participation-trophy pride. Bosnia had them a man down for half an hour and couldn't put it in the ocean. That's not the tape. That's the answer to the tape, in the tape's face.

Belgium's a different beast. Nobody's pretending they're not. But there's a canyon between walking into a fight you expect to lose and walking into one you plan to win, and it lives in a man's shoulders long before it shows up on a scoreboard. This team found the second one Wednesday. Down a man. Stadium screaming U-S-A into the California dark.

Belgium's Monday, in Seattle. The place is going to be absolutely rocking.

For the first time in a long time this team isn't walking in to hope. They're walking in to take it. There's a difference and it's the whole ballgame.

We're not fucking around anymore.

Tags: us soccer, soccer, world cup | Share to:

July 1st, 2026

Automated Archives for July, 1st 2026

This post was automatically generated.

Chess For the Day

Record: 0-0-2
Net Elo Change: -11

Games Played

Blog Posts On This Day

Tags: chess, automated | Share to:

From Podcast to Audiobook

We had D&D last night and the group was talking about The Adventure Zone, a D&D podcast by the McElroy brothers and their father. It's over ten years old now and still going, but I particularly enjoyed the starting story arc for the podcast as they began playing D&D together.

After that discussion, I decided I wanted to go back and listen to it, but I wanted to get it as an audiobook on my phone. Mostly because it means I can hit play and my phone will track where I am and I don't have to navigate to sequential episodes, etc. Sure, I could do this with a playlist in the podcast apps, but then it's a one-time thing. This way, I have the entire run stored in my archives in an easy way to listen when I decide I want to again in ten more years.

Get all the MP3s, stitch them together into a M4b file using ffmpeg, and boom - you're good. Right?

Not quite. Turns out it is a little more complicated.

Ffmpeg is one of those tools which secretly keeps the internet afloat. It powers countless video and audio based programs and websites as a universal and powerful tool.

FFMpeg is the block in question.

First surprise, the initial processing actually took all night. I knew it would take a while, just not really how long it would be.

This initial processing took nearly 8 hours to complete. That yielded nearly a 6 gig audio file. That size isn't shocking, it's a run of 70 episodes with a run time of 90 hours. I should have realized it would be this big as I was just literally taking the downloaded files and putting them all into one file with no conversions. I just didn't really think about it.

One thing to do to shrink these files is to decrease the quality of the audio. Default for podcasts is usually 128kps as the audio quality, but for audio that is just talking you can go down to 96kps or even 64kps with almost no notable difference. So, I reencoded it this morning at 96kps, which took a few more hours, and that took it down to less than 4 gigs in size. Still large but more manageable.

However, then I get it onto my phone and I use an open source audiobook app called Voice. And, despite it being in the folder the app monitors, I can't see it in the app. Which only leads me to believe there is something wrong with the metadata.

Metadata is the term for various "invisible" things on a file. For mp3s this is things like "title" and "artist," etc. But also things like a setting that confirms that this is an audiobook file. And so I think I'm missing something there.

I began exploring various tools and realized the easiest option may already be up and ready for me: Audiobookshelf. I run a self-hosted instance of it for managing my audiobook collection. And I do this for the same reason Sony deleting movies from customers is news: If I purchase something, I want to own it. And to do that means I need to have it without DRM and on my own file systems so someone elsewhere can't up and delete it. Thus I use Audiobookshelf to handle that management for me, and enable me to download them from the server onto my phone.

Additionally, it turns out that it actually has functions to do re-encoding that will hopefully will fix the metadata issues for me. As I write this it is in the midst of re-encoding, we'll see how long it takes and if it works!

Update: Alright, it seems like we solved it and the issue was stupid. The Android app was simply bad at updating based on its contents. I had to clear off the content folder and now it shows up correctly.

Tags: podcast, open source, audiobook, self hosted, digital rights management, ffmpeg | Share to:

Masters of the Universe (2026)

I was surprised by how much I enjoyed this. It was good campy fun. I still hate Jared Leto in literally everything though.

Tags: review, movie, movie radar | Share to:

June 28th, 2026

We do not speak of faith that two and two are four or that the earth is round. We only speak of faith when we wish to substitute emotion for evidence. — Bertrand Russell

Tags: wisdom, knowledge, quotes, faith | Share to:

June 27th, 2026

In Time (2011)

In TimeIn Time2011PG-13

I really like the concept of this movie. I saw it originally in the theaters when it came out but unfortunately this movie just doesn't land in any of its elements. It's "almost good" in everything.

Tags: review, movie, movie radar | Share to:

Reading Sarah Bond's book, Strike, that I mentioned in the previous blog post is already an enjoyable academic read.

One word that jumped out to me as a word I didn't know: confraternity

I understood it based on the Latin origins: con (with) + fraternity (brotherhood) - and in the context of the book I was able to also understand it from contexts, but still - I enjoy finding new words.

confraternity, n.

  1. a society devoted especially to a religious or charitable cause
  2. fraternal union
Tags: reading, word, latin, definition | Share to:

Saturday Shopping

The wife and I went out to visit a few local businesses. One of which was a "Retro Emporium" which has lots of nostalgic games and toys. We primarily go there these days to look through their vinyls, but while there I spotted two D&D items they had which I didn't own for my collection.

So, obviously, I picked them up. They also had an NES system running Duck Hunt and it is so nostalgic for me to use. Also, I've still got it. Fastest gun this side of the Mississippi.

Our other stop on this outing was our local library as I had requested a book: Strike, by Sarah E. Bond. I've been meaning to pick it up but I couldn't find it for a DRM free ebook, so rather than purchase the Kindle version I opted to borrow the physical copy. Feels good to support our local library system.

It was pleasantly busy with people, I'm sure some were there escaping the warmer weather, but I hadn't been inside the local branch in some time and I was concerned it was going to be empty

Tags: dungeons and dragons, book, shopping | Share to:

June 26th, 2026

"Year of Therapy in a Minute"

I came across a TikTok of a podcaster (whose name escapes me) reading these points from some other person online. And it stopped me, I think I was literally walking towards the bedroom as I watched this, and as I heard it I stopped and turned around to go sit at the computer and transcribe the points from this video.

  1. No one is coming to save you. Being a functioning adult means realizing you are responsible for everything in your life even if it wasn't your fault.
  2. Strong boundaries make for good relationships. Weak boundaries make for drama.
  3. Many of your problems don't get fixed. You just learn how to live despite them.
  4. Your mind lies to you all the time. It will tell you the world is ending when it's not. That a mistake is fatal when it's not. That everyone is thinking about you and laughing about you when they're not. Learn how to tell your mind to shut the fuck up.
  5. Stop trying to convince people to like you. The right people won't need to be convinced and everyone else is just going to get very annoyed.
  6. Sometimes the best thing you can do is to let a dream die. No one likes to hear that, but it's true.
  7. Only a few people in your life are going to matter in the long run. When you find them, treat them right. Make time for them. Keep them close, and be grateful.

I've done some digging to try and find the source but I can't find any definitive resource to identify it.

Of these points, five is the one I take slight umbridge with. The core of it is absolutely correct, but also what some would call 'convince' is also just learning how to communicate and interact with another person.

Tags: philosophy, wisdom, therapy, self help | Share to:

June 24th, 2026

True Romance (1993)

I'd never watched it before and it came up on Jeopardy! tonight, so we put it on.

Tags: review, movie, movie radar | Share to:
Read more in the archives: Date or Tags