Monthly Archives: November 2012

Programming: Issue #4 [Cryptography][Python]: Basic Cryptography

– There are two kinds of cryptography in this world: cryptography that will stop your kid sister from reading your files, and cryptography that will stop major governments from reading your files. – Bruce Schneier Enigma machine, used by WWII … Continue reading

Posted in Programming | Tagged , , , , , , , | 2 Comments

Programming: Issue #3 [Classes][Python]: Basic Classes

The next step on the socket programming would be to create a server that can handle many connections at the same time. In order to do this, we’ll need to have multiple threads running on the server program. However, before … Continue reading

Posted in Programming | Tagged , , , | Leave a comment

Programming: Issue #2 [Sockets][Time][Python]: Basic Sockets 2

Today I’m going to explain a socket program that is kind of more useful than first one, since a client that does not receive any data back from the server has very limited uses (it can still be used as … Continue reading

Posted in Programming | Tagged , , , , , | Leave a comment

Programming: Issue #1 [Sockets][Python]: Basic Sockets

I will start the programming section with a small post about socket programming on python. This very first post intends to explain the basics of sockets by showing a very simple program. Sockets are low-level communication structures used to transfer … Continue reading

Posted in Programming | Tagged , , , | Leave a comment