Dan Clark's Avatar

Dan Clark

@bruisedthumb.bsky.social

A guy from NJ who is a dad, husband, and tinkers with code. I am also on mastodon: https://mas.to/@bruisedthumb Step up or get stepped up.

268 Followers  |  266 Following  |  643 Posts  |  Joined: 16.11.2024  |  1.9171

Latest posts by bruisedthumb.bsky.social on Bluesky

Video thumbnail

So exhausting..

28.09.2025 18:41 β€” πŸ‘ 9885    πŸ” 3955    πŸ’¬ 214    πŸ“Œ 420
Preview
The City We Became ebook by N. K. Jemisin - Rakuten Kobo Read "The City We Became A Novel" by N. K. Jemisin available from Rakuten Kobo. Three-time Hugo Award-winning and New York Times bestselling author N.K. Jemisin crafts her most incredible novel yet, a...

I finished "The City We Became" by N. K. Jemisin. It was different than the usual books I read. The story is about a handful of New Yorkers who find out they have become something much bigger than themselves, and that a great enemy is after the city they call home.

www.kobo.com/us/en/ebook/...

29.09.2025 14:09 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

Going fast usually means sacrificing quality, and it's really obvious quality is being chucked into a volcano.

14.08.2025 16:40 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
My dog chilling out right in front of me while I bike.

My dog chilling out right in front of me while I bike.

She is down here in the basement while I exercise.

13.08.2025 13:26 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

The low battery chirp in one of my smoke detectors is going off, and I am now my dog's emotional support human.

13.08.2025 13:23 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

Grifters will keep on grifting. Anything to claw back power and wealth for themselves.

09.08.2025 12:31 β€” πŸ‘ 2    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

Some see role models in wealthy business magnates. In a way, so do I. I see what happens when greed corrupts in such a way that lets them see others are undeserving of basic needs.

It's impossible, without sacrificing one's humanity, to be disportionately rich while there is so much insecurity.

09.08.2025 12:19 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

This book gave me an appreciation for what immigrants do to give themselves a better life. That we should be helping each other get to a better station in life.

09.08.2025 12:05 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

I finished Solito. A memoir by Javier Zamora that describes his journey to America as a 9 year old.

I could not put this book down at times. The book shows how resilient people can be. It also opened my eyes to how treacherous the journey to America can be and how unfair fate can be.

#book #read

09.08.2025 12:04 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

Bouncer: "I'm going to have to ask you to leave."

Me: β€œWhy?”

Bouncer: β€œI don’t know who you are and this is my trampoline.”

18.07.2025 23:33 β€” πŸ‘ 423    πŸ” 36    πŸ’¬ 25    πŸ“Œ 1

Almost done with Asimov's Foundation's Edge, and I am left wondering if it would have been a NY Times best seller if it was written by someone less notable.

10.06.2025 14:06 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

As I wake up at 5am to take my kid to a swim meet where she will swim for about 4 to 8 minutes total over a 4 hour period, I wonder where I went wrong in life.

07.06.2025 09:40 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

TIL: While using panes in tmux, you can make a pane full size by doing ctrl-b z. Then when you're done focusing on it you can press it again to restore the panes to what they were.

#tmux #linux

06.06.2025 14:33 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

They gave money to conniest con man ever. It wasn't hard to see this as an outcome.

18.04.2025 18:22 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

I can't wait to see his advice on high grocery bills.

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

conservatives are gathered today on Good Friday to celebrate that special day, 2000 years ago, when the state legally executed a leftist

18.04.2025 13:51 β€” πŸ‘ 1061    πŸ” 248    πŸ’¬ 9    πŸ“Œ 6
Diagram showing that using the type Iterable is better than hardcoding a list.

Example with the wrong type:

# ❌
def create_files(files: list[Path]) -> None:
    for file in files:
        ...

Correct syntax for Python 3.9+:

from collections.abc import Iterable

def create_files(files: Iterable[Path]) -> None: ...

Correct syntax for Python 3.8:
from typing import Iterable

def create_files(files: Iterable[Path]) -> None: ...

Diagram showing that using the type Iterable is better than hardcoding a list. Example with the wrong type: # ❌ def create_files(files: list[Path]) -> None: for file in files: ... Correct syntax for Python 3.9+: from collections.abc import Iterable def create_files(files: Iterable[Path]) -> None: ... Correct syntax for Python 3.8: from typing import Iterable def create_files(files: Iterable[Path]) -> None: ...

This is a beginner typing mistake in Python:

Setting the type of function arguments to `list` when all you need is to be able to iterate over that value.

That's bad because it prevents you from using tuples, or generators, or other iterables.

Instead, use `Iterable`.

18.04.2025 12:43 β€” πŸ‘ 5    πŸ” 1    πŸ’¬ 1    πŸ“Œ 0

I’ve never regretted writing documentation but I’ve regretted not writing it.

16.04.2025 21:53 β€” πŸ‘ 152    πŸ” 17    πŸ’¬ 7    πŸ“Œ 4

It's probably just gas.

16.04.2025 14:20 β€” πŸ‘ 7    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0
Post image

These headlines feel like obvious signs the economy is going to crash.

16.04.2025 14:13 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

People with empathy are deeply impacted by harm being done to real people.

We feel it in our gut-- our very souls. To feel this strongly puts a heavier requirement on us to create justice.

It's called moral responsibility.

Trump has called activists expressing moral responsibility terrorists.

16.04.2025 01:19 β€” πŸ‘ 114    πŸ” 37    πŸ’¬ 6    πŸ“Œ 5

Not surprising. He is allergic to criticism and accountability.

16.04.2025 04:37 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

Real tech geniuses, DOGE

16.04.2025 03:18 β€” πŸ‘ 1    πŸ” 1    πŸ’¬ 0    πŸ“Œ 0

My only hope is that most of that group realizes that they were bamboozled before it gets much worse.

16.04.2025 04:32 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

It's clear that a significant portion of Americans were tricked into thinking that they knew better than the experts or that the experts couldn't be trusted. So instead of figuring things out through logic or sound reasoning, we are resorting to learning things the hard way, by trial and error.

16.04.2025 04:31 β€” πŸ‘ 2    πŸ” 1    πŸ’¬ 1    πŸ“Œ 0
Preview
β€˜Maybe we aren't going to hire anybody this year’: Marc Benioff says Salesforce might not hire any software engineers in 2025 as the firm reaps the benefits of AI agents It’s not looking good for software engineers as big tech CEOs look to AI to drive productivity

Salesforce's CEO: www.itpro.com/software/dev...

Annnnd now slack (owned by salesforce) is down for a significant amount of time.

26.02.2025 18:38 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0
Post image

So many questions. What does "to build 0-1" mean, and why am I a match if my resume is so bad, which i did not submit, btw 😬

22.02.2025 15:36 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

Ssh private keys are meant to be private. It's on the creator/user of those keys (whoever is using PuTTy and not the creator of PuTTy) to keep them private. If they are leaked, then it is on the user to replace them asap. Best practice is to replace them regularly.

16.02.2025 04:21 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

He created a tool, and most using PuTTy wouldn't even know who he was (I didn't), let alone respect his opinion if he even had one.

Hassling him would be sending the wrong message. Instead, effort should be aimed at blocking Musk and stripping him of authority.

16.02.2025 04:15 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

What about him? PuTTy has been around for decades as a free/open source ssh and telnet client. I remember using it when I still used Windows.

I don't think he has any meaningful connection to Musk.

16.02.2025 03:35 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

@bruisedthumb is following 20 prominent accounts