beegnyoshi

joined 1 month ago
[–] beegnyoshi@lemmy.zip 1 points 5 days ago (1 children)

Yep! What I wanted was for a "just works" experience as much as possible. Having to manually install lsps and treesitter parsers manually with nix felt like a bummer, honestly. It does work though

[–] beegnyoshi@lemmy.zip 4 points 5 days ago (4 children)

I don't get why using an unsigned value is bad in this context. Like you've said yourself, why would you add support for dates that happened before the creation of the network?

[–] beegnyoshi@lemmy.zip 8 points 1 week ago* (last edited 1 week ago) (2 children)

In my comment I said:

I could understand this comment in the context of the app

And the whole reason why I commented was because I'd misunderstood your comment. I'd thought it was separate from the post itself, since you hadn't made it clear that the purpose of your comment was to say something like: "So despite the consequences it might have to the men featured in the app, it should still exist due to the benefit that it would bring to women". Without that, to me, it really just looked like you'd read the stories from the men and thought "women have it worse".

Since I'm now inside the discussion, I'm gonna give you my two cents.

I think that most people here weren't really mad at the app due to its purpose. They were mad because it's far from a perfect solution. Regardless of how much protection the app has, at these issues will exist:

  • Leaks can happen
  • Women can lie
  • Men can infiltrate the app

Not to mention that, in this case, the creator was a man and the information protection was laughably bad.

In the future, apps like this one might become a must for women's self-protection, but that doesn't mean that the app's issues will just cease existing. Pointing them out along with personal experiences to back them up, and then weighing in the pros and cons is always going to be very important.

Might've made myself a bit unclear, here's a tl;dr

I thought you'd meant

This bad situation happened to me

Women have it worse

But what I've realized what you'd meant is

This bad situation happened to me

But that doesn't mean that the app shouldn't exist

And to finish, sorry that that happened to you. I hope you and the people you talked about stay safe.

[–] beegnyoshi@lemmy.zip 19 points 1 week ago* (last edited 1 week ago) (6 children)

I don't want you to take me badly, but to me this comment sounded really demeaning. Obviously women have it way worse than men, but you see a comment with a men venting about their personal experiences and the first thing that comes to mind is "women have it worse"?

I could understand this comment in the context of the app, and how people are making fun of it when its purpose is to try to solve such a common and awful problem in dating--but in the context of the comments of men venting here, it really just sounds like you're invalidating their experiences just because they're not women.

[–] beegnyoshi@lemmy.zip 6 points 1 week ago (3 children)

"Guess what it is not processed locally anymore"?

[–] beegnyoshi@lemmy.zip 3 points 1 week ago

Oof sorry my bad lol

[–] beegnyoshi@lemmy.zip 5 points 1 week ago (2 children)

I remember this site

https://www.linuxatemyram.com/

But honestly, although I can't check it, 1GB idle is still far more ram than what I get idle, so you might have some weird program auto-starting and actually eating your ram.

[–] beegnyoshi@lemmy.zip 20 points 1 week ago (1 children)

Did they edit it? I only see 3

[–] beegnyoshi@lemmy.zip 51 points 1 week ago (4 children)

IT IS SOOOOO ANNOYING! I'M CONSTANTLY HAVING TO MANUALLY CHANGE YOUTUBE'S LANGUAGE SINCE I WATCH VIDEOS IN TWO LANGUAGES LOL WHO IN THEIR RIGHT MIND THOUGHT THAT WAS A GOOD IDEA?

The translated titles are ok-ish, I've seen some funny mistranslations but most of the time it's understandable. But the auto-dub is actually unwatchable. Not only is it absolutely terrible both in terms of translation and actual watching experience, you also can't turn it off? What the hell man...

[–] beegnyoshi@lemmy.zip 3 points 1 week ago (2 children)

I see bazzite mentioned a lot here, but wasn't there a post here a while ago saying that it might stop existing if fedora pushes through with the decision to ditch 32bit support? Did they decide not to do it after all?

[–] beegnyoshi@lemmy.zip 6 points 2 weeks ago* (last edited 2 weeks ago)

Makes sense, that was about what I thought, unfortunately. Online discourse made it seem to me like the Epstein files would be worth something once they came out, but if that's the only thing stopping him from modifying and publishing them, they're likely going to have been tampered with and thus not be trustworthy at all

 

I don't see why he wouldn't simply lie

11
submitted 3 weeks ago* (last edited 5 days ago) by beegnyoshi@lemmy.zip to c/nix@programming.dev
 

Hey all. Last time I searched about how to make LazyVim "just work" in nixos (which it didn't mostly because of mason and treesitter) was a few years ago, so maybe if I were to try to do it again nowadays I would find a better solution but anyway.

When I first switched to nixos, I already had my neovim config, and I wanted it to just work in my new system. I didn't want to rewrite it in nix or manually install treesitter grammar packages or lsps. Alas, due to nixos not following FHS, it didn't work.

So, a few days ago, here's what I seem to have found as a solution: Adding this:

      (pkgs.buildFHSEnv {
        name = "nvim";
        multiPkgs = pkgs:
          with pkgs; [
            libz # For codelldb to work
            icu # For marksman to work
          ];
        targetPkgs = pkgs:
          with pkgs; [
            neovim
            # Whatever other things you need inside neovim
            gnumake # for compiling some plugins
          ];
        runScript = "nvim";
      })

To my environment.systemPackages.

Note that I wasn't using steam-run because I remember I got a ton of errors when I tried it a few years ago, though it seemed to work normally when I tried it just now. I still think that this is a better way to go about it than to use steam-run nvim every time, though. I also haven't tested this all that much, so it might have some sort of caveat I have yet to discover.

Hopefully this post helps someone.

Edit: Added icu for marksman

view more: next ›