Category: Programming
Top 10 Most Infamous Black Hat Hackers of All Time
In the world of information technology, black hat hackers (also known as crackers or cyber-criminals) are known as the bad guys or villains. Most of them break into computers or networks without authorization to steal money and classified and sensitive information, while others are doing it simply for the challenge or the thrill of hacking. [...]
UltraEdit Text Editor for Linux (UEx) Released
One of the leading text editors for Microsoft Windows is finally available on Linux. UEx (UltraEdit for Linux) has been released fordownload with packages available for Ubuntu, Fedora, OpenSUSE, and Red Hat. Users of other distributions can get it via .tar package with 32 and 64 bit support. UEx will make coding in C, C++, HTML, Javascript, XML, [...]
Possibly the Funniest Programming Joke Ever
I know it is not yet time for our annual Christmas humor, however I feel like sharing a joke today. –A joke that is possibly one of the funniest programming jokes of all time. Maybe some of you have already heard or read about this one because it’s rather old, but just to relive the fun, here it [...]
Teaching Kids Programming with Free Programming Languages
Teaching young students or even your own kids to learn or be interested in programming can be really daunting. However, there are free programming languages that are designed to teach children the basic concepts and elements required in traditional programming that you can use to get the job done quite easily. Most of these languages [...]
15 Inspiring Bruce Lee Quotes That Aspiring Hackers Can Learn From
Bruce Lee is highly regarded as one of the most influential martial artist of all time. His amazing physical features, fitness, and skills made him a cultural icon. But perhaps unknown to some is his mental strength that contributed much to his success. He believed that any knowledge ultimately led to self-knowledge, and said that [...]
A Simple Python Alarm Clock
Problem: You are all alone in a far away land and needed to wake up early the next day. The problem is, you forgot to bring any alarm clock. But, you brought a Linux-powered laptop computer with you. Say for example an Asus Eee PC. Solution: Most Linux distributions have Python installed out-of-the-box. All [...]
Holy Programming
While looking for some Python codes using Google Code Search (beta), I got bored and remembered an article entitled “F*cking programming”. –A search query using profane words revealed the evil and yet the funny side of the people behind the codes. So, I began to wonder and think of the opposite side or character of programmers. [...]
Free and Open Source IDE Software Applications
In computing, a software application that provides complete facilities to computer programmers for software development is called an integrated development environment (IDE). An IDE usually consists of a source code editor, a compiler and/or interpreter, build automation tools, and a debugger. To simplify the construction of a GUI, sometimes a version control system and various tools are [...]
Extracting HTML Documents from Web Pages Using Python
Extracting HTML Documents from Web Pages Using Python: Question: Can you extract HTML documents from live web pages without even using an internet browser? Answer: Yes you can. All you need is a Python interpreter and these shortcommands: >>> import urllib >>> sock = urllib.urlopen(“PAGE URL”) >>> htmlSource = sock.read() >>> sock.close() >>> print htmlSource Illustration (click to enlarge):
Highly Recommended Books on Python
Highly Recommended Books on Python: Here is my own compilation of highlyrecommended books about Python programming language. They are classified according to user’s experience level so take your pick: …………………. Beginner: Learning Python By: Mark Lutz With this hands-on book, you can master the fundamentals of the core Python language quickly and efficiently, whether you’re new to [...]
