g_damian

joined 1 year ago
[โ€“] g_damian@lemmy.world 15 points 1 week ago (1 children)

Kbin no run

 

"Incorrect response. Please refresh the page."

I have attempted 10 captchas in a row, but to no avail. Each time, the response is marked as incorrect. The login issue is only part of the problem. When I try to redeem a freebie on my account, I encounter the same captcha issue. This persists regardless of whether I am using a VPN or not. It's becoming extremely frustrating.

[โ€“] g_damian@lemmy.world 3 points 2 months ago

It depends if your reverse proxy is inside your home network or outside. It should work without any other configuration if you forward ports 80&443 from external domain with something similar to rathole and configure reverse proxy inside home network.

This is not an answer to your question about using the same url, but see this article, it might be helpful. Tl;dr: mdns + reverse proxy.

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

For example, I set firefox to some custom sink using pavucontrol, but now I want to reset it to default. How can I do this without using pavucontrol, just cli?

EDIT:

Found it :) they are in ~/.local/state/wireplumber/restore-stream. To remove target sink, pipewire and wireplumber have to be restarted:

systemctl --user stop pipewire
sed -i '/:target/d' ~/.local/state/wireplumber/restore-stream
systemctl --user start wireplumber

Other solution is just to reroute all active streams to the default sink:

sink="$(pactl get-default-sink)"
pactl list short sink-inputs | sed -r 's/([0-9]+).*/\1/' | while read appId; do 
    pactl move-sink-input $appId "$sink"
done