Snippet Code To Make Automatic Live URL With JQuery

Sometimes if you a blog or forum owner you need to make all your text (in url format) turn into a live url (clickable) to make your visitors easier to visit the link inside that content rather than manual copy that link and paste it in address bar. It's hard if you change all your content one by one to make this link click able.See the following example:Text with url format (unclickable):Live link/url (clickable): So to change that text into live link, you can … 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...

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

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

Free Programming E-Book List

Everybody love free things. Including me. Here is the compiled list of Free programming books and tutorial available for you to download. And once again it is free, i will update it more as soon as i get a new link.List of freely available programming books from stackoverflow.com"The only source of Knowledge is Experience" (Albert Einstein) … Read more...

Guide To Improve Your WordPress Blog Performance For Free

WordPress is a free and open source CMS for blogging (which is suitable, via add-ons, for e-commerce use). And besides blogging, WordPress has the advantage of being already SEO-friendly, as it is easily crawled by search engines. What’s more, WordPress has already done 80% of the SEO for you.So what can you do to increase your SEO points? One thing you can do is improve your blog performance. Visitors and search engines love fast-loading blogs. So how can you improve your WordPress blog … Read more...

How to Check And Repair MySQL Database

Sometimes your MySQL database data is corrupted. Usually it is not properly close when querying to the database, because of high server load or MySQL server suddenly down. This will make your database files or tables corrupted. And your web application won’t run normal or even show Internal server error or cannot connect to the mysql database server.There are many ways to to fix this error: 1. Use MySQL check and repair function2. Use mysqlcheck to check and repair database3. Use … Read more...

Copy Files Faster On Windows

Windows native file management is not fast especially when you copying thousands of small to medium size files. And when it have broken files, the copy process will stop and cannot continue. And the other thing when you copying files, you cannot pause it if you need your computer resources to do other processes.The alternative to move and copy files on Windows is TeraCopy. TeraCopy from Code Sector is a free file-copying utility that offers more speed and security than Windows. It’s a … Read more...