Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)PO
Posts
43
Comments
405
Joined
8 mo. ago
Mildly Infuriating @lemmy.world
potentiallynotfelix @lemmy.fish

EBay binding arbitration

  • What if your family member deliberately molested a young child, would you not want to get that child help? Even if you refused to tell the police, you would need to tell someone related to that child and 99/100 cases would result in them reporting the abuse to police.

  • Piracy: ꜱᴀɪʟ ᴛʜᴇ ʜɪɢʜ ꜱᴇᴀꜱ @lemmy.dbzer0.com
    potentiallynotfelix @lemmy.fish

    Replacing a shut down apple music downloader

    Recently my music downloader of choice yams.tf shut down. It was the only place I got music out of convenience. It's the only apple music ripper on fmhy. Now, I can't get new music and lyrics. I'm looking for a solution to this, whether that be self hosting(I only do FOSS) or a better downloader. Just note that I value organization and consistent file metadata.

    Thank you very much for any suggestions.

  • I can only 15% agree, this is true for certain things like cancer where we have found ways to mitigate the risk of death but haven't cured it, as well as certain other chronic illnesses. But for plenty of things you would go to a doctor for, they have a solution.

  • Here's an idea: get an old phone supported by lineageos and just don't install any apps or even f-droid. This is essentially a modern iphone 1(the first). Not totally dumb but dumb enough to not be a distraction.

  • My best guess is something related to a difference temperature causing us to perceive taste a bit different. If you're drinking tea outdoors, it's probably colder outside than if you're drinking it indoors.

  • techsupport @lemmy.world
    potentiallynotfelix @lemmy.fish

    MacBook Pro refuses to turn on

    Hey all, I'm having an issue with my ~2009 MacBook Pro that refuses to turn on, and I could really use some help. Here are the details:

    Symptoms:

    The MacBook Pro doesn't turn on at all.

    The charger stays green, even with the battery in.

    When I connect the battery, all the battery indicator dots flash on, then turn off.

    The MagSafe connector shows 12V on the pins, so the charger seems to be supplying power.

    I’ve removed the battery, and the issue persists.

    The battery appears to have a swelling issue.

    Troubleshooting so far:

    SMC & NVRAM Reset: Tried both, but still no luck. What should be noted though is that when I do an SMC reset for a few seconds the battery level indicator light will flash at one bar as if the battery is empty. This only happens when the batteries are moved.

    Charger Works: I’ve tested the charger with another MacBook, so I know it’s functioning properly.

    Battery Removed: Even with the battery taken out, it still won’t power on. Also note that the battery

  • Not only that, but they make popular watches(forerunner, fenix, instinct) and outdoor devices like their inreach satellite communicator and gps handhelds. They also make automotive, marine, and aviation gear for navigation.

  • HipHopHeads @sopuli.xyz
    potentiallynotfelix @lemmy.fish

    Mozzy - UNDER OATH (Official Video)

    Mildly Infuriating @lemmy.world
    potentiallynotfelix @lemmy.fish

    Roku TV requires internet connection to EDIT THE HOMEPAGE

    I refuse to connect this TV to the internet because if it does get connected it will force an update that says unless you agree with forced arbitration your TV will be unusable. I just want to change the HDMI slot 2 spaces over 🤦. Gargle my nutsack Roku.

    Linux @lemmy.ml
    potentiallynotfelix @lemmy.fish

    Modern heads equivalent

    I want a Tails-like LiveUSB OS like tails, but without the tor reliance. Does anyone have a suggestion? Heads is dead, last release 2018, but it resembles what I am looking for.

    Mildly Infuriating @lemmy.world
    potentiallynotfelix @lemmy.fish

    This fucking bot is still out there messaging

    I've seen this bot here since January, and the fucking thing still doesn't let up.

    Firefox @lemmy.ml
    potentiallynotfelix @lemmy.fish

    Is Fennec on F-Droid impacted by mozilla tos changes?

    No Stupid Questions @lemmy.world
    potentiallynotfelix @lemmy.fish

    Am I stroking it in my sleep?

    Just had this thought, am I stroking it in my sleep when I'm having a wet dream? Or is it automatic?

    birding @lemmy.world
    potentiallynotfelix @lemmy.fish

    Bird on the power line

    Stable Diffusion @lemmy.dbzer0.com
    potentiallynotfelix @lemmy.fish

    Type

    Linux @lemmy.ml
    potentiallynotfelix @lemmy.fish

    Can only forward SSH from virtual network, but can't forward jellyfin or nginx.

    Here's an outline of the goal of my setup:

    Guest VM 0(in NAT): 192.168.101.100:80 --> Host: 192.168.86.73:8080

    Guest VM 1(in NAT): 192.168.101.85:8096 --> Host: 192.168.86.73:8081

    Guest 1&0: 192.168.101.100:22 --> Host: 192.168.86.73:2222

    I want to forward jellyfin from a vm to a host. Unfortunately, jellyfin doesn't let me do that. Everything is alma linux.

    When going to 192.168.86.73:808(0,1) in a browser, I receive unable to connect, and when I wget it, I get Connecting to 192.168.86.73:8080... failed: No route to host.

    However, I can ssh into the vms from ports 2222 and 2223. This is different from my last issue where I couldn't access any ports at all, ssh or web.

    I set up a hook in /etc/libvirt/hooks/qemu according to this guide, which works for ssh but doesn't work for Jellyfin. I know jellyfin is working, because from my host machine I can run wget 192.168.101.100 and it returns t

    Linux @lemmy.ml
    potentiallynotfelix @lemmy.fish

    VM port forwarding issue with iptables

    Here's the setup:

    • Fedora 41 Server host
    • Libvirt/QEMU
    • Alma 9 guest running ssh

    My goal is to forward ports from the guest to the host, but change them. I set up a hook(as in the libvirt docs) and it worked on my last server. My hook looks like:

     undefined
        
    #!/bin/bash
    
    if [ "${1}" = "Jellyfin" ]; then
    
       # Update the following variables to fit your setup
       GUEST_IP=192.168.101.4
       GUEST_PORT=22
       HOST_PORT=2222
    
       if [ "${2}" = "stopped" ] || [ "${2}" = "reconnect" ]; then
        /sbin/iptables -D FORWARD -o virbr1 -p tcp -d $GUEST_IP --dport $GUEST_PORT -j ACCEPT
        /sbin/iptables -t nat -D PREROUTING -p tcp --dport $HOST_PORT -j DNAT --to $GUEST_IP:$GUEST_PORT
       fi
       if [ "${2}" = "start" ] || [ "${2}" = "reconnect" ]; then
        /sbin/iptables -I FORWARD -o virbr1 -p tcp -d $GUEST_IP --dport $GUEST_PORT -j ACCEPT
        /sbin/iptables -t nat -I PREROUTING -p tcp --dport $HOST_PORT -j DNAT --to $GUEST_IP:$GUES
      
    Mildly Infuriating @lemmy.world
    potentiallynotfelix @lemmy.fish

    New Youtube Web Update Requires HTML5 Canvas

    A recent Youtube Web update has added a canvas whenever the seek bar is visible, an HTML5 canvas pops up. This was not asked for and not needed. If you disable canvases for privacy, this will cause a horrific red bad to cover half the screen until you hide the seekbar. Canvases can be used for fingerprinting, which I'm sure Google is doing here.

    Asklemmy @lemmy.ml
    potentiallynotfelix @lemmy.fish

    If you could only go to one time zone for the rest of your life, what would it be and why?

    Mildly Infuriating @lemmy.world
    potentiallynotfelix @lemmy.fish

    This guy decided to "redact" his comment which probably solved my issue

    I get moving from reddit but just leave your comments up, this just made me have to do guesswork based on OP's reply.

    Open Source @lemmy.ml
    potentiallynotfelix @lemmy.fish

    TIL the NSA created SELinux and various other FOSS projects

    Firefox @lemmy.ml
    potentiallynotfelix @lemmy.fish

    TIL about the Book of Mozilla

    Firefox @lemmy.ml
    potentiallynotfelix @lemmy.fish

    Mozilla Fakespot - An AI Deepfake Detector

    Warning! This may be collecting data for advertising. From the Privacy Policy:

    We may use personal information to tailor and provide you with content and advertisements. We may provide you with these materials as permitted by applicable law.

    Some of the ways we may market to you include email campaigns, custom audiences advertising, and “personalized advertising” or “targeted advertising,” including through cross-device tracking.

    If you have any questions about our marketing practices or if you would like to opt out of the use of your personal information for marketing purposes, you may contact us at any time as set forth in "Contact Us" below.

    Linux @lemmy.ml
    potentiallynotfelix @lemmy.fish

    Bluetooth issues

    Using latest fedora 41 with Plasma Mobile, I can't get Bluetooth to work. Nothing shows up running bluetoothctl list. It's an intel wireless 7265, which shows up as a network controller under lspci, but the bluetooth part doesnt. hciconfig returns nothing.

    Steps I've taken:

    sudo modprobe bluetooth

    sudo dnf install bluez bluez-utils

    sudo systemctl start bluetooth

    I'm having deja vu where I followed all these steps before, but somehow I'm stuck here. Thank you for any help.