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/)QU
Posts
17
Comments
1,451
Joined
2 yr. ago

Elvis

Jump
  • It specifically refers to this shorthand ?: that works like this:

     
        
    $value = $thing_that_could_be_truthy ?: 'fallback value';
    
    # same as
    
    $value = $thing_that_could_be_truthy ? $thing_that_could_be_truthy : 'fallback value';
    
      

    The condition is also the value if it is truthy

  • That's really cool! And yeah the bootloader locking checks out with into from other guides.
    That unbricking talk flies over my head on the other hand, it sounds like one of those fake tech speaks to my uncultured self lol