Zangoose

joined 2 years ago
[–] Zangoose@lemmy.world 1 points 35 minutes ago

Fair enough. For me it gets most of the popup and in-page ads that would display on top of articles. I don't think it gets past paywalls but honestly I try not to read from paywalled sites anyway. Improving it to be more advanced would be nice though since I think right now it's just a simple toggle in settings.

[–] Zangoose@lemmy.world 0 points 10 hours ago

Xlibre is backed for the most part by the singular maintainer that was still willing to work on X11 who got kicked out for being too toxic and breaking existing code. For what it's worth, it also explicitly used MAGA language in its README for a while.

Phoenix is intended to allow for support of legacy software/DEs and provide a more modern/maintainable version of X11. It isn't trying to compete with Wayland, it's trying to live alongside it for environments that won't or can't move to Wayland. It also technically won't be a complete X11 implementation, as it's ignoring older portions of the protocol.

Neither option addresses the elephant in the room: The X11 protocol is still fundamentally broken in a lot of aspects. Multi-monitor support, especially when monitors aren't the same resolution, refresh rate, or physical size, is broken at a fundamental level. It will never work even as well as Windows, which is already an incredibly low bar to clear.

Wayland is slow moving, sure, but it is a much more stable base to work with than Xorg ever was. From a security, modularity, and extensibility standpoint, Wayland is a lot better. There is a reason most of the Xorg team developed a completely new protocol instead of just reimplementing X11 themselves.

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

Vanadium already has an ad blocker though?

[–] Zangoose@lemmy.world 2 points 3 days ago

It can be hit or miss, really depends on the bank. I'm in the US and mine worked fine after I enabled a compatibility setting in the app list, but that's kind of anecdotal. I think there is a community compatibility list somewhere of banking apps that work/don't work on GrapheneOS.

[–] Zangoose@lemmy.world 2 points 3 days ago

If you were able to install Bazzite then installing graphene shouldn't be any harder than that. It has a web-based installer that was pretty easy to use as long as you follow the instructions.

The pixel 8 will be supported through the end of 2030 (graphene support follows the same timeline as Google because of firmware-level updates that are still needed from them) so you could still get a lot of use out of it.

[–] Zangoose@lemmy.world 102 points 4 days ago (12 children)

GrapheneOS my beloved

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

Not just designed, lawnchair is a fork of the AOSP launcher which is why they look so similar. It's also partially why they have a comparatively slow development cycle, because they spend a lot of effort rebasing whenever AOSP's launcher has significant changes.

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

Lawnchair doesn't have a paid version, it's open source

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

Does it count when it's intentional? I feel like the PhoenixSC subreddit is just like that

[–] Zangoose@lemmy.world 10 points 2 weeks ago

It's a kernel compile parameter but most Linux distros have it turned off by default 😔

The only time I've ever seen it turned on was on my raspberry pi

[–] Zangoose@lemmy.world 10 points 2 weeks ago

They can also use live location data in an emergency situation,also using a court ordered subpoena.

What qualifies as an "emergency situation"? I imagine that definition could be stretched pretty thinly

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

If you want to be technical about it, there could (and probably are given OnePlus's security history) still be unpatched firmware bugs that will never get patched because OnePlus and Qualcomm have stopped supporting their CPUs which are that old.

Not saying anyone should turn their working phones into e-waste, only that you probably shouldn't treat it like it's perfectly secure either just because it's flashed with the newest Android. Be careful with any super sensitive logins like bank accounts and government sites.

15
submitted 5 months ago* (last edited 5 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?

 

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?

1494
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 ›