Search Results

9
votes

How to create a file with a given size in Linux?

Just to follow up Tom's post, you can use dd to create sparse files as well: …
3
votes

How to determine if a directory is on same partition

Another way is the “better to ask forgiveness than permission” approach—just try to rename it, and if that fails, catch the appropriate OSError and try the copy approach. ie: …
2
votes

Pickled file won’t load on Mac/Linux

As mentioned by Adam, the problem is likely to be the newline format of the pickle file. Un …
2
votes

Obfuscate strings in Python

Obviously your best option is to delegate this to a third party. If you can authenticate with whatever you're connecting to using some other credential (eg. the user account your process is runnin …
2
votes

How To Reversibly Store Password With Python On Linux?

Encrypting the passwords doesn't really buy you a whole lot more protection than storing in plaintext. Anyone capable of accessing the database probably also has full access to your webserver mach …