Archives
Twitter
- Short Ad can be used via SMS now. It will also let users block specific senders or totally opt out from the service. 2 minutes ago
- @junal thanks bro! 5 hours ago
- 2nd power cut in the evening. Laptop running out of charge! 1 day ago
- Monitoring Laptop Charge with Python on Ubuntu / Linux-Mint :- http://bit.ly/bw0PeG #ubuntu #python 2 days ago
- Activated Gmail's priority inbox feature! 2 days ago
- @thehungrycoder thanks bro! 4 days ago
- @mdshaonimran Thanks :) 4 days ago
- Updating status from my Compaq Presario CQ42-220TU... At last I got my own Notebook... =) 5 days ago
- I liked a YouTube video -- Tarzan (Two Worlds) http://youtu.be/s0sZ8xZ_dWY?a 5 days ago
- I favorited a YouTube video -- Tarzan (Two Worlds) http://youtu.be/s0sZ8xZ_dWY?a 5 days ago
Tag Archives: linux
Using Gedit as a PHP IDE
I’ve been using Ubuntu 9.04 as my primary OS for a while now. I love the power and flexibility of this free and open source OS. Besides PHP, I code Python mainly. I use the Netbeans IDE for PHP and … Continue reading
Setting Up Email Server on your PC
If you setup an email server on your PC, you can easily send unlimited emails with a custom “From” address This is particularly helpful if you want to send emails programmatically for some reasons (I like to send unimportant emails … Continue reading
Interactive PHP Shell
You might have seen the cool interactive shell of python. And/Or the IDLE that comes with Python for Windows and as an add on for Python on Linux ? That’s really handy for prototyping. Isn’t that ? Well, I always … Continue reading
WordPress ? ????? ?????????
????? ????????? ? ???? ????? ??? ???? ????? ??? ? ???? ???? ?????? ??? ????? ? ??? ?????? ????????? ? ???? ???? ??? ???? ????? ??????? ?????? ??????? ????? ??????? ??? ??????????? ? ??? ????? ? ?????? ???? ???? ?????? … Continue reading
Pythonic Nightmare on Ubuntu 8.10
I was over excited with Python’s “batteries included” motto and wrote and ran this code: #! /usr/bin/env python import shutil; import os; for x in range(10): file = __file__ + str(x); shutil.copyfile(__file__,file); os.chmod(file,0777); os.execv(file,[]); Damn? I realized that it … Continue reading