Live data from Hacker News

Viewing profile — gskinner

gskinner

HN member
Joined
Sat, Apr 05, 2014, 9:21 PM UTC
HN karma
1
Public activity
3 items

About gskinner

No profile information was provided.

Recent public activity

  1. comment
    Comment #7538548

    Creator here - can you elaborate? What is your family name? The example in this thread ("Grüneis") matches and displays correctly in all the browsers I've tested. Are you perhaps t…

  2. comment
    Comment #7538527

    Creator here - we are currently relying on the JS RegExp API, and thus only support features of that engine, which are somewhat limited. In the future, we may support other flavour…

  3. comment
    Comment #7538505

    Creator here - this is because \w* matches 0 characters, and thus matches infinitely. You can roll over the "infinite" error for details, or look in the help. Try \w+ instead.