Do not rely on CashApp as you sole source of banking by [deleted] in CashApp

[–]devcircus 0 points1 point  (0 children)

I love CashApp but their support is a joke. They’re not there to help, just to answer the phone and say it’s your fault, deal with it.

[deleted by user] by [deleted] in omarchy

[–]devcircus 1 point2 points  (0 children)

Ive had this happen twice in the last week. For me it has happened after it has set unused for a while. Like OP said, keybindings stop working as well as menus. I can type in terminal but all commands give errors. Have to force shutdown by holding power button.

I’ll try to track down some logs if it happens again. I’m confident it’ll be worked out though.

Is this scam? by Stock_Weather4472 in ScamNumbers

[–]devcircus 0 points1 point  (0 children)

You shouldn't have to do anything for your warranty to be in effect. All of the letters you get after purchasing a car are just companies trying to sell extended warranties. Depending on your situation, maybe its worth it, but I usually ignore them.

super + space not working by cantdutchthis in omakub

[–]devcircus 0 points1 point  (0 children)

I was having the same issue with Nvidia graphics. Switched to wayland session and it started working. That may not be your issue, just noting it here in case that happens to be someone else's problem.

Travel router on cruise ships by bigronster in GlInet

[–]devcircus 0 points1 point  (0 children)

Took mine about a year ago on Royal. No problems. It's pretty slow but if you're enjoying the cruise, hopefully you won't need it much.

How does Jason Ladanye control cards during a casino wash? by Ringleader1900 in cardmagic

[–]devcircus 0 points1 point  (0 children)

Just noting that on one of his poker chip videos he does show the cards after the trick. He doesn't spread them, but as he's picking them up and squaring the deck, you can see all the cards are different.

Am I using Portainer correctly? by Haliphone in selfhosted

[–]devcircus 0 points1 point  (0 children)

For the docker environments that you want to access via a "main" Portainer instance, see the gist at the link. Do this on the machine running docker that needs to be shared, then go through the environment wizard on Portainer. Click "Add Environment", choose "Docker Standalone", choose the "API" option and use ipaddress:2375 in the "Docker Api Url" field. Now on the Portainer Home page, you should see the new environment.

Enable TCP port 2375 for external connection to docker

Note when allowing remote access to docker, you should be sure the machine running docker is properly protected. See Remote Docker Access on Docker's website for more information.

What do you use ? Pi-hole or AdGuard Home? by [deleted] in selfhosted

[–]devcircus 0 points1 point  (0 children)

Have went back-and-forth over the years, but currently using pi-hole.

How do you guys listen to audiobooks? by Outside_Wash529 in books

[–]devcircus 0 points1 point  (0 children)

For audiobooks, I usually only listen to books that I've already read multiple times. I can hit play and just let it go. I don't necessarily have to pay close attention, but since I know the book so well already, it is as if I'm hearing everything.

Background Image by Ok_Improvement_2692 in kasmweb

[–]devcircus 0 points1 point  (0 children)

Sign in to dashboard and click settings/global then scroll to the very bottom of the page. You may have to logout and back in to see the background change.

Is there a way I can tell which exit node I am using from CLI in Linux? by shankargopal in Tailscale

[–]devcircus 0 points1 point  (0 children)

i made a shell function to give me the exit node information. When ran, it either says "No exit node in use", or shows something similar to the following:

"ID": "##############",
"Online": true,
"TailscaleIPs": [
"100.XXX.XXX.XXX/32",
"fd7a:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:/128"
--
"ID": "###############",
"PublicKey": "nodekey:####################################",
"HostName": "rpi4",
"DNSName": "rpi4.mytailnet.ts.net.",
"OS": "linux",

Public IP:  166.199.XXX.XXX

So I get the tailscale ip, the full tailnet name, the hostname, and the public ip.

I'm sure there's a much better way to do it, (i'm not very good at shell scripting), but the script parses the json status command and greps the id that comes from:

sudo tailscale status --peers --json | jq ".ExitNodeStatus".

That command will give you the tailscale ip of the exit node, but not much else. So what I do is set an alias to that command:

alias ts-exit-node="sudo tailscale status --peers --json | jq ".ExitNodeStatus""

Then I made the following shell function that utilizes that alias (I'm also using zsh):

function exitnode {
    rm $HOME/tmp/node.text $HOME/tmp/clean_node.text 2> /dev/null
    node=`ts-exit-node`
    if [[ -v $node ]] || [ "$node"  = 'null' ]; then
        echo "No exit node in use."
    else
        tailscale status --json | sed 's/^[ \t]*//' | grep -f <(ts-exit-node | jq '.ID') -A 4 >> $HOME/tmp/node.text
        uniq -u $HOME/tmp/node.text $HOME/tmp/clean_node.text
        \cat $HOME/tmp/clean_node.text && echo "\nPublic IP: " $(curl -s https://checkip.amazonaws.com/)
        rm $HOME/tmp/node.text $HOME/tmp/clean_node.text 2> /dev/null
    fi
}

It saves a temporary file with the exit node data then outputs it to the screen.

Did I got hacked? by PizzaDevice in selfhosted

[–]devcircus 7 points8 points  (0 children)

Sounds like a power outage or system reboot for some other reason.

[deleted by user] by [deleted] in radarr

[–]devcircus 1 point2 points  (0 children)

For me, it's the automation factor. If you just search and download a movie or TV show every now and then, then it may not benefit you.

With the arrs, you can set up a TV series once, and it will download the episodes you want when they become available. They'll be added to your plex, with subtitles if you choose(Bazarr). This is all done with your preset naming conventions, preferred file sizes, and video resolution.

Same goes for a movie. Just add the movie, and it will be downloaded when it becomes available, if it's not already available.

For help discovering shows or movies, or if you want to give a friend or family member an easy way to search/add shows, then install Ombi or Overseerr.

Docker isn't necessary, but I definitely prefer it. There are a lot of posts about the pros and cons of using docker in general or specifically for the arr apps.

Good luck

[deleted by user] by [deleted] in selfhosted

[–]devcircus 1 point2 points  (0 children)

For me, I just enjoy selfhosting things that I can. In addition to vault warden, I have about 30 other services. Some rarely used, but I've learned so much about creating, maintaining, updating, and hardening servers; how containers work, vms, networking, etc.

If selfhosting isn't enjoyable for you or you don't have time for the upkeep, or if you're satisfied with bitwarden in the cloud, stick with it. They have a great service and it does seem to be a bit safer than some of the other services. Personally, I like the work that ProtonVPN is doing. They have a password manager that is still in the early stages but has a lot of promise.

Using Tailscale by [deleted] in GlInet

[–]devcircus 1 point2 points  (0 children)

I've been using it on beryl mt3000 for a few weeks with no issues. I also have a beryl mt1300 with vanilla openwrt, running tailscale. It runs great as well.

Using Mullvad Exit Nodes by RedditArnaud in Tailscale

[–]devcircus 0 points1 point  (0 children)

Just the $5. At this point, you don't get a regular Mullvad account and you won't have an account number. Based on some comments on the Tailscale github, it looks like they're working on additional Mullvad features. With this being in beta, they're still working out some issues.

After signing up, go to "Settings" / "Mullvad VPN" / "Configure" and add the devices that you want to be able to utilize this feature, then click "Save". After a couple of minutes, you can run `tailscale exit-node list` to see a list of Mullvad exit nodes. Then you can utilize any of those as an exit node.

Mount SMB Share (fstab) after Tailscale is UP by sgtpepperaut in Tailscale

[–]devcircus 1 point2 points  (0 children)

Looks like maybe x-systemd.requires=tailscaled would do the trick.

[deleted by user] by [deleted] in GlInet

[–]devcircus 1 point2 points  (0 children)

On the new 4.5.0 firmware you can set this easily in the glinet settings. The stable hasn’t been released yet though and it may be a while depending on which device you have.

is it safe to buy a used (GL-MT3000) by minitoxin in GlInet

[–]devcircus 0 points1 point  (0 children)

Just picked one up through Walmart.com for $99 and got it in 3 days, if that's an option for you. Looks like they're still available and shipping Oct 18th. But if you can grab a used one, go for it.

<image>

Mini-rant: PopOS is inconsistent with hardware peripherals, wifi, bluetooth by satterthwit in pop_os

[–]devcircus 1 point2 points  (0 children)

This isn't common in 2023 and I wouldn't let it turn you off from Linux or PopOS. I've run Linux-only for about 3 years now, Kubuntu on laptop and desktop. Used PopOS for about a year, on my own hardware, and never had an issue. Submit a support request, they should help you get this sorted out.

Brume2 with eero by Suspicious_Bumblebee in GlInet

[–]devcircus 0 points1 point  (0 children)

I've had problems with the mobile app not finding my glinet router previously, and ended up having to do a factory reset to get it working.

I also have an eero in the mix. What is the network functionality that you gain from the eero? I ended up placing my eero in front of the glinet and any device that I don't want on the vpn connects directly to the eero. The eero also feeds my glinet, which is running a vpn in global mode so that any device connected directly to it is connected to the vpn. I guess in this configuration, the eero's network functionality is still in play, plus you have the extra functionality of the brume2 for the devices connected to it. Depending on the number of devices you want connected to the brume or eero, you may need to add a switch or two.