Jon Rafkind

Results 13 issues of Jon Rafkind

Invoking `load_dotenv` as the target of a thread effectively does nothing because `find_dotenv` is unable to locate the local .env file. ``` import dotenv threading.Thread(target=dotenv.load_dotenv).start() ``` This is because find_dotenv()...

This PR re-orders some fields in structs in order to reduce the size in bytes that the struct takes up in memory. Go is sensitive to the exact ordering of...