this post was submitted on 17 Sep 2023
193 points (98.0% liked)

Programming

17025 readers
224 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] neocamel@lemmy.studio 16 points 1 year ago (4 children)

I can understand why so many programmers suffer from imposter syndrome.

I know more about SSH than anyone I know, but I still read articles like this and think, "SOCKS proxy. Huh. I don't actually know what either of those words mean."

Before anyone jumps in to educate me on what SOCKS is (please do though!), my point is that through my entire career in tech, I've always read articles and had to skim over terms and acronyms that I didn't know, unless I wanted to fall into a ten-hour rabbit hole of learning, where I ultimately feel totally overwhelmed and not sure I'm actually smarter than when I woke up this morning.

Seems like an interesting article, but for me to fully grasp it, I'd need to read like six other articles, which I can't do during my morning coffee/mindless scroll time.

I've taken the approach of learning through osmosis. I'll regularly read articles that I don't fully understand, assuming that I'll eventually gain a better understanding of whatever topic I'm reading about over time.

[–] Shaman@programming.dev 15 points 1 year ago

Most people apply socks directly to their feet for warmth. If you mean the Internet protocol I can't help you, but I'd be interested in learning about it too!

[–] Lem453@lemmy.ca 8 points 1 year ago

Don't feel bad. Nearly all the critical systems for computers I generally represent at least 1 person's (sometimes many peoples) life work. You can't possibly understand every aspect of everything program your computer uses.

I suspect there is not a single person in the world that fully understands every aspect of GRUB, SSH and systemd. There is simply too many fine details in these things to understand everything.

No need to feel bad. Your biggest power is the one you take for granted: your ability to Google and educate yourself when needed. Many people can't do that effectively.

[–] wgs@lemmy.sdf.org 6 points 1 year ago

SOCKS is just a generic proxy protocol. It lets you tunnel TCP traffic between two hosts transparently. SSH can be use to setup this kind of tunnel using -D.

[–] xtremeownage@lemmyonline.com 2 points 1 year ago

Lets say, you work somewhere, that does, say.... https decryption and/or logs stuff... or the firewall just blocks stuff in general.

And, you want to say, access that stuff.

Well, you can route your web traffic through a ssh connection, instead of it going out the traditional path. This allows you to bypass content filtering, etc.

Its, essentially like having a VPN tunnel, routing your traffic. Amazing feature.