Viewing profile — gskinner
gskinner
HN member- Joined
- Sat, Apr 05, 2014, 9:21 PM UTC
- HN karma
- 1
- Public activity
- 3 items
- HN profile
- View on Hacker News ↗
About gskinner
No profile information was provided.
Recent public activity
-
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…
-
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…
-
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.