domchristie/turndown 5718
🛏 An HTML to Markdown converter written in JavaScript
kangax/html-minifier 4440
Javascript-based HTML compressor/minifier (with Node.js support)
addyosmani/puppeteer-webperf 1446
Automating Web Performance testing with Puppeteer 🎪
JavaScript (engine) Version Updater
JSBI is a pure-JavaScript implementation of the official ECMAScript BigInt proposal.
Scan your HTTPS-enabled website for Mixed Content
googlesamples/web-fundamentals 295
Google Web Fundamentals
Check if a website has weak SHA-1 TLS certificates.
gf3/WAT 102
LOLWAT?
GoogleChromeLabs/json-parse-benchmark 97
Benchmark comparing JSON.parse vs. equivalent JavaScript literals across JavaScript engines.
issue commenttibiamaps/tibia-map-data
It is not needed to use exani hur down on this spot any more. It was replaced with a normal rope hole.
https://tibiamaps.io/map#32603,31844,9:3
comment created time in a minute
issue commenttc39/proposal-regexp-set-notation
IgnoreCase vs. complement vs. nested class
Currently no opinion since I'm not too familiar with the implementation. cc @hashseed
comment created time in 4 minutes
pull request commenttc39/ecma262
Some changes to make the doc more beginner-friendly
Looks like we have 2 LGTMs then, but @ljharb's wasn't properly registered since it's a comment.
comment created time in 26 minutes
push eventmathiasbynens/covid-19-vaccinations-germany
commit sha 603374716cdff71f87c436e292fdc179ea6c35ea
Import vaccination data for date=2021-06-13 × pubDate=2021-06-14
commit sha 6652b033f459aec5c8a3dbd2de9011ffdcc522bd
Update charts per date=2021-06-13 × pubDate=2021-06-14 × delivery=2021-06-06
push time in 39 minutes
push eventpuppeteer/puppeteer
commit sha bba3f41286908ced8f03faf98242d4c3359a5efc
chore: synchronize Bug 1710839: update comment about firefox preference remote.enabled (#7324)
push time in 40 minutes
PR merged puppeteer/puppeteer
…ce remote.enabled
This is a minor comment we updated as we are in the process of deprecating this preference. Proposing to merge this upstream, as it will make our sync back to mozilla-central easier.
pr closed time in 40 minutes
issue commentpuppeteer/puppeteer
Is there a way to make GUI for puppeteer code?
Carlo
Carlo is no longer maintained.
comment created time in 2 hours
push eventmathiasbynens/covid-19-vaccinations-munich
commit sha ed55ed06e290497513b3a034c36e6fbc1f4f2b0d
Import latest data @ 2021-06-14T06:52:14.051Z
push time in 2 hours
push eventsimevidas/browser-intents
commit sha 0dbb9eae84b82c92a0109c04c52bd812d6cedeac
Add selected intents for week 23 of 2021
push time in 4 hours
startedryan-ma/PD_Micro
started time in 5 hours
fork jbreiding/dotfiles
:wrench: .files, including ~/.macos — sensible hacker defaults for macOS
fork in 5 hours
issue commenttc39/ecma262
Regular expression `/(?<foo>A)\k<foo>/` (without `u` flag) is a syntax error
https://github.com/mysticatea/ecma262/commit/757927687ee99e96e9e39a88f6122716cc3088f2
That may be a candidate to patch this issue.
- Remove two passes parsing from 22.2.3.2.3 Static Semantics: ParsePattern ( patternText, u ). It parses the pattern with
[+N]always. This should be no problem because there are no other differences than allowing named backreferences. - Add an Annex B section to extend 22.2.3.2.3 Static Semantics: ParsePattern ( patternText, u ) to introduce two passes parsing for backward compatibility about
\k.
comment created time in 6 hours
push eventalrra/dotfiles
commit sha ed8070525549f255ad7bb49f99c12bb8878913aa
✅ Add tests to check links
push time in 6 hours
push eventalrra/dotfiles
commit sha 9ffc562d6ec995b8272bc9578aafc252d3d53507
✅ Add tests to check links
push time in 6 hours
push eventalrra/dotfiles
commit sha 5ca0c13f7e4012cb87806f9c5df9260b94e6ec60
✅ Add tests to check links
push time in 7 hours
issue commenttc39/ecma262
Regular expression `/(?<foo>A)\k<foo>/` (without `u` flag) is a syntax error
is that the "but not UnicodeIDContinue" in the spec?
Yes. Keep in mind that's only there for the non-Annex B grammar, i.e. the one which is not used in actual implementations. (The Annex B variant does not have that restriction.)
comment created time in 7 hours
issue commenttc39/ecma262
Regular expression `/(?<foo>A)\k<foo>/` (without `u` flag) is a syntax error
hm... is that the "but not UnicodeIDContinue" in the spec? i must have a bug in engine262
comment created time in 7 hours
issue commenttc39/ecma262
Regular expression `/(?<foo>A)\k<foo>/` (without `u` flag) is a syntax error
@devsnek That's right in Annex B. But it's a syntax error in the spec core because the sequence \ k is not allowed.
comment created time in 7 hours
issue commenttc39/ecma262
Regular expression `/(?<foo>A)\k<foo>/` (without `u` flag) is a syntax error
I think this is correct as specified. The first pass will parse \k<foo> as the atoms k < f o o >, not a syntax error.
comment created time in 7 hours
issue commenttc39/ecma262
Regular expression `/(?<foo>A)\k<foo>/` (without `u` flag) is a syntax error
Yes, it skips the second pass if the first pass had a syntax error, and \k in the first pass is a syntax error.
Maybe, should both the N parameter and two passes parsing move to Annex B? Those look to be for Annex B behaviors.
comment created time in 8 hours
push eventtibiamaps/tibia-map-data
commit sha 51c3de1bde6a6fa7340ae8f47bd4cce495e38955
Import marker changes from Lee’s client
push time in 9 hours
issue commenttibiamaps/tibia-map-data
Oh, I also explored Leviathan's room in Svargrond which was still missing: Uploading Leviathan.zip…
comment created time in 9 hours
push eventh5bp/server-configs-apache
commit sha ce6d013a97ac9d5d9e44a8d2310e62966ed7f127
Improve `X-Frame-Options` documentation Ref https://github.com/h5bp/server-configs-nginx/pull/277
push time in 10 hours
issue closedh5bp/server-configs-apache
Add `Permissions-Policy` directive to control FLoC
google’s floc is coming. it’s time to react.
- eff said: google’s floc is a terrible idea
- brave said: why brave disables floc
- wordpress said: treat floc like a security concern
the apache config to opt out the floc is:
<IfModule mod_headers.c>
Header always set Permissions-Policy "interest-cohort=()"
</IfModule>
closed time in 10 hours
doktorbroissue commenth5bp/server-configs-apache
Add `Permissions-Policy` directive to control FLoC
I'm gonna to close this one in favor of #179
comment created time in 10 hours
issue commenttc39/ecma262
Regular expression `/(?<foo>A)\k<foo>/` (without `u` flag) is a syntax error
It's a syntax error on the first pass, I agree, but that means that it will re-parse with the N parameter set, and when parsing with the N parameter we have the production AtomEscape :: k GroupName, which matches \k<foo> as in this example. Since it parses successfully on the second pass, it's allowed.
comment created time in 10 hours
issue commenth5bp/server-configs-apache
Just for your own concerns, I would really recommend not to ask maintainers to "please visit links somewhere else and do your job". It has an extremely negative tone.
comment created time in 10 hours