Trending
๐“๐“ต๐“ฎ๐” ๐Ÿ‡บ๐Ÿ‡ฆ๐ŸŒป's Avatar

๐“๐“ต๐“ฎ๐” ๐Ÿ‡บ๐Ÿ‡ฆ๐ŸŒป

@peerprod

#OpenStandard #RenewableEnergy #FTTH #NetNeutrality #Privacy #Security #FreeSoftware #P2P #OpenData #OpenAccess #OpenScience #OpenEdu #OpenGov #KeysToTheUsers Code Is Law. Seize the means of computation.

472
Followers
739
Following
606
Posts
14.11.2024
Joined
Posts Following

Latest posts by ๐“๐“ต๐“ฎ๐” ๐Ÿ‡บ๐Ÿ‡ฆ๐ŸŒป @peerprod

In all fairness, Windows has always been a supply chain risk ๐Ÿคญ

13.03.2026 03:56 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
Preview
a group of transformers are standing next to a man ALT: a group of transformers are standing next to a man

Busted! ๐Ÿซฃ๐Ÿ˜†

13.03.2026 02:54 ๐Ÿ‘ 2 ๐Ÿ” 2 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

Oh, there was a third ๐Ÿ˜…

13.03.2026 02:48 ๐Ÿ‘ 2 ๐Ÿ” 0 ๐Ÿ’ฌ 2 ๐Ÿ“Œ 0

Only 18?
I was playing the 40 years ago. ๐Ÿ˜…

13.03.2026 02:41 ๐Ÿ‘ 2 ๐Ÿ” 0 ๐Ÿ’ฌ 2 ๐Ÿ“Œ 0
n8n Now Runs My ENTIRE Homelab
n8n Now Runs My ENTIRE Homelab YouTube video by NetworkChuck

With a local #agent (keep your infra private), this might be a fun way to add some hindsight for a team, even if just to give suggestions on your group chat and make process improvement more dynamic?
But could giving CLI & API access replace specialized stacks?
#DevOps #LLM #n8n
youtu.be/budTmdQfXYU

12.03.2026 18:58 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
Johan Agebjรถrn featuring Nintendo - Mega Man II
Johan Agebjรถrn featuring Nintendo - Mega Man II YouTube video by husmusmedia / Johan Agebjรถrn

youtu.be/kQ0mUSsYG8Q
Mood!

11.03.2026 17:04 ๐Ÿ‘ 4 ๐Ÿ” 1 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0
Cohost post by rebane2001

secret ssh menu (and other tricks)

hi cohost, ever get annoyed by ssh sessions hanging and forcing you to kill the process? it doesn't have to be this way, for there is a secret ssh menu the ssh industry has been greedily keeping for themselves!

so how do you access this menu? from within an ssh session, press โ†ตEnter and type ~?

you should see something like this:

Supported escape sequences:
 ~.   - terminate connection (and any multiplexed sessions)
 ~B   - send a BREAK to the remote system
 ~C   - open a command line
 ~R   - request rekey
 ~V/v - decrease/increase verbosity (LogLevel)
 ~^Z  - suspend ssh
 ~#   - list forwarded connections
 ~&   - background ssh (when waiting for connections to terminate)
 ~?   - this message
 ~~   - send the escape character by typing it twice
(Note that escapes are only recognized immediately after newline.)

pretty cool!

Cohost post by rebane2001 secret ssh menu (and other tricks) hi cohost, ever get annoyed by ssh sessions hanging and forcing you to kill the process? it doesn't have to be this way, for there is a secret ssh menu the ssh industry has been greedily keeping for themselves! so how do you access this menu? from within an ssh session, press โ†ตEnter and type ~? you should see something like this: Supported escape sequences: ~. - terminate connection (and any multiplexed sessions) ~B - send a BREAK to the remote system ~C - open a command line ~R - request rekey ~V/v - decrease/increase verbosity (LogLevel) ~^Z - suspend ssh ~# - list forwarded connections ~& - background ssh (when waiting for connections to terminate) ~? - this message ~~ - send the escape character by typing it twice (Note that escapes are only recognized immediately after newline.) pretty cool!

These sequences are built into the ssh client itself, so they work even if the ssh server or your connection breaks! The most useful one here is ~. which exits the ssh session no matter what. Super useful if you have a session hang!
The "command line" lets you set up port forwarding (type help after opening it). Most of the other options are pretty self-explanatory - if you need them you probably understand what they mean.

What about nested ssh sessions? You can use ~~ to send the sequence to the inner client, here's an example:

pinkie@stable:~$ ssh ponyvillestable
pinkie@ponyville:~$ ssh manehattenstable > ponyville
pinkie@manehatten:~$stable > ponyville > manehatten
pinkie@manehatten:~$ Connection to manehatten closed.โ†ตEnter~~.
pinkie@ponyville:~$stable > ponyville
pinkie@ponyville:~$ ssh manehattenstable > ponyville
pinkie@manehatten:~$stable > ponyville > manehatten
pinkie@manehatten:~$ Connection to ponyville closed.โ†ตEnter~.
pinkie@stable:~$stable
neat!

These sequences are built into the ssh client itself, so they work even if the ssh server or your connection breaks! The most useful one here is ~. which exits the ssh session no matter what. Super useful if you have a session hang! The "command line" lets you set up port forwarding (type help after opening it). Most of the other options are pretty self-explanatory - if you need them you probably understand what they mean. What about nested ssh sessions? You can use ~~ to send the sequence to the inner client, here's an example: pinkie@stable:~$ ssh ponyvillestable pinkie@ponyville:~$ ssh manehattenstable > ponyville pinkie@manehatten:~$stable > ponyville > manehatten pinkie@manehatten:~$ Connection to manehatten closed.โ†ตEnter~~. pinkie@ponyville:~$stable > ponyville pinkie@ponyville:~$ ssh manehattenstable > ponyville pinkie@manehatten:~$stable > ponyville > manehatten pinkie@manehatten:~$ Connection to ponyville closed.โ†ตEnter~. pinkie@stable:~$stable neat!

Okay, a few bonus tricks:

ssh -C enables gzip compression - even though the documentation states that this is unneccessary on fast networks, I've found that it does wonders for improving latency and responsiveness in many situations, especially when using TUIs or printing out lots of logs.
ssh -v enables verbose logging (-vv or -vvv if you want more), which is useful on a slow connection or when connecting to a slow machine (eg a Raspberry Pi). It lets you figure out whether a connection is hanging (eg host down) or just being slow.
ssh -D 1234 creates a SOCKS proxy on your localhost:1234 that lets you use the server's network. Quite handy if you need to mess around in the LAN of the server, or if you need a quick DIY VPN in a pinch.
alright that's all, i hope you picked up something useful from this post! it's my first time posting anything of this kind so i hope you like it!

Okay, a few bonus tricks: ssh -C enables gzip compression - even though the documentation states that this is unneccessary on fast networks, I've found that it does wonders for improving latency and responsiveness in many situations, especially when using TUIs or printing out lots of logs. ssh -v enables verbose logging (-vv or -vvv if you want more), which is useful on a slow connection or when connecting to a slow machine (eg a Raspberry Pi). It lets you figure out whether a connection is hanging (eg host down) or just being slow. ssh -D 1234 creates a SOCKS proxy on your localhost:1234 that lets you use the server's network. Quite handy if you need to mess around in the LAN of the server, or if you need a quick DIY VPN in a pinch. alright that's all, i hope you picked up something useful from this post! it's my first time posting anything of this kind so i hope you like it!

did you know that SSH has a little-known secret menu?

i wrote a post about this on cohost a while back, but since that site shut down i'm posting it here too

09.03.2026 16:00 ๐Ÿ‘ 98 ๐Ÿ” 17 ๐Ÿ’ฌ 3 ๐Ÿ“Œ 4
Post image

C'est pathรฉtique qu'un imbรฉcile ostentatoire aussi flagrant soit mรชme dans une course!
(Au PCQ y a pas vraiment eu de course j'imagine, mais passons! ๐Ÿคฃ)
Espรฉrons que les gens arrรชtent de se faire manipuler ou รชtre cyniques au point de voter pour "le changement" vapide et rรฉactionnaire...

11.03.2026 00:30 ๐Ÿ‘ 2 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

I think there is a world market for maybe five AI data centers

-- IBM, 2043

10.03.2026 22:23 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
Preview
a man wearing a hat and a suit with a blue x in the corner ALT: a man wearing a hat and a suit with a blue x in the corner
10.03.2026 22:22 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

So they want to find a way to outsource even their Reichstag moment...

10.03.2026 14:25 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

Rรฉcit et histoire ?

10.03.2026 05:03 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
Post image

Literally

10.03.2026 01:06 ๐Ÿ‘ 2421 ๐Ÿ” 599 ๐Ÿ’ฌ 48 ๐Ÿ“Œ 15

of*

10.03.2026 03:30 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
My 2026 Privacy Stack: Big Tech Alternatives (Immich, Ollama & More)
My 2026 Privacy Stack: Big Tech Alternatives (Immich, Ollama & More) YouTube video by Lawrence Systems

Quite a few if these self-hosted free software are great and many deserve to get more visibility.
A nice list if you're trying to avoid enshitification.
youtu.be/aGibWKd3KP8

10.03.2026 03:24 ๐Ÿ‘ 2 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0

Or the whole population that needs to learn a few things from, say, the French.

10.03.2026 03:20 ๐Ÿ‘ 13 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0

Time for Ukraine to blow up anything oil related in Russia, fucking USA traitor.

09.03.2026 22:11 ๐Ÿ‘ 2 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

How would you let a private foreign company control the production of the drones that ensure your very own local survival... ?
That doesn't make much sense, especially with those two untrusted clowns.

09.03.2026 21:45 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
4 red buttons. 
Deport Kids
Starve Kids
Bomb kids
Rape Kids
Usa government sweating to make a choice.

4 red buttons. Deport Kids Starve Kids Bomb kids Rape Kids Usa government sweating to make a choice.

08.03.2026 22:04 ๐Ÿ‘ 109 ๐Ÿ” 43 ๐Ÿ’ฌ 2 ๐Ÿ“Œ 0

Always has been...

08.03.2026 20:38 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

So basically he finished his Putin conversion...

08.03.2026 14:06 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

At this rate of non-action, maybe THE LAST too...

07.03.2026 05:10 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

So is it mammal lactation mixed with coconut somehow or actually water diluted coconut shred, or basically juice concentrate?
Why is correct biological & chemical labeling so hard?
Can't we use the precise language we have to be accurate in descriptions for everyone's benefit?

06.03.2026 18:49 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 2 ๐Ÿ“Œ 0
Our Menu | ChuChai ChuChai is a restaurant specializing in vegan Thai dishes. See our full menu here.

Really? Never heard of fauxmage (fromage in French) or went to any vegan restaurant?
It's very common in Montrรฉal.
Exhibit A:
www.chuchai.ca/menu
Great restaurant, but wtf is vegan chicken even made of?
See how that as basic labeling in a grocery is just misleading and dangerous for allergies etc?

06.03.2026 18:38 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0

Also is it hard to not make slippery slopes arguments and differentiate between a plate and a basic ingredient?
I don't care what your burger is made of, but if you say "beef" patty in a vegan restaurant, you're promoting meat in a very Stockholm syndrome way and outright lying on the ingredients.

06.03.2026 18:04 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0

I have this problem today I have no fucking clue what I'm ordering...
Imagine being allergic or just liking to know what you're paying for?
It's too much to ask instead of inventing useless labels with all the scams we already have to deal with?
Wrong labeling is a passion of yours?

06.03.2026 18:01 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0

There is nothing like going to a vegan restaurant and being served "bacon", "cheese", etc and having no clue what you're actually eating...
But somehow that would be the intelligent choice to help diffuse confusion?
*Slow clap*

06.03.2026 15:07 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 2 ๐Ÿ“Œ 0

Ah yes a slippery slope argument...

06.03.2026 15:04 ๐Ÿ‘ 2 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0
Video thumbnail

Two white nationalists I exposed in a recent article showed up to try to intimidate me in person last night.

This is a press freedom issue.

Hereโ€™s what happened:

06.03.2026 00:01 ๐Ÿ‘ 2326 ๐Ÿ” 798 ๐Ÿ’ฌ 121 ๐Ÿ“Œ 90

I don't understand how we can be pro labeling of:
- ingredients
- origins
- GMO
- etc...
But somehow biologically inaccurate names are acceptable?
Seems unrelated to any markets to me, it's just accurate naming just like milk is from mammals and not nuts.
It'll benefit everyone to be accurate!

06.03.2026 14:57 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 3 ๐Ÿ“Œ 0