𝕽𝖚𝖆𝖎𝖉𝖍𝖗𝖎𝖌𝖍
🅸 🅰🅼 🆃🅷🅴 🅻🅰🆆.
𝕽𝖚𝖆𝖎𝖉𝖍𝖗𝖎𝖌𝖍 𝖋𝖊𝖆𝖙𝖍𝖊𝖗𝖘𝖙𝖔𝖓𝖊𝖍𝖆𝖚𝖌𝖍
- 19 Posts
- 1.01K Comments
𝕽𝖚𝖆𝖎𝖉𝖍𝖗𝖎𝖌𝖍@midwest.socialto
Linux@lemmy.ml•What are some bare minimum concepts beginner Linux users should understand?
14·7 months agoIME, beyond the install, it’s all distro- and desktop-specific.
- How to find and install apps varies from distro to distro. IIRC, the Mint menu item is something obvious, like “Install software”, but on Arch (you’d have to hate your newbie to throw them into Arch), it requires a chicken/egg finding and installing a graphical installer. If you know the distro, this would be good information - or if you’re helping with the install, create a desktop launcher.
- Showing them where settings are. Surprising to me, this has been super-not-obvious to my newbs. Even though the KDE Settings app is called “settings”, I think Windows and Mac folks are used to looking for settings in a specific place, rather than an app name - and in Windows, there’s can be several ways to get up different settings, like changing display stuff is always in a weird place. Again, maybe a desktop or panel shortcut would help.
- One of my newbs used Mint for two years without opening a shell, so I don’t think that’s an issue. He even found and installed a piece of software he wanted, but I can’t remember if I originally showed him how to the first time. But that’s Mint. He did, however, need help setting up a printer, but that’s because he couldn’t find the settings program; he came from Windows originally.
- Edge cases, like printers and other peripherals, can be hard, and I don’t think any amount of extra documentation is going to help, because almost every difficulty is practically unique. There’s a ton of online help for stuff like that already. And then, if they want to, eg, attach a game controller… well, that’s very specific and again varies by controller. I don’t think you can cover all of these edge cases.
- Games can be hard only because of the indirection of having to install some other software, like Proton or Steam, creating an account, knowing how to check for compatability - there’s a lot of moving parts. It’s not just: go to the game’s web site, buy, download, and install something and run it, like I imagine it is on Windows. So maybe that would be useful - or - again - pre-installing one of the game stores and (surprise) making a shortcut would eliminate that.
- Network connections. Again, I always find figuring out how to get to network configuration in Windows to be hard, and bizarrely having multiple ways of accomplishing the same task, so I’d guess going the other direction would be confusing. Having a note about how to get to the configuration would be handy.
As I think about it, I realize that configuration under KDE of way more encapsulated and clear than on Windows, and people having learned the byzantine and myriad ways of Windows, KDE’s relative simplicity is confusing. Windows people look for configurations in places they’ve learned to look, which aren’t always where they are under KDE (I can’t speak much about Gnome - I don’t use it or set people up with it). MacOS isn’t as bad, having a similar configure-everything-through-a-single-settings-program approach.
Anyway, that’s my experience.
𝕽𝖚𝖆𝖎𝖉𝖍𝖗𝖎𝖌𝖍@midwest.socialto
Linux@programming.dev•pear: a simple utility for listing file names inside archives
17·8 months agoHuh.
tar tfandunzip -l. I’m not sure I’d even bother to write a shell function to combine them, much less install software.Zips just exploding to files is so common, if you just
mkdir unzpd ; unzip -d unzpd file.zipit’s going to be right nearly all of the time. Same with tarballs always containing a directory; it’s just so common it’s barely worth checking.You write the tools you need, don’t get me wrong. This seems like, at most, a 10-line bash function, and even that seems excessive.
function pear() { case $1 in *.zip) unzip -l "$1" ;; *.tar.*) tar tf "$1" ;; esac }
𝕽𝖚𝖆𝖎𝖉𝖍𝖗𝖎𝖌𝖍@midwest.socialto
Linux@programming.dev•Why I'm Leaving NixOS After a Year? (Uğur Erdem Seyfi)English
1·10 months agoNo, not on porpoise.
𝕽𝖚𝖆𝖎𝖉𝖍𝖗𝖎𝖌𝖍@midwest.socialto
Linux@programming.dev•Why I'm Leaving NixOS After a Year? (Uğur Erdem Seyfi)English
3·10 months agoI have no idea! It seems to be the human material. Have you ever heard of a solution? I can be aware of it and resist it, but what I hate is that instinctive, negative impulse, and I don’t think wishing it away is going to help.
Not that kind of “use!”
That’s… a big gap. I think I’d just be confused all the time if I had to switch between them.
𝕽𝖚𝖆𝖎𝖉𝖍𝖗𝖎𝖌𝖍@midwest.socialto
Linux@programming.dev•Why I'm Leaving NixOS After a Year? (Uğur Erdem Seyfi)English
92·10 months agoOk, so preface: this isn’t about you. Your comment just coalesced something I’ve been ruminating about recently.
I wish we, as humans, didn’t have this knee-jerk tenancy to make everything a zero-sum competition. Vi vs EMACS. x86 vs ARM. Windows vs Mac vs Linux vs FreeBSD. C vs Go vs Rust vs Clojure vs JavaScript. Arch vs the world.
It really is a zero-sum game, with real consequences. If your favorite distro becomes unpopular enough, it might die, and then you have to give up something you love. Windows winning the OS market for decades meant countless people had to suffer using Windows because the company they worked for mandated it. If I crusade for V(lang) enough, it might become popular enough for jobs to open for it.
The downside is that we’re constantly fighting against diversity, and that’s bad.
I suffer from this as much as anyone, and I hate that my first impulse is to either tear down “the opposition”, which at some point is nearly everyone, or schadenfreude.
“It is not enough that I succeed, but that others should fail.” It can’t be healthy.
𝕽𝖚𝖆𝖎𝖉𝖍𝖗𝖎𝖌𝖍@midwest.socialto
Linux@programming.dev•Why I'm Leaving NixOS After a Year? (Uğur Erdem Seyfi)English
4·10 months agoI miss the days when every package came with a man page.
Every respectable package; don’t come at me, pendants.
𝕽𝖚𝖆𝖎𝖉𝖍𝖗𝖎𝖌𝖍@midwest.socialto
Linux@programming.dev•Why I'm Leaving NixOS After a Year? (Uğur Erdem Seyfi)English
4·10 months agogroan
𝕽𝖚𝖆𝖎𝖉𝖍𝖗𝖎𝖌𝖍@midwest.socialto
Linux@lemmy.ml•Congratulations to Linux on recent victories!English
2·10 months agoC-beams glitter in the dark near the Tannhauser gate.
𝕽𝖚𝖆𝖎𝖉𝖍𝖗𝖎𝖌𝖍@midwest.socialto
Programming@programming.dev•Handling of unlikely syscall errorsEnglish
1·10 months agoI can think if plenty of situations where system time is
- Optional
- Unreliable
- And even potentially disallowed by the user
In fact, if you don’t set up your containers right, the system time is almost always wrong.
This is really good to hear. As someone who hasn’t used Windows since 2004, it’s easy to lose perspective of how daunting a self-switch can feel.
I’m glad to hear your experience is going well. I know you’re experiencing many little annoyances and things which seem harder than they should be, but are not focusing on those. It’s always good to hear the perspective from a new user!
𝕽𝖚𝖆𝖎𝖉𝖍𝖗𝖎𝖌𝖍@midwest.socialto
Programming@programming.dev•Handling of unlikely syscall errorsEnglish
11·10 months agoIf that’s the only error mechanism, sure. Exceptions in most languages tend to be relatively expensive, though, and most have a cheaper idiomatic way of returning error codes; you’d want to use those if they’re available, right?
Does Rust use exceptions a lot? I don’t know. V has panic and catch, but you almost never see them. Idiomatic is Option (?) and Return (!) values, which I thought V borrowed from Rust. Go does the (val, error) tuple-ish return thing, and while it too has catchable panics, they’re discouraged in favor of (error) return values.
Depends on the language. “Higher level” is a pretty broad field!
𝕽𝖚𝖆𝖎𝖉𝖍𝖗𝖎𝖌𝖍@midwest.socialto
Programming@programming.dev•We Asked 100+ AI Models to Write Code. The Results: AI-generated Code That Works, But Isn’t SafeEnglish
2·10 months agoAt first it wasn’t an issue: I used Voyager for this account, and Interstellar for the alt. Then I decided I liked Interstellar’s interface more and started using it for both. Both list the account in most places, but Interstellar doesn’t show it when replying.
I started making enough mistakes that I played with the settings and discovered Interstellar links the color theme to the account, and now I can easily tell which I’m using.
I’m certain I’ll continue to make mistakes. Thorn is surprisingly seductive, but the real issue is that auto complete and autocorrect on my phone keyboard has decided that the correct spelling for “the” is “þe”. I could correct it, but I feel bad for it; it’s just trying to he helpful.
𝕽𝖚𝖆𝖎𝖉𝖍𝖗𝖎𝖌𝖍@midwest.socialto
Programming@programming.dev•We Asked 100+ AI Models to Write Code. The Results: AI-generated Code That Works, But Isn’t SafeEnglish
1·10 months agoGosh darn it, am I using thorns in this account again?? I didn’t mean to.
I recently learned that only Icelandic does that. Eth was dropped early in old English, and thorn was used in both places. Additionally (as I understand it, now), while thorn was a direct “th” (voiced or unvoiced) sound, even when eth was in use it want orthographically a simple replacement for voiced “th”.
I guess Icelandic kept it, but eth was not in use through most of the old English, medieval period. And then the Normans came, and fucked written English completely up.
𝕽𝖚𝖆𝖎𝖉𝖍𝖗𝖎𝖌𝖍@midwest.socialto
homeassistant@lemmy.world•What's your most pointless or silliest automation?English
8·10 months agoIt’s not pointless, but needlessly silly: as part of the alarm system, in addition to the standard siren, the home audio system turns on and plays Rockwell’s “Somebody’s Watching Me” at full volume.
At 7pm on school nights, one of a number of versions of “Hushabye Mountain” is played, if music isn’t already playing.
𝕽𝖚𝖆𝖎𝖉𝖍𝖗𝖎𝖌𝖍@midwest.socialto
homeassistant@lemmy.world•What's your most pointless or silliest automation?English
6·10 months agoOoooh! Totally not useless, but I have a version of this.
I have a cheap, but powerful, amp for the home audio system, and discovered it burns out if left perpetually on (yeah, I’m on my third). So I got a wall switch that’s turned off after 10 minutes of no audio streaming to that snapclient.
𝕽𝖚𝖆𝖎𝖉𝖍𝖗𝖎𝖌𝖍@midwest.socialto
homeassistant@lemmy.world•What's your most pointless or silliest automation?English
7·10 months agoAll year? Please tell me “Halloween eyes” is just “scary eyes” and that you do this all year.
𝕽𝖚𝖆𝖎𝖉𝖍𝖗𝖎𝖌𝖍@midwest.socialto
homeassistant@lemmy.world•What's your most pointless or silliest automation?English
6·10 months agoInteresting. Our sensors don’t see the cats. Unless I place once of the basement ones directly opposite the stairs; it can apparently see them if they’re a couple of feet away at sensor eye level.
But the one that sees people in the kitchen doesn’t see the cats on the counters when they get up there in the night.
I think if they saw the cats, I’d have to figure something else out, because our’s get everywhere.







I use a convenience package on top of stow (yas-bdsm), but yeah: stow is foundational.