Julie Jones

Results 107 comments of Julie Jones

I love the idea of making the Firefox UI better. It seems like their change have been making it worse and worse.

I really preferred the old tabs that looked like paper file folders. They made it easy to see which one was active. ![image](https://user-images.githubusercontent.com/5090005/151901866-ee64ec5b-62c8-43e5-bfde-f103ff6384b0.png)

I think I get it now. If I just replace the word "type" with "feature" then the parameters to the constructor just enable additional features for a Box. Given that...

I understand your point. A user can write ``` dict(sape=4139, guido=4127, jack=4098) ``` However I can't imagine why anyone would write ``` d = dict(**mydict) ``` when this is more...

Keep in mind that linting can occur by looking at the text of the grammar, or the parse tree from the grammar. Another possible idea (and similar to linting) would...

> The unicode standard has what's call a Byte-Order-Mark in the different encodings (UTF-8, UTF-16, UTF-32). In the other encodings (16, 32) the BOM actually does its job and shows...

> I'm concerned that the nonterminal : | terminal | nonterminal ; > Since "[someterminal]" means that the someterminal is optional, perhaps if we use the syntax [] to mean...

@brupelo Just my 2 cents about the format of the alternatives that I haven't seen mentioned explicitly. ``` rule: SOME_TERMINAL some_rule some_other_rule ANOTHER_TERMINAL | TERMINAL3 ``` Is actually implying parenthesis...

@erezsh > The recommended solution is to capture comments in the newline. > > Something like: > > ```lark > _NL: (NEWLINE | COMMENT)+ > ``` That doesn't seem to...

Keeping the docs simple and short is admirable. However as a new user exploring, it is verying important that the first thing they read in the readme on GitHub or...