@literary Mobile phone as art. Can't get close to that level of customization with an iPhone.
@33mhz Extra weird. Wonder if it'll die for me when 53 goes Beta, as well…
// @matigo
@neilco Huh, wonder if YouPorn etc see a traffic uptick or adjust marketing accordingly… "Valentine's Day Picks from Our Editors"
@schmidt_fu Not off the top of my head.
If you construct a DFA, I think you can do search doing a walk backwards from halting state to initial state and dump stuff whenever you hit initial. Of course, the graph can get humongous, so I bet there's a better way to do this if you're clever about representations.
Generating _interesting_ output could also be a challenge, because with something like a(b|c)+
, you could just keep enumerating abbbb…
results without ever hitting any of the acccc…
ones if you weren't careful. That suggests you want to do a BFS rather than a DFS.
Hmm, actually, maybe look at fuzzers like AFL or generative testing systems like Hypothesis? The latter tend to use a much richer language then regex, but their goal _is_ generating interesting examples fitting the bill!
// @thedan84
@33mhz 52.0b5 here. I see an NSERRORFAILURE on clicking Reply, but the context is rigged up OK for New Post to work to pull up the Reply dialog.
// @matigo
@matigo Possible bug:
This post somehow has a DLE character in it. Pretty sure somehow LF (decimal 10, hex 0x0A) got sent down as HEX 0x10, leading to the \u0010 in the output.
(It's throwing my XML parser for a loop, is why I noticed. ;)