Sawyer's Avatar

Sawyer

@sawyer2.bsky.social

Family man, data-focused software engineer, variety musician, gamer, learner, amateur audio producer, Ohioan Lover of compassion, empathy, understanding, democracy.

23 Followers  |  27 Following  |  76 Posts  |  Joined: 13.11.2024  |  2.1969

Latest posts by sawyer2.bsky.social on Bluesky

No. Your friends don't secretly hate you. You're just dehydrated.

26.09.2025 20:22 โ€” ๐Ÿ‘ 8486    ๐Ÿ” 2289    ๐Ÿ’ฌ 115    ๐Ÿ“Œ 123
a bald stick figure in a chair with his arms out in front like heโ€™s typing on a keyboard, and heโ€™s got the biggest angry frown imaginable and eyebrows that express frustrated bemusement

a bald stick figure in a chair with his arms out in front like heโ€™s typing on a keyboard, and heโ€™s got the biggest angry frown imaginable and eyebrows that express frustrated bemusement

my daughter really captured my essence in this portrait of me โ€œat workโ€

25.09.2025 21:34 โ€” ๐Ÿ‘ 11642    ๐Ÿ” 1302    ๐Ÿ’ฌ 235    ๐Ÿ“Œ 50
detail from the Hell panel of Hieronymus Bosch's The Garden of Earthly Delights but everybody consents

detail from the Hell panel of Hieronymus Bosch's The Garden of Earthly Delights but everybody consents

21.09.2025 23:18 โ€” ๐Ÿ‘ 2171    ๐Ÿ” 983    ๐Ÿ’ฌ 9    ๐Ÿ“Œ 13
Drawing if a tired puppy with the caption; "This too shall pass but like wtf"

Drawing if a tired puppy with the caption; "This too shall pass but like wtf"

Bruh

18.09.2025 12:12 โ€” ๐Ÿ‘ 31485    ๐Ÿ” 11461    ๐Ÿ’ฌ 109    ๐Ÿ“Œ 103
Hey, it looks like you're waiting for ideal conditions to do that thing you've been wanting to do. Need I remind you that ideal conditions do not exist and will never happen?
โ€ข I'm aware
โ€ข Wow, rude

Hey, it looks like you're waiting for ideal conditions to do that thing you've been wanting to do. Need I remind you that ideal conditions do not exist and will never happen? โ€ข I'm aware โ€ข Wow, rude

It's time to do that thing you've been wanting to do

16.09.2025 18:16 โ€” ๐Ÿ‘ 5949    ๐Ÿ” 2469    ๐Ÿ’ฌ 48    ๐Ÿ“Œ 98

enshittification | noun | when a digital platform is made worse for users, in order to increase profits

03.09.2025 20:22 โ€” ๐Ÿ‘ 29334    ๐Ÿ” 8643    ๐Ÿ’ฌ 511    ๐Ÿ“Œ 658
A drawing of a perfect phone that only has three buttons on it, one of them says IS HE DEAD one of them says AM I BROKE and the other one says RELAXING PUZZLE GAME

A drawing of a perfect phone that only has three buttons on it, one of them says IS HE DEAD one of them says AM I BROKE and the other one says RELAXING PUZZLE GAME

I invented a new phone to help save time in the morning

19.04.2025 13:45 โ€” ๐Ÿ‘ 33305    ๐Ÿ” 6306    ๐Ÿ’ฌ 386    ๐Ÿ“Œ 321

On one hand, reducing car use reduces urban pollution.
But on the other, everyone likes it and cities become more livable

30.08.2025 00:43 โ€” ๐Ÿ‘ 7028    ๐Ÿ” 2388    ๐Ÿ’ฌ 54    ๐Ÿ“Œ 62

๐Ÿชฌ๐Ÿงฟ There is no amount of money, oil, or gold in the world that is worth more than having bees, trees, and clean water.

29.08.2025 17:49 โ€” ๐Ÿ‘ 15033    ๐Ÿ” 3042    ๐Ÿ’ฌ 299    ๐Ÿ“Œ 118
Text reads: Mozilla, in its finite wisdom, embedded LLM bots into recent versions of Firefox for the vitally-important purpose of... naming tab groups. Now, some users are noticing CPU and power usage spikes caused by a background process called Inference.

Ugh. Reminder again for Firefox users to visit your about:config page, search for the browser.ml.chat.enabled key, and set that to false:

Displayed is a screenshot of Firefox showing the config search bar with the listed search. The word "false" is circled in red.

Text continues: If yours says true then double-click it until it reads false.
Doing that turns off the Al chatbot features in Firefox, but also the stupid new LLM tab-naming feature that's rolling out.

Text reads: Mozilla, in its finite wisdom, embedded LLM bots into recent versions of Firefox for the vitally-important purpose of... naming tab groups. Now, some users are noticing CPU and power usage spikes caused by a background process called Inference. Ugh. Reminder again for Firefox users to visit your about:config page, search for the browser.ml.chat.enabled key, and set that to false: Displayed is a screenshot of Firefox showing the config search bar with the listed search. The word "false" is circled in red. Text continues: If yours says true then double-click it until it reads false. Doing that turns off the Al chatbot features in Firefox, but also the stupid new LLM tab-naming feature that's rolling out.

Just a heads up to anyone using Firefox:

30.08.2025 18:07 โ€” ๐Ÿ‘ 1398    ๐Ÿ” 719    ๐Ÿ’ฌ 38    ๐Ÿ“Œ 49
your shell lets you run many programs (โ€œjobsโ€) in the same terminal tab

programs can either be:

    foreground
    background
    stopped (which is more like โ€œpausedโ€)

& runs a program in the background

for example I like to convert 100 files in parallel like this:

for i in `seq 1 100`
do
   convert $i.png $i.jpg &
done

jobs lists backgrounded & stopped jobs

$ jobs
[1] Running python blah.py &
[2] Stopped vim

use the numbers to bring them to the foreground or background (like fg %2), kill them (kill %2), or disown them
when you close a terminal tab all jobs are killed with a SIGHUP signal

you can stop this with disown or by starting the program with nohup: disown %1 (job number goes here) nohup my_program &
a trick to kill programs if Ctrl+C doesnโ€™t work

    press Ctrl+Z to stop the program
    run kill %1 to kill it (or kill -9 %1 if youโ€™re feeling extra murderous)

a little flowchart

Three boxes, labelled โ€œrunning in foregroundโ€, โ€œstoppedโ€, and โ€œrunning in backgroundโ€

Ctrl+Z goes from โ€œrunning in foregroundโ€ to โ€œstoppedโ€ fg goes from โ€œstoppedโ€ to โ€œrunning in foregroundโ€ fg goes from โ€œrunning in backgroundโ€ to โ€œrunning in foregroundโ€ bg goes from โ€œstoppedโ€ to โ€œrunning in backgroundโ€

your shell lets you run many programs (โ€œjobsโ€) in the same terminal tab programs can either be: foreground background stopped (which is more like โ€œpausedโ€) & runs a program in the background for example I like to convert 100 files in parallel like this: for i in `seq 1 100` do convert $i.png $i.jpg & done jobs lists backgrounded & stopped jobs $ jobs [1] Running python blah.py & [2] Stopped vim use the numbers to bring them to the foreground or background (like fg %2), kill them (kill %2), or disown them when you close a terminal tab all jobs are killed with a SIGHUP signal you can stop this with disown or by starting the program with nohup: disown %1 (job number goes here) nohup my_program & a trick to kill programs if Ctrl+C doesnโ€™t work press Ctrl+Z to stop the program run kill %1 to kill it (or kill -9 %1 if youโ€™re feeling extra murderous) a little flowchart Three boxes, labelled โ€œrunning in foregroundโ€, โ€œstoppedโ€, and โ€œrunning in backgroundโ€ Ctrl+Z goes from โ€œrunning in foregroundโ€ to โ€œstoppedโ€ fg goes from โ€œstoppedโ€ to โ€œrunning in foregroundโ€ fg goes from โ€œrunning in backgroundโ€ to โ€œrunning in foregroundโ€ bg goes from โ€œstoppedโ€ to โ€œrunning in backgroundโ€

job control

wizardzines.com/comics/job-c...

(from The Secret Rules of the Terminal, which is out now!)

26.08.2025 15:19 โ€” ๐Ÿ‘ 167    ๐Ÿ” 26    ๐Ÿ’ฌ 6    ๐Ÿ“Œ 0

age 15: Computers are amazing! I'm going to do amazing things with computers!

age 45: explaining to the fourth person this week why Chat GPT is not a replacement for google or the library or friends

21.08.2025 22:38 โ€” ๐Ÿ‘ 6632    ๐Ÿ” 1495    ๐Ÿ’ฌ 4    ๐Ÿ“Œ 65
Crossing flags and instructions with a sticker placed on top We ask everyone outside of the car to be safe so that drivers can be dangerous.

Crossing flags and instructions with a sticker placed on top We ask everyone outside of the car to be safe so that drivers can be dangerous.

The perfect placement of The Ask sticker - directly on top of crossing flag instructions๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅ

๐Ÿ“ธ Rich Jones

22.08.2025 12:53 โ€” ๐Ÿ‘ 177    ๐Ÿ” 28    ๐Ÿ’ฌ 5    ๐Ÿ“Œ 5

Nice sale. Got it

15.07.2025 06:59 โ€” ๐Ÿ‘ 0    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

This wasnโ€™t a joke btw. It works. Youโ€™d be surprised how much uwu breaks guardrail implementations.

04.07.2025 02:59 โ€” ๐Ÿ‘ 374    ๐Ÿ” 124    ๐Ÿ’ฌ 12    ๐Ÿ“Œ 11

FAFO

07.06.2025 21:46 โ€” ๐Ÿ‘ 0    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

I'm buying balatro NOW for this. Thank u

05.06.2025 01:32 โ€” ๐Ÿ‘ 3    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

Ever tim

31.05.2025 05:38 โ€” ๐Ÿ‘ 1    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0
Report: Texting While Driving Okay If You Look Up Every Couple Seconds

Report: Texting While Driving Okay If You Look Up Every Couple Seconds

Report: Texting While Driving Okay If You Look Up Every Couple Seconds
theonion.com/report-...

27.05.2025 22:00 โ€” ๐Ÿ‘ 4207    ๐Ÿ” 303    ๐Ÿ’ฌ 56    ๐Ÿ“Œ 38
Preview
From the ChatGPT community on Reddit Explore this post and more from the ChatGPT community

www.reddit.com/r/ChatGPT/s/...

27.05.2025 01:04 โ€” ๐Ÿ‘ 1    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

The murder of George Floyd still weighs on this city and it should. Nothing has been done to stop this from happening again. In fact it often feels like it's just a matter of time. Everyone I've talked with recently feels somewhat similar, especially the heaviness.

25.05.2025 12:53 โ€” ๐Ÿ‘ 74    ๐Ÿ” 19    ๐Ÿ’ฌ 1    ๐Ÿ“Œ 2
Video thumbnail
23.05.2025 13:22 โ€” ๐Ÿ‘ 1429    ๐Ÿ” 692    ๐Ÿ’ฌ 14    ๐Ÿ“Œ 24
List of most-visited websites - Wikipedia

en.m.wikipedia.org/wiki/List_of...

23.05.2025 02:05 โ€” ๐Ÿ‘ 0    ๐Ÿ” 0    ๐Ÿ’ฌ 1    ๐Ÿ“Œ 0
An article titled "How the Web Became Unreadable", posted on Medium. There is a soft paywall asking you to sign in, covering most of the article.

Screenshot found on Mastodon https://beige.party/@mayintoronto/114497234942335666

An article titled "How the Web Became Unreadable", posted on Medium. There is a soft paywall asking you to sign in, covering most of the article. Screenshot found on Mastodon https://beige.party/@mayintoronto/114497234942335666

14.05.2025 00:23 โ€” ๐Ÿ‘ 17766    ๐Ÿ” 6442    ๐Ÿ’ฌ 7    ๐Ÿ“Œ 250

Check out 12ft.io

Doesn't always work, but usually does

07.05.2025 22:30 โ€” ๐Ÿ‘ 3    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0
Preview
Never Meant, for Esports This weekend I hopped in my tiny little 2014 Mazda 2 and set out for my 4th event in 5 weeks. Iโ€™m exhausted but the weather is a perfect melancholic sprinkling of rain and the smell gets me goin. Pick...

I went to Never Melee this last weekend and experienced time travel.
Please read and long live Melee

docs.google.com/document/d/1...

05.05.2025 22:52 โ€” ๐Ÿ‘ 66    ๐Ÿ” 23    ๐Ÿ’ฌ 5    ๐Ÿ“Œ 0
Preview
TM SGNL, the obscure unofficial Signal app Mike Waltz uses to text with Trump officials Yesterday, a Reuters photographer captured a photo of the freshly-ousted former National Security Advisor Mike Waltz checking his Signal messages during a Trump cabinet meeting. If you're not familiar...

I wrote up a detailed analysis of TM SGNL, the unofficial Signal app that senior Trump fascists use to organize their war crimes micahflee.com/tm-sgnl-the-...

02.05.2025 21:36 โ€” ๐Ÿ‘ 1270    ๐Ÿ” 461    ๐Ÿ’ฌ 30    ๐Ÿ“Œ 50

In conclusion, the main problem with AI isn't AI, it's rampant, unrestrained late stage capitalism and the capture of democratic institutuons by unaccountabke oligarchs.

Might be better to make THAT shit the site of our resistance because tech hype cycles come and go.

26.04.2025 20:37 โ€” ๐Ÿ‘ 297    ๐Ÿ” 51    ๐Ÿ’ฌ 12    ๐Ÿ“Œ 1

Pretty shocked by the replies. Moral judgement aside, they're very useful, lol. Anyone who thinks they're useless doesn't know how to use them.

24.04.2025 22:42 โ€” ๐Ÿ‘ 0    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

@sawyer2 is following 19 prominent accounts