An open API service indexing awesome lists of open source software.

https://github.com/fschutt/errors

A bunch of examples of errors I've encountered so far, to remind myself to not do them again / analyze them later
https://github.com/fschutt/errors

Last synced: 11 months ago
JSON representation

A bunch of examples of errors I've encountered so far, to remind myself to not do them again / analyze them later

Awesome Lists containing this project

README

          

# errors
A bunch of examples of errors I've encountered so far, to remind myself to not do them again / analyze them later

## Other annoyances

- Casts happen without any warning so `(2_isize - 3_isize) as usize` has the same effect as "overflowing", although technically not overflowing, since it's perfectly safe.