07:51 | <annevk> | Jeffrey Yasskin: depends, if they're trying to mimic HTML forms with key/value pairs, they should definitely use that |
10:51 | <annevk> | In particular urlencoded is the only standardized format we have for key/value pairs in URLs so it's not even so much about mimicking HTML forms, it's just that if you're going for that semantic you want to use that format. |
13:17 | <nevolaa> | Бь9 |
13:17 | <nevolaa> | Зшз7з щ жлз |
13:18 | <nevolaa> | главное не переживай87 сильно больше6 им |
15:42 | <Jeffrey Yasskin> | In particular urlencoded is the only standardized format we have for key/value pairs in URLs so it's not even so much about mimicking HTML forms, it's just that if you're going for that semantic you want to use that format. |
15:44 | <bakkot> | Domenic: is there general guidance for HTML / web platform stuff about when to use options bags arguments vs positional? |
15:44 | <bakkot> | as a user I am generally happier about options bags because they're easier to read, but we haven't really started leaning in to that |
15:46 | <bakkot> | as a designer I've mostly only been using them when there's two or more independently-optional arguments (which is how fromPartialBase64 started, but it may not end up there), since positional arguments are awkward to use in that situation (requiring you to pass void 0 or whatever) |
15:48 | <bakkot> | (though there's an argument for using them when you have even a single optional argument, to leave room for adding more later) |
15:48 | <Jeffrey Yasskin> | Domenic: is there general guidance for HTML / web platform stuff about when to use options bags arguments vs positional? |
15:48 | <bakkot> | ah, excellent, thanks |
18:05 | <Dominic Farolino> | How do people git blame HTML's source? GitHub can't do it, and I'm struggling to get https://marketplace.visualstudio.com/items?itemName=waderyan.gitblame to work (basically seems to just hang?) |
18:06 | <Andreu Botella> | I suspect most people use https://searchfox.org |
18:07 | <Dominic Farolino> | For the HTML Standard? |
18:07 | <Andreu Botella> | yeah |
18:08 | <Dominic Farolino> | Can you show me where it is in there? |
18:08 | <Andreu Botella> | https://searchfox.org/whatwg-html/source/ |
18:08 | <Jeffrey Yasskin> | 😮 https://searchfox.org/whatwg-html/source/source |
18:08 | <bakkot> | (It's linked from the github readme: https://github.com/whatwg/html#blame) |
18:08 | <Dominic Farolino> | lol wow |
18:09 | <Dominic Farolino> | Very useful, thanks. |