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

help-circle










  • 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.






  • Because if we are in different zones we could both commit around 09:00 local time, so then it would seem we both committed at the same instance in time, which we didn’t.

    If we were both running UTC it could work, I guess; otherwise the order of commits would stop making sense.

    edit: unless you meant to auto-convert the local time to a unix timestamp, that could work. I’m overthinking stuff.