[-] meekah@lemmy.world 3 points 3 days ago

Sounds like you're just not big on bananas

[-] meekah@lemmy.world 5 points 3 days ago

Was it one of those automatic toasters? Technology connections made a video on it.

[-] meekah@lemmy.world 7 points 3 days ago

I like to make banana milk with those really brown bananas. In fact, I let them age just so they are nice and sweet.

I take 1 or 2 bananas, break them in chunks and put them in a measuring cup that holds around 1L, add a bit of vanilla extract, fill with milk to cover banana chunks, blend with a stick blender until smooth, fill milk to the top, blend a bit more just to mix everything, done. Serves one (me) or two (regular) people.

[-] meekah@lemmy.world 1 points 3 days ago

Days? Try hours.

[-] meekah@lemmy.world 4 points 3 days ago

So you like 'em young and hard?

Sorry.

[-] meekah@lemmy.world 8 points 3 days ago

Honestly sounds delicious

[-] meekah@lemmy.world 0 points 6 days ago* (last edited 6 days ago)

Theres a difference between addicts and junkies. Junkies have my empathy but I really understand why someone wouldn't want to spend prolonged times in the same space with one.

[-] meekah@lemmy.world 1 points 6 days ago
[-] meekah@lemmy.world 48 points 5 months ago* (last edited 5 months ago)

A few years ago I moved to a new city but hadn't had any luck dating. One day I matched a girl on some online dating site who immediately started sexting aggressively. Usually I'm the more intimate type, but I thought that I hadn't had sex in a while so I went for it.

She took the lead and started giving me head, which wasn't so bad honestly. But I just couldn't get into it. When she rode me I didn't get fully limp, but I wasn't really hard either. At some point she apparently came (or just got bored of my dead fish impression) and I pretty quickly packed my things and left.

That day I learned I really need some type of emotional connection with a person before having sex works for me.

222
submitted 6 months ago by meekah@lemmy.world to c/cat@lemmy.world

He's such an idiot sometimes. I love him

30
submitted 6 months ago* (last edited 6 months ago) by meekah@lemmy.world to c/linux@lemmy.ml

Edit: sadly, Auto Tab Discard did not fix my issue. Firefox is also set to block audio (including video with audio to my understanding) by default, which I never changed so I don't think that helps with this issue either.

So I installed pop on my laptop a few months ago, and recently got another one where I installed arch. On both laptops I mostly just watched series, and often times I'd just leave the laptop with the media player still open.

Now to the issue: Randomly throughout the day, it would just start playing whatever I left open, usually after a few hours of being left alone. Now that I think about it, I think it was only crunchyroll. Does anyone experience anything similar, or might even have an idea as to how to fix this or what causes this? Is it just crunchyroll being buggy?

[-] meekah@lemmy.world 48 points 6 months ago

Idk, I don't think creating a Spotify playlist is taking things seriously at all

286
submitted 6 months ago by meekah@lemmy.world to c/cat@lemmy.world

I was thinking about some raw fish or something like that, he seems to really like salmon. Any suggestions or things to watch out for?

32
submitted 6 months ago* (last edited 6 months ago) by meekah@lemmy.world to c/linux@lemmy.world

I use KDE on arch and would like to achieve the following behavior:

Whatever way I launch Konsole, I want it to check whether there already is a Konsole instance. If one exists, it should be brought into focus, and if no instance exists, one should be launched.

I am unable to find such an option in the Konsole settings, even though I found a roughly 1 year old forum entry mentioning such a setting. Was it removed or am I just blind? Or do I need some optional dependency?

Alternatively, it would be fine if this could simply kick in when I use my Super+K shortcut, which I've set up. Maybe there's a way to call Konsole from the terminal like that? I tried using konsole --force-reuse but it didn't seem to do the trick, and konsole --new-tab does not bring Konsole into the foreground.

Edit: Here's a script that does this, by @Audalin@lemmy.world

#!/bin/bash
WIN="$(kdotool search --class org.kde.konsole | head -1)"
if [[ "$WIN" != "" ]]; then 
    kdotool windowactivate "$WIN"
else 
    konsole
fi

kdotool is available in AUR as kdotool-git

16
submitted 6 months ago* (last edited 6 months ago) by meekah@lemmy.world to c/linux@lemmy.world

I recently bought a Drop ENTR, and I would like to use the media keys. On the drop.com website it says that using FN + the F-keys should work, but “Fn hotkeys may work with Windows operating system only.”. Well, for me it doesn’t work. Any ideas as to why that could be, or how I could go about creating a workaround?

obligatory I use arch btw

24
submitted 6 months ago* (last edited 6 months ago) by meekah@lemmy.world to c/linux_gaming@lemmy.world

I have 2 relevant drives. The system drive, and a drive with my game files. The drive with the game files is mounted. However, it is not displayed under "Other devices" and I am unable to select it from /dev/

Installed it using yay from AUR (aur/heroic-games-launcher-bin 2.14.1-1).

Any ideas as to what may be causing this, or how to go about troubleshooting?

[-] meekah@lemmy.world 71 points 9 months ago* (last edited 9 months ago)

That kinda mentality is why america has the most people in prison per capita. Its the only way to rationalize the way the prisoners are essentially being enslaved. So by being commercially productive, people with money (read: with power) will always work to increase the number of prisoners.

12
submitted 11 months ago* (last edited 11 months ago) by meekah@lemmy.world to c/linux@lemmy.ml

I am pretty new to linux so please excuse any foolish mistakes.

I am trying to manually install gpu-screen-recorder(GSR) to get rid of an annoying password prompt that I can't seem to disable in the flatpak version. I know there must be some way to do it because this prompt didn't show up on Pop!_OS, but maybe it's just not possible on Nobara KDE/Fedora. I noticed in the install.sh of GSR, that setcap cap_sys_admin+ep is called on the executable. So if you know any way of replicating something like that for flatpaks that is simpler than installing GSR manually, feel free to let me know.

I tried checking the dependencies listed, but was unable to figure out how to really make sure they are installed and accessible for GSR.

For example: I tried checking for libglvnd by running dnf list libglvnd. Sure enough, it returns

Installed Packages
libglvnd.i686                                         1:1.6.0-2.fc38                                       @anaconda
libglvnd.x86_64                                       1:1.6.0-2.fc38                                       @anaconda

But then I tried checking for mesa, so I ran dnf list mesa. But it returned

Available Packages
mesa.src                                    23.2.1-1.fc38                                     nobara-baseos         
mesa.src                                    23.2.1-1.fc38                                     nobara-baseos-multilib

It says 'available packages', so not installed, right?

Well, glxinfo -B says I am using mesa 23.2.1, so it seems to be installed, I guess?

So, just assuming I had everything necessary, I cloned the repo and tried to just run install.sh. However, of course I get an error message: wayland-scanner: command not found.

I am a bit confused because I am running on wayland, and checked using loginctl show-session 1 -p Type.

How do I properly make sure the dependencies are available?

42
submitted 1 year ago* (last edited 1 year ago) by meekah@lemmy.world to c/linux@lemmy.ml

I understand they are important and are what makes linux relatively secure compared to windows.

However, when I boot my PC, I don't want to spend a whole minute to type my password into different promts that keep getting hidden behind other windows that are starting up. I am using Nobara KDE now, but previously when I was using Pop!_OS, none of these prompts showed up.

Currently I have 2 prompts after logging on. One for my keychain when discord autostarts, and one for flatpak when gpu-screen-recorder launches. Interestingly, discord works just fine, with auto logon, regardless of whether the keychain prompt gets canceled or filled with the password.

Any idea on how to get rid of them? I'd prefer if really only that startup prompt was gone, and it would still ask me for the password whenever it launches any other way.

4
submitted 1 year ago by meekah@lemmy.world to c/linux@lemmy.world

I recently switched to Linux. First I tried Pop_OS, and am now on Nobara. On both systems I have this issue, that when I open a YouTube video in a new tab, and immediately start fullscreen, it doesn't properly do it.

As you probably know, YouTube videos start playing before the whole page has finished loading. There are some placeholders for the title and description etc, but the actual text is still loading despite the video already playing. If I enter fullscreen during this moment, the browser enters full screen mode, but not the video/website.

What I remember happening on windows is that when the page finished loading, the video would enter proper fullscreen mode. Now, on Linux, that doesn't seem to work and the website just gets displayed regularly with the browser now in fullscreen mode.

Any ideas on what could cause this or how to troubleshoot this?

337
submitted 1 year ago by meekah@lemmy.world to c/cat@lemmy.world
[-] meekah@lemmy.world 44 points 1 year ago

really looking forward to getting another SSD and just installing linux on it so I don't have to deal with that kind of bullshit anymore. The bullshit I will be dealing with will not be privacy related, just compatibility related.

view more: next ›

meekah

joined 1 year ago