Sunday, January 18, 2009

30 Website to Download Freeware Application

Below is the list of website where you can find many freeware application. I hope this can help to decrease piracy.

1. FreewareFiles.com
http://www.freewarefiles.com
game, browser web, screensaver, driver, desktop, spyware

2. Nonags
http://www.nonags.com
All about freeware

3. Freeware Home
http://www.freewarehome.com
All about freeware

4. Free Downloads Center
http://www.freedownloadscenter.com
game, video, program antivirus,wallpaper

5. PortableApps.com
http://portableapps.com
Portabel application

6. SofoTex Downloads
http://www.sofotex.com
PC utilities, games, screen savers

7. Completely Free Software
http://www.completelyfreesoftware.com
Freeware Windows and DOS

8. MyZips.com
http://www.myzips.com
All about freeware and shareware

9. Programfiles.com
http://www.programfiles.com
All about freeware and shareware

10. FreewareWeb.com
http://www.freewareweb.com
All about freeware and shareware

11. GameHippo
http://www.gamehippo.com
All about freeware game

12. TinyApps.org
http://www.tinapps.org
All about small freeware application

13. Freeware Guide
http://www.freeware-guide.com
All about freeware

14. TopDownloads
http://www.topdownloads.net
Game, screen savers, wallpapers, and many others

15. Open Universe

http://www.openuniverse.org

Freeware simulator

16. Files32.com
http://www.files32.com
All about freeware and shareware

17. Pricelessware
http://www.pricelessware.org
Best windows freeware application

18. ACME Laboratories
http://www.acme.com
Utiliti and tool for Unix and java

19. ABF-SOFT.com
http://www.abf-soft.com
All about freeware and shareware

20. Only Freeware
http://freeware.intrastar.net/
All about freeware

21. SGI
http://www.sgi.com/fun/freeware/games.html
Freeware game

22. AnalogX
http://www.analogx.com/contents/download.htm
More than 5000 windows application

23. DriversHeadquarters
http://www.drivershq.com
All about freeware driver

24. Mihov Freeware
http://www.mihov.com/eng/
All about freeware and shareware and image

25. Freeware Directory
http://freewaredirectory.net
All about freeware and direct link

26. Driverfiles
http://www.driverfiles.net
All about freeware driver and DLL

27. Top Quality Freeware
http://www.topqualityfreeware.com
Freeware application include game PC, icon, desktop, themes, image and internet utility

28. The Free Site
http://www.thefreesite.com/free_software/
All about freeware

29. Freeware Network
http://www.fwnetwork.com
All about freeware

30. Free Software 4 All
http://www.freesoftware4all.co.uk
List of good freeware application

Using Cursor at DB2

After Stored Procedure, we will learn about how to use Cursor. Output with Cursor or without Cursor will be the same. The differences is just a the process. With Cursor we lock at 1 row only, without cursor we will lock all record.

The advantage of using Cursor
- only lock 1 row
- there are an operation that must use Cursor

The disadvantage of using Cursor
- it become more complex

For example if we want to make a Stored Procedure to update salary depends on job. There are 2 ways that we can do, Stored Procedure with an without Cursor.

This is the Stored Procedure without Cursor, the easier way.

------------------------------------------------------------
create procedure proc_2(in bonus double,in work varchar(10))
dynamic result sets 1
p1: begin
update staff set salary = salary + bonus where job= work;
end p1
------------------------------------------------------------

This is the screen shoot
Free Image Hosting at www.ImageShack.us


This is the Stored Procedure without Cursor, more complicated query.

------------------------------------------------------------
create procedure proc_1(in bonus double,in work varchar(10))
dynamic result sets 1
p1: begin
declare now_salary double;
declare c1 cursor with return for
select salary from staff where job=work;
open c1;
fetch from c1 into now_salary;
close c1;
set now_salary = now_salary + bonus;
update staff set salary = now_salary where job= work;
end p1
------------------------------------------------------------

This is the screen shoot
Free Image Hosting at www.ImageShack.us

You can run this Stored Procedure at DB2cmd. Just write this command.
"db2 call proc_2(100.0,'Mgr')", but don't forget to connect to the DBMS first.

Saturday, January 17, 2009

Make Stored Procedure at DB2

To make a Stored Procedure with IBM Data Studio, you can follow this step by step tutorial
1. Open IBM Data Studio
2. Choose file -> new -> data development project
3. Give a project name, for example Project2
4. Choose "Use an existing connection". Click Finish
5. At Data Project Explorer will show Project2
6. Right click at Proejct2 -> new -> Stored Procedure
7. Give a Stored Procedure name, for example PROC_3. Choose next
8. At statement detail, change with the query that you want. Click next
9. Click next
10. Choose the specific name. This is an alias name for Stored Procedure.
11. Click Finish

This is the query generated by IBM Data Studio
CREATE PROCEDURE PROC_3 ( )
DYNAMIC RESULT SETS 1
------------------------------------------------------------------------
-- SQL Stored Procedure
------------------------------------------------------------------------
P1: BEGIN
-- Declare cursor
DECLARE cursor1 CURSOR WITH RETURN FOR
SELECT *
FROM EMPLOYEE;

-- Cursor left open for client application
OPEN cursor1;
END P1


If you want to run it. First right click the Stored Procedure, then choose Deploy, after that choose run. You can see the output at the right below corner.

This is the screenshot

Free Image Hosting at www.ImageShack.us

Or you can run it from DB2cmd. Just write this command.
"db2 connect to sample" then "db2 call proc_3()"

Best regards,

Deny Sutani

Access Control: An Introduction To Access Control

The Problem

Your building is secure at night, but during the day there are several doors that have to be open. Anybody could walk in. What can you do?

The Solution

You need an Access Control System.

What is an Access Control System?

Access Control is an electronic security system which permits or restricts access to specific areas of a premises. It not only protects property against unwanted visitors but ensures the safety of both the property and of the people inside.

In simple terms, an Access Control System provides control of entry (or exit) through nominated doors via a control panel and some form of electric locking facility.

An Access Control System can be as simple or as complicated as you wish but in each case, the solution will always provide an easy passage for permitted persons around the building.

Door Entry or Access Control?

Door entry is commonly associated with a single door or gate, whereas access control is more suited to multiple doors or entry points.

Access Control can also incorporate a host of other features which enhance other areas of the business.

Access Control / Door Entry Technology

There are a number of ways that a permitted user can open a door that is fitted with a system.

PIN Code Entry

The most common unit is the keypad system. This comprises a control unit with a series of numbered push buttons, or a touch-sensitive pad, connected to the lock release mechanism via a control unit located at the entrance.

Magstripe (also called Swipe Card) Readers

Each entry point has a card reader and the user “swipes” an encoded card similar to a credit card to gain entry.

This technology is widely used and there are many choices of manufacturers.

Proximity Readers

Rather than swiping the card or tag, it is simply presented to a reader which typically will see the card at a distance of about 100mm. This is a fast, non-contact, method of entry.

Long Range Readers

Long range proximity readers (of approximately a meter or so) automatically unlock or open a door when it detects the card.

This is particularly suitable for compliance with the Disability Discrimination Act (DDA) as no action is required by the card bearer.

Smartcard Readers

For systems that use cards or tags, these cards can also carry additional information which can be used for other building services – – for example, time and attendance functions, integration with payroll systems, car park management and even vending machine applications.

Biometric Readers

A Biometric Reader system uses unique human characteristics – such as finger prints or a retina scan – to clearly identify those who are permitted access.

As there are no cards or tags which can be stolen or lost, or open to misuse, this type of system significantly increases the level of security.

What about Visitors?

You will want to welcome most of those who visit your premises, so it must be easy for them to let you know they are there.

The three most common means of attracting attention are:

• A simple door bell system which alerts your staff to the fact that there is someone waiting outside.

• An audio intercom panel which allows the visitor to have a direct conversation with a member of your staff and, if appropriate, the door can be remotely released.

• An audio intercom panel with a camera facility which allows your staff to see who wants to enter the building before permitting access.

Once access has been permitted, the visitor can either be escorted around or issued with a card or pin number for the duration of their visit.

Things to Consider

When planning an access control system, you should consider the following:

• How many entry/exit points
• Where are these located>
• Level of security desired
• The movement of staff around the building
• Method of operation
• Future growth of building
• Turnover of employees
• Disability access
• Interface with other systems – for example, the fire alarm

As with any type of security system, it is sensible to employ a company that you can trust. Make sure you use a NSI (NACOSS) approved organisation; this will ensure that your system will be designed and installed by professionals.

Accelerator Software Provides a Faster Download

Over half of all households that connect to the Internet have a broadband connection these days, mostly cable or DSL. Which means the other half does not and still uses dial-up. Modems are much faster than they used to be in the early days of computing, but today's websites are larger and require a lot of bandwidth to load quickly. To make matters worse for those on slower connections, even simple software updates are now often dozens of megabytes and can take a long time to download. What it all means is that modem users need a break!

Fortunately, there are things that can be done to make a connection faster. You see, the operating system software on today's computers is not optimized for fast downloads. Microsoft's primary goal is simply to make sure Windows works with all the different hardware out there. Compatibility is important, of course, but it can be frustrating when things just don't work as well as they should.

But not everything is your computer's fault. Your Internet service provider, too, is primarily concerned with reliability (good), compatibility (good), and moving as much traffic as possible with as little investment as possible (not so good). Further, while the Internet moves at electronic speed, not all connections are equal. You may have noticed that downloading pictures from the same exact website is sometimes faster and other times much slower. That may be because the server is very busy, but it can also be because your connection is taking some detours instead of directly getting on the highway.

What does it all mean? It means that between hardware and software designed for compatibility rather than performance, and Internet connections that may not necessarily favor individual dial-up customers, you may simply not get the speed your computer is capable of and that you are paying for. This is bad news for those who frequently download movies, music or pictures.

Fortunately, there are solutions, and I don't mean getting a new computer or waiting until you have broadband access. One such solution is download accelerators. They can greatly increase the speed and reliability of your downloads. How do they do it? By optimizing the way your computer works and by making sure your data downloads the fastest and most direct route possible. With a download accelerator, you are no longer at the mercy of some remote traffic routing computer. Instead, the accelerator in your own system determines the best way to download data as quickly and efficiently as possible.

But speed is not the only benefit of a good download accelerator. How often has it happened to you that a connection times out or is interrupted before a file has downloaded completely? Probably quite often. And then you have to start all over. A download accelerator will keep track of things and will simply pick up where you left off if a connection gets dropped. Imagine how much time you save.

The bottom line is clear. You have better things to do than wait for downloads to complete. If you want to regain control of your Internet connection, accelerate downloads and restore, or just web browsing in general, a good accelerator is invaluable.

Global Warming

Browsing, chatting and all other internet activities make a carbon polution. Every time we use Google service we have contributed on global warming. This is happened because every time we turn on the computer, it will use electricity.

Physician from Havard University, Alex Wissner-Gross concluded that every time google search engine work, it make 7 grams of carbon. It means when we make 10 search, then it will produce 70 grams of carbon.

This calculation based on carbon emissions from the consumption of electricity needed to power the computer users and the Google data center that operates around the world. Using large energy means more carbon dioxide emissions considering almost electricity that is used currently based fossil energy sources.

Google said it's true that every time they make a search it will produce a carbon polution, but it is only cost 0,0003 kWh or 0,2 gram of carbon. Google claims that the result is too high. Moreover Google has make Climate Savers Computing Initiative to lower the use of energy in the consumer level to half of 2010 and began to decrease carbon dioxide emissions 54 million tons per year.

How to Install IBM Data Studio

This is the step by step to install IBM data studio
1. Open drive:\Installer\DB installer2_Install\IBM Data Studio\Windows
2. Extract IBM_data_studio_v111_win file
3. Click setup.exe.
4. Choose Install IBM Data Studio.
5. Tick all checkbox then click next.
6. Choose I accept the aggrement then click next
7. Choose create a new package group then choose your preferred path, then click next
8. If you have alreday had Eclipse, try yo use Extend and existing Eclipse.
9. Choose your preferred language.
10. Choose feature that you want to be installed.
11. IBM instalation manager will install IBM data studio to your computer, just sit relax
12. Finish and you can use IBM data studio right now.

Best regards,

Deny Sutani

DB2 Product Overview

DB2 is a DBMS made by IBM. It was released for the first time at 1983 in MVS. At 1996, IBm released DB2 UDB v5. At this version, DB2 has a feature to support saving many data type like audio, video and text

DB2 9 is the lateset release. In this version, like the previous, can run on many platform like AIX, HP-UK, Linux, Solaris, Windows, i5/OS and z/OS. In this version, DB2 has many type as you can see below.
The bigger the number, it become more expensive, more stable, and has more feature.

1. DB2 Everyplace
This version is the smallest DB2, it's size only 350KB. This version made for handheld user like PDA or smartphone.

2. DB2 Express
This version is an entry level for data server which is designed for
a computer with up to 2 CPU and 4GB memory and run on Linux platform. It has a few important feature such as
- pureXML : give an simple and efisien access to XML data at the same security and integrity with relational data.
- High Availability : give 24 x 7 reliability to DB2 data server. There 3 komponent in this feature, HADR, Online Reorganization, and IBM TSA MP.
- Workload Management : this feature monitoring query actively and manage it to run efisiently
- Performance Optimization : this feature combine 3 module, MQT, MDC and Query Parallelism
- DB2 Homogenous Federation Feature : this feature has ability to manage and access multiple data server

3. DB2 Express-C
This version is an entry level for data server which is designed for
a computer with up to 2 CPU and 4GB memory and run on Linux or Windows platform. This version can be used for evaluation and education freely. It has a few important feature such as
- Spatial Extender Client and samples
- Microsoft Cluster Server support
- Informix Data Source support
- Replication Data Capture
- DB2 Web Tools
- Global Secure Toolkit
- APPC and NetBios support

4. DB2 Personal Edition
This is the DBMS for single user on dekstop or notebook. It can be used to create, modify, and manage many local database.

5. DB2 Workgroup Server Edition
This version is the DBMS for multi user, client/ server which is designed for a computer with up to 4 CPU, 16GB memory and run on Linux, Windows, Solaris, Linux, AIX platform. This has the same feature with DB2 Express, but it has more scalability.

6. DB2 Enterprise Server Edition
This version is the DBMS for multi user, web enabled client/ server which is can hold huge transaction, multi terabyte data warehouse. It can run on server which has up to hundreds CPU running on Linux, Windows, Solaris, Linux, AIX platform. It has the same feature with DB2 workgroup with additional feature such as
• High Availability Disaster Recovery (HADR)
• Table (range) partitioning
• Online reorganization
• Materialized Query Tables
• Multi-dimensional data clustering
• Full intra-query parallelism
• Connection Concentrator
• The DB2 Governor
• Tivoli System Automation for Multiplatforms (TSA MP)

7. DB2 Data Warehouse Edition
This version can be used to make dynamic data warehouse. This is a combination between DB2 enterprise server and DB2 data partitioning.

8. DB2 Personal Developer’s Edition
This version can be used by application developer to make an application which interact with DB2 personal edition. In this version, developer can make application which connect to DB2 by using SQL, SQLJ, .NET or JDBC method.

There are another version of DB2 such as DB2 universal Developer, DB2 enterprise developer, DB2 for i5/OS and DB2 for z/OS. These version have more scalability and feature.

Best regards,

Deny Sutani

Thursday, January 15, 2009

UNION and UNION ALL at DB2

Union at DB2 used to join 2 or more resultset from a query. For example if we want to see list of staff who work at IT department and FA department.

This is the syntax
select column1, column2
from table_name
where….
UNION
select column1, column2
from table_name
where….

Each column1 and column2 must be match with other resultset, or it will generate an error.

This is an simple example how to using UNION in Stored Procedure

CREATE PROCEDURE SP_PAKE_UNION ( )
DYNAMIC RESULT SETS 1
————————————————————————
– SQL Stored Procedure
————————————————————————
P1: BEGIN
– Declare cursor
DECLARE cursor1 CURSOR WITH RETURN FOR
select a.firstnme, b.deptname
FROM EMPLOYEE a, DEPT b
where a.workdept = b.deptno
and a.workdept =’E21′
union
select a.firstnme, b.deptname
FROM EMPLOYEE a, DEPT b
where a.workdept = b.deptno
and a.workdept =’A00′;
– Cursor left open for client application
OPEN cursor1;
END P1

That Store Procedure will generate list of staff who work at 'A00' and 'E21' department.

UNION is differ from UNION ALL. UNION just list the DISTINCT output. It will remove any record which is redundant. If you want to see all output, just change UNION with UNION ALL

Best regards,

Deny Sutani

Wednesday, January 14, 2009

How to Connect Java to DB2

It's not difficult to connect java application to DB2. It's almost the same like connect java to other DBMS such as access, SQL server and so on.

This is the snippet code.

String DB_URL = “jdbc:db2:SAMPLE”;
String userid = “db2admin”;
String password = “mypasswd”;

Connection connection = null;

Properties connectProperties = new Properties();
connectProperties.put(”user”, userid);
connectProperties.put(”password”, password);

Class.forName(”com.ibm.db2.jcc.DB2Driver”).newInstance();
connection = DriverManager.getConnection(DB_URL, connectProperties);
PreparedStatement pstmt = connection.prepareStatement(”SELECT * FROM employee”);
ResultSet rs = pstmt.executeQuery();

Best regards,

Deny Sutani

Tuesday, January 13, 2009

Change Font in Java

This is an example code how to change a font in Java application.

import javax.swing.JFrame;
import javax.swing.JLabel;
import java.awt.FlowLayout;
import java.awt.Font;

public class Teks extends JFrame {
JLabel lbl1 = new JLabel(”Helvetica biasa”);
JLabel lbl2 = new JLabel(”SansSerif bold”);
JLabel lbl3 = new JLabel(”Monospaced italic”);
JLabel lbl4 = new JLabel(”Serif biasa”);

public Teks()
{
setTitle(”Font”);
setApplicationLayout();
setSize(175,200);
setLocationRelativeTo(null);
setVisible(true);
}

public static void main(String args[])
{
Teks teks = new Teks();
teks.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}

public void setApplicationLayout()
{
setLayout(new FlowLayout());
lbl1.setFont(new Font (”Helvetica”, Font.PLAIN, 16));
lbl2.setFont(new Font (”SansSerif”, Font.BOLD, 16));
lbl3.setFont(new Font (”Monospaced”, Font.ITALIC, 16));
lbl4.setFont(new Font (”Serif”, Font.PLAIN, 24));
add(lbl1);
add(lbl2);
add(lbl3);
add(lbl4);
}
}

Best regards,

Deny Sutani

Digital Clock in Java

Oneday, my friend ask about how to make digital clock in java. It's like a timer, when the second has reach 60, the minute will be added by 1, when the minute reach 60, the hour will be added by 1.

This is the code. Hope this code will be useful not only for my friend, but also other people who need it.

import java.util.Timer;
import java.util.TimerTask;
import javax.swing.JFrame;
import javax.swing.JLabel;
import java.awt.FlowLayout;

public class Jam extends JFrame {

private Timer timer;

int detik,menit,jam = 0;

JLabel lblDetik = new JLabel(”");
JLabel lblMenit = new JLabel(”");
JLabel lblJam = new JLabel(”");

public Jam()
{
setTitle(”Jam”);
setApplicationLayout();
setSize(150,75);
setLocationRelativeTo(null);
setVisible(true);
}

public static void main(String args[])
{
Jam jam = new Jam();
jam.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}

class PuterJam extends TimerTask
{
public void run()
{
detik++;
if(detik==60)
{
detik=0;
menit++;
}
if(menit==60)
{
menit=0;
jam++;
}
if(detik<10) lblDetik.setText(”0″+detik);
else lblDetik.setText(”"+detik);

if(menit<10) lblMenit.setText(”0″+menit+” : “);
else lblMenit.setText(”"+menit+” : “);

if(jam<10) lblJam.setText(”0″+jam+” : “);
else lblJam.setText(”"+jam+” : “);
}
}

public void setApplicationLayout()
{
timer = new Timer();
timer.schedule(new PuterJam(), 0,1*1000);
setLayout(new FlowLayout());
add(lblJam);
add(lblMenit);
add(lblDetik);

}

}

Best regards,

Deny Sutani

Insert an Icon to JInternalFrame

Often, we insert an icon into a JFrame in Java application, but how to insert an icon into JInternalFrame? It's almost the same, it's only need to use different method. We can user setFrameIcon() method.

This is the snippet code
URL url = getClass().getResource(”image/login.gif”);
Icon icon = new ImageIcon(url);
setFrameIcon(icon);

Best regards,

Deny Sutani

A Computer And Internet Glossary

When you use computers and the Internet in your business, it's all too easy to start feeling like you're drowning in a sea of nonsense. Computer-related things tend to have a language all their own, and while you don't need to know all of it, there are many confusing words and phrases that you're going to come across sooner or later. Here's a quick primer.

Bandwidth. Bandwidth is the amount of data that your website can send each second, as well as the amount of data that the visitor to your website can receive. If either one doesn't have enough bandwidth, then the website will appear slowly. For this reason, you should choose a host with plenty of bandwidth, as well as testing that your site doesn't take too long to download on slow connections.

Browser. A browser is the software (see below) that visitors to your site use to view it. The most popular browser is Microsoft's Internet Explorer, which comes with Windows.

Cookie. Cookies are data files that your site can save on the computer of someone who visits that site, to allow it to remember who they are if they return. You will find that problems people have in ordering from you will almost inevitably be related to cookies -- they will need to have them turned on.

Download. Transferring data from a website to a computer.

Favourite. A favourite is a website that a user has stored to look at again, by choosing 'Add to Favourites' in their browser's menu.

FTP. File Transfer Protocol. This is a common method of uploading (see below) files to your website.

Javascript. A common language for writing 'scripts' on websites, which are small programs that make the site more interactive. Another common cause of problems for visitors.

JPEG. Joint Photographic Experts Group. This is the name of the most popular format for pictures on the web, named after the group that came up with it. If you want to put pictures on your website, you should save them as JPEGs.

Hardware. Hardware is computer equipment that physically exists. It is the opposite of software.

Hosting. If you've got a website out there on the Internet, then you'll be paying someone for hosting. It is the service of making your site available for people to see.

HTML. HyperText Markup Language. A kind of code used to indicate how web pages should be displayed, using a system of small 'tags'. The 'b' tag, for example, causes text to appear in bold, and the 'img' tag displays a picture.

Hyperlink. A hyperlink is when a piece of text on a website can be clicked to take you to another site, or another page on the same site. For example, if clicking your email address on your website allows someone to email you, then your email address is a hyperlink.

Programming. This is when the computer is given instructions to tell it what to do, using one of many 'programming languages'. Programming languages for the web include PHP and Perl.

Server. The server is where your website is stored, and it is the server that people are connecting to when they visit the site. If someone tells you, for example, that your server is 'down', it means that your website is inaccessible. Note that server refers both to the hardware and software of this system.

Software. Programs that run on the computer, or that make your website work. Microsoft Word is software, for example, as is Apache (the most popular web server software). Opposite of hardware.

Spider. Don't be scared if a spider visits your website! Spiders are simply programs used by search engines to scan your site and help them decide where it should appear when people search. It is good to be visited by spiders, as it means you should start appearing in search engines soon.

Upload. Uploading is when you transfer data from your own computer to your website. For example, you might upload your logo, or an article you've written. Opposite of download.

URL. Uniform Resource Locator. This is just a short way of saying 'web address', meaning what you have to type in to get to your website. Sometimes pronounced as 'Earl'.

A Close Look At DVI Cables

We all have many times heard about DVI, but what does it really means and what it does? What is the main function of this tiny white port on a video card? How it can benefit you and your personal computer? Do you know which DVI is suitable to meet your requirements?

Digital Video Interface is created by Digital Display Working Group to solve the problem of accommodation analog and digital interfaces just by using single connector. It was developed because of insufficiency of standardization in digital interfacing.

Three types of standards can be seen in DVI cables. It is very important to know how each type looks like before buying to upgrade your DVI. So it is very important to know how DVI cable works and which one will be most beneficial for you.

However, DVI cables are still in the phase of development. Hence there is no specific standard for the DVI cable. In ideal circumstances, DVI home theater cable is capable to create ' digital to digital' connection between the data or video sources and home theater projectors.

The standard rule for DVI cables is that it should have maximum length of 5 m for trouble free operation. It is very typical to decide a DVI cable first time.

There are two types of DVI connector and each has its own characteristics. The flat pin denotes whether the cable is analog or digital. A flat pin with four surrounding pins denotes either DVI-A or DVI-1. A single flat pin denotes DVI-D. The pin sets depends upon whether the cable is single link or dual link or analog.

To choose a perfect Digital video interface cable you should remember these tips:

1.Check both female DVI plugs to make sure what type of signals they compatible with.
2.One or both connections should be DVI-D if you are choosing a DVI-D cable.
3.One or both connections should be DVI-A if you are choosing a DVI-a cable.
4.If one of the connections is DVI and other is VGA, and if the DVI is analog compatible, then you must buy a DVI/VGA adaptor or a DVI to VGA cable.
5.when both connections are DVI-1, you are advised to use any of DVI cable, but better if you use DVI-1 cable.
6. If one connection is digital and the other is analog then there is no possibility of connection between them.

A Brief Introduction To Fiber Optics Technology

Understanding how fiber optics are made and function for uses in everyday life is an intriguing work of art combined with science. Fiber optics has been fabricated from materials that transmit light and are made from a bundle of very thin glass or plastic fibers enclosed in a tube. One end is at a source of light and the other end is a camera lens, used to channel light and images around the bends and corners. Fiber optics have a highly transparent core of glass, or plastic encircled by a covering called "cladding". Light is stimulated through a source on one end of the fiber optic and as the light travels through the tube, the cladding is there to keep it all inside. A bundle of fiber optics may be bent or twisted without distorting the image, as the cladding is designed to reflect these lighting images from inside the surface. This fiber optic light source can carry light over mass distances, ranging from a few inches to over 100 miles.

There are two kinds of fiber optics. The single-mode fiber optic is used for high speed and long distance transmissions because they have extremely tiny cores and they accept light only along the axis of the fibers. Tiny lasers send light directly into the fiber optic where there are low-loss connectors used to join the fibers within the system without substantially degrading the light signal. Then there are multi-mode which have much larger cores and accept light from a variety of angles and can use more types of light sources. Multi-mode fiber optics also use less expensive connectors, but they cannot be used over long distances as with the single-mode fiber optics.

Fiber optics have a large variety of uses. Most common and widely used in communication systems, fiber optic communication systems have a variety of features that make it superior to the systems that use the traditional copper cables. The use of fiber optics with these systems use a larger information-carrying capacity where they are not hassled with electrical interference and require fewer amplifiers then the copper cable systems. Fiber optic communication systems are installed in large networks of fiber optic bundles all around the world and even under the oceans. Many fiber optic testers are available to provide you with the best fiber optic equipment.

In fiber optic communication systems, lasers are used to transmit messages in numeric code by flashing on and off at high speeds. This code can constitute a voice or an electronic file containing, text, numbers, or illustrations, all by using fiber optics. The light from many lasers are added together onto a single fiber optic enabling thousands of currents of data to pass through a single fiber optic cable at one time. This data will travel through the fiber optics and into interpreting devices to convert the messages back into the form of its original signals. Industries also use fiber optics to measure temperatures, pressure, acceleration and voltage, among an assortment of other uses.

10 Tips For Overcoming Procrastination At The PC

Copyright 2006 Michael Madigan

Procrastination is the thief of time - and money too, at the PC. Your Internet connection, equipment and power cost you. Some tasks are no fun - but don't let them pile up. Constant dithering and delaying will wreck your health, wealth and reputation.

Here are 10 tips for helping you stop procrastination dead:

1/ Before you even sit down, sort out in your mind what’s 'urgent', 'important', both, or neither. (If an 'urgent' task isn't 'important' and the deadline passes, so what?). An 'urgent and important' task should normally come before an 'important' task. If you have a poor memory (like me) write or type a quick list of your Top Five To Dos for the session, and delete or amend as need be.

2/ All other things being equal plan on doing easy tasks before difficult short tasks before long tasks. Always have something concrete to show for worktime in front of your PC.

3/ As far as you can YOU decide what' important' and 'urgent'. There are bullies about - bosses, colleagues and customers - who think their merest whim is law. Learn to say 'No' politely. They may not like it, especially at first. But you'll grow.

4/ If you need help for your work, get it now, not later. If it’s not there now, you can ask later - more chances. If you leave it till later, it may have gone off earlier so no chances....

5/ You’re there going thru your emails, databases and memos and suddenly out of nowhere, new jobs appear. The tendency is to 'do what's on top of the pile' first. Don't. Put it into the right place in your existing list.

6/ Do you get distracted easily? Try and be aware of this, and stay aware of what tasks need doing - and by when.

7/ Are you more energetic and creative morning, noon or night? Can you reschedule your targets to take this into account? Or do you just plod along, whatever? You may be a tortoise or a hare, but you can still win your own personal race if you plan ahead.

8/ Don't give up your breaks. You need to pace yourself. But put a time limit on all breaks, surfing, chatting or just daydreaming can eat into worktime with disastrous results. A rushed job is rarely your best shot, or a true reflection of your abilities.

9/ Be particularly wary of long lunch breaks, and overeating or drinking. If your afternoon's festooned with urgent and important chores, you’ll feel inclined to procrastinate bigtime if you're hung over, stuffed to the gills, or dead beat.

10/ Give yourself a treat if you hit all your deadlines. Doesn't have to be chocolate! And don't procrastinate on rewarding yourself when you deserve it.

Use these tips to stop procrastination at the PC (AND off), and it’ll boost your free time and make you happy and healthy computing thru 2006 and beyond!

10 Tips For Overcoming Procrastination At The PC

Copyright 2006 Michael Madigan

Procrastination is the thief of time - and money too, at the PC. Your Internet connection, equipment and power cost you. Some tasks are no fun - but don't let them pile up. Constant dithering and delaying will wreck your health, wealth and reputation.

Here are 10 tips for helping you stop procrastination dead:

1/ Before you even sit down, sort out in your mind what’s 'urgent', 'important', both, or neither. (If an 'urgent' task isn't 'important' and the deadline passes, so what?). An 'urgent and important' task should normally come before an 'important' task. If you have a poor memory (like me) write or type a quick list of your Top Five To Dos for the session, and delete or amend as need be.

2/ All other things being equal plan on doing easy tasks before difficult short tasks before long tasks. Always have something concrete to show for worktime in front of your PC.

3/ As far as you can YOU decide what' important' and 'urgent'. There are bullies about - bosses, colleagues and customers - who think their merest whim is law. Learn to say 'No' politely. They may not like it, especially at first. But you'll grow.

4/ If you need help for your work, get it now, not later. If it’s not there now, you can ask later - more chances. If you leave it till later, it may have gone off earlier so no chances....

5/ You’re there going thru your emails, databases and memos and suddenly out of nowhere, new jobs appear. The tendency is to 'do what's on top of the pile' first. Don't. Put it into the right place in your existing list.

6/ Do you get distracted easily? Try and be aware of this, and stay aware of what tasks need doing - and by when.

7/ Are you more energetic and creative morning, noon or night? Can you reschedule your targets to take this into account? Or do you just plod along, whatever? You may be a tortoise or a hare, but you can still win your own personal race if you plan ahead.

8/ Don't give up your breaks. You need to pace yourself. But put a time limit on all breaks, surfing, chatting or just daydreaming can eat into worktime with disastrous results. A rushed job is rarely your best shot, or a true reflection of your abilities.

9/ Be particularly wary of long lunch breaks, and overeating or drinking. If your afternoon's festooned with urgent and important chores, you’ll feel inclined to procrastinate bigtime if you're hung over, stuffed to the gills, or dead beat.

10/ Give yourself a treat if you hit all your deadlines. Doesn't have to be chocolate! And don't procrastinate on rewarding yourself when you deserve it.

Use these tips to stop procrastination at the PC (AND off), and it’ll boost your free time and make you happy and healthy computing thru 2006 and beyond!

10 Web Site Backup Essentials That You Should Live By

More and more webmasters nowadays do not value the importance of a complete website backup (files and databases). They have left this to chance and good luck which poses a great risk to their online presence.

Can you relate to this? Then read this important article which might save you an arm and a leg later.

Web site backup is the most ignored task of the webmasters simply because it poses no immediate threat to them until something worse happen to their hosting server. Many times, this task is set aside, delayed and even regarded as nuisance to the busy website owner.

They just don't realize what is at stake here.

So before your website will be wiped out of the internet by unexpected accidents like server breakdowns, harddisk failures, hacking and DDOS attacks among other bad things, let me share with you the 10 Backup E-S-S-E-N-T-I-A-L-S you should not live without online.

EXPECT - Know that your webhosting company (even the biggest and the most boastful out there) may encounter problems and that your diligence to backup up will pay off later on. Online computing has never been so unpredictable that the worse of times will happen when you least expect it. With the proper mindset, you are insuring the continuity of your online endeavour in any eventualities. In short, be ready.

SCHEDULE - Your backup process should not compete with your busy schedules. Create your own backup schedule at the most convenient time for you in the week. If you're like me, I do this during lunch and dinner times. Sometimes, I have to leave my PC overnight working on the backups. If you can make it not to conflict with your busy schedules, you will be able to keep up with the demands of this job. In short, don't complicate.

STICK with it - Just do it. Patience is key to your backup tasks. Once you have a schedule, stick with it. You must do this diligently every time it should happen. This is a tough challenge especially to busy people working online. But the sooner you discipline yourself and make backing up your files a habit, the more you will benefit from a worry-free online environment. In short, get a good habit.

EVALUATE - After a while, test your backup files. A good backup can be tested by simply restoring it on another system. Evaluating your backup results from time to time is good way to know that you are keeping what you should keep - a good and working backup. In short, be sure.

NO Complacency - After some time, your backup schedule may slip away and you will tend to forget or intentionally miss it. Don't succumb to this temptation. Man has never been so busy in his lifetime like it is today in this era of the high tech trends, new developments and discoveries. In short, don't be lazy to backup.

TRASH - Know which files to keep and not to keep. You need to do this to keep your backup process as short and as efficient as possible. It also saves you valuable resources like hard disk space and backup mediums. Backup only what you need. Keep out the trash and dump it. In short, don't sweat with the trash.

INTUITION - Have faith in your backup results. Believe that what you are doing is for your own good later on. Like vitamins that keep your body healthy, backups keeps your mind away from stress and worries. A good working backup will make you smile even on the worst of times because you are insured by your patience. In short, believe in good results.

AUTOMATE - Look for alternatives to traditional backup process that can make your life simpler. There are several technologies and softwares you can use now to generate the fastest and safest backup files you will need to restore in case of emergency without you lifting a finger. Automation is king in this lazy man's world. In short, be efficient.

LIBERATE - Free yourself from worries and anxiety of theunexpected. A death sentence that can be prevented will not kill you. So think about what you can do more (like sleepingmore at night) than to think about what harm may come. With your own backup systems established, you can retire at night calmly knowing the next day, if you don't see your websites as you should, you know you can pubish it back within the day even if your webhost cannot recover it for you. In short, relax and enjoy life to the max.

SECURITY - Nothing beats the feeling of being secured. This is the reason why the insurance businesses have flourished over the years. But more importantly, your commitment to backup your files will not only save you from stress, humiliation, frustration, anger and guilt, but also lift your spirit and confidence because you know at the end of the day, your self reliance is well worth it.

And that, my friend, is a great and wonderful feeling.

Koobface virus

Recently I got an email from someone i don't know which tells me that I got a message in Friendster. I read that message and this is it's content.

Your behavior looks pretty shocking to me.
http://www.geocities.com/mbsnhwqmo/

When I clicked that link, I was redirected to other website http://60.53.68.219:7777/?ch=&ea= which contains a video, like a youtube. This website suggest me to download a file to play the video. My anti virus has detected this file a koobface virus.

This is the screenshot of the website
Free Image Hosting at www.ImageShack.us

This virus has known as a facebook virus. The spreading technique almost the same, but with other social network like Friendster. Try to fool someone to play the video and install the file.

Be carefull if you get message which almost the same with this.

With this article, I hope that we can be more carefully not too easily click a link or download a file from other people, even we know that people.

Best regards,

Deny Sutani

Friday, January 9, 2009

10 Steps To A Safe, Smooth Running PC

10 Steps To A Safe, Smooth Running PC By Michael A Silva

These ten steps will help you increase your computer's security. From discovering viruses to learning how to avoid them, this article is a must read!

Windows password This is the easiest way to make sure you know who is using your pc. Choose a lengthy password that contains capital and lower case letters. Including a number or two will greatly increase your security. Having a Windows password means that the only people that can log onto a Windows session are people that you have granted access to.

Password manager You should never write your passwords down. Using the same password all the time will also make it very easy for hackers to reach your personal information. So if you can’t write it down and you’re not
supposed to use the same one – how are you supposed to keep track of all of your passwords? The easiest way to do this is to use a password manager. We prefer to use Roboform. Roboform is an easy to use password and profile manager that docks neatly into your Internet Explorer toolbar and keeps track of all of your passwords for you. Roboform also uses a master password system. You will have one password that accesses all of the passwords in the program. This way you can keep all of your information safe and secure. You can download Roboform for free by http://www.roboform.com.

Spyware Remover Next to spam, spyware is the internet’s biggest annoyance. By definition, spyware is “any software that covertly gathers user information through the user's Internet connection without his or her knowledge, usually for advertising purposes. Once installed, the spyware
monitors user activity on the Internet and transmits that information in the background to someone else. Spyware can also gather information about e-mail addresses and even passwords and credit card numbers.” The amount of spyware that exists on your pc is dependent on the amount of internet surfing you do. A good rule of thumb here is to scan for spyware once per week or whenever poor system performance surfaces. If you don’t have a spyware scanner, we recommend http://www.webroot.com.

Antivirus This should go without saying, but if your computer is connected to the internet you need antivirus software. With weekly scans and program updates you should be protected from most threats. For added protection, we
recommend using more than one anvtivirus scanner.

Firewall A firewall will keep unwanted visitors out of your computer. You can obtain a firewall either by using software application like ZoneAlarm or Black Ice Defender, or by using a router with your internet connection. For more information on routers plese visit http://www.Linksys.com.

File sharing Basically, file sharing programs are the single biggest security risk you will come across. This is because the only facts you have about the files you are downloading are the file name and the file size. It is quite simple to change a filename to dupe someone into downloading a virus or other malware like keystroke recorders. Our advice – stay away from file sharing at all costs. If you need to use it, make sure you have updated antivirus software installed and running.

Research In a sentence – know what’s out there. http://www.Symantec.com has a section on their website that will serve you well. Knowing what types of viruses exist and how to avoid them will make you a much smarter internet user.

Email protection Most of the antivirus applications available offer email scanning. If yours does not, you will want to get one that does. Email scanning will make sure all of your incoming and outgoing emails are safe for both you and the recipient. Email viruses spread very quickly by using your address book to propagate. Never read email from people you don’t know and always make sure your email scanner is active.

Network security Another way that viruses spread is through computer networks. We have a few quick tips to keep your network safe. Always scan any files that come in from other computers. Even if it’s a file you have brought from home. Never allow a file to be placed on your network until it
has been scanned. The main server should be the only computer with file sharing enabled. By not allowing computer users to transmit files, you can quickly neutralize a threat.

Maintenance Performing weekly virus and spyware scans will go a long way to keeping your computer safe. Defragmenting weekly will also greatly improve performance. If you put in the effort, you will be rewarded with a safe and smooth running pc. Not to mention less headaches!

By following these ten guide lines, you will greatly improve the performance of your computer. You will also generate peace of mind as you gain a new sense of security.

------------------

For more information on affordable hosting packages, website builder software, dedicated and shared server packages, website design and promotion services and specialized fund raising and campaign websites please visit us at http://www.ipowereurope.com

10 Simple Reasons To Remove Spyware From Your Computer

Is your computer been running slower than normal? Are you worried someone may be able to access your computer and steal your private information and use it against you? If so, these are feelings I have shared with you in the past.

Some time back, my 3-year old computer was running so slow that I had to buy a new computer. Or at least I thought I needed a new computer. Then within a matter of weeks of surfing on the Internet, my new computer was also running so slowly. In addition, some programs did not run well on my computer, and I did not recognize some of the programs that were running on my computer. That scared me most. Were these programs that were tracking my keystrokes on my computer or programs I just not remember installing? I knew I had to find a answer and solution fast.

The truth is, we can all put up with a slow computer, but very few of us would want others to have access to the information on our computers, but that is exactly what can happen when spyware or malware is loaded on our computers without our knowledge.

According to Spyware Nuker’s web site, “Spyware applications are programs and files that hide on your PC's hard drive without your direct knowledge. These programs allow hackers and advertising companies to track your every move, both online and even when you work offline. They can track the websites you visit, the items that you buy online, the emails you send and receive, your Instant Message dialog, and worst of all they can even record your credit card number, personal identification numbers, and all of your passwords. If you use dial-up to connect to the Internet then spyware can be used to bill 900 numbers to your phone bill. This is just a short list of the harm that spyware can cause.”

The web site also provides statistics that show spyware is a huge problem effecting many people. "27.3 million Americans have been victims of identity theft in the last five years, including 9.91 million people or 4.6% of the population in the last year alone."

In addition, it is very easy for your computer to become infected with spyware as "The majority of all downloadable games, music, screensavers, etc., can infect your computer with SpyWare or AdWare. Most people do not know that after simply clicking on a random "pop up" ad, their computers may have been infected with SpyWare or AdWare."

No matter how we get spyware, here are 10 very real reasons you don’t want spyware on your computer.

1. Your computer may start running slower
2. Some programs on your computer will not run correctly
3. You may not recognize programs that are now on your computer because they may have been installed there by a spyware related web site or program you loaded on your computer.

In addition, you might be worried that:

4. Someone might be able to read your e-mails
5. Someone might be able to access your e-mail list
6. Someone might be able to see you track the keystrokes you type
7. Someone might be able to access your credit card information on your pc
8. Someone might be able to access your passwords list on your computer
9. Someone might be able to steal your social security number
10. Someone might be able to track all the web sites you visit

As I mentioned, most of these programs get on your computer with out you even knowing, but another frustrating part is I recognized a few of these programs because I remember installing AND uninstalling them! So now I know that when we install some of these handy little utilities to track passwords online or programs to help with e-mail or keep track of the weather, even if we uninstall them, they may not be gone from our computers. They are still in our computers, waiting to spy on us, at the least.

A great way to find and remove spyware is to run a spyware detector and remover. Most spyware detection and removal software today offers a free scan to verify that you do or do not have spyware on your computer.

10 Reasons Why To Print with Printer Anywhere

PrinterAnywhere has developed a new technology and software that allows any user with internet connection to connect and print any document all over the world. Users now have the power and provision to connect to any printer all over the world without any networking. The users just need to download and install the free software that PrinterAnywhere provides. That too without the requirement of any special knowledge by the user or the owner of printer!

With the software that Printer Anywhere provides, the user is now able to print anything directly from your applications like the Photo Editor, Outlook Explorer, and so on. Also the page the user wants is printed thousands of miles away from your own computer.

The software is developed with such precision that uses high security as well as the quality standards for the printing the page at the desired destination. The software also uses a high quality encryption algorithm and securely sends the printable media through electronic pulses to the desired destination. This also adds to the user’s security because the imitation of the original copy is sent.

The Printer Anywhere software also bans the forwarding of the document, thus, unlike e-mail, solves the problems faced for the privacy issues. It is also unnecessary for the user to have an email id for the printing of document anywhere in the world. The user also has the authority of how many copies are to be printed.

There are the ten most basic reasons why to print documents around the world using on the software that is provided by Printer Anywhere. The ten reasons are:

1. To ensure that the documents are not only received but also printed:
Many times it happens that the important documents that are sent through email are received properly but are either misplaced or are deleted from the receivers computer. With PrinterAnywhere, the user can be assured that the documents are not just received but printed so that the receiver has a hard copy of the documents.

2. The user does not want to send electronic copies of the documents:
With the sending of emails, all the privacy issues pop-up. The emails, for example, can be forwarded and the privacy of the document is compromised. Instead if the user chooses to print the document using PrinterAnywhere, the user has a benefit of preventing the abuse of privacy.

3. The recipient does not have the application to open the document:
With the technology advancing all the time, there is an acute possibility that the recipient does not have the proper application to open certain documents that have come from the other parts of the world. Hence it is very useful to have the software provided by PrinterAnywhere, which facilitates the printing of any document in any part of the world. This saves the time in finding and installing the correct application to open the document.

4. The user wants to print paper photos on someone else’s printer:
The software is very useful in printing you archived photos on any printer in any part of the world. So, instead of sending the photos through email and then let the recipient download and then print the photos, the user can directly print the photos on the recipient’s printer.

5. The user wants to ensure that the documents are printed on loy on the specific printer:
The software provided by the PrinterAnywhere ensures that when a document sent for printing, it goes to the right recipient.

6. The user wants to print directly from the applications as if it were a local printer:
The user now has the opportunity of printing the required document directly from the application by just commanding the application to print and then giving the correct link of the address of the recipient printer.

7. Microsoft printer sharing on the home network of the user doesn’t seem to work:
The Microsoft printer sharing may not work correctly hence; PrinterAnywhere is a better option for all the users.

8. The document is too big to print or the user wants to save his paper:
If the user does not wants to waste his paper for something which maybe useless yet necessary, then with PrinterAnywhere, the user has the option to directly print the document at the recipient’s printer.

9. Fax quality is not good or the international fax calls are very expensive:
The Fax calls are very expensive in case you want to send a fax overseas. In this case the PrinterAnywhere is a very good option.

10. The user wants to print right at that moment and for free:
PrinterAnswers is the best option to print documents on the spot and for free.


With all these reasons, PrinterAnywhere is the most irresistible.

10 Benefits Of Smarthphone Bluetooth

10 Benefits Of Smarthphone Bluetooth Below, are 10 benefits and reasons to use Bluetooth technology.

1. Wireless As you probably already know, there are many benefits and advantages to using wireless devices. Along with improving safety as a result of eliminating wires you don't need, wireless also offers you plenty of other advantages. When traveling with your laptop or other wireless devices, you'll no longer have to worry about bringing connection cables.

2. Bluetooth is actually inexpensive The technology of Bluetooth is cheap for companies to implement, which results in lower costs for the company. These savings are then passed from the company on to you.

3. Bluetooth is automatic Bluetooth doesn't have you set up a connection or push any buttons. When two or more devices enter a range of up to 30 feet of each other, they will automatically begin to communicate without you having to do anything.

4. Standardized protocol Bluetooth is standardized wireless, meaning that a high level of compatibility among devices is guaranteed. Bluetooth will connect devices to each other, even if they aren't the same model.

5. Low interference Bluetooth devices almost always avoid interference from other wireless devices. Bluetooth uses a technique known as frequency hopping, and also low power wireless signals.

6. Low energy consumption As a result of Bluetooth using low power signals, the technology requires very little energy and will use less battery or electrical power as a result. This is an excellent benefit for mobile devices, as Bluetooth won't drain the battery.

7. Sharing voice and data The standard for Bluetooth will allow compatible devices to share data and voice communications. This is great for mobile phones and headsets, as Bluetooth simplifies driving and talking on your cell phone.

8. Instant PAN (Personal Area Network) You can connect up to seven Bluetooth devices to each other within a range of up to 30 feet, forming a piconet or PAN. For a single room, you can also set up multiple piconets.

9. Upgradeable Upgradeable is the standard for Bluetooth. There are newer versions of Bluetooth in the works, which offer many new advantages and backward compatible with older versions.

10. The technology stays Bluetooth technology is a world wide, universal wireless standard. With it being as popular as it is, you can count on it being around for years to come. As more and more devices start to use Bluetooth technology, more manufacturers will be eager to make their products compatible. A chain reaction will occur, making Bluetooth the standard for cutting edge wireless.

7 Tips For Buying Cheap Laptop

Laptops are gaining in popularity these days. Almost everyone is carrying one now either for work or entertainment. Laptops with the latest technology are introduced to the market everyday and these new laptops come with a huge price tag. However, that does not mean you cannot get a good and cheap laptop. I have put together a guide that may help you out in your hunt for a cheap and good laptop.

Buy cheap laptop with older technology

Rapid advance in technology makes it meaningless to buy the latest technology at a high price. When laptop with wireless capability first came to the market, a unit with this technology can cost up till US$2500. NOw after 2 years, you can get a relatively fast centrino laptop for less than US$1000

Buy used or refurbished laptop
The depreciation of a laptop value is so high, that after one year in the market, a laptop can easily lose half its value. So if you are looking for a cheap laptop, look for one which is close to one year old. Not all used laptop are in bad condition. You will be surprised to find that some used laptops are still in good condition because their owners are power users or gamers.

Buy laptop from power users or gamers
I like to buy electronic gadgets including laptops from hard core power users or gamers. Let me share with you why. Gamers or power users usually require the latest and most powerful technology to run their games or power hungry applications. They often will not settle for second best. They also have the tendency to chase after the latest technology. So after one year, they will be bored of what they have and will look to sell off their laptops so that they can buy a new one. Now if you are looking to buy cheap laptops with up to date technology and you happen to have friends who are gamers, do ask them if they are looking to sell off their laptops. Who knows, maybe you can buy a good and cheap laptop from them.

Scan through gaming forums and local gaming community
if you do not already have friends who like to play computer games, then scanning through gaming forums on the internet is another way to get good and cheap deals for used laptop. Internet makes it easy for you to do this. Go to google.com and start searching for gaming forums. Visit each and everyone and see if they have a Trading Section. You will definitely find many post from gamers looking to sell their gaming laptops.

Scan through local bulletin boards
Do scan through local bulletin boards near you for cheap deals on laptop.Especially if there are software companies around the area. Software companies do offer their used computers or laptops for sale when their software projects end. I personally had gotten a few good deals for my family and friends.

Look for cheap laptop with at least 512mb memory
This is especially important for used laptop. If the processor speed is slow, then having more memory can compensate for the lack in speed. In fact, The size of memory plays a big part in determining how fast a laptop runs an application. Just by increasing the memory size, you can see a huge difference in speed. A cheap laptop with at least 512mb memory can run most non graphic intensive application easily.

Get cheap laptop from reputable manufacturer
This is very important because if you are buying used laptop, then the chances of requiring servicing is higher than a new laptop. So if you buy from a reputable manufacturer, you will save alot of trouble and time if your laptop do require servicing.

7 Simple Reasons Why You Need a Network Security Camera for Your Home

Pros

1. Easy to install: Most of the network cameras on the market are plug and play and/or have very simple to follow instructions for both the hardware and software end.
2. Comparatively cheaper than other security systems: Instead of paying a highly trained technician to install a complex CCTV system, and pay him on an ongoing maintenance arrangement- you can have a network camera security system that can stand on it's own against CCTV and traditional security systems.
3. Works with your existing computer network: If you already have a home network, then the network camera works with your settings, so you don't need to pay more for the proper security infrastructure.
4. Provides peace of mind: watch your home, watch your childs room, watch your vacation home, watch your pets while you are on vacation, etc
5. See remote areas: as far away as across the globe, or your own front porch from a centralized area. Can even remotely view your children at the nursery (depending on the nurseries policies though this is becoming more standard)
6. Flexibility: Prefer not to be tethered to the security control panel or hire a full time security professional to monitor things, then get security alerts which you can view from cell phone, laptop, or PDA device, and provide multiple users access to the various security assets.
7. Receive alerts via email when detects motion, either when someone visits your home, or when your children leave home to hang out.

Cons

1. May have poor image quality depending on model and configuration, and wireless cameras in general have poorer image quality on the lower to mid range.
2. For more bells and whistles, like sound recording, scheduled emails, and motion capture, it varies greatly from model and software description.
3. Generally, outdoor surveillance equipment is more costly, especially if you want the ability to remotely pan/tilt, zoom in, zoom out, and want a waterproof camera. However for a home system this is probably not as urgent as opposed to for a business situation.
4. Drains computer network resources, so if you don't have a speedy computer, then there's a chance of a slight slow down in your collective resources.

Remember that despite the cons, the benefits outweigh them as they provide great security results at a lower installation and maintenance cost than traditional Closed Circuit Television systems.

7 INCREDIBLE advantages of "Water-Powered Car" technology to YOU!!

7 INCREDIBLE advantages of "Water-Powered Car" technology to YOU!!!!

http://www.hydrotechcar.com

Article Summary: No doubts about it, it's now possible to power your car on water as well as gas, instead of 100 gas. Apart from the many advantages that this technology have on the planet, it also has many widespread advantages to many individuals around the world, including YOU.

Below are 7 of these incredible advantages of the water for gas to YOU:

1- Improves your gas mileage by up to 35%. This includes both city and highway driving conditions. Imagine how much money this would save you at the end of the month and at the end of the year. It is estimated that this could save you as much as $897.40 per year. If you are two, three or four drivers in the family, this yearly savings increases dramatically. And what if you have a fleet of 50 drivers in your company? Then your yearly savings will multiply to $44,870. More if you have more drivers.

2- Eliminates harmful exhaust emission that pollute the environment and contribute to global warming. Your engine will ADD oxygen to the environment instead of polluting it. How about doing something good to help the environment for a change?

3- Greatly enhance engine power and performance. The more gas you use on your car, the more the engine gets battered- thus reducing the performance. But by using water as an alternative, this enhances your engine power instead and improves performance.

4- Remove carbon deposits and prevent future carbon build up.

5- Reduce the operating temperature of the engine and waste heat into the environment.

6- You will notice a calmer, quieter and much smoother engine operation and smoother gearshifts. This is due to the effect water has on the combustion cycle inside your engine.

7- Enjoy a longer life expectancy of your engine, especially the pistons, rings and valves.

These are just some of the many advantages of water for gas technology to YOU. Remember, even YOU can build the device needed to make this technology work for YOU, from the comfort of your home.

About the author

To learn more about water for gas technology and how you too can build your own water for gas powered car, visit http://www.hydrotechcar.com for all the SECRETS of Water Car Technology

7 Great Computer User Tips - For Windows Users Only

An Easy Performance Enhancement

If you’re using the NTFS filing protocol on your system, instead of FAT32, you can get a bit more speed by disabling Windows® Indexing. The downside to this is that searching your drive for a specific file might take a moment or two longer, but everything else should run faster.

To disable this feature open My Computer and then right click on the drive you wish to reset – usually C-drive. Now click on Properties and then uncheck “Allow Indexing Service.” It will take Windows® a few moments to accomplish this task, based on your processor speed. If you have other hard drives, perform the same process for them. After this is done, it’s a good idea to empty the Recycle Bin and then Defragment your hard drive(s).

FREE Software

If you have a system and it does not have an office suite, such as Microsoft Office, and you don’t want to pay several hundred dollars to have one, try Open Office. This is a great alternative to other suites, and it’s free! Simply direct your browser to www.openoffice.org and follow the instructions for downloading and installation. Make no mistake, this free office suite is an extremely powerful set of software tools – easily a match for any competitor.

Internet Explorer (Microsoft’s Internet browser) is unarguably the standard in computers. This is why hackers develop so many malware applications to invade it. If you use a different browser, you have much less chance of an invasion by malicious software. There is a great alternative available, and it’s free. You can download a copy of Firefox at www.mozilla.org/products/firefox. You can even move your Internet Explorer settings into Firefox automatically – so you don’t lose your Favorites, etc.

Laptop Printer Fix

If you’re using a laptop that is running Windows® ME, and you’re having trouble printing through the USB, try this simple fix. Go to the website for the company that manufactures your printer. If you use a Hewlett-Packard, for example, go to www.HP.com and download the appropriate drivers and install them. ME has drivers that recognize the USB printer is present and attached, but not the drivers needed to make it print. Which drivers you download and install will be dependant on your printer. After installing new drivers, update the printer as necessary in the Control Panel.

Save $$$ When Shopping On-line

If you’re making a purchase on-line, and you know the item you want to buy, you can easily compare pricing all across the Internet. This can amount to a very substantial savings.

At this writing, I went to www.mysimon.com and typed in that I wanted to buy a printer: a Canon PIXMA iP4000. The service instantly checked the Internet and returned prices ranging from $62.00 up to $286.00. This kind of price spread is not at all unusual, especially for computers and electronics.

The My Simon website service only checks pricing, it does not provide a platform for purchasing anything, though it does link to such places. It also gives a rating for the sellers and other users’ input regarding their experiences with the company. You can order the results of the search for your product by price, so that you can quickly find the lowest price from the highest rated dealer.

Windows® XP Professional Only

A feature of Windows® XP Professional, that is not available in the Home Edition, is the ability to encrypt files. This encryption prevents others from opening the files in the folder you encrypt. To encrypt one or more a folders, follow these easy steps.

Click Start, then My Documents. Now locate the folder you wish to encrypt and right click on it and choose Properties.

On the General tab, click on Advanced. Put a tick mark in the box for Encrypt Contents to Secure Data. Click okay two times and the confirmation dialog box will appear allowing you to select the folder, the folder and all files, and/or the subfolders within it.

Now you'll be able to place files in this folder (or folders) and since they're encrypted, others will not be able to access them.

Internet Safety

You should never reveal your username or password to anyone who e-mails you and asks for it. This information is frequently asked for by an Internet scheme called “phishing.”

In a common phishing scam, you receive an e-mail that looks quite official. It usually appears to come from a bank or credit card company. A common title for these e-mails is “We need to verify your account information.” Another is “Please logon to your account and verify your settings.” If you do click where instructed, you’ll end up on a site that appears to be the real one. If you fill in the username and password for of your on-line banking account, you can expect serious problems within twenty-four hours.

If you believe that a company or business that you do on-line business with really does require your information, then simply contact them. This way, you will know where you are sending your information, and what it will be used for.

CD Burning Error Fix

Burning music, video, and data CDs has become quite popular over the past few years, and the evolution of the supporting technology has yielded hardware and software that is better than ever – and very reasonably priced. CDs offer a great place to store substantial amounts of data in a small, easily retained format. They also give us new control over aspects of our entertainment.

A relatively common error received during CD burning informs you that the CD cannot be burned, or that there was an error during burning. Of course, you could actually have a defective CD drive, but this is usually not the case.

If you receive a message indicating that your CD cannot be burned, go to the website of your CD drive manufacturer. Look for the list of CD types (manufacturers/numbers) that are compatible with your device. Most often, you’ll find that your CDs are not listed. The two types that seem to have the least difficulty being burned are manufactured by Sony and TDK. These cost a bit more, but they burn very reliably.

Along the same lines – H-P has introduced a new CD burner. This new burner requires the use of special CD blanks, but after you burn your data into the CD, you can flip it over and close the drive again. Then you can use the laser to burn a title for the CD directly onto the CD itself. It’s new technology, but perhaps it will catch on and we’ll see newer, better such devices in the near future.

6 Steps You Can Take To Speed Up Your Computer’s Performance

We live in a fast paced world and we’re always looking for the fastest way to get things done. We barely have time to wait for our burger at the local fast food restaurant, our coffee to brew, our microwave popcorn to pop, so who has time to wait around for a slow computer?

Barring adding more RAM to your computer, there are 6 steps you can take to speed up your computer’s performance. Most of these steps will allow you to speed up your computer, free of charge since they are applications already installed on your computer.

One of the first steps you should take is to empty the Recycle Bin. It’s easy to do. Just point your cursor to the Recycle Bin icon on your desktop, right-click, and choose “Empty Recycle Bin.”

Next, open up your Internet Explorer, go to Tools, Internet Options. Click on “Delete Cookies,” then on “Delete Files.” In the window that appears, check “Delete all offline content” and click OK. Once that’s done, click OK to close the Internet Options window, and close your Internet Explorer.

Those two are steps are the quickest, and simplest ones so that’s why we got them out of the way first. Next, we’ll be conducting a Disk Cleanup. To do this, click on Start, All Programs, Accessories, System Tools, Disk Cleanup. The disk cleanup function will now begin calculating how much space you will be able to free up. Once it finishes, it’ll give you a list of files to delete. It should already have some files checked, but you can go through the list and check off all the files you want to delete, then click OK.

Now it’s time to do a disk defragmentation. This can be a long process so you should probably set this up during a time when you’ve got other things going on. For example, set it up, then go watch your favorite TV show, or go mow the lawn, or go workout. You get the idea. To begin go to Start, All Programs, Accessories, System Tools, Disk Defragmenter. Click Analyze. If you’re lucky, you’ll get the “You do not need to defragment this volume” call-out, but more than likely, you’ll have to click on “Defragment.” If so, click on it, go do something else and come back in an hour or two.

Once that’s done, it’s time to run a spyware scan. Most people don’t realize how easy it is to get infected with spyware, so running periodic scans is highly recommended. You can use any anti-spyware program you choose. Just be aware that no one program gets rid of everything. To play it safe, you should run at least three different programs. You might be surprised by what they find. You may have had spyware running on your computer and not even know it. Once the scans are complete, and all that spyware is taken care of, it’s time for the last step.

This last step is to run an anti-virus scan. Hopefully you have an anti-virus program installed on your computer. If not, I highly recommend you get one as soon as possible. Once the anti-virus program is set, go ahead and run it. This could take anywhere from 20 minutes to a couple hours depending on how many files you have on your hard drive so once again, set it, and then go do something else. Come back in about an hour.

Once all the steps are complete. Restart your computer and you’ll be surprised at how completely nimble it now feels. It’s a good idea to follow these 6 steps at least once per week (some steps you can even set up to be done automatically). By doing this, you will keep your computer performing almost like it did when you first bought it.

5 Tips To Buying Trading Cards

The trading card industry is one of the most popular in all of collectibles. With everything ranging from race used sheet metal to game-used bats and rookie cards of tomorrow’s hottest stars, the manufacturers of trading cards have changed the way people collect. Some time ago, the greatest insert in a wax pack was a stick of bubble gum, but today it’s so much more.

With such popularity comes great wealth, for both manufacturers and collectors, and a few tips to consider when dealing with trading cards will make the hobby not only one of profit, but also of fun.

Condition. When shopping for trading cards, pay close attention to the condition. A mint card is one that is just like new, with sharp corners, no markings or creases. Some companies actually grade trading cards, while others simply let the shopper decide. Trading cards that are in poor condition are noticeable immediately, but ‘good’ and ‘fair’ ratings are open to interpretation.

Authenticity. If you are in the market for trading cards, take special care to learn as much about the hobby as possible. If you are going to spend big bucks on a single card, make sure that you are getting the real deal. A good example is the Michael Jordan rookie card, which was reprinted years ago. It looks so much like the original that even experts have a difficult time distinguishing the original from the reprint. If you are looking for an expensive card, make sure that it is graded by a reputable company and it never hurts to have it checked again after purchase.

Investment. If you are an investor, trading cards may be the hobby for you. It is inexpensive to get started collecting and the future profits can be high. Investors should consider purchasing rookie cards, which will be the first trading card that a rookie player appears on. If the star rises in fame, so will your investment. Additionally, mint condition cards appreciate the most in value.

Reputation & Research. If shopping for trading cards online, especially, find a company that has been in business for awhile. Look for information relating to their return policy, just incase the card isn’t exactly as described. Always be sure to do your research when purchasing trading cards and check the price guides to make sure you are getting a fair deal.

Have fun Most importantly, have fun when shopping for trading cards. While it is a profitable business venture for some, most importantly it is a hobby and should be enjoyed by all who partake.

5 Tips for Offshore Software Development

As a business owner or manager, the decision to opt for offshore software development can be difficult. As anyone who has experience knows, there are advantages and disadvantages to outsourcing software development. How then, do you balance the risks and rewards and come out on top? Here are five tips to ensure that you receive an excellent return on investment:

1. Complex project management experience. When selecting an offshore software development company, ensure that they have extensive experience in complex project management. The company's internal team should run like a well-oiled machine, and they should have longstanding relationships with their own subcontractors.

2. Specialized knowledge and expertise. The most agile software development companies have an extensive network of specialists. These specialists may not be on the company payroll (which is why the company can offer you significant cost savings), but they can be depended upon to complete the necessary tasks on time and within the budget.

3. Knowledge of your industry. In theory, offshore software development companies should be able to perform custom software development for any type of business. There will be less of a learning curve, though, and greater chances for success, if the company has knowledge of your industry or a related industry. For this reason, ask for referrals and determine if the projects the company has managed are similar to or in alignment with the goals of your project.

4. Delineate areas of responsibility. Chances are, you're considering hiring an offshore software development company because you don't have the in-house expertise to get the job done and know that it is more cost-effective to outsource the project. Nonetheless, you will need to actively participate in a needs assessment and at various benchmarks throughout the life of the project. By creating a clear delineation of areas of responsibility, you will have a clear understanding of the number of staff hours you need to devote to the project, and plan accordingly.

5. High standards. Both you and the offshore software development company you choose should adhere to high standards. Aside from the talent of the technical experts involved, successful custom software development depends upon rigorous testing. The most dependable companies use the highest industry standards in testing each aspect of the products they create so that you receive a product that is ready to implement.

Essentially, the most successful offshore software development companies are competent and flexible, and see their role as an information technology partner who solves your software problems, supports your team, and manages your projects from beginning to end. When you choose such a company, you can rest assured that you will receive an excellent return on investment.

5 Tips for Buying a Laptop

5 Tips for Buying a Laptop

Buying a laptop is a major investment decision. As such it is not one that you should make lightly. Below are 5 tips that will help prepare you for making the best and most well informed decision when buying a laptop.

Tip #1 Size Matters

Buying a laptop is a matter that requires some thought. Consider the size and weight of the laptop. How often will you be carrying your laptop? Your answer will help determine which size and weight will best suit your needs. If you will be carrying your laptop frequently, a lighter model will be preferable.

The keyboard is another area to consider when buying a laptop. Why is the size of the keyboard important? A larger laptop will have a slightly larger keyboard area. But keep in mind that if you worry about your fingers or wrists taking on too much stress from typing on a keyboard that is too small, you may want this to be a main factor in your purchasing decision,

Tip #2 Choose Your Mouse

A laptop it will come with a built in touch pad, an alternative to the mouse, whereby the pad is controlled by the user’s finger movement. For some people, this type of pad is uncomfortable and not easy to work with. Before purchasing a laptop, determine what mouse options are available. Test each one and determine which one best meets your needs.

Tip #3 Wireless Options

Today, when many people think laptop, they think “wireless”. No doubt people want to make sure that their laptop computer will be able to access the Internet with a wireless connection. Many try to account for this by ensuring that their laptop has potential upgrade options, such as room for an expandable PC card or a USB port. However, since so many laptop users are looking for wireless connections, many of today’s laptops come pre-wired for wireless Internet. All you need to do is activate your wireless Internet service, and your laptop will take it from there. So depending on your needs, choose your laptop whether it is capable of expanding or if it is already configured for wireless Internet.

Tip #4 Check for Ports

Peripheral equipment will be connected to your laptop through USB ports. You will make your life much less complicated by ensuring that your laptop has adequate ports. Connecting equipment such as printers, scanners, and digital cameras will be much simpler if you have the ports readily available. If you are not sure, thoroughly read the specs for any laptop that you are considering purchasing.

Tip #5 Check Your Budget First

Finally, when buying a laptop, beware that you do not overspend. First create your budget and stick to it. When you think that you have found the laptop that you want, do not rush into it. Wait a day and check over your budget, requirements, and see if you are still as excited about the laptop in the morning, as you were when the sales clerk was showing off its specs. If you still feel that it is the laptop that you want to purchase, then go for it.

5 Reasons To Purchase Desktop Computers

If you are in the market for a computer, there are a number of factors to consider. Will it be used for your home, your office or perhaps even your home office combo? First off, you will need to set a budget for your new purchase before deciding whether to shop for notebook or desktop computers. Many offices use desktop computers because they are not intended to be moved around a lot. In addition, affordability often plays a large role in someone’s decision as to whether to purchase notebook or desktop computers.

While you are shopping around, it’s important to keep in mind some of the benefits that go along with owning different types of computers. To that end, this article provides five important reasons to purchase desktop computers.

- Desktop computers are typically much more affordable than notebook computers. With notebooks, you are paying more for the convenience of portability. For as little as $299.00, desktop computers can be purchased from one of the leading manufacturers and a notebook computer for as little as $499.00.
- Unlike notebook computers, replacing a keyboard, mouse, speakers or even a monitor does not require having your computer serviced by a professional repair shop. Because notebook computers have everything built in, including the aforementioned features, it is more difficult to replace a keyboard or monitor as opposed to desktop computers, which operate on external connections.

- In the event of an unlawful entry into your home, desktop computers are not as likely to be stolen because of their weight and bulk. Notebook computers, on the other hand, are small and portable. This, alone, makes them more appealing to a thief than desktop computers.

- Desktop computers are stationary by nature. Unlike a notebook computer, which can easily be moved from room to room, they are less likely to be dropped or broken because they are not moved as often.

- The vents on desktop computers are located on the back of the tower, which allows for proper ventilation that will help to prevent the computer from overheating. Notebook computers, on the other hand, feature only one vent on the back with the remaining underneath the base. If placed on a table, the air vents can become blocked and the computer may overheat. If prolonged use leads to overheating, damage may result.

When choosing from the many desktop computers on the market, always make sure that you purchase from a manufacturer who has experience in creating computers. Even though they are more affordable than notebooks, desktop computers are not cheap. With an investment that involves several hundred dollars, you will want to consider the length of time the manufacturer has been in business, their reputation with customers and their warranty.

Additionally, when choosing any system, including desktop computers, always look at the potential for future upgrading. As you grow, you will want your computer to grow with you and a part of that will include a slight upgrade from time to time. This is the only way to get the best use of your desktop computers and make sure that your investment is one that lasts for years to come.

5 Reasons to Choose a Notebook Over a Computer Desktop

Many of us are so used to working on a computer desktop that when it comes time to purchase a new computer, we don't consider other options. Today, computer notebooks - which were once called laptops - offer a number of advantages over a computer desktop. Here are just five reasons why you should take a second look at notebooks.

1. Mobility

You might be used to pulling up a chair to your computer, but it makes much more sense to pull your computer up to your chair. Laptops can certainly be used at your desk, but you also have the option of bringing them to the spot where you're most comfortable. Maybe you'd like to surf the Web in the evening out in the living room or catch up on your favorite blogs before bedtime. Notebooks with wireless connectivity can travel with you throughout your home, so you can check your email or do your Internet shopping anywhere.

Of course, notebooks also make sense for those who are on the go. Students can take laptops to class and to the library, while businesspeople can take them along while traveling. With WiFi so widely available, it even makes sense to have a notebook while on vacation. With the right notebook, it's easy to take photos with your digital camera, upload them, and email them to friends and family before you even get back home. Or you can use it to write a vacation blog and include those pictures from your digital camera.

2. Better Displays

The size and quality of computer notebook displays has improved so dramatically that there's little difference between laptops and a computer desktop. For example, you can get Apple's MacBook with a 13.3-inch LCD widescreen (1280 x 800 pixels), a 15.4-inch LCD widescreen (1440 x 900 pixels) or a 17-inch widescreen (1680 x 1050 pixels). Similarly, the Compaq Presario has a 15.4-inch display.

3. Lighter Weight

Just a few years ago, even the lightest notebook was a pain to lug around. Today, though, laptops are increasingly easy on the back. The MacBook is slightly over an inch thick and the Toshiba Portege weighs in at about four pounds. While that's still heavy compared to come of the new ultralight convertibles (Fujitsu's LifeBook U810 weighs only a pound and half), it's a significant improvement over the old seven-pound laptops.

4. Better Computing and Battery Power

Historically, two drawbacks of notebooks were their limited RAM, limited space on the hard drive, and short battery life. Times have changed, though, and laptops now have as much power under the hood as their computer desktop cousins. The MacBook, for example, has 1GB of memory (configurable up to 4 GB) and a hard drive that's configurable to 250GB. This means that your software will hum right along and you'll be able to zip through programs as quickly and as easily as you do on your desktop. Likewise, batteries in today's notebooks don't heat up and don't conk out.

5. More Features

In older laptops, the computer's size and weight limited the number and types of features available. Today, with smaller processors and other components, there's room to pack more features into notebooks. For example, the MacBook has a DVD player, built-in webcam, built-in wireless capability, two USB ports and a FireWire port, built-in microphone, and audio and digital input/output.

There are so many advantages to owning notebooks that, before you buy your next computer, it's worth your while to take one for a spin.