What are RFC’s?

The term comes from the days of ARPANET, the predecessor to the internet, where the researchers would basically just throw ideas out there to, well, make a request for comments from the other researchers on the project. They could be about pretty much anything and were not very formal at the time. If you go … Read more

International phone number max and min? [duplicate]

, where the format of telephone numbers is standardized by ITU-T in the recommendation E.164, which specifies that the entire number should be 15 digits or shorter, Source: http://en.wikipedia.org/wiki/Telephone_number Also, check this other question on SO: What’s the longest possible worldwide phone number I should consider in SQL varchar(length) for phone

What is the best practice for formatting logs?

I like this format for log files: $ python simple_logging_module.py 2005-03-19 15:10:26,618 – simple_example – DEBUG – debug message 2005-03-19 15:10:26,620 – simple_example – INFO – info message 2005-03-19 15:10:26,695 – simple_example – WARNING – warn message 2005-03-19 15:10:26,697 – simple_example – ERROR – error message 2005-03-19 15:10:26,773 – simple_example – CRITICAL – critical message … Read more