2009

HTML: <COL> vs. <COLGROUP> – What’s the difference between the table tags COL and COLGROUP?

As we all know, HTML tables have a way to distinguish between columns and groups of them to do things about them and that is the COL tag and the COLGROUP tag. They pretty much have exactly the same set of available attributes – they are almost identical except for the names they are born …

HTML: <COL> vs. <COLGROUP> – What’s the difference between the table tags COL and COLGROUP? Read More »

Dismiss unusable proxy server lists – Build your own stable socks5 proxy server and surf anonymously in minutes!

All web hosting servers with SSH access enable you to tunnel the sessions so that your local computer can act like a socks proxy. For web hosting users, browsing anonymously has never been so easy. There’s a detailed step by step tutorial for turning your web host into a socks5 proxy server. Basically, you use …

Dismiss unusable proxy server lists – Build your own stable socks5 proxy server and surf anonymously in minutes! Read More »

GoDaddy: 2 Bad Features Combined Into 1 Great Feature

So lots of people are complaining about: GoDaddy barricading domain transfers by denying transfer requests on domains which have recently been modified in contact information (for the last 60 days). Their poor security features (no even security questions when modifying name servers or contact information) and high potential to lose premium domains. Yeah, they suck. …

GoDaddy: 2 Bad Features Combined Into 1 Great Feature Read More »

HTTP Explained: What Does HTTP Stand For, What is HTTP Meaning and HTTP’s Definition?

What is HTTP in all the web site URLs / web page addresses you see everywhere online? HTTP Explained: Just like people communicate with each other following certain protocols, HTTP is the protocol between the client (your computer using web browsers) and the server (web server serving web pages and similar online resources). So what …

HTTP Explained: What Does HTTP Stand For, What is HTTP Meaning and HTTP’s Definition? Read More »

Cross browser compatible HTML table cellspacing and CSS border-spacing property

As a result of the failure of IE (IE6 and IE7) browsers to implement the border-spacing CSS property for HTML tables. The mere CSS rules below: border-spacing:2px; border-collapse:separate; /* border-spacing will be ignored should border-collapse:collapse;*/ Have no effect of widening the cells distance on IE. To enable border spacing and cells gap, you will not …

Cross browser compatible HTML table cellspacing and CSS border-spacing property Read More »

SQL: Randomly Shuffle Rows or Records – Reorder them in a random order

Easier than it appears. Just create a new table and import all those rows and records random selected and ordered by the RAND() SQL function: CREATE TABLE new_table SELECT * FROM old_table ORDER BY RAND() Of if you have created a table identical to the structure of the old one, use INSERT INTO instead: INSERT …

SQL: Randomly Shuffle Rows or Records – Reorder them in a random order Read More »

Kaizen — constant improvements or changes

Kaizen is the Japanese saying of continuous advancement. In Chinese, it roughly resembles one word: รฆโ€ยนรฅโ€“โ€ž. Make a decision on what to do, focus your time and keep refining it. Rome is not built in one day and Kaizen is the way to create an Empire. Takes a long time but the results will be …

Kaizen — constant improvements or changes Read More »

phpBB Spam Control — phpBB Anti-Spam Options for Fresh Forum Installations

phpBB is pretty much the best php forum software out there that is free, and comes the first choice of many webmasters. However, after a few weeks of first installation, many complain that spam bots start to overwhelm their forums, flooding with automated spam registrations and spam posts. Unfortunately, that is generally because: phpBB disables …

phpBB Spam Control — phpBB Anti-Spam Options for Fresh Forum Installations Read More »

PHP: Return and Get the Last Letter / Character of a String

To get the last character of a string in PHP, you need a combination of the functions of substr() and strlen(). For example, you need to get the last digit of a date string such as ‘Feb. 3’ or ‘Aug. 14’ to determine whether the trailing of the date will be ‘st’, ‘nd’, ‘rd’ or …

PHP: Return and Get the Last Letter / Character of a String Read More »

Robots.txt Disallow All and Block Search Engine Spiders

You can literally block any visitor including search engines and secure the data or information you have on your website by the help of .htaccess Deny From All. A similar solution is to have a robots.txt, majorly for search engines. To disallow all search engine visits and stop the any spider or crawler, create a …

Robots.txt Disallow All and Block Search Engine Spiders Read More »

Incisive Software Engineering & Programming Quotes and Sayings

” If debugging is the process of removing software bugs, then programming must be the process of putting them in. “ – Edsger Dijkstra ” Rules of Optimization: Rule 1: Don’t do it. Rule 2 (for experts only): Don’t do it yet. “ – Michael A. Jackson ” The best method for accelerating a computer …

Incisive Software Engineering & Programming Quotes and Sayings Read More »

The Best Online Domain Name Availability Checker Tool (AJAX)

As if there’s an offline one to check whether a domain is available or not. ๐Ÿ˜‰ Psychic Whois is it. It’s the best domain availability checking tool I know so far. AJAX powered, it instantly checks whether a domain is available for registration after you have typed the primary part by listing all 6 popular …

The Best Online Domain Name Availability Checker Tool (AJAX) Read More »

Scroll to Top