Eevee
Eevee
Ties could be handled easily enough by giving every winner a point. I was thinking 3/2/1 granted by the Czar; it's often hard to vote for only one card when...
Would it? A round where everyone wins a point doesn't actually put anyone ahead of anyone else, and that shouldn't happen _too_ often. The alternative is to give 1/n points...
Similar happens with question marks and trailing parentheses (`)`). Also, URLs whose domains don't contain a dot are _not_ recognized, so I can't click on `http://bugtracker/ticket/1234` in work IRC.
**DO NOT** use that regex; it's susceptible to DoS via catastrophic backtracking. I'm not sure a pure regex is appropriate for this; more likely you want a dead simple regex...
Try matching that regex against `http://www.foo.com/!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!`. Depends on the engine, of course, but most engines handle nested `+`/`*` operators [very poorly](http://www.regular-expressions.info/catastrophic.html). Perl has special protection against this, so it works;...
_wow_, thanks! would've been a nightmare to figure this all out :) i'd like to wait for the actual 0.6 release to merge this, since some of it breaks on...
Adapted everything that doesn't cause compilation to fail in https://github.com/eevee/amulet/commit/2a728a839157c43c1ad0f5564658c4911d3a8104. Remaining bits are `mut` moving, the new `impl` syntax, and the new lifetime syntax.
I'm not sure offhand how I'd tackle this, but it _is_ an interesting problem, and I didn't know about that feature. I'll leave this open and take a closer look...
I recently discovered that `resolve_prefer_ipv6` will try IPv6 not just when you have no v6 address, but _even if_ IPv6 is disabled system-wide (via `net.ipv6.conf.all.disable_ipv6`). Despite being named "prefer", the...
Might be a good place to try out #391 — 3D floors are a computed property like slopes and the other `MapSpecials`.