doomsdayrs

joined 8 months ago
MODERATOR OF
[–] [email protected] 7 points 2 weeks ago* (last edited 2 weeks ago)

I own a Dell Latitude 5290 2-in-1.

I've used Fedora for years on it, Recently swapping to Fedora Atomic. The only downside is the camera not working.

I got it off EBay with no SSD for like, $320, then the SSD + Keyboard + Pen brought it to $400. (2019/2020) (It is now being sold about $200 altogether in some listings).

I also spent money on a replacement battery a few years later (another $40), accidentally broke the screen (another $50).

It was worthwhile, this laptop, while the CPU is aging, has been enough to power my development, light gaming, and work needs for years.

Fedora with GNOME makes it relatively easy to use with 150% scaling, 200% also works but feels a bit crowded.

You can use waydroid for Android apps, although I do not recall if the touchscreen nputted correctly / consistently for it.

[–] [email protected] -1 points 3 weeks ago

Oh god no not Matrix

[–] [email protected] 3 points 3 weeks ago (2 children)

Why would you sign it?

[–] [email protected] 3 points 3 weeks ago (1 children)

Ooo, Salty Sausage or Savory Sausage?

[–] [email protected] 6 points 3 weeks ago (3 children)

I love pineapple, the sweetness goes great with other savory toppings.

[–] [email protected] 3 points 3 weeks ago

Ah I don't miss those days.

I swapped to using Atomic distributions, no more shenanigans.

[–] [email protected] 3 points 3 weeks ago (2 children)

Fedora Atomic (Fedora Silverblue).

You can choose the KDE spin if you want.

Bazzite is Fedora Atomic but for a more gaming focus.

[–] [email protected] 17 points 3 weeks ago

I find comments questioning Lina to be incredibly sus in origin and intention.

I hope Lina & Cyan are safe.

[–] [email protected] 4 points 3 weeks ago

Didn't they literally invite Bibi to Moscow the other week?

[–] [email protected] 69 points 3 weeks ago* (last edited 3 weeks ago) (3 children)

RIP Asahi Linux.

Fuck off to all the fascists ruining OSS.

[–] [email protected] 3 points 3 weeks ago

I've caught bots before with the whole "disregard all previous instructions".

[–] [email protected] 7 points 3 weeks ago

Ublock origin likely is missing.

You'll need to describe "won't let me install" more.

 

Like, if its collapsed, do I file? Do I even have to?

I am most certainly going to pay my state tax, but then what? What about stuff like my social security funds?

(I am asking for others because we're at that point now I suppose)

 

It costs over a thousand USD to take some ocean liners.

What are alternative ways that are cheaper, and how would one go about it?

(No planes)

For context, I know someone who went from China to California by freight ship in the 1990s by bribing the captain with beer and their cooking skills.

 

About 20 days ago, I had made a blog post about an idea I had for a better federated search engine model.

It didn't take much time for it to develop into a thing I am fixated on.

I am putting the code out, its not ready or working, but it is something I am really happy to make and has filled my time with joy designing.


My current plan is the following:

  1. Get the basic web-ring creation process down
  2. Get scraping jobs functional
  3. Provide a basic query system
  4. Implement basic user accounts
  5. Implement basic federation
  6. Implement basic moderation

Once I am done with the core features that I have in mind, I will start working on adding more features and quality of life improvements.


Some features I want to work on to make this software more enticing to administrators:

  1. The ability to customize what is publicly accessible.
  2. The ability to edit the pages HTML style on the fly, without having to recompile.
  3. Containers for easy deployment.

In regards to application design, I am taking pages from my book in developing Android applications, along with cherry-picking from projects @[email protected] made.

  1. MVC design, with static pages to provide the fastest loading experience for users
  2. Bootstrap to make the pages responsive for any device
  3. Diesel to abstract database interaction and migration.
  4. Handlebars for view templating
  5. Axum as the HTTP core

Hopefully these design decisions make my application as debt free as possible.


If you have any advice or suggestion, please do give, I want to know how I can do better or avoid common pitfalls for newcomers!

If you have criticisms, please be constructive and have empathy towards the fact of me doing this because it makes me happy.

 

cross-posted from: https://lemmy.ml/post/25355693

Greetings!

A friend of mine wants to be more secure and private in light of recent events in the USA.

They originally told me they were going to use telegram, in which I explained how Telegram is considered compromised, and Signal is far more secure to use.

But they want more detailed explanations then what I provided verbally. Please help me explain things better to them! ✨

I am going to forward this thread to them, so they can see all your responses! And if you can, please cite!

Thank you! ✨

 

Greetings!

A friend of mine wants to be more secure and private in light of recent events in the USA.

They originally told me they were going to use telegram, in which I explained how Telegram is considered compromised, and Signal is far more secure to use.

But they want more detailed explanations then what I provided verbally. Please help me explain things better to them! ✨

I am going to forward this thread to them, so they can see all your responses! And if you can, please cite!

Thank you! ✨

 

I've been trying to figure this out for over a year now.

This is my latest concept that I'll try to make.

What do you all think?

 

It's 2025, let's talk Albany!

25
submitted 4 months ago* (last edited 4 months ago) by [email protected] to c/[email protected]
 

I have a "Dell Inc. Latitude 5290 2-in-1", and it comes with a stereo microphone array that, by default, has a gain that is way too extreme.

A value of 100% is screeching / over-blasted to any listener, while a value of 25% is most reasonable.

Thus, I wanted to limit the gain of the microphones through PipeWire.

I created the following WirePlumber configuration file.

# For "Dell Inc. Latitude 5290 2-in-1"
# The analog input array is way too loud

monitor.alsa.rules = [
  {
    matches = [
      # This matches the value of the 'node.name' property of the node.
      {
       	node.name = "alsa_input.pci-0000_00_1f.3.analog-stereo"
      }
    ]
    actions = {
      update-props = {
        node.description        = "Dell Latitude 5290 2-in-1 Stereo Microphone"
        channelmix.min-volume   = 0.0
        channelmix.max-volume   = 0.25
        channelmix.normalize    = true
      }
    }
  }
]

I know this is applying to the correct node, because executing wpctl status shows that the node description has been properly changed.

The problem is that the "channelmix.max-volume" is not applied as I expect it to be. I expect it to make it so that 25% max volume is the new 100%, Instead it seems to do nothing.

What am I doing wrong, and how can I achieve what I want?

Edit 1: Channel Mix is working, but it seems the "Volume" as of wpctl get-volume is referring to gain. Essentially Channel Mix is making it quieter, but the gain because of "Volume" is nonsensical.

Edit 2: RedHat developer says there isn't support for thatcurrently :( https://fosstodon.org/@wtay/113532113977083665

Edit 3: EasyEffects is not the solution here, This is a lower level issue, not something done via an affect to the audio stream. EasyEffects cannot "undo" gain changes.

 

I have cotton socks, and they are really ruff to wear, and I stopped wearing them when I started to suspect that they were causing chaffing on parts of my feet.

Are there ways to make them softer, are my socks bad, do I only have the choice of polyester socks???

 

Let's keep things simple two rules.

  • No giving sentience, This is a no brainer issue.
  • Let's keep it to beings under the Animilia kingdom. "mutated virus/bacteria" is a common trope.

To start:

Let's modify ants to have lungs.

Most insects are constrained by the amount of oxygen they can acquire through their exoskeleton.

Imagine how big they can get if they didn't have that constraint?

view more: ‹ prev next ›