Michael Russell's Avatar

Michael Russell

@romsteady.bsky.social

Distinguished Engineer. Former Microsoft, Amazon, Netflix. Former game dev. Computer vision patent. Widowed since 2015. Type 2 diabetic. Lives in Las Vegas, NV. Plays poker to relax. Points of view my own.

142 Followers  |  59 Following  |  1,264 Posts  |  Joined: 24.07.2023  |  1.9591

Latest posts by romsteady.bsky.social on Bluesky

"To become mature is to become kind" is actually beautiful.

07.10.2025 21:17 β€” πŸ‘ 444    πŸ” 183    πŸ’¬ 1    πŸ“Œ 2

Just a couple hours more until I can climb into my own bed and take a well deserved nap.

07.10.2025 18:59 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Post image

Amid the constant anti-renewables sentiment so common across our media, this letter today is a blessed relief.

07.10.2025 17:55 β€” πŸ‘ 238    πŸ” 65    πŸ’¬ 6    πŸ“Œ 4

The time traveller closed the book and stared blankly ahead.

"So," said the author, "was that what-"

"No! That wasn't at all- It's a warning!"

"Allegorical, but y-"

"It's not you I need to kill, it's the person who read this and still wanted to build the Torment Nexus!"

"Kill?"

"I must go!"

07.10.2025 18:04 β€” πŸ‘ 309    πŸ” 59    πŸ’¬ 3    πŸ“Œ 1
Post image Post image Post image Post image

A few more Evil Squirrel cartoons 😈 🐿️

07.10.2025 15:58 β€” πŸ‘ 54    πŸ” 8    πŸ’¬ 1    πŸ“Œ 0
Video thumbnail

This took me 12 hours, but I'm so proud of myself 😭

07.10.2025 16:02 β€” πŸ‘ 99    πŸ” 27    πŸ’¬ 8    πŸ“Œ 2

Late dinner then bed. Tomorrow night, I get to sleep in my own house again.

07.10.2025 06:13 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Post image

Something refreshingly pleasing about this story.

Imagine knowing you're nominated, but going hiking anyway.

www.theguardian.com/science/2025...

07.10.2025 05:54 β€” πŸ‘ 39    πŸ” 1    πŸ’¬ 1    πŸ“Œ 0

Once again, make a hit game loved by many... and you still get hit by a truck.

The industry is pretty sick right now.

06.10.2025 15:16 β€” πŸ‘ 269    πŸ” 74    πŸ’¬ 7    πŸ“Œ 1
Preview
Playing for Good - 2 An Evening of Purpose, Compassion, and Impact

Charity poker tournament benefitting the One Step Closer Foundation on November 15, 2025 in Santa Monica, CA.

givebutter.com/KcQHue

06.10.2025 01:49 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

I’m going to be home in less than 48 hours.

06.10.2025 00:58 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Post image 05.10.2025 21:12 β€” πŸ‘ 44    πŸ” 14    πŸ’¬ 0    πŸ“Œ 4
Preview
I’m a US citizen and a veteran. ICE arrested me for no reason. Jailed for three days without an explanation or ability to notify anyone, George Retes argues the only path to healing starts with the government taking accountability for its actions.

"What happened to me wasn’t just a mistakeβ€”it was a violation of the very protections that our Constitution guarantees."

05.10.2025 15:01 β€” πŸ‘ 269    πŸ” 119    πŸ’¬ 3    πŸ“Œ 7
library(dplyr)
library(gm)

golden <- tribble(
  ~pitches,  ~duration,   ~lyric,
  "E4",      "q",         "I’m",
  "G4",      "q",         "done",
  "C5",      "q",         "hid-",
  "B4",      "q",         "-ing",
  "D4",      "q",         "now",
  "G4",      "q",         "I’m",
  "E5",      "q",         "shin-",
  "D5",      "q",         "-ing",
  "G4",      "q",         "like",
  "B4",      "q",         "I’m",
  "A5",      "q",         "born",
  "F#5",     "q/3*(q/8)", "to", 
  "G5",      "q/3",       "be._",
  "G5",      "h",         ""
)

music <- 
  Music() +
  Key(1) +
  Tempo(125) +
  Meter(2, 4) +
  Line(pitches = golden$pitches, durations = golden$duration) + 
  Tie(13) +
  Lyric(golden$lyric[1], 1) + Lyric(golden$lyric[2], 2) + 
  Lyric(golden$lyric[3], 3) + Lyric(golden$lyric[4], 4) + 
  Lyric(golden$lyric[5], 5) + Lyric(golden$lyric[6], 6) +
  Lyric(golden$lyric[7], 7) + Lyric(golden$lyric[8], 8) + 
  Lyric(golden$lyric[9], 9) + Lyric(golden$lyric[10], 10) + 
  Lyric(golden$lyric[11], 11) + Lyric(golden$lyric[12], 12) +
  Lyric(golden$lyric[13], 13)

show(music)

library(dplyr) library(gm) golden <- tribble( ~pitches, ~duration, ~lyric, "E4", "q", "I’m", "G4", "q", "done", "C5", "q", "hid-", "B4", "q", "-ing", "D4", "q", "now", "G4", "q", "I’m", "E5", "q", "shin-", "D5", "q", "-ing", "G4", "q", "like", "B4", "q", "I’m", "A5", "q", "born", "F#5", "q/3*(q/8)", "to", "G5", "q/3", "be._", "G5", "h", "" ) music <- Music() + Key(1) + Tempo(125) + Meter(2, 4) + Line(pitches = golden$pitches, durations = golden$duration) + Tie(13) + Lyric(golden$lyric[1], 1) + Lyric(golden$lyric[2], 2) + Lyric(golden$lyric[3], 3) + Lyric(golden$lyric[4], 4) + Lyric(golden$lyric[5], 5) + Lyric(golden$lyric[6], 6) + Lyric(golden$lyric[7], 7) + Lyric(golden$lyric[8], 8) + Lyric(golden$lyric[9], 9) + Lyric(golden$lyric[10], 10) + Lyric(golden$lyric[11], 11) + Lyric(golden$lyric[12], 12) + Lyric(golden$lyric[13], 13) show(music)

The first part of the bridge from "Golden" from KPop Demon Hunters

The first part of the bridge from "Golden" from KPop Demon Hunters

Just discovered the {gm} package, which lets you programmatically create sheet music (and audio!) with #rstats (with MuseScore as the backend) flujoo.github.io/gm/index.html

03.10.2025 17:41 β€” πŸ‘ 81    πŸ” 21    πŸ’¬ 6    πŸ“Œ 1

The Punisher logo is in the same pantheon of works that these bozos have clearly never stopped to actually read/listen in the same vein as "Born in the USA"
bleedingcool.com/comics/punis...

03.10.2025 17:48 β€” πŸ‘ 31    πŸ” 6    πŸ’¬ 1    πŸ“Œ 0
A nerd in front of the Space Needle.

A nerd in front of the Space Needle.

The joy of working remotely is that you can occasionally have an amazing office for the day.

My company has 26 employees in the Seattle area and I’m meeting up with at least five of them this trip.

03.10.2025 18:00 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

Smallest hotel room I’ve stayed in outside of NYC.

03.10.2025 05:26 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

Finally got to watch β€œKPop Demon Hunters” on the flight to Seattle. I give it 3 stars out of 4. Will rewatch on the big screen when I get home.

03.10.2025 04:23 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

It’s after 3a. I have to get up for work in less than four hours.

02.10.2025 10:07 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

My A1c is finally down to pre diabetic levels.

29.09.2025 22:13 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Post image Post image

β€œGolden” by HUNTR/X spends a seventh week at #1 on the Hot 100.

29.09.2025 21:50 β€” πŸ‘ 75    πŸ” 6    πŸ’¬ 1    πŸ“Œ 2

Give folks their flowers

No, I mean right now. Go tell someone you loved their work right now. They're on social media just say it, it has never been easier

"They know how much people love--" no they don't go say it right now to a composer or artist or game dev or writer or anyone AAAAAAAHHHHHHHHH

29.09.2025 21:39 β€” πŸ‘ 7710    πŸ” 3949    πŸ’¬ 44    πŸ“Œ 165
Preview
Meet the New Host of Reading Rainbow: Mychal the Librarian After 20 years, Reading Rainbow is back! The new host is Mychal the Librarian, who has been spreading library joy online for years.

This is such exciting news! So many of us followed Mychal over yonder. Throughout his challenges and triumphs, he always inspired kindness and self-love.

Couldn’t be more thrilled about this! A natural heir. πŸ’™πŸ₯°πŸ‘πŸΎ

Source: BOOK RIOT

bookriot.com/new-host-of-...

29.09.2025 21:02 β€” πŸ‘ 291    πŸ” 76    πŸ’¬ 31    πŸ“Œ 13

This might be my favorite news of the day!

29.09.2025 18:53 β€” πŸ‘ 53    πŸ” 13    πŸ’¬ 1    πŸ“Œ 1

I found a mate for one of my missing socks.

29.09.2025 18:57 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

This Stings.

29.09.2025 17:41 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

Grabbing some sushi for dinner. Long week ahead.

29.09.2025 01:48 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

Finally reactivated my Netflix account.

28.09.2025 18:18 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

Had a dream that Groucho Marx was still alive, I had an opportunity to see him perform live on stage, and I was running late.

28.09.2025 16:01 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

Statistically, I'm guaranteed to be at a loss for the rest of the year.

That said, I've gotten 32 bounties this year so I can be proud of that.

28.09.2025 06:56 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

@romsteady is following 19 prominent accounts