• 1 Post
  • 110 Comments
Joined 1 year ago
cake
Cake day: June 15th, 2023

help-circle




  • I asked ChatGPT to convert the text to common words:

    “Academic writing is often hard to understand because it uses complicated words specific to a particular field, making it easier for experts to communicate with each other but harder for outsiders to follow. This keeps certain knowledge limited to a small group of people and maintains a cycle where only the educated or ‘in’ crowd can fully engage, while others are left out.”












  • YAML is fine if you use a subset (don’t use the advanced features - not like you know those anyway) and use explicit strings (always add " to strings), otherwise things may be cast when you did not intend values to be cast.

    Example:

    country: NO (Norway) will be cast to country: False, because it’ll cast no (regardless from casing) to false, and yes to true.

    country: "NO" should not be cast.