• 0 Posts
  • 3 Comments
Joined 11 months ago
cake
Cake day: April 5th, 2024

help-circle
  • I’ve never seen any of them cause problems; they simply ride the trains all day.

    Maybe this is dependent on country or region, because I see wildly different behavior between the unhoused in NYC and Manchester, in the UK, for example. In NYC, I’ve personally seen them pull a knife on random people, masturbating in the middle of the day on the train, two blind guys panhandling try to beat each other with their canes, each accusing the other of faking it to invade the other’s territory, smoking crack in the middle of crowded cars and plenty of other problematic behavior.

    When I’ve been in Manchester, they’ve always been pretty reserved, just trying to do their own thing and get through the day without doing anything to draw unwanted attention to themselves. You wouldn’t even know a lot of them are there, unless you’re out after the shops close, and then there’s suddenly a bunch of people in sleeping bags in the doorways, just trying to sleep out of the wind and rain in a spot that might be marginally warmer.


  • Too many people just view scientifically sound treatment as drug addicts getting stuff for free, and get pissed off that someone else gets a “benefit” that they aren’t entitled to. They completely ignore the knock on effects that drug addiction has to those around someone going through it and just focus on what they perceive as unearned rewards for bad behavior.

    I kind of think that a lot of people would be in favor of the same programs if they were pitched without being centered on the person getting treated for their addiction. Like, instead of saying, “This plan represents the best method we have to get people off drugs,” some of those same people that are totally lacking in empathy would be in favor of it if it were put forward as, “This is a way to get all those druggies off the streets and trains where they bother you, and it’s actually way cheaper than putting them all in prison, so it works out that we spend less of your tax money and save you in the long term.” Which is a pretty damning indictment of those people.


  • a test showing me how little I know, and a time-eater that causes my wife to wonder what happened to her husband.

    Worth mentioning, but this gets much better with time. Part of it will go away as you learn new things, and is the same as learning any other new thing, be it using Linux, picking up an instrument, or learning another language. Hand in hand with this, you’ll also just get better at knowing where and what to look for to find answers to your problems, and how to ask for help in a way that includes all the relevant info and is more likely to get you a reply that sorts out your issue sooner.

    It can definitely be overwhelming initially, but it’s always helpful to get familiar with the man pages and info pages, which are two forms of documentation that come built-in with your Linux install (along with other systems like the BSDs, if you ever wander over that way. OpenBSD man pages are amazing, fwiw, and may be more helpful at times for finding example commands). You can usually run

    man command

    to get a man page for most commands in your terminal, though not all. Info pages exist for GNU software, and can often be more thorough in their documentation.

    man fstab

    for example, will give you a general overview of how fstab works, and also include a list of other man pages at the bottom, under the heading SEE ALSO, that can be helpful in understanding related systems. If one of those entries is followed by a number in parentheses, you type the command slightly differently to access that section of the man page. For example, the fstab page suggests looking at mount(8), which you’d find with the command

    man 8 mount

    info info

    in a terminal will get you a helpful primer on how the info system works, which is good, as it can be somewhat more complex to navigate than man pages and uses a lot of Emacs keybindings.

    Both can be a bit daunting when you first start out, but it’s worth at least being familiar with, as you can access them without any internet connection, helping you to do things and troubleshoot issues when you’re unable to go online, for whatever reason.

    Finally, don’t overlook the utility of the various wikis out there. For Linux Mint, the Debian Wiki should be pretty decent, and the Arch Wiki is also generally pretty helpful, though may not always work for Debian/Ubuntu-based distros, since it may reference features in newer releases of packages than are available elsewhere. They’ll often include basic setup and configuration guides, as well as a troubleshooting section that outlines how to solve commonly encountered issues.