Why, a hexvex of course!

  • 0 Posts
  • 12 Comments
Joined 1 year ago
cake
Cake day: June 10th, 2023

help-circle




  • True, but I think the principle still holds.

    When I talk about a “print”, “if”, “for” or “while” I am universally understood by the majority of coders. This means, someone with those concepts can use any logic flow making use of those terms with a minimum of learning.

    However, if I speak of “gable”, “gyr” or “wabbajack”, then trouble begins, for now I have no tutorials nor guides. Let us say these are not merely localisations, but new concepts, then the question comes of completeness and how it is proved.

    In essence, one either recreates Babel, where no two people can understand one another, and collaboration quickly slips away. Or, one builds a tower upon the sand, that has no logical foundation to anchor it, this rendering it worse than useless to those who learn it.




  • Well, I know what I’ll be using to listen to my radio stations from now on. Really neat project!

    Also, it doesn’t pick up user defined tags because it’s looking in the wrong place for them!

    Row 114:

    TAGS=( $(sed ‘s/ /\n/g’ stations.txt |grep “#”|grep -v “#Favorites”|sort|uniq|sed ‘s/#//g’) )

    Should be

    TAGS=( $(sed ‘s/ /\n/g’ $HOME/.cache/radion/stations.txt |grep “#”|grep -v “#Favorites”|sort|uniq|sed ‘s/#//g’) )