Toml: Tom's Obvious, Minimal Language
github.com
Toml: Tom's Obvious, Minimal Language
1–10 of 204 posts
Re: Toml: Tom's Obvious, Minimal Language
#2Re: Toml: Tom's Obvious, Minimal Language
#3I never really questioned the name, TOML, but I guess "Tom's Obvious, Minimal Language" works
[[designers]]
name = Guido
lang = Python
[[designers]]
name = Larry
lang = PerlRe: Toml: Tom's Obvious, Minimal Language
#4Re: Toml: Tom's Obvious, Minimal Language
#5http://www.businessinsider.com/github-harassment-story-2014-...
https://blog.github.com/2014-04-21-results-of-the-github-inv...
Re: Toml: Tom's Obvious, Minimal Language
#6I never really questioned the name, TOML, but I guess "Tom's Obvious, Minimal Language" works
To me, there was nothing obvious about the double bracket syntax, e.g.: [[designers]] name = Guido lang = Python [[designers]] name = Larry lang = Perl
Re: Toml: Tom's Obvious, Minimal Language
#7(2013)
Changelog: https://github.com/toml-lang/toml/blob/master/CHANGELOG.md#0...
Re: Toml: Tom's Obvious, Minimal Language
#8I never really questioned the name, TOML, but I guess "Tom's Obvious, Minimal Language" works
To me, there was nothing obvious about the double bracket syntax, e.g.: [[designers]] name = Guido lang = Python [[designers]] name = Larry lang = Perl
That all said, for flatter schema's I do personally think TOML is more readable than it's JSON, YAML and XML counterparts. If there is one thing I did like about Windows back when I used to run it, it was the syntax of INI files (which TOML was heavily influenced by).
Ultimately though, there is no perfect solution for all problems.
Re: Toml: Tom's Obvious, Minimal Language
#9Earlier quoted context omitted.
To me, there was nothing obvious about the double bracket syntax, e.g.: [[designers]] name = Guido lang = Python [[designers]] name = Larry lang = Perl
Yups. And making a whole datetime RFC part of the spec kind of broke with the "minimal" thing. But apart from that I totally prefer it over INF/YML/JSON/XML for many purposes.
Re: Toml: Tom's Obvious, Minimal Language
#10TOML is especially well suited for projects that need a simple configuration file that maps unambiguously to a hash table. There are still some weaknesses in TOML that make it non-optimal for large, complex config, but I'm hoping to address that in a later version of the spec (perhaps 2.0).
Happy to answer any questions you all have about TOML!