Rust gotcha I haven't seen before: you can't move out of a vec by index, even if you own the vec.
This is because it'd leave the vec in a bad state: you need .remove() or .pop() instead.
miniblog.
Related Posts
Nasty Python 2 gotcha with hasattr():
Delighted to hear that Python 3.2+ has fixed a nasty gotcha with stale .pyc files: http://t.co/ZFOojps86y
Nasty org-mode gotcha: "when updating [w/] ELPA, you have to install [org-mode] in a session where no Org function has been called already."
