How To Make Bootable USB

0

Having a bootable USB is very essential, especially if you are a Netbook user. Using bootable USB to install an operating system (OS) not only makes the installation faster, but also saves a DVD. Creating or using an USB drive to install Windows operating systems is very easy if you follow the below mentioned steps. [...]

How to Install Software from DMG Files on a Mac

0

One of the most common mistakes I see among new Mac users is fumbling with how to install new software. The process for installing new applications on your Mac can be confusing at first because it differs greatly from Windows’ software installation process. Nevertheless, the Mac method of software installation is actually quite simple and [...]

How To Install Nvidia Driver in Ubuntu 11.10 Oneiric Ocelot?

0

Installing the proper VGA driver in GNU/Linux is not the most easiest (not user friendly is the best word I guess) thing. This is because, usually you have to get the Kernel-source code and then get the driver from the vendor, change the run-level and finally you’ll have to let the driver to build the [...]

How to Install Nvidia Graphics Driver in Ubuntu

0

I have installed Nvidia driver from default repository in my just installed Ubuntu 10.10 amd64 and enabled compiz 3D effects.Install Nvidia driver in Ubuntu Maverick (10.10) is much easier than Ubuntu Lucid (10.04). Install from the default local repository: Open a terminal window from Applications ->Accessories menu,and run this command: sudo apt-get install nvidia-current then [...]

How to check what version of Ubuntu You are running

0

How to check what version of Ubuntu You are running. To check what version of Ubuntu you are currently running you can go into System Settings and open System Information. Here your Ubuntu version will be listed in the Overview Section. On prior versions of ubuntu you can click System -> About Ubuntu. The first [...]

Implement Google like CAPTCHA in PHP

0

Implementing captcha in PHP is simple with reCaptcha. Recently i came accross the captcha used by google. It’s pretty neat and readable. I searched for a service that would provide the same as reCaptcha does, but couldn’t find one. During my search i came accross a class file written by Jose Rodriguez which was simple [...]

Cool PHP Captcha

0

This project provides the SimpleCaptcha class. The images are similar to google captchas. Basic example: session_start(); $captcha = new SimpleCaptcha(); // Change configuration… //$captcha->wordsFile = null; // Disable dictionary words //$captcha->wordsFile = ‘words/es.txt’; // Enable spanish words //$captcha->session_var = ‘secretword’; // Change session variable $captcha->CreateImage(); You can validate the php captcha with: if (empty($_SESSION['captcha']) || strtolower(trim($_REQUEST['captcha'])) != [...]

How to Create a simple Subscribe Webform with php

0

How to Create a simple Subscribe Weform with php Newsletter Software, Bulk Email Software, Mailing List Management and Email Marketing Software MailList Controller contains a built-in HTML Webform Generator, which will build the HTML Webform and the required php-Script for you. There is not manual coding required. The MailList Controller HTML Webform Generator is an [...]

Create Google XML Sitemap in Php and Mysql

0

Google Xml Sitemap in Php and Mysql, In this tutorial i will teach you how to create your own Php and Mysql Sitemap for your website. What is Sitemap? Sitemaps are a way to tell Google about pages on your site we might not otherwise discover. In its simplest terms, a XML Sitemap—usually called Sitemap, [...]

[Javascript] Remove only default message onclick, not text a user inputs

0

a simple working script <input type=”text” name=”name” value=”Name(*)” onfocus=”javascript:if(this.value == ‘Name(*)’) this.value =”” onblur=”javascript:if(this.value == ”) this.value =’Name(*)’” />

Page 1 of 3912345...102030...Last »
Go to Top