luciferofastora

joined 1 year ago
[–] luciferofastora@lemmy.zip 1 points 22 hours ago

...by having actual experts feed her sensiblr answers, demonstrating a good politician's critical judgement of her own limits and trust in the subject matter expertise of others for good decision making

[–] luciferofastora@lemmy.zip 5 points 1 day ago (1 children)

Are you trying to argue that laws and treaties are worthless unless enough people abide by them and are willing to enforce them?

Because, yes, that is the fundamental principle of society: We need to work together to survive and thrive, so we agree on rules by which we work, and enforce them on those that break them. If you disagree with something but take no steps to oppose it, your disagreement is just as worthless as a law nobody cares to enforce.

So what point are you trying to make here? "If China enforced their claim and nobody stopped them, their claim would be effectively valid"? How is that relevant to the situation if all they're doing is protesting, but nobody else cares to back them up and they don't actually take measures to prevent the passage?

"If I put pineapple on my Pizza and nobody stops or punishes me, it's legal"? Yes. Congrats. You understood the very basics. Want a sticker?

[–] luciferofastora@lemmy.zip 2 points 1 day ago

Got into that with my MIL once.

When confronted with the idea of leaving an emergency lane in a traffic jam, she also vehemently insisted she'd never done that.

That woman shouldn't drive.

[–] luciferofastora@lemmy.zip 18 points 2 days ago

This post gave me cancer.

[–] luciferofastora@lemmy.zip 13 points 2 days ago

XcQ, link stays blue

[–] luciferofastora@lemmy.zip 6 points 2 days ago

That's the old TV show host shining through, whose only concern is the size of the audience. His "show" not drawing a huge crowd kicked the attention-addict right in the self-esteem and he's still pissed enough that even his delusion can't mask it.

[–] luciferofastora@lemmy.zip 1 points 2 days ago

No billionaire wants to lose profits

[–] luciferofastora@lemmy.zip 5 points 2 days ago

A specialist in one field isn't necessarily adept in another, and particularly coming from STEM to humanities seems a particularly treacherous transition because so much about humans is based on premises that cold, logical STEM principles just aren't aware of. That doesn't mean we STEMs are stupid, we just don't know just how much there is that we don't know and would need to know before we can understand, let alone predict human behaviour.

I know I've found myself grossly misjudging human reactions in some case because humans are complex and there are so mamy premises and factors affecting individual behaviour and so many more for collective behaviour that they're effectively non-deterministic and even predicting the probabilities requires such familiarity with the people or demographics, respectively.

All that is to say: Yes, I think so too. She's well-educated, but not above tripping over the same, common stone that many smart people have stumbled on.

[–] luciferofastora@lemmy.zip 4 points 2 days ago

Hereabouts*, the lanes each have a sign with their number. Glows red = closed, glows green = open. Super convenient, and I've seen it across multiple store chains, so it's not like it's only one store doing it.

*Southern Germany, observed across different cities, though I can't vouch that it is universal

[–] luciferofastora@lemmy.zip 3 points 2 days ago* (last edited 2 days ago)

I see more atheistmemes on All than I do religious stuff.

This is a joke, most likely, given the community and context.

[–] luciferofastora@lemmy.zip 8 points 2 days ago

But we gave him a nice little prison stay to write his manifesto in! Surely he learned his lesson and won't attempt to overthrow democracy again, right?

...right?

 

My Objective:
Repurpose an obsolete OS Filesystem as pure data storage, removing both the stuff only relevant for the OS and simplifying the directory structure so I don't have to navigate to <mount point>/home/<username>/<Data folders like Videos, Documents etc.>.

I'm tight on money and can't get an additional drive right now, so I'd prefer an in-place solution, if that is feasible. "It's not, just make do with what you have until you can upgrade" is a valid answer.


Technical context:

I've got two disks, one being a (slightly ancient) 2TB HDD with an Ubuntu installation (Ext4), the second a much newer 1TB SSD with a newer Nobara installation. I initially dual-booted them to try if I like Nobara and have the option to go back if it doesn't work out for whatever reason.

I have grown so fond of Nobara that it has become my daily driver (not to mention booting from an SSD is so much faster) and intend to ditch my Ubuntu installation to use the HDD as additional data storage instead. However, I'd prefer not to throw away all the data that's still on there.

I realise the best solution would be to get an additional (larger) drive. I have a spare slot in my case and definitely want to do that at some point, but right now, money is a bit of a constraint, so I'm curious if it's possible and feasible to do so in-place.

Particularly, I have different files are spread across different users because I created a lot of single-purpose-users for stuff like university, private files, gaming, other recreational things that I'd now like to consolidate. As mentioned in the objective, I'd prefer to have, say, one directory /Documents, one /Game Files, one /Videos etc. on the secondary drive, accessible from my primary OS.


Approaches I've thought of:

  1. Manually create the various directories directly in the filesystem root directory of the second drive, move the stuff there, eventually delete the OS files, user configs and such once I'm sure I didn't miss anything
  2. Create a separate /data directory on the second drive so I'm not directly working in the root directory in case that causes issues, create the directories in there instead, then proceed as above
  3. Create a dedicated user on the second OS to ensure it all happens in the user space and have a single home directory with only the stuff I later want to migrate
  4. Give up and wait until I can afford the new drive

Any thoughts?

 

My use case is splitting audio into separate channels in OBS for Twitch Streams so I can play music live without getting my VoDs struck. If my approach is entirely wrong for the use case, I'm happy to scrap the whole thing and sign it off as learning experience.

My solution is to use virtual sinks that I record through Audio Sources in OBS. I've got two loopback-devices (config at the end) with media.class = Audio/Sink, assign my playback streams to the relevant output capture.
The loopback of each is then passed on to the common default (physical) output device, namely my headphones.
So far, this has been working great for me, aside from minor inconveniences:

The first is that I want certain apps or playback streams to automatically be assigned to the capture sinks upon starting the app.
I had a working pulseaudio¹ setup on Ubuntu where I used pavucontrol to set the output once per app and it remembered that setting. Every time I opened that app, it would direct its playback streams to that sink.
I migrated to Nobara and opted to try configuring pipewire (directly)² instead. The devices are created correctly but every time I (re-)start a relevant app I have to go set its capture device again.

The second is that occasionaly upon logging in, one loopback stream will initially be passed to the other sink instead of the default output, which resolves upon restarting pipewire³. Is something wrong with my config?
Both have the same target.object and restarting it fixes it, so I'm guessing it may be some race condition thing where the alsa_output isn't initialised at startup yet, but I don't know how to diagnose or fix that


1: I have since learned that apparently it's actually still pipewire parsing that config, but the point is I configured it through ~/.config/pulse/default.pa

2: ~/config/pipewire/pipewire.conf.d/default-devices.conf

3: Trying to set it in pavucontrol doesn't work and keeps resetting that playback's output to the given sink if I try to select the correct capture device. Repatching them in Helvum does the job, but then pavucontrol just shows blank for the device (doesn't interfere with controlling the volume, but maybe it's relevant for diagnosing)


My current ~/.config/pipewire/pipewire.conf.d/default-devices.conf:

context.modules = [
    {   name = libpipewire-module-loopback
        args = {
            audio.position = [ FL FR ]
            capture.props = {
                media.class = Audio/Sink
                node.name = vod_sink
                node.description = "Sink for VoD Audio"
            }
            playback.props = {
                node.name = "vod_sink.output"
                node.description = "VoD Audio"
                node.passive = true
                target.object = "alsa_output.pci-0000_00_1b.0.analog-stereo"
            }
        }
    }
    {   name = libpipewire-module-loopback
        args = {
            audio.position = [ FL FR ]
            capture.props = {
                media.class = Audio/Sink
                node.name = live_sink
                node.description = "Sink for Live-Only Audio"
            }
            playback.props = {
                node.name = "live_sink.output"
                node.description = "Live-Only Audio"
                node.passive = true
                target.object = "alsa_output.pci-0000_00_1b.0.analog-stereo"
            }
        }
    }    
]
view more: next ›