Test DNS Server Speed, Google Public DNS and OpenDNS Benchmarking

DNS (Domain Name System) is a hierarchical naming system built on a distributed database for computers, services, or any resource connected to the Internet or a private network. It associates various information with domain names assigned to each of the participating entities. Most importantly, it translates domain names meaningful to humans into the numerical identifiers associated with networking equipment for the purpose of locating and addressing these devices worldwide. With this DNS you … Read more...

Snippet Code To Benchmark Your PHP Script

Testing is one of common task for programmer. In every development phase, testing is need to be done before moving to next phase. There are a lot of testing technique. One of them is benchmarking, to test script/code performance. Benchmark test result can be used to optimize the code/script.As in PHP you can get how long your server took to parse and execute your code. Here is the simple snippet code to get the execution time:This simple code will help you discover bottlenecks in … Read more...

Securely Transfer Your File To Remote Computer

A very common job for a web developer is actually uploading a single file from a directory in your development environment to the exact same subdirectory on a remote server. Unfortunately, this always ends up as an irritating manual process including switching sites on machines, and waste a large amount of time. One solution to this issue is using WinSCP. With WinSCP you can securely transfer your file to the remote server, and the best thing is secure synchronize your files. Reduce a lot of my … Read more...

Free PHP Obfuscator

Update: The obfuscator download is not active anymore.You may need to obfuscate your php code for security or licensing reasons. So the other third party cannot easily hijack your code for their own reasons. Obfuscated code is source or machine code that has been made difficult to understand for humans. So if you planning to sell your php script, make sure you obfuscated it for security and license reasons.There are a lot of tools to obfuscating PHP script, 2 best tools on the net right … Read more...

Remove All Annoying Ads With Greasemonkey

Greasemonkey is a Mozilla Firefox extension that allows users to install scripts that make on-the-fly changes to HTML web page content on the DOMContentLoaded event, which happens immediately after it is loaded in the browser. As Greasemonkey scripts are persistent, the changes made to the web pages are executed every time the page is opened, making them effectively permanent for the user running the script. Greasemonkey can be used for adding new functions to web pages (for example, embedding … Read more...

Use Pastebin.com To Share Your Code Or Result Set

Sometimes a software or web developer or web administrator or server admin, stuck with the problem they are facing. And you need help from the expert. So you need to paste your code for temporary, so the expert can help you find where the problem is. For network admin probably you need to see the client routing log or ping log, so you know why your client couldn't connect to the server/network. You can use pastebin.com for this purpose.Pastebin.com is a website where you can store text for a … Read more...

Incredible iPhone As Music Instrument

See how you can use iPhone as a Music Intrument:Lady Gaga - Poker Face by Applegirl (ver. I-Phone Apps) [youtube width="520" height="300"]nzh2UygPwDU[/youtube]Irreplaceable by beyonce (ver. I-Phone Apps) [youtube width="520" height="300"]HK15Fwho6Ys[/youtube]Iphone guitar hotel california - Preciso de um Destes [youtube width="520" height="300"]Bqx3VWtEqsM[/youtube]IPhone Guitar - The Godfather Theme [youtube width="520" height="300"]Y8pPXfdYQhs[/youtube]GuitarStudio on … Read more...

[HowTo] Install ODBC Driver For MySQL On Ubuntu

ODBC or Open Database Conectivity provides a standard software interface for accessing database management systems (DBMS). ODBC could work in multi platform. With ODBC API, the application only needs to know ODBC syntax, and the driver can then pass the query to the DBMS in its native format, returning the data in a format the application can understand.As ODBC work in multi platform, ODBC could work in Ubuntu as well. For software developer they are using ODBC so their application could … Read more...

[HowTo] Install Memcached On Centos 5

Memcached is a free & open source, high-performance, distributed memory object caching system, intended for use in speeding up dynamic web applications by alleviating database load. A Wordpress blog with W3 Total Cache plugin support memcached to cache database query and page cache. This will make high visitor blog but low memory and cpu load. Beside using it with Wordpress you can use it in your web application as well, read memcached API for more details.How to install Memcached on … Read more...