2
votes
What is better practice when programming a member function?
It is also common to mix both styles when defining a class. For simple methods consisting of 1 or 2 lines it is common and convenient to define the method body within the class definition. For more …
1
vote
How to handle a broken pipe (SIGPIPE) in python?
Assuming that you are using the standard socket module, you should be catching the socket.error: (32, 'Broken pipe') exception (not IOError as others have suggested). This will be rais …
1
vote
What are some best practices for handling sensitive information?
Different PCI standards compliance is required for different applications. If your application simply collects CC numbers and then submits them to a 3rd party PCI compliant payment gateway, your co …
0
votes
PHP, Python, Ruby application with multiple RDBMS
It's even more "old fashioned" than modern ORMs, but doesn't ODBC address this issue?
…
