I’m a little teapot 🫖

  • 0 Posts
  • 543 Comments
Joined 1 year ago
cake
Cake day: September 27th, 2023

help-circle


  • Don’t just look at sdb hits in the log. Open up that entire session in journalctl kernel mode (journalctl -k -bN where N is the session number in session history) and find the context surrounding the drive dropping and reconnecting.

    You’ll probably find that something caused a USB bus reset or a similar event before the drive dropped and reconnected. if you find nothing like that try switching power supplies for the HDD and/or switching USB ports until you can move the drive to a different USB root port. Use lsusb -t and swap ports until the drive is attached beneath a different root port. You might have a neighboring USB device attached to the bus that’s causing issues for other devices attached to the same root port (it happens, USB devices or drivers sometimes behave badly.)

    Always look at the context of the event when you’re troubleshooting a failure like this, don’t just drill down on the device messages. Most of the time the real cause of the issue preceded the symptom by a bit of time.



  • Basically Dems were just out of touch with the most important part of their base until it was too late.

    Which is their consistent problem every election when the prior Republican admin hasn’t made a catastrophic fuck-up.

    You can’t run on the “we’re pro labor” platform and expect the working class to show up for you when your pro labor stance hasn’t put money directly into working class pockets since the 1970s or 1980s.

    Where are the big public works programs? Where’s the massive government spending that employed millions? That’s why labor showed up for Democrats in the 1900s, when there were huge govt contracts that employed organized labor, and it’s no surprise at all that when Democrats abandoned those policies labor stopped being reliable supporters.

    You want to run a successful campaign? Talk about the massive public spending that employed hundreds of thousands during your prior admin. Talk jobs. Talk improved standard of living. Talk taxing corporations to pay for those things and voters will hand you a landslide. Democrats are so afraid of taxing corporations to pay for social spending that directly recruits voters to their cause that they’re seen as corporate stooges. And honestly, they kinda are at this point.



  • Lemmy, I like the simple post structure with all related commentary under the original submission.

    Mastodon is fine for people who like it but it’s hard to follow the thread of replies as every reply is its own individual post.

    I guess the twatter format makes sense for dashing off quick messages but I find it hard to follow and it’s difficult to find communities and topics of interest without also including a shit-ton of noise along with the signal.








  • Find widely known orgs that use the platform, the BBC comes to mind here. Search for other well known orgs to point out so you don’t just have one example. Highlight the fact that other platforms are cross linking to the fediverse (Meta’a threads for example) so a fediverse presence will give the city a presence on those platforms with no extra effort needed. Point out that Twitter has become an unreliable platform due to ownership change and that that situation could replay itself at any time on any centralized platform. Help people get Mastodon working on phones if needed - the official app is quite good. Basically just sell the platform as best you can, don’t go heavy on ideology and focus on practical benefits.


  • In my experience many of the people who haven’t quit are self medicating for attention or depressive reasons. Of the folks I know who vape about half were diagnosed with ADHD later in life (30+) and quit after finding a stimulant medication that worked for them. The rest are unmedicated and self medicating with nicotine and coffee or energy drinks. Self medicating is overlooked in virtually every discussion about nicotine and I’d like to see it considered more often when the topic comes up instead of just leaping straight to “nicotine use bad” or “nicotine users should be punished” like most discussions do.

    Edit: there’s also some interesting research re: nicotine’s neuroprotective properties that gets lost in the prohibition fervor



  • Offer to help setup the account and show them how to use Mastodon in general.

    Also, not necessarily applicable to you but worth keeping in mind: encourage organizations to run Mastodon instances/provide Mastodon hosting for their employees or members in addition to providing email addresses. If an org is providing email to employees or members for business correspondence they could easily provide Mastodon services as well. This enables public discussion with the org in twitter/social media format without a third party controlling the platform.


  • Write a couple of your own toy services as practice. Write a one-shot that fires at a particular time during boot, a normal service that would run a daemon and a mount service that fires after its dependencies are loaded (like, say, a bind mount that sets up a directory under /run/foo after the backing filesystem is mounted - I do this to make fast ext4 storage available in some parts of the VFS tree while using a btrfs filesystem for everything else.) You can also write file watcher services that fire after changes to a file or directory, I use one of those to mirror /boot/ to /.boot/ on another filesystem so it’s captured by my system snapshots.

    I’d start by reading the docs so you have some ideas about what services can do, then you’ll find uses that you wouldn’t have thought of before.