Zangoose

joined 2 years ago
[–] Zangoose@lemmy.world 3 points 16 hours ago* (last edited 5 hours ago)

My town has $20 million of debt in our education department alone that we didn't know about until this year after a board of education administration change 😭 so I think 10,000 might not make too much of a difference to them. That being said I'd probably donate to a local foodbank

[–] Zangoose@lemmy.world 2 points 1 day ago (1 children)

The problem with CachyOS is that it's arch-based, which is fine, but I wouldn't recommend it for people who aren't willing to deal with arch problems and be familiar (or willing to learn) using the CLI. I normally just point people to either mint or bazzite depending on how many games they play.

[–] Zangoose@lemmy.world 7 points 1 day ago

once installed, what everyone and their uncle forgot to mention during the rave reviews (and you kinda glossed over) is that a steam account is fucking mandatory. like, you can't even log in, switch to desktop mode, change resolution, nada. ...

This is not true. When you download the installer from their website there is a prompt asking you if you want a Desktop-first install or the Steam-mode first install. The desktop install boots directly into KDE or Gnome just like any other distro, and doesn't require a steam account, but will come with the steam launcher pre installed.

I get that it's not great UX to put install options like that in the website but If you're going to go on a long rant about how awful it is, please at least put a fraction of that effort into seeing if you're actually right.

If you chose to download the steam gaming mode version I think it's understandable that the expectation is that you have a steam account. The whole point of that mode to begin with is that it replicates the experience you'd get on the steam deck, so you can make your own home-console PC or install it on a handheld like the Lenovo or ASUS ones. It's not really designed around regular desktop use.

Side note, I haven't used it much yet but so far bazzite has been working fine on my i7 7700hq + 1050ti laptop with the same ram and storage as yours that I got because it couldn't run Windows 11. It should be about as powerful as yours, maybe slightly weaker on the CPU side and slightly better on the GPU side. Have you looked into it being maybe some weird driver issue with your laptop's power management? It could maybe have something to do with that.

[–] Zangoose@lemmy.world 6 points 1 week ago

I like the idea but I feel like it makes a lot of the endstone look almost greenish? It looks a little off to me

[–] Zangoose@lemmy.world 2 points 1 week ago

nixpkgs is still kicking off their build pipeline, they'll be here in 4 days

[–] Zangoose@lemmy.world 3 points 1 week ago (2 children)

The name "tapeworm" also predates the invention of tape. From what I can tell (Google search results) tape used to refer to any long, thin strip of material instead of just the sticky kind.

[–] Zangoose@lemmy.world 9 points 1 week ago

Does winboat have GPU support? Could be wrong but I was under the assumption that it works similarly to WinApps and can't have GPU passthrough to the virtualized windows install under the hood

[–] Zangoose@lemmy.world 1 points 1 week ago (1 children)

The Pixel 10 series' launch was at basically the same time as the release of Android 16, so they used a more-custom-than-normal android branch to get things working. That means that people haven't been able to get Pixel 10s booting on any regular AOSP images. GrapheneOS is kind of just stuck waiting until Google pushes the QPR1 update to AOSP.

[–] Zangoose@lemmy.world 2 points 1 week ago

Now that I think about it, every single one of your replies is generalizing Americans as a whole. Do you really think everyone thinks like that? Or are your interactions just limited to internet trolls, politicians, and media outlets? I'm saying this because I spent 4 years in public (government funded) high school learning about all of the atrocities we committed both internally and across the world, and I'm sure that barely scratched the surface. Most of the people I know don't idolize any historical figures in the US.

Let me put it this way. You're on lemmy.ca so I'm going to assume you're Canadian. If I started judging all Canadians based on what Alberta does, how would that make you feel? And what about the Inuit people? Canada and its leaders aren't exactly perfect either. Do you want me to start judging all Canadians based on something Trudeau (or any other leader for that matter) did?

Either way, don't bother responding to this because I'm starting to think you're responding in bad faith and I don't feel like wasting energy on this anymore. Have a good day o/

[–] Zangoose@lemmy.world 1 points 1 week ago (2 children)

Just because someone is underpaid doesn't mean they have nothing to lose. That's exactly why we're in the situation we are right now. People that are buying the propaganda obviously won't do anything about it, and even among people that don't, many aren't in the position where they'll be alright if they get wrongly deported, detained, injured, or even just sent to court. Good lawyers aren't exactly cheap and neither are medical bills.

Yes, the government here sucks and I don't want to be caught dead defending them (especially considering they would never defend me), but creating a divide between regular people is also exactly what they want because it helps them promote their naive nationalism. Attacking regular people isn't exactly a great way to get others to agree with your ideas. All it does is convey a sense of elitism and hostility.

[–] Zangoose@lemmy.world 2 points 1 week ago (6 children)

In my experience it's more of a "everyone is too overworked and underpaid to have time to fact check all of the political lies being thrown around." And the people that aren't overworked are either the ones trying to lead protests and voting movements, or the ones upholding the status quo because it benefits them. Definitely not as simple as "Americans hate having basic protections"

[–] Zangoose@lemmy.world 7 points 1 week ago

Generation proxmox?

15
submitted 2 months ago* (last edited 2 months ago) by Zangoose@lemmy.world to c/nix@programming.dev
 

I'm working on switching over to NixOS on my desktop and one of the last things I haven't got fully working is my neovim config. My LSP's are able to start, and all of them work fine except for clangd. For some reason, it can't find C/C++ header files for any installed libraries. I have all of the LSPs themselves installed through Mason in Neovim, and I have programs.nix-ld.enable = true enabled so they can be run correctly.

screenshot showing 'file not found' error on '#include <fcntl.h>'

screenshot showing 'file not found' error on '#include <SDL2/SDL2.h>'

Here is the shell.nix file I'm using for this project:

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell.override { stdenv = pkgs.gccStdenv; } {
  nativeBuildInputs = with pkgs.buildPackages; [
    glibc libgcc
    clang-tools libclang
    SDL2 SDL2_image SDL2_sound
  ]; 
  CPATH = pkgs.lib.makeSearchPathOutput "dev" "include" pkgs.glibc pkgs.SDL2 pkgs.SDL2_Image pkgs.SDL2_sound;
}

Is there something extra I need to do to get clangd to find the C headers being used by the project? when I actually run gcc it compiles fine, it just can't seem to find them correctly in Neovim

Edit: Forgot to mention that I'm using this shell with direnv and launching nvim directly from the same shell that I'm compiling from

 

I have a virtual source and a virtual sink which I'm using to forward audio to/from chat apps (Matrix, Discord, Zoom, etc.) so I can control the mic/output volume independently of everything else on my system. I have them setup and working fine using pipewire.conf.d files. The problem is that using wpctl to change volume requires having an ID, but those aren't static. Normally the solution would be to use @DEFAULT_AUDIO_SOURCE@ (or sink), but that wouldn't work in this case. Is there a way to adjust volume/toggle mute without having the ID? Or alternatively, is there a way to get the ID for a specific node name that I can put in a bash script?

If I'm asking this in the wrong place, is there a better place to go?

47
celeste rule (files.catbox.moe)
 

I wanted to see if video uploads work, I may have a few hours in celeste

7
submitted 1 year ago* (last edited 1 year ago) by Zangoose@lemmy.world to c/meta@programming.dev
 

My bytes.programming.dev's main feed is erroring again. It looks like everything else is loading fine, I just can't see anything on the timeline for some reason. Is it the same DB issue that was happening last time?

EDIT: I just checked and it seems like it's back

 
 

Source

Alt text:A screenshot from the linked article titled "Reflection in C++26", showing reflection as one of the bullet points listed in the "Core Language" section

 

Not really sure if there is a better place to put this, but is bytes.programming.dev having issues for anyone else? I can log in but my timeline doesn't load at all.

 

Credit to https://lemmy.world/post/18689927 for the original post

Alt text:

Me: mom can we have (Linux penguin)?

The rest of the meme is scribbled out and over it is one word, "Yes"

 

I'm trying out NixOS on my laptop right now and I'm loving it so far, but I was thinking of setting up distro box for ubuntu (mostly for a few developer environments dependent on it) and arch (for packages that aren't on nixpkgs yet). I was wondering about the battery life hit on a laptop and I couldn't find anything definitive on google/ddg. Has anyone here noticed a difference?

1462
Good luck web devs (lemmy.world)
submitted 2 years ago* (last edited 2 years ago) by Zangoose@lemmy.world to c/programmer_humor@programming.dev
 

Alt text:Twitter post by Daniel Feldman (@d_feldman): Linux is the only major operating system to support diagonal mode (credit [Twitter] @xssfox). Image shows an untrawide monitor rotated about 45 degrees, with a horizontal IDE window taking up a bottom triangle. A web browser and settings menu above it are organized creating a window shape almost like a stepped pyramid.

Edit: alt text

 

Alt TextA screenshot of a file manager preview window for my ~/.cache folder, which takes up 164.3 GiB and has 246,049 files and 15,126 folders. The folder was first created about 1.75 years ago with my system

 
view more: next β€Ί