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

Posted in Blog Post | Tagged , | 5 Comments

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

Posted in Blog Post | Tagged , , | Leave a comment

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

Posted in Blog Post | Tagged , , | 1 Comment

WordPress ? ????? ?????????

????? ????????? ? ???? ????? ??? ???? ????? ??? ? ???? ???? ?????? ??? ????? ? ??? ?????? ????????? ? ???? ???? ??? ???? ????? ??????? ?????? ??????? ????? ??????? ??? ??????????? ? ??? ????? ? ?????? ???? ???? ?????? … Continue reading

Posted in Blog Post | Tagged , , , | 2 Comments

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

Posted in Blog Post | Tagged , | Leave a comment