Henry

Results 184 comments of Henry

Testing out showing the # of issues in https://github.com/hzoo/contributors-on-github/issues/10 I'm not sure what api I can use to get the # of comments a user has made in a repo..

Doesn't look like theres a way to search comments in the API, so that would require a server and tracking data over time or taking advantage of https://www.githubarchive.org and in...

Looks like the only way to track wiki events is to use github archive events or tracking the repo events. For comments we can search for issues related to a...

Could do something with https://bigquery.cloud.google.com/dataset/bigquery-public-data:github_repos?pli=1 but not sure

Parsing comments do make babylon slower atm (and technically maybe the browser doesn't need to retain them but at least the tooling in between that uses the AST may/should need...

Yeah babylon/most parsers do this already (comments property) http://astexplorer.net/#/gist/c3dd0d6473d7eb8fdf542aac21ab595f/20bca45ef3d0ce3f59c4cf371d4977ebd5a22cff, although babylon adds leadingComments/trailingComments for nodes

Yeah, I just wanted to make an issue for each proposal but most of them we probably don't want to implement yet. We need to automate this work lol, it's...

Extensible literals to Stage 1: https://github.com/littledan/proposal-extensible-numeric-literals ``` 1236536253453n BigInt (special case) 4525i Imaginary numbers 235435.461m IEEE 754-2008 64-bit decimal 300px CSS Typed OM ```

Could at least get the syntax in for pipeline, would be interesting trying to do multiple transforms via options (and could test in the REPL for people, assuming we get...

https://github.com/tc39/ecma262/pull/984 Early errors for RegExp literals: `/a{5,3}/`, `/[z-a]/` Would this have been covered with test262 tests anyway?