• 9 Posts
  • 768 Comments
Joined 1 year ago
cake
Cake day: August 10th, 2023

help-circle
  • I might try that, though I personally disliked using Neo store in the past, from the deliberately nonstandard UI to several times where updates just got stuck in a weird state where they are downloaded but won’t install and stay there eternally, I just prefer not to rely on it, plus the official F-droid supports application archiving already (in theory, at least, I’m not seeing it yet on my device), so in terms of features it seems more at the forefront to me





















  • 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