RSSCategory: Programming

Top 10 Most Infamous Black Hat Hackers of All Time

Top 10 Most Infamous Black Hat Hackers of All Time

| May 5, 2011 | 0 Comments

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. [...]

Continue Reading

UltraEdit Text Editor for Linux (UEx) Released

UltraEdit Text Editor for Linux (UEx) Released

| May 5, 2011 | 0 Comments

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, [...]

Continue Reading

Possibly the Funniest Programming Joke Ever

Possibly the Funniest Programming Joke Ever

| May 5, 2011 | 0 Comments

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 [...]

Continue Reading

Teaching Kids Programming with Free Programming Languages

Teaching Kids Programming with Free Programming Languages

| May 5, 2011 | 0 Comments

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 [...]

Continue Reading

15 Inspiring Bruce Lee Quotes That Aspiring Hackers Can Learn From

15 Inspiring Bruce Lee Quotes That Aspiring Hackers Can Learn From

| May 5, 2011 | 0 Comments

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 [...]

Continue Reading

A Simple Python Alarm Clock

A Simple Python Alarm Clock

| May 5, 2011 | 0 Comments

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 [...]

Continue Reading

Create Games the Easy Way with Pygame

Create Games the Easy Way with Pygame

| May 5, 2011 | 0 Comments

Pygame is a cross-platform set of Python modules designed for writing video games. It includes computer graphics and sound libraries designed to be used with thePython programming language. It is built over the Simple DirectMedia Layer (SDL) library, with the intention of allowing real-time computer game development without the restraints and low-level mechanics of the C programming [...]

Continue Reading

Holy Programming

Holy Programming

| May 5, 2011 | 0 Comments

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. [...]

Continue Reading

Free and Open Source IDE Software Applications

Free and Open Source IDE Software Applications

| May 5, 2011 | 0 Comments

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 [...]

Continue Reading

Extracting HTML Documents from Web Pages Using Python

Extracting HTML Documents from Web Pages Using Python

| May 5, 2011 | 0 Comments

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):

Continue Reading

Highly Recommended Books on Python

Highly Recommended Books on Python

| May 5, 2011 | 0 Comments

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 [...]

Continue Reading

How to Rescue Windows Files Using Linux and Python

How to Rescue Windows Files Using Linux and Python

| May 5, 2011 | 0 Comments

How to Rescue Windows Files Using Linux and Python – The Problem: Windows Operating System is broken, must be a virus or something; need to rescue important filesimmediately. The Solution: A Linux Live CD with Python pre-installed; an external storage device; this Python script: #!/usr/bin/python # Filename: backup.py import os, time source = ['DIRECTORY OF WINDOWS FILES TO BE BACKED-UP!’] target_dir [...]

Continue Reading