Free Photo Editor Tools

Since digital era, most people in the world use digital image or photo. The negative film era has come to the end. You can store your digital image in any digital storage devices (such as harddisk, flashdisk, CD/DVD, Memory card, etc.) or store on the internet like in Facebook account. Digital images could be edited using some tools, and i would like to share some of the best free tools to edit your photo.1. GIMP (GNU Image Manipulation Program)GIMP or GNU Image Manipulation Program is … Read more...

Free Twitter Page Designer Tool

Most of internet users are on Twitter including me and probably you have Twitter account as well. Twitter is owned by Twitter Inc., a social networking and micro blogging service, enabling its users to send and read messages called tweets. Lot of big company or famous people update their official status on Twitter as first statement. And others that followed will get the update as well.Twitter allow us to design our Twitter page. This will make our Twitter page unique than the others. And i … Read more...

Send Bulk Email With PHP

With mail() function in PHP you can send email from your system to any email address easily. If you using a Linux system, you don't have to set anything to use mail() function. But in Windows you need to add extra line in php.ini to specify your SMTP settings.See the code below:But sending bulk emails using PHP mail() function, often consider spamming. As PHP mail() will send all the email at once during the iterations. The code is something like this:That method above will … Read more...

TortoiseSVN: Free and Easy To Use Subversion Client

Apache Subversion (SVN) is software version and revision control. You can collaborate with other developer using SVN. As you can commit your revision to the code and also add a comment about the changes. To use Subversion you need a Subversion client (svn client). In Ubuntu it is available under Synaptic. But in Windows you need to install 3rd party tool. One of the best is TortoiseSVN.[quote sourcename="TortoiseSVN Developer" sourceurl="#"]TortoiseSVN is an easy-to-use SCM / source control … Read more...

Web Development Using PHP, MySQL and Flash

PHP and Adobe Flash (formerly Macromedia Flash) are popular scripts used for creating web pages and online multimedia presentations. The two scripts can be combined to create dynamic, interactive pages similar to those used by big movie studios to promote their latest film releases.PHP (Hypertext Preprocessor) is similar to the standard static HTML script and it recognizes the elements of HTML, but it also uses active server-side processing in creating dynamic pages. PHP can deliver varied … Read more...

List Of Useful Websites For A Web Developer

I have been programming web application for a several years now. It was start from 2003 when i was in a college. Built a very simple static html websites at that time. And then i'm learning several web programming language such as PHP, ASP & ASP.Net, JSP, Groovy & Grails, and some others. And now i'm focusing on PHP. And i would like to share list of useful websites that i use when i want to learn a new thing or when i stuck.Official Documentation SitePHP.Net The official PHP … Read more...

Free Database Designer For MySQL With MySQL Workbench

If you are looking for a nice and good database designer for MySQL, then i'm very recommend you to use MySQL Workbench. Beside it is free (GPL License for Community Edition), it is also easy to use. Before i found this, i used to make database designer with other tools or make a hand writing database design (ERD/Entity Relationship Diagram) then i manually make the all tables through PhpMyAdmin. This took a long time.After i tried MySQL Workbench, i'm very happy about it. It is easy to use. … Read more...

Make Glow Effect With CSS

This glow effect trick with CSS is not a new trick. As the example you can see the glow effect when you mouse hover to any related post images at the end of this post. To make CSS glow effect is not hard, you just need to add 2 lines in your css class where you want your glow effect show.Here is the 2 lines:How to use it for an image:How to use for an input box:Since -moz-box-shadow property only work for Firefox, so this technique only work for Mozilla Firefox and friends … Read more...

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

PHP Snippet Code To Generate Random Float Number

Generating a float random value in PHP is little bit tricky. Both rand() and mt_rand() will return Integer value. But sometimes you need to generate random float value, for currency or math case for examples. So i would like to share my little script to generate a Float random value.Usage:This code is free to use in any php application you like. If you like please leave me any comments, i really appreciate it. … Read more...