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/)GR
Posts
0
Comments
153
Joined
2 yr. ago

Rule

Jump
  • Cost of housing has absolutely skyrocketed in blue states. I specifically settled down in Alabama because I have a 1400 sqft house 3 bed 2 ba for 550 bucks a month. Suburbs too. Moved away from my home state of California for exactly that reason

  • Nah. It's just projection. Even though I use Linux myself, it's nearly always the other way around with the lecturer trying to tell Windows users to switch to Linux while the average gamers are just happily gaming away on what works for them.

    Hell, you could take many of the comments in this post and turn them into things the guy on the left is saying while Windows gamers are having fun.

  • Worm girl's tutorial YouTube series was what finally got me started. A lot of early survival is just "avoid all combat". Skills are everything in this game. A little melee skill & a reasonable weapon (such as a wooden cudgel) can be the difference between easily killing a zombie and dying to it. You can get both of those in the basic shelter without ever leaving.

    Body encumbrance & move cost (such as luring an enemy zombie into tall grass before engaging) can also make a huge difference.

  • Exactly! We should absolutely have groups of people inflict violence on anyone who opposes my political beliefs! (Don't worry, my political beliefs are the true and virtuous ones, other political beliefs are evil and corrupt)

  • I’m skeptical that you’re giving the full story

    No, you're right. There's a much bigger story here. I was just trimming out a lot of it since I don't normally run into people who can follow along easily. Akamai, for example, uses the proprietary AKAMAICDN record to allow the functionality of a CNAME. For example: foo.com AKAMAICDN's to foo.com.edgekey.net (edgekey.net of course being the Akamai edge server suite). So someone using Akamai can do that to allow them to use the apex (but will still very likely have a www.foo.com CNAME foo.com setup to catch people who did a www anyway) Cloudflare uses CNAME flattening to "cheat" the CNAME rules by doing the CNAME DNS lookup internally and pretending to be authoritative for the request.

    You don’t typical have your webpage itself delivered by CDN, you have your static assets delivered by CDN. Why can’t you put your static assets in a subdomain that gets a CNAME?

    You can most certainly put static assets in a specific subdomain (and in fact, that's how most setups are), but the CDN itself often requires handling the entire request at the beginning. You don't want, for example, an A record at the apex pointing directly at your origin servers (terrible idea for security & performance; kind of defeats the purpose of the CDN), instead you want the user to connect to an edge server and have that edge server immediately serve the static content while the origin is contacted by the edge server for any non-static content that the user needs. This allows the CDN to do their cloud magic while your origin servers can do as little work as possible with as few people as possible. Effectively, you can block all requests to your servers that are not from your CDN. Many CDNs these days are also a major security feature.

  • There are many many reasons you don't want to (or can't) have the apex of your domain (what you're calling the "default domain") the primary domain name of your site. I thought you were going to argue in favor of like "home.[domain].com" or something.

    The first and foremost issue is that if you wish to use a CDN, many CDN's require a CNAME to function properly. You can't have a CNAME share space with any other record (RFC 1912) which completely precludes using an MX record (for email) or TXT records for DKIM, SPF, and DMARC. (You need those for a secure email service). Having the CNAME sit as a subdomain of the apex (such as www) allows you to maintain those records in your domain while also serving people using that CNAME. (Some CDN's such as Akamai even have special proprietary records that function like a CNAME while returning A records just to make this work)