/top/
/new/
/best/
/ask/
/show/
/job/
^
slacker news
login
about
←back to thread
Details of the Cloudflare outage on July 2, 2019
(blog.cloudflare.com)
698 points
jgrahamc
| 2 comments |
12 Jul 19 15:46 UTC
|
HN request time: 0.001s
|
source
Show context
stevens32
◴[
12 Jul 19 23:26 UTC
]
No.
20425422
[source]
▶
>>20421538 (OP)
#
For the regex novices here, would anyone mind explaining what that pattern is meant to match? More specifically, what `.
(?:.
=.*)` is meant to do?
replies(4):
>>20425511
#
>>20425513
#
>>20425924
#
>>20426517
#
1.
Buge
◴[
13 Jul 19 04:33 UTC
]
No.
20426517
[source]
▶
>>20425422
#
It's meant to match any number of any characters, then match an equal sign, then match any number of any characters. But it's very badly written. It should instead simply be written
.*=.*
BTW, your comment got mangled by HN's markdown formatting.
replies(1):
>>20462038
#
ID:
GO
2.
stevens32
◴[
17 Jul 19 17:38 UTC
]
No.
20462038
[source]
▶
>>20426517 (TP)
#
Gotcha - I thought I was just missing the point as to why it wasn't simpler since it looked to have been structured that way intentionally.
↑