• 1 Post
  • 11 Comments
Joined 1 year ago
cake
Cake day: June 13th, 2023

help-circle

  • It is and it isn’t, those are pretty standard fixed wireless rates. It’s largely used in pretty rural areas where you wouldn’t be able to get fiber or cable or often even DSL. They compete against things like hughesnet that’s more expensive and has something like a 15gb data cap. Or starlink for $150 a month and $500 of equipment and the weight on your soul of giving Elon money.

    They often run wireless backhauls for tens of miles across multiple towers so bandwidth is pretty limited and setup and maintenance is somewhat specialized. Like yeah if you can get cable or fiber do that it’s way better. But when there’s no other option is not that bad all things considered.



  • Ok I have an amount of experience with basically everything going on here so here’s what you should do:

    First, find the listing and see if they have WiFi listed as an amenity. If they do great, you can complain to Airbnb as a last resort. If they don’t you can’t, which honestly probably isn’t going to change much unless they are turds.

    Second, do a few speed tests around the house, especially next to the other duplex unit. On the Airbnb app, send a screenshot of them and say something to the effect of “hey we noticed the Internet is slow, are you having issues too?”

    Either they never checked if the downstairs WiFi and there’s no signal, or there’s a problem with the Internet and they need to call the company. Both are pretty viable. Does your phone say 75% signal or -75db? -75db is not great, but 75% should be ok. If you get faster speeds near the other unit it’s likely their WiFi.

    The other option is they have issues too. Fixed wireless can run into issues when things change like radar frequencies. They can call the company and get it fixed pretty quick. Even if they aren’t paying for the faster speeds the ping shouldn’t be anywhere near 600ms. Like, I lived with wireless internet for a long while and it’s slow or shouldn’t be that painfully slow.

    Don’t just suffer through, often people don’t mention this kind of stuff and if the hosts aren’t on top of their tech they don’t know it’s an issue. There was an issue with the Wi-Fi firmware on a unit I do work for and the guests only mentioned it at the end of their month long stay. They should be willing to work with you especially if they advertise wifi but honestly probably even if they don’t. Like, just don’t be an ass about it and they’ll probably be pretty accommodating.




  • Thank you! My God, the amount of holier-than-thou “it’s your own fault” in this thread is mildly infuriating in and of itself. Auto save and versioning have been a thing in Word for at least 8 years, probably over a decade but that’s the first version mentioned in their docs, and I struggle to think much software I use regularly that doesn’t have some form of it. Hell, even the new Notepad on Windows keeps your changes when it’s accidentally closed.

    I like most open source software but this sort of attitude in the community and what seems like an absolute disdain for any UX concept from the past 20 years makes me very hesitant to recommend it almost anyone outside very specific technical circles.



  • capture card

    Hmm I need to do some research. I’m not really sure what these are for or what they do, but I’ll look into it, thanks.

    Sorry, probably should have explained. If you have a camera that has an HDMI or other video output they basically convert it to a USB camera.

    I’ll look into this as well. Seems like people have had focus issues though, based on reviews I saw.

    Most of the models they put out don’t have autofocus at all, you have to physically turn it to focus. Depending on exactly how your setup works that may or may not be viable - overhead cam like for playing magic probably doesn’t move much, but for video conferences where you shift in your chair it might be weird if the room is a bit darker.


  • If you already have a camera with HDMI output sitting around a capture card can be a great way to get really good image quality for not much money. If 720p is enough I’ve actually had really good success with these incredibly cheap ones: https://youtu.be/daS5RHVAl2U - I’ve even seen them at places like Walmart and Target under the Vivitar brand so they’re readily available.

    If you don’t look around locally for used Sony cameras. Because 1080p is only 2 mega pixels and many of the nicer old Sony cameras have clean HDMI output you can get kind of amazing image quality for very cheap. Some newer model mirrorless cameras got updates to run as a webcam directly off the USB port but they’re likely out of your budget and some require software. (Edit: make sure you check if the model you’re looking at has clean HDMI out - some do, some don’t, and some do with some tweaking. This site has a decent bit probably incomplete list: http://wasge.es/clean_output/ )

    If you want a more traditional webcam and need autofocus something like the Logitech c920 family is probably your best bet but the constant revisions may have added a software install. Most cameras are including software since realistically they’re all basically the same and most of the “features” are added in the software.

    If you don’t need autofocus, there are a number of companies taking Sony “security camera” sensors and slapping them in boxes with screw mount lenses. ELP and Mokose are examples but there are others. With enough light these generally look pretty dang good. If you pick one up and decide later to upgrade, it can probably live mounted up high just for playing magic, especially since there are a few 4k ones that will probably let you read the tiniest of text on the cards.



  • fhqwgads@possumpat.iotoSelfhosted@lemmy.worldVMs or containers?
    link
    fedilink
    English
    arrow-up
    4
    arrow-down
    1
    ·
    1 year ago

    Basically, it’s “why not both?”

    So first, kubernetes is a different ball of wax than containers, and if you want to run it on one machine you can, but it’s really for running containers across a cluster of machines. I’m guessing you just generally mean containers so I’ll go with that.

    Containers are essentially just apps running on a virtual os. Virtual machines are an OS running on virtual hardware. You can abstract both layers and have virtual hardware running an os that runs a virtual os for your containers, and nothing will really mind - in fact that’s kind of the way to do it if you have one big machine you need to run a bunch of services on. You might cut up a server into a Linux VM, a Windows VM, and a BSD VM, and run containers on each one. Or you might run 3 Linux VMs and have the containers for 3 different services split between them.

    It really depends on what you’re hosting and trying to do for how exactly to go about it. Take for instance a pretty common self hosted stack:

    Plex Radarr Prowlarr Deluge TrueNAS

    Now you could install TrueNAS scale and run all of those as containers on it, and it would work ok, but TrueNAS scale isn’t really meant for managing a ton of containers right now. You could make a vm on it for each service and have them all talk to each other but then you’re probably wasting resources by duplicating the OS 5 times. Also, what if you want to run TrueNAS core instead of scale? Can you get everything else working in jails – maybe? – but it’ll probably be a pain.

    Instead, you might install proxmox and pass through the drive controller, and set up one VM for TrueNAS core. Then you might make another VM for the arrs containers, and a third for Plex itself.

    It gets you the best of both worlds. TrueNAS can run on BSD instead of Linux, your arrs are easy to deploy and update in containers that keep everything separated, and Plex is sequestered in a hardened os with read only access to everything else since it gets a port forwarded and is more of a security risk. Again that’s just one option though.

    VMs get you a ton of really handy things like snapshots and for simple VMs, very easy portability between relatively similar hardware. I’ll probably get ruined for saying this but they’re also a security tool that you should probably keep in your belt. If someone manages to break out of a container and your files are just sitting there for the taking that’s not great. If someone manages to break into your VM and “the good stuff” is on another VM that’s another layer of security they have to break through.

    Containers on the other hand use way fewer resources, especially ram - and are much easier to wrangle than many OSes for updates and config.

    There’s really a lot of self hosted stuff that assumes you’re running docker and treats regular install as a kind of weird edge case, so you’ll probably run docker even if you don’t want to.

    Kubernetes on the other hand I would argue isn’t really meant for self hosting where you probably have a one or two servers that you own. Its meant to deploy containers across various cloud servers in a way that’s more automated to manage. If you need storage in a kubernetes cluster you’ll probably use something like s3 buckets, not a hard drive.

    If you want to learn it you can totally deploy it on a computer running a few VMs as nodes or with a few laptops / SBCs as a cluster, but if you just want the services to run on your server in the closet it’s a bit like using a sledgehammer to nail a chair back together. That’s why you don’t tend to see it talked about as much - it’s a bit of a different rabbit hole.