Tuesday, April 26, 2005

Google Rules

http://www.google.com/intl/en/webmasters/guidelines.html
Webmaster guidelines to make a website
getting recognized and receiving high quality traffic and to optimize web site's traffic

https://www.google.com/support/adsense/bin/static.py?page=tips.html
Google Adsense optimization tips

Monday, April 18, 2005

online business review

CyberCafe software
RM500 for a license (1 server n unlimited clients)

Wednesday, March 30, 2005

PC preventive maintenace

SECURITY

  • Check antivirus for updates
  • Check windows for patch and updates
  • Scan for spyware
  • Scan for adware
  • Check firewall is on

ERROR CHECKING

  • Scan disk (at least basic scan)

PERFORMANCE

  • Defrag hard disk
  • Check for unused auto-loaded software (on startup)
  • Check for unused software in hard disk using add/remove program
  • Delete temporary files
  • Clean up registry (advance)

CLEANLINESS

  • Clean up mouse (for wheel mouse)

CHECKLIST before formatting PC’s

  1. Check for drivers – display, sound, modem any internal/external special devices
  2. Backup data to different partition/disk
  3. All necessary CD’s are there
    1. Windows (OS)
    2. OS patches
    3. Antivirus software
    4. Drivers
    5. Other basic commonly used software

Tuesday, March 15, 2005

Website maintenance

Articles related to maintaining website.

Page cache using PHP
http://www.developertutorials.com/tutorials/php/php-caching/page1.html

Friday, March 11, 2005

Business plan outline

Company objective
Mission
Keys to success
Company Summary
Company Ownership
Start-up Table (startup costs)
Start-up summary
What you are selling
Your market analysis
The business you are in
Sales forecast
Your marketing plan
Your management team
Start-up funding
Cash flow chart
Break even analysis
Financial Plan summary
Strategy and Implementation
And executive summary

Thursday, March 03, 2005

Using pear DB class

// Load the DB code
require 'DB.php';

// Connect to the database
$dbh = DB::connect('mysql://ipms:nopass@localhost/ipms');

// Send a SELECT query to the database
$sth = $dbh->query('SELECT * FROM IPMS_LEAVE');

// Check if any rows were returned
if ($sth->numRows()) {
print "";
print "";
// Retrieve each row
while ($row = $sth->fetchRow()) {
// And print out the elements in the row
print
"\n";
}
print "
IDLeave DateNotify Date
$row[0]$row[1]$row[2]
";
} else {
print "No results";
}

?>

Sunday, February 20, 2005

Start small grow BIG

All startup tips and tricks will be gathered and listed here.

Impression is the most important thing for startups. People don't know you and the only thing you have is the IMPRESSION. So always do well and be good.

Do rather than just write and talk. Just do it. Show something people can see on what you can do and what you have been doing. Produce a good prototype and show them diagrams instead of just text that tell them about what you are doing.

Your first customer wll always be your closest family members, friends and neighbors. Try to find new customers within 10-minute drive from your location (office or home).

Involve and contribute in society and get to know more people as you will get more contact and most probably more customers in the future.

Business is always start with LOST. So plan ahead to survive for first few years.

If you don't have money to invest, then invest your time and skill in your business. But make sure the investment is worthwile

Thursday, January 27, 2005

Yahoo site builder

Downloaded yahoo site builder for free at

http://webhosting.yahoo.com/ps/sb/

Will try to install and test the software later.

Tuesday, December 28, 2004

MONEY TREE Formula

The MONEY TREE Formula
by Robert G. Allen

M - multiple stream of income
O - outstanding prod/services
N - nothing / little money down
E - employee-resistant
Y - yield

T - trend and timing
R - residual
E - essential
E - enthusiasm

full article at
http://oneminutemillionaire.com/articles/moneytree.asp

Saturday, December 25, 2004

Change error reporting setting in PHP

Open php.ini (if in windows: c:\windows\php.ini)
Search for 'error_reporting'
Change the setting whether ALL_ERRORS - NOTICE etc. (example is in php.ini file)

Monday, December 20, 2004

Practical IT students of local university

Sometimes it is quite helpful when we have some practical students helping us in doing IT projects. Do light programmer (some of them are pretty good in programming) . So here I would like to start compiling the list of duration of practical training of IT students for all local universities and colleges.

MMU: May-Aug
UNITEN:
UTP:

UITM: Dec (4mth)
UM
UTM
UKM
UUM: April (4mth)
USM
UPM: April - July

Lost Windows XP password?

Try this bootdisk (also works with windows NT/2000)
No need to format your hard disk. Just load the disk and change the password. So insecure :)

http://home.eunet.no/~pnordahl/ntpasswd/

* Not applicable to windows with FAT32 file system

For FAT32 FS, just delete the SAM file an SAM.LOG in
c:\windows\system32\config and replace with default SAM file available in c:\windows\repair

download microsoft boot disk (from all range of Windows OS) here
http://freepctech.com/pc/002/files010.shtml

some complete with useful command DOS file such as
attrib.exe, deltree.exe, doskey.exe, edit.com, emm386.exe, extract.exe, fdisk.exe, format.com, himem.sys, mem.exe, more.com, mouse.com, move.exe, mscdex.exe, reboot.com, scandisk.exe, scanreg.exe, smartdrv.exe, sys.com and xcopy.exe as well as a generic IDE CDROM driver.

Tuesday, November 30, 2004

MySQL db management tool

besides PHPMyAdmin - a web-based MySQL

sqlYog - SQLyog is an easy to use, compact and very fast graphical tool to manage your MySQL database anywhere in the world. SQLyog is FREE for personal and commercial use.

Thursday, November 25, 2004

PHP resource links

http://php.resourceindex.com
http://www.hotscripts.com

MySQL Function List

Mostly used functions
mysql_connect(dbhost, username, password)
Open a connection to a MySQL Server
mysql_select_db(dbname)
Select a MySQL database
mysql_query(sqlstmt)
Send a MySQL query
mysql_fetch_array(query result, [MYSQL_ASSOC/MYSQL_NUM/MYSQL_BOTH])
Fetch a result row as an associative array, a numeric array, or both.
mysql_close()
Close MySQL connection
mysql_error()
Returns the text of the error message from previous MySQL operation
mysql_free_result (query result)
Free result memory
Sample code
mysql_connect("localhost", "mysql_user", "mysql_password") or
die(
"Could not connect: " . mysql_error());
mysql_select_db("mydb");

$result = mysql_query("SELECT id, name FROM mytable");

while (
$row = mysql_fetch_array($result, MYSQL_ASSOC)) {
printf("ID: %s Name: %s", $row["id"], $row["name"]);
}

mysql_free_result($result);

Full php mysql function list

Sunday, November 21, 2004

Time

Too much time wasted. So what to do?
  • Focus
  • Prioritize - first thing first
  • Manage
  • Make a to-do-list

CMSimple - Simple CMS with no db

CMSimple is a simple content management system for smart maintainance of small commercial or private sites. It is simple - small - smart!

Saturday, November 20, 2004

Online job ads

Need extra cash?
Start making money online now Click here!
Reference and guide available...

---

Looking for a job or want to post job ads online?
Try one of these links.

www.joblink.com.my
www.jobpilot.com.my
www.jobsdb.com.my
www.jobstreet.com.my
www.hotspotz.com.my
www.spa.gov.com.my
www.star-jobs.com
www.jtr.gov.my
www.totaljob.com.my
www.mohr.gov.my

--------

Need extra cash?
Start making money online now Click here!
Reference and guide available...