Discord Servers asking for Phone Numbers and 'Verification Levels'
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearBO
    boothin
    Now 100%

    How exactly does that prevent spam, vs just using other existing established verification methods like email validation? If the only goal is preventing spam, its overkill, and other web sites who also have to contend with spam don’t use it.

    It's trivial to create new accounts and emails to verify those accounts. It is not trivial to get a new phone number since virtual numbers are blocked by the verification process.

    14
  • JPEG
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearBO
    boothin
    Now 95%

    There exists other words that start with gi but use the soft g, gin for example. But regardless, the pronunciation of one word is not determined by the pronunciation of other unrelated words.

    21
  • *Permanently Deleted*
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearBO
    boothin
    Now 100%

    That's not what the definition said, realise is just the British spelling. If you re-read the definition in your screenshot, it says both realizes and realises are 3rd person present

    2
  • G.Skill Ram names showing difference
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearBO
    boothin
    Now 100%

    The 16 on the stick is because it's sold as a 16g kit, and the 8 on the internal name is because that stick is an 8gb stick. Yes, this is common

    4
  • Homemade shoyu tonkotsu ramen
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearBO
    boothin
    Now 100%

    Honestly I just picked it here because I thought it'd look nice giving a big hit of green color and gives a good texture addition since everything else is pretty soft, this adds some crunch to the dish. For me there's no vegetable that really stands out to me where I will look forward to it, except maybe roast potatoes lol

    2
  • Which famous person do you think gets an unfair bad reputation?
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearBO
    boothin
    Now 100%

    Yeah it's definitely played up/edited to be worse but still if you pay attention to who he's yelling at, he only gets mad at people who deserve it... the people who just refuse to listen to his advice or get defensive and lie instead of just owning up to their mistakes or shortcomings or just simply stopped caring. For people who want to change or want to learn to be better, Gordon Ramsey is extremely supportive. There's an episode of Hotel Hell where there was a kid with so much aspiration and love for food that Gordon Ramsey offers to pay to put him through culinary school

    1
  • Self-hosted Password Manager Recommendation?
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearBO
    boothin
    Now 100%

    Is it just me or does that "comparison" make no sense for this thread. It's mostly comparing vaultwarden to the cloud version of bitwarden, not the self hosted version. It only mentions the self hosted version in passing. It doesn't do anything to help someone choose between vaultwarden and self hosted bitwarden

    15
  • Which famous person do you think gets an unfair bad reputation?
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearBO
    boothin
    Now 100%

    Gordon Ramsey. Of course it's played up extra for the US market, but even still, pay attention to who he yells at, it's always people who are too dense to see what he's trying to tell them or chefs with huge egos that aren't deserved. He's much more nice towards amateurs and kids in his shows that feature those type of people instead of restaurant owners and pro chefs. Masterchef for example, he goes easier on the contestants in the beginning as they're all amateur/home chefs, but his standards go up as the season progresses.

    5
  • Bacon-y edges
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearBO
    boothin
    Now 100%

    It's a little hard to tell from your photos but it looks like your nozzle might be too close to the bed. The first layer looks thin in places and the baconing could be from the plastic being squeezed out the sides

    6
  • Wanted to mount a power strip to a table so designed a little bracket that just zip ties to the table leg and got lucky with it working perfectly first try, feels good man

    157
    2
    First 3D printer advice
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearBO
    boothin
    Now 100%

    I'm not sure if I would even recommend starting with fdm if your goal is resin. So little that you learn about fdm actually transfers to resin, they really are that different. If your end goal is resin because you want to make miniatures, you're just wasting money getting an fdm printer.

    2
  • [ELI5] What is a reverse proxy exactly and how do I use it to run several dockerized services on one machine?
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearBO
    boothin
    Now 100%

    It sounds like what you need to do at this point is find what IP address your lemmy instance and mastodon instance containers are using on your VPS. you can do "docker inspect containername" and look for the IP address in there. it might be something like 172.16.0.1 for lemmy and 172.17.0.1 for mastodon. then you want to set up your reverse proxy to point lmy.my-domain.tld to 172.16.0.1:80 (or whatever port you set lemmy to use) and then mstdn.my-domain.tld to point to 172.17.0.1:80 (again, port might be different, i dont know what the default port is)

    -IF- both of the containers are using the same IP, then you will need to make sure that they are using different ports. if they are on the same ip and same port, whichever container loads 2nd will fail to properly load, because when a port is taken on an IP address, it is reserved and nothing else can try to listen on that port.

    3
  • [ELI5] What is a reverse proxy exactly and how do I use it to run several dockerized services on one machine?
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearBO
    boothin
    Now 100%

    So a reverse proxy is sort of like a phonebook or directory, it routes outside requests to the appropriate place. So imagine your reverse proxy is a receptionist, someone comes in and says "hey I am looking for plex.mydomain.com" the receptionist would then use the phonebook and say "ok if you are looking for plex.mydomain.com, go to building 192.168.1.10 (the ip), room 9000 (the port)"

    Since you are asking about dockerized services, the networking for those can be done in several different ways, but the one thing that really matters is that each service needs to have a unique combination of ip and port, because only 1 service can live at each address. With docker, you could set up multiple services that use the host server's ip, in which case each container will need to be on different ports, or you could have it so each container has its own ip, in which case the port can be anything.

    10
  • If you see a new thing on the menu and think to yourself "I gotta try it" come join this community and share lemmy: [!gottatryit](/c/gottatryit@kbin.social) kbin: [@gottatryit](https://kbin.social/m/gottatryit) [https://kbin.social/m/gottatryit](https://kbin.social/m/gottatryit)

    4
    0
    "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearKB
    /kbin meta boothin Now 100%
    Seems like federation is broken again?

    I generally like to browse Newest but noticed its only coming up with posts from this instance again RIP

    16
    9
    "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearSE
    Selfhosting boothin Now 100%
    Is there any service that can be selfhosted that is similar to the old rabb.it site?

    For those that don't know, rabb.it was a site where you basically had a chatroom and a virtual pc that was shared to everyone in the room. It was used to get together and watch youtube/plex/netflix/whatever together, and everyone was able to control the browser on the virtual PC. I don't even think you needed to have an account to join a room, but it's been so long I don't remember anymore. So I'm looking for something like that, just a virtual PC/browser + chatroom that people can join and watch/control, ideally without even needing to make an account. Does something like that exist?

    7
    2

    I love trying anything that's new at a restaurant I frequent and any new flavor that I see in the snack and soda aisles and this new magazine/community is for anyone else like me and loves sharing their thoughts on new and interesting foods [gottatryit](/m/gottatryit@kbin.social) [https://kbin.social/m/gottatryit](https://kbin.social/m/gottatryit) [@gottatryit](https://kbin.social/m/gottatryit) [!gottatryit@kbin.social](https://kbin.social/m/!gottatryit@kbin.social)

    1
    0
    "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearBO
    Now
    6 69

    boothin

    boothin@ kbin.social