🌞   ðŸŒ›
  • Great sunset clouds by Mt Hood

  • The readability of bash always makes me think about how it was made by people who used to be legitimately concerned that more characters used in code actually made a program slower.

  • When to reach for different JS methods while manipulating data

    Array -> Array; structure different, length same Reach for .map Array -> Array; structure same, length different Reach for .filter Array -> Non-Array (like Object) Reach for .reduce - easily one of the most powerful and flexible Array methods. Object -> Object; structure different, … read more