Everything i know about Threads

I am going to cover a huge concept here. How python code executes  Multitasking Process based multitask (Multiprocessing) Thread based multitask (Multi-threading) GIL (Global Interpreter Lock) Green Thread Thread based programming is hard. There are no two ways about it. Every time one thinks he or she understands everything there is to know about how … Continue reading Everything i know about Threads

Harness the Power of Python

Hi Everyone. I would like to introduce my Youtube channel named Code Box for better and good coding practice and learning. I have started uploading Videos to my channel. First Playlist is for getting started with python learning. I will me uploading 5 videos to the playlist and i am aiming to cover the following … Continue reading Harness the Power of Python

Python 2, Python 3 or both ?

Python programs are generally expected to run slower than Java programs, but they also take much less time to develop. Python programs are typically 3-5 times shorter than equivalent Java programs. It is often 5-10 times shorter than equivalent C++ code! Anecdotal evidence suggests that one Python programmer can finish in two months what two … Continue reading Python 2, Python 3 or both ?

Connecting to 3G usb modem in ubuntu.

I am using sakis3g to connect to a 3g modem. will explain each step in detail. URL to download the tar file: Click here to download once you have downloaded the file please follow the steps below to : sudo mkdir /usr/bin/modem3g sudo chmod 777 /usr/bin/modem3g sudo cp ~/Downloads/sakis3g.tar.gz /usr/bin/modem3g cd /usr/bin/modem3g sudo tar -zxvf … Continue reading Connecting to 3G usb modem in ubuntu.