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

  • It's political satire. Read the full plaque again. It is extremely well excuted.

    I'm legitimately disappointed the duration for the permit appears to be so short.

    Regarding the employment of the personnel who approved the permit, that's uncalled for. I'd recommend reading and internalizing the First Amendment. They really have.

  • Quite literally my first thought. Great, but I can't issue certs against that.

    One of the major reasons I have a domain name is so that I can issue certs that just work against any and all devices. For resources on my network. Home or work, some thing.

    To folks recommending a private CA, that's a quick way to some serious frustration. For some arguably good reasons. On some devices I could easily add a CA to, others are annoying or downright bullshit, and yet others are pretty much impossible. Then that last set that's the most persnickety, guests, where it'd be downright rude!

    Being able to issue public certs is easily is great! I don't use .local much because if it's worth naming, it's worth securing.

  • Shocking

    Jump
  • It's to prevent the person from completing a circuit across their chest if accidentally touching a ground or the like with their other arm. Hearts don't like that.

    Just a way to reduce risk when working with electricity.

  • I'm going to try to help explain this, but i'll be honest it feels like you're coming from a place of frustration. I'm sorry about that, take a break :)

    (I'm not a language expert, but here goes)

    var test int < bruh what? :=

    These are the two forms of variable declaration and the second one is a declaration and initialization short hand. I most commonly use :=. For instance:

     
        
    foo := 1 // it's an int!
    var bar uint16 // variable will be assigned the zero value for unit16 which is unsurprisingly, 0.
    
      

    func(u User) hi () { ... } Where is the return type and why calling this fct doesnt require passing the u parameter but rather u.hi().

    This has no return type because it returns no values. It does not require passing u. It's a method on the User type, specifically u User is a method receiver. You might think of this akin to self or this variable in other languages. By convention it is a singke character of the type's name.

    If that function returned a value it might look like:

     
        
    func(u User) hi() string {
        return "hi!"
    }
    
      

    map := map[string] int {} < wtf

    This is confusing because of how it's written. But the intent is to have a map (aka dictionary or hashmap) with string keys and int values. In your example it's initializd to have no entries, the {}. Let me rewrite this a different way:

     
        
    ages := map[string]int{
        "Alice": 38,
        "Bob": 37,
    }
    
      

    Hope this helps. In all honesty, Go's language is very simple and actually rather clear. There's definitely some funny bits, but these aren't it. Take a break, come back to it later. It's hard to learn if you are frustrated.

    I also recommend doing the Tour of Go here. My engineers who found Go intimidating found it very accessible and helped them get through the learning code (as there is with any language).

    Good luck (I'm on mobile and didn't check my syntax, hopefully my code works 😎)

  • Except Google Pay had the ability to send money to/from friends and bill splitting. Wallet has no such features at all. And nothing they've published or any news on it seems to mention this. (Which has left me somewhat confused that I'm missing something. But as best as I can tell, I'm not)

  • Nope. Many are plugged in and it will keep the seat and water warm. It further warms the seat when it detects someone is sitting on it. Kinda depends on budget, features, manufacturers.

    NGL, middle of the night visits are still a bit jarring because the heating logic tries to conserve energy at night so it tends to me room temperature. But whatevs.

    Honestly, worth it. Absolutely no regrets other than maybe not spending more 😂. At a couple hundred dollar Costco Toto model, it was already a risky purchase that at the time I simply wasn't sure about. But yeah, it's awesome 😎.

  • Zenos. Zenos. Zenos.

    I cannot update this enough. Just completed the Endbringer MSQ, and holy hell. His entire character, premise, every stupid monologue, every cutscene, his entire arc. Banal and awful. Felt like some 6yo on DBZ crack wrote his entire plotline.

    I just searched for any reference of Zenos and I'm glad you posted this. His existence serves zero purpose in the story. Zero.

    That is all, thank you!