[-] luciferofastora@lemmy.zip 1 points 19 minutes ago

Bruh, imagine being in the shoes of that Lt Gen and having BoJo tell you to figure out if you could invade the Netherlands. Imagine the restraint it takes to not yell at him right there and then, to carry out a feasibility study in accordance with your orders, then to find a way to present it to him as merely a bad idea instead of a bloody insane one from the outset.

And then you get to worry that he might order its execution anyway and you'd have to start a political mess to avoid starting an international mess.

[-] luciferofastora@lemmy.zip 1 points 42 minutes ago

...contingent on having built that memory from years of practice. I don't know if there's any instrument I can imagine Trump playing, aside from tooting his own horn even when there's nothing to toot about.

[-] luciferofastora@lemmy.zip 1 points 15 hours ago

shut the fuck up, it's sarcasm

made me giggle

[-] luciferofastora@lemmy.zip 5 points 1 day ago

Thousand Sons*

Also, pretty sure that it comes with a permanent controlling enchantment subjugating them to the next Sorcerer

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

Can we have both? A concise textual description and a video exemplifying the features?

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

I say we let them hang with us. They're a little confused, but they're adorable enough.

Also, talesfromtechsupport effectively became talesfromtech because just tech support is to small of a niche to sustain a sub with content. Likewise, if we banned all the not-strictly-programming humour, I don't know the community will thrive still. It might drive out both content and viewers, and while it's arguably correct, I don't think it's wise.

I'd rather have it be something vaguely resembling the type of humour programmers tend to have than a little walled-off box with a big sign "NERDS ONLY"

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

Actually, that one I'll give a pass for its context: Cheats mixing in cheap materials with expensive ones, but demanding the full price as if the whole thing was made of the expensive one.

Now the bit in Numbers about the cursed water, that was a bit fucked up - you shouldn't have to secretly cheat on your husband just to get an abortion. Imagine someone catches you and you get put to death instead. And what if he doesn't suspect anything or doesn't give enough of a shit to charge you? Just too unreliable.

[-] luciferofastora@lemmy.zip 4 points 6 days ago

Depends on your metric of value. If someone will pay $1,000 for it, it's worth at least that much to them.

[-] luciferofastora@lemmy.zip 11 points 6 days ago

What gave it away? Ruining someone's entire life, taking all he loves, inflicting him with the worst pains a human can feel, just to prove "See? I told you he's my greatest bootlick"? Nuking an entire town and killing someone for the entirely human reaction of looking back at the home they left behind like some even more twisted version of Orpheus and Eurydike?

Or giving his creations curiosity, tempting their curiosity, enabling them to indulge their curiosity, then yelling at them, throwing them out, condemning them to mortality, inflicting suffering on them and all their descendants as punishment for their ancestors' curiosity who didn't even have the comprehension to know what they were doing was wrong?

Yes, I know that story is supposed to be a metaphor, but I have yet to find an explanation that doesn't make him look like an absolute twat.

30
submitted 2 months ago by luciferofastora@lemmy.zip to c/linux@lemmy.ml

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?

8
submitted 4 months ago* (last edited 4 months ago) by luciferofastora@lemmy.zip to c/linuxquestions@lemmy.zip

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"
            }
        }
    }    
]
[-] luciferofastora@lemmy.zip 55 points 11 months ago

When sexist objectification accidentally teaches a point against sexist objectification

[-] luciferofastora@lemmy.zip 57 points 11 months ago

I've got a joke about DB, but I'm not sure when it'll reach you

view more: next ›

luciferofastora

joined 1 year ago