Saturday, March 28, 2009

CASE 2






Download Case 2

import java.awt.*;
import java.sql.*;
import java.awt.event.*;
import java.io.*;
import java.text.DecimalFormat;
import javax.swing.*;
import java.lang.*;
import java.util.*;


public class Conversion extends JFrame {

String text = "";
boolean enter = true;
JFrame h = new JFrame();
JPanel p6 = new JPanel();
JPanel p1 = new JPanel();

JLabel fnumber = new JLabel(" Number:");
JTextField num = new JTextField("", 20);

JLabel binary = new JLabel(" Conversion:");
JLabel bin = new JLabel("");

JButton add1 = new JButton("Binary");
JButton minus = new JButton("Decimal");
JButton multiply = new JButton("Octal");
JButton divide = new JButton("Hexadecimal");



public static void main(String args[]) {
Conversion Layout = new Conversion();
}

public Conversion( )
{

p1.setLayout(new GridLayout(2, 1));

p1.add(fnumber);
p1.add(num);
p1.add(binary);
p1.add(bin);

p1.add(add1);

add1.addActionListener
(

new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
solution();
}
}
);

p1.add(minus);

minus.addActionListener
(

new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
text = num.getText();
String p = num.getText();
int number;
for(int i = 0; i < let =" p.charAt(i);" enter =" false;" enter ="=" number =" hexdecsolution();" enter =" true;" numbers =" Integer.parseInt(num.getText());" binaryconvert = "" i =" 0;">= array[i])
{
numbers = numbers - array[i];
binaryconvert = binaryconvert + "1";
}

else
binaryconvert = binaryconvert + "0";
}

bin.setText(binaryconvert);
}

public void decimalsolution()
{
String numbers = num.getText();
int arrays[] = { 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16383 };
int binaryconvert = 0;
int len = numbers.length()-1;

num.setText(text);

for(int i = len, j = 0; i >= 0; i--)
{
if(numbers.charAt(j) == '1')
binaryconvert = arrays[i] + binaryconvert ;
j++;
}

bin.setText(String.valueOf(binaryconvert));
}

public void octalsolution()
{
int numbers = Integer.parseInt(num.getText());
int octal = 0, t = numbers, a, b;
String concat = "";

while(numbers!=0)
{
a = numbers / 8;
b = a * 8;
t = numbers - b;
numbers = a;
concat = String.valueOf(t) + concat;
}

bin.setText(concat);
}

public void hexasolution()
{
int numbers = Integer.parseInt(num.getText());
int octal = 0, t = numbers, a, b;
String concat = "";

while(numbers!=0)
{
a = numbers / 16;
b = a * 16;
t = numbers - b;
numbers = a;

if(t == 10)
concat = "A" + concat;
else if(t == 11)
concat = "B" + concat;
else if(t == 12)
concat = "C" + concat;
else if(t == 13)
concat = "D" + concat;
else if(t == 14)
concat = "E" + concat;
else if(t == 15)
concat = "F" + concat;
else
concat = String.valueOf(t) + concat;
}

bin.setText(concat);
}

public int hexdecsolution()
{
String concat = "", get = num.getText();
int num;

for(int i = 0; i < get.length(); i++)
{
if(get.charAt(i) == 'A')
concat = concat + "10";
else if(get.charAt(i) == 'B')
concat = concat + "11";
else if(get.charAt(i) == 'C')
concat = concat + "12";
else if(get.charAt(i) == 'D')
concat = concat + "13";
else if(get.charAt(i) == 'E')
concat = concat + "14";
else if(get.charAt(i) == 'F')
concat = concat + "15";
else
concat = concat + String.valueOf(get.charAt(i));
}
return Integer.valueOf(concat);
}

}

decimal to binary






Download Case1

Private Sub Command1_Click()

Dim Temp, Temp1 As Long
Dim i As Integer
Dim res As String
Dim Done As Boolean

Text5.Text = Val(Text1.Text) + Val(Text3.Text)

Temp = Text1.Text
Temp1 = Text1.Text
Do Until Temp \ 2 = 1
Temp = Temp \ 2
i = i + 1
Loop
If res = "" Then
For j = i + 1 To 0 Step -1
If Temp1 - 2 ^ j > 0 And Done = False Then
Temp1 = Temp1 - 2 ^ j
res = res & "1"
ElseIf Temp1 - 2 ^ j <> 0 And Done = False Then
res = res & "0"
ElseIf Temp1 - 2 ^ j = 0 And Done = False Then
res = res & "1"
Done = True
ElseIf Done = True Then
res = res & "0"
End If
Next
Text2.Text = res
End If

Dim Temp3, Temp4 As Long
Dim i34 As Integer
Dim res34 As String
Dim Done34 As Boolean

Temp3 = Text3.Text
Temp4 = Text3.Text
Do Until Temp3 \ 2 = 1
Temp3 = Temp3 \ 2
i34 = i34 + 1
Loop
If res34 = "" Then
For j = i34 + 1 To 0 Step -1
If Temp4 - 2 ^ j > 0 And Done34 = False Then
Temp4 = Temp4 - 2 ^ j
res34 = res34 & "1"
ElseIf Temp4 - 2 ^ j <> 0 And Done34 = False Then
res34 = res34 & "0"
ElseIf Temp4 - 2 ^ j = 0 And Done34 = False Then
res34 = res34 & "1"
Done34 = True
ElseIf Done34 = True Then
res34 = res34 & "0"
End If
Next
Text4.Text = res34
End If


Dim Temp5, Temp6 As Long
Dim i56 As Integer
Dim res56 As String
Dim Done56 As Boolean

Temp5 = Text5.Text
Temp6 = Text5.Text
Do Until Temp5 \ 2 = 1
Temp5 = Temp5 \ 2
i56 = i56 + 1
Loop
If res56 = "" Then
For j = i56 + 1 To 0 Step -1
If Temp6 - 2 ^ j > 0 And Done56 = False Then
Temp6 = Temp6 - 2 ^ j
res56 = res56 & "1"
ElseIf Temp6 - 2 ^ j <> 0 And Done56 = False Then
res56 = res56 & "0"
ElseIf Temp6 - 2 ^ j = 0 And Done56 = False Then
res56 = res56 & "1"
Done56 = True
ElseIf Done56 = True Then
res56 = res56 & "0"
End If
Next
Text6.Text = res56
End If
End Sub

Private Sub Command2_Click()
Dim Temp, Temp1 As Long
Dim i As Integer
Dim res As String
Dim Done As Boolean

Text5.Text = Val(Text1.Text) - Val(Text3.Text)

Temp = Text1.Text
Temp1 = Text1.Text
Do Until Temp \ 2 = 1
Temp = Temp \ 2
i = i + 1
Loop
If res = "" Then
For j = i + 1 To 0 Step -1
If Temp1 - 2 ^ j > 0 And Done = False Then
Temp1 = Temp1 - 2 ^ j
res = res & "1"
ElseIf Temp1 - 2 ^ j <> 0 And Done = False Then
res = res & "0"
ElseIf Temp1 - 2 ^ j = 0 And Done = False Then
res = res & "1"
Done = True
ElseIf Done = True Then
res = res & "0"
End If
Next
Text2.Text = res
End If

Dim Temp3, Temp4 As Long
Dim i34 As Integer
Dim res34 As String
Dim Done34 As Boolean

Temp3 = Text3.Text
Temp4 = Text3.Text
Do Until Temp3 \ 2 = 1
Temp3 = Temp3 \ 2
i34 = i34 + 1
Loop
If res34 = "" Then
For j = i34 + 1 To 0 Step -1
If Temp4 - 2 ^ j > 0 And Done34 = False Then
Temp4 = Temp4 - 2 ^ j
res34 = res34 & "1"
ElseIf Temp4 - 2 ^ j <> 0 And Done34 = False Then
res34 = res34 & "0"
ElseIf Temp4 - 2 ^ j = 0 And Done34 = False Then
res34 = res34 & "1"
Done34 = True
ElseIf Done34 = True Then
res34 = res34 & "0"
End If
Next
Text4.Text = res34
End If


Dim Temp5, Temp6 As Long
Dim i56 As Integer
Dim res56 As String
Dim Done56 As Boolean

Temp5 = Text5.Text
Temp6 = Text5.Text
Do Until Temp5 \ 2 = 1
Temp5 = Temp5 \ 2
i56 = i56 + 1
Loop
If res56 = "" Then
For j = i56 + 1 To 0 Step -1
If Temp6 - 2 ^ j > 0 And Done56 = False Then
Temp6 = Temp6 - 2 ^ j
res56 = res56 & "1"
ElseIf Temp6 - 2 ^ j <> 0 And Done56 = False Then
res56 = res56 & "0"
ElseIf Temp6 - 2 ^ j = 0 And Done56 = False Then
res56 = res56 & "1"
Done56 = True
ElseIf Done56 = True Then
res56 = res56 & "0"
End If
Next
Text6.Text = res56
End If
End Sub

Private Sub Command3_Click()
Dim Temp, Temp1 As Long
Dim i As Integer
Dim res As String
Dim Done As Boolean

Text5.Text = Val(Text1.Text) * Val(Text3.Text)

Temp = Text1.Text
Temp1 = Text1.Text
Do Until Temp \ 2 = 1
Temp = Temp \ 2
i = i + 1
Loop
If res = "" Then
For j = i + 1 To 0 Step -1
If Temp1 - 2 ^ j > 0 And Done = False Then
Temp1 = Temp1 - 2 ^ j
res = res & "1"
ElseIf Temp1 - 2 ^ j <> 0 And Done = False Then
res = res & "0"
ElseIf Temp1 - 2 ^ j = 0 And Done = False Then
res = res & "1"
Done = True
ElseIf Done = True Then
res = res & "0"
End If
Next
Text2.Text = res
End If

Dim Temp3, Temp4 As Long
Dim i34 As Integer
Dim res34 As String
Dim Done34 As Boolean

Temp3 = Text3.Text
Temp4 = Text3.Text
Do Until Temp3 \ 2 = 1
Temp3 = Temp3 \ 2
i34 = i34 + 1
Loop
If res34 = "" Then
For j = i34 + 1 To 0 Step -1
If Temp4 - 2 ^ j > 0 And Done34 = False Then
Temp4 = Temp4 - 2 ^ j
res34 = res34 & "1"
ElseIf Temp4 - 2 ^ j <> 0 And Done34 = False Then
res34 = res34 & "0"
ElseIf Temp4 - 2 ^ j = 0 And Done34 = False Then
res34 = res34 & "1"
Done34 = True
ElseIf Done34 = True Then
res34 = res34 & "0"
End If
Next
Text4.Text = res34
End If


Dim Temp5, Temp6 As Long
Dim i56 As Integer
Dim res56 As String
Dim Done56 As Boolean

Temp5 = Text5.Text
Temp6 = Text5.Text
Do Until Temp5 \ 2 = 1
Temp5 = Temp5 \ 2
i56 = i56 + 1
Loop
If res56 = "" Then
For j = i56 + 1 To 0 Step -1
If Temp6 - 2 ^ j > 0 And Done56 = False Then
Temp6 = Temp6 - 2 ^ j
res56 = res56 & "1"
ElseIf Temp6 - 2 ^ j <> 0 And Done56 = False Then
res56 = res56 & "0"
ElseIf Temp6 - 2 ^ j = 0 And Done56 = False Then
res56 = res56 & "1"
Done56 = True
ElseIf Done56 = True Then
res56 = res56 & "0"
End If
Next
Text6.Text = res56
End If
End Sub

Private Sub Command4_Click()
Dim Temp, Temp1 As Long
Dim i As Integer
Dim res As String
Dim Done As Boolean

Text5.Text = Val(Text1.Text) / Val(Text3.Text)

Temp = Text1.Text
Temp1 = Text1.Text
Do Until Temp \ 2 = 1
Temp = Temp \ 2
i = i + 1
Loop
If res = "" Then
For j = i + 1 To 0 Step -1
If Temp1 - 2 ^ j > 0 And Done = False Then
Temp1 = Temp1 - 2 ^ j
res = res & "1"
ElseIf Temp1 - 2 ^ j <> 0 And Done = False Then
res = res & "0"
ElseIf Temp1 - 2 ^ j = 0 And Done = False Then
res = res & "1"
Done = True
ElseIf Done = True Then
res = res & "0"
End If
Next
Text2.Text = res
End If

Dim Temp3, Temp4 As Long
Dim i34 As Integer
Dim res34 As String
Dim Done34 As Boolean

Temp3 = Text3.Text
Temp4 = Text3.Text
Do Until Temp3 \ 2 = 1
Temp3 = Temp3 \ 2
i34 = i34 + 1
Loop
If res34 = "" Then
For j = i34 + 1 To 0 Step -1
If Temp4 - 2 ^ j > 0 And Done34 = False Then
Temp4 = Temp4 - 2 ^ j
res34 = res34 & "1"
ElseIf Temp4 - 2 ^ j <> 0 And Done34 = False Then
res34 = res34 & "0"
ElseIf Temp4 - 2 ^ j = 0 And Done34 = False Then
res34 = res34 & "1"
Done34 = True
ElseIf Done34 = True Then
res34 = res34 & "0"
End If
Next
Text4.Text = res34
End If


Dim Temp5, Temp6 As Long
Dim i56 As Integer
Dim res56 As String
Dim Done56 As Boolean

Temp5 = Text5.Text
Temp6 = Text5.Text
Do Until Temp5 \ 2 = 1
Temp5 = Temp5 \ 2
i56 = i56 + 1
Loop
If res56 = "" Then
For j = i56 + 1 To 0 Step -1
If Temp6 - 2 ^ j > 0 And Done56 = False Then
Temp6 = Temp6 - 2 ^ j
res56 = res56 & "1"
ElseIf Temp6 - 2 ^ j <> 0 And Done56 = False Then
res56 = res56 & "0"
ElseIf Temp6 - 2 ^ j = 0 And Done56 = False Then
res56 = res56 & "1"
Done56 = True
ElseIf Done56 = True Then
res56 = res56 & "0"
End If
Next
Text6.Text = res56
End If
End Sub

Private Sub Command5_Click()
End
End Sub

'Private Sub Text1_KeyPress(KeyAscii As Integer)
'If (KeyAscii >= 48 And KeyAscii <= 57) Then

' ElseIf (KeyAscii = vbKeyReturn Or KeyAscii = vbKeyDelete) Then
' KeyAscii = 0
'ElseIf KeyAscii = vbKeyBack Then

'Else
'KeyAscii = 0
'MsgBox "You can only input numbers.", 64, "Error"
'Exit Sub
'End If
'End Sub

Friday, February 6, 2009

An Overview of After Market PDA Bluetooth Accessories

Bluetooth Makes it Easy for All Your Devices and Accessories to Work Together

Bluetooth is one of the latest marketing buzzwords for PDAs and cellular phones, along with PCs and especially laptops. It is a wireless technology designed to let products and accessories built by different manufacturers work together, without requiring special access codes or driver installation. Theoretically, any Bluetooth accessory should work with any Bluetooth-enabled device, and multiple accessories working with the same device shouldn't interfere with each other.

For example, if you pick up a Bluetooth headset for your current PDA, and then in a year's time replace it with a new PDA, the headset should work with the new PDA without any difficulties. With some older PDA Bluetooth accessories and devices, this is not always the case, but generally the more recent the design of the accessory or device, the more likely it is to work with other Bluetooth products.

PDAs, Cellular Phones, and Computers

New PDAs today resemble cellular phones as much as classic PDAs like the Palm Pilot. Most of these devices are Bluetooth-enabled, and even have the capability to link with other Bluetooth-enabled PDAs and cellular phones to exchange data. For models that are not Bluetooth-enabled, there are frequently PDA Bluetooth accessories available that will add Bluetooth capabilities to the unit. Bluetooth adapters are also available for PCs and laptops, usually plugging into a USB port, allowing you to easily exchange data between your computer and your PDA.

Just about any type of data can be transferred over a Bluetooth link, from electronic business cards and pictures to word processing documents and PowerPoint presentations. For transferring data from a PDA to a computer, special software is often needed and included with the Bluetooth adapter. However, PDAs running Windows Mobile can communicate natively with computers running Windows XP Service Pack 2 or Windows Vista.

Having a Bluetooth PDA and a Bluetooth adapter for your computer can eliminate the need for a docking station or sync cable, removing one more piece of clutter from your desktop. You can even set the two devices up so they automatically synchronize their data when they're in range of each other.

Other PDA Bluetooth Accessories

Headphones and headsets are the most common PDA Bluetooth accessories right now. Wireless headphones are great if your PDA has music stored on it, because you don't have an unsightly wire running from your head to your pocket or purse. Headsets and earpieces allow hands-free operation of your cell phone or smart phone, which is not only convenient but is also quickly becoming a legal requirement world-wide for using your phone in your car.

Printer manufacturers are quickly adding Bluetooth capabilities to their products, turning them into convenient PDA Bluetooth accessories. Previously, to print something stored on your PDA, you had to use the docking station or sync cable to download the information to your computer, then print it from the computer. With a Bluetooth-enabled printer, you can send your data directly to the printer without the intervening steps. If your computer is also Bluetooth-enabled, it can send data to the printer as well, eliminating the need to hook up the printer to the computer or network.

There are many other PDA Bluetooth accessories available for your PDA, and with Bluetooth it doesn't matter who manufactures either the device or the accessory. A Motorola headset will work with an iPhone, and a Palm Tungsten can print spreadsheets on a HP LaserJet. Manufacturers are constantly coming up with new PDA Bluetooth accessories to meet the demands of consumers. Bluetooth technology is making it easier for everyone to communicate.

Avoid Highway Robbery by Using The New Crude--WATER

HERE'S THE BAD NEWS.

Engines waste gasoline! Up to 80% of the high-priced gas that you pump doesn't get you anywhere because it goes UNBURNED to the catalytic converter. That means you are getting 0 MPG (zero, zilch, nada) from most of the over-priced gasoline you pump into your tank.

WHY DO COMBUSTION ENGINES WASTE SO MUCH GAS?

That's what they are designed to do--WASTE GAS--because every second of every day, everywhere in the world, every single gas and diesel engine on the planet puts money into the deep, deep, DEEP pockets of Big Oil.

Automotive and fuel technology has been deliberately held back, and people have been kept in the dark about AMAZING inventions and discoveries, in order to sell us lots of gasoline. Sorry, but that's how it is.

For example, the gas could be preheated and better formulated for better combustion--but it's not. The fuel vapor droplets could be smaller for efficient combustion--but they're not. The pre-set computer-controlled air-to-fuel ratio could be more economical--but it's not. The exhaust could be reprocessed to contribute to mileage (there are patents on that)--but it's not. Cars could be using a better carburetor design--but they're not because the patent for a 100 MPG carburetor was bought and buried years ago. Cars could be running completely on water fuel--but they're not because those patents were also bought and then buried along with the inventor (however, the patents ran out recently!). Even the hybrids that Big Auto is selling at luxury car prices don't optimize gasoline combustion and consumption.

HERE'S THE GOOD NEWS.

You can do something about it, ONE CAR AT A TIME, starting with YOUR car.

How? By using ENERGY from WATER.

If that sounds impossible, or crazy, or delusional, I understand. This is something that none of our trusted sources of information--TV, radio, teachers, movies, professors, magazines, dad, scientists, books, Sesame Street--have told us about. Why? See the bad news, above.

I mentioned amazing inventions and discoveries. Many of them have very sophisticated technical patents on them. But the kind of water energy system I am talking about, the one that is affordable and do-able by ME and YOU in OUR cars (not by buying a Big Auto hybrid with a luxury car pricetag), is a do-it-yourself technology, specifically designed for beginners with basic tools and very limited budgets. A working system can be built at home for $20 to $200 worth of parts and installed in your car, truck, or SUV on a weekend. It's a 90-year-old technology that has been revived and developed into a simple, affordable, SAFE system based on low-cost hardware.

It works like this: The main component of the low-cost water energy system is an electrolyzer-a container of water with electrodes in it. The electrolyzer takes a tiny bit of electricity from your car. The electricity "splits" water into hydroxyl gas and feeds it immediately to the engine cylinders. The improved air/fuel mix gets very efficient combustion.

SPINNING WHEELS, NOT HEADS

Remember the bad news at the top? Remember I said that wasted fuel can be as much as 80%? In other words, even though you have paid $3.50 or more per gallon, you are only getting performance from as little as 20%--two gallons out of every ten--of the gas you pay good money for! It puts a whole new complexion on the phrase "highway robbery."

Our heads are spinning from rising gas prices. Now imagine instead that ALL your gasoline is working for you--it's actually turning your wheels and not just being turned into carbon deposits on your engine or exhaust from the catalytic converter. What would it be like for ALL that gasoline to be giving you mileage? It would be a WHOLE LOT MORE ECONOMICAL, that's what! That's what happens when you add the energy from water.

SEEING THE SEA OF ENERGY

Wondering how much energy is in water?

One gallon of water converts to approximately 1,833 gallons of combustible gas. One observer noted that a gallon of water in his water energy system lasted for about 2,700 miles.

"Energy from water" is hard to believe because we are misled by the appearance of water when it's liquied. It looks so, well, WET and noncombustible. But if we could SEE the sea of energy in the water--zillions of hydrogen and oxygen atoms ready to break out and be combustible gas under the right conditions--it would be easy to conceive that, indeed, water can be "burned" in an engine, thus taking advantage of a new "crude"--plain water.

Why aren't scientists telling us about this? Why doesn't it make big headlines? More bad news. Some of them just don't know about it, and some are paid to tell us about anything BUT this. Also, scientists are sometimes far behind empirical evidence from experimenters and inventors. Sometimes a true scientist makes an amazing discovery and is suddenly way ahead of everyone. What happens then? He or she has to fight all the other scientists that are way behind or too vested in the old paradigm. So who are the true scientists around here? A TRUE scientist could be anyone, including a scientist.

THE LAW OF CONSERVATION

Here is something to ponder from Patrick J. Kelly of http://www.PanaceaUniversity.org. He has a delightful way of tilting one's mind out of its box:

"The Law of Conservation of Energy is undoubtedly correct when it shows that more energy cannot be taken out of any system than is put into that system. However, that does not mean that WE cannot get more energy out of a system than WE put into it. A crude example is a solar panel in sunlight. We get electrical power out of the panel but we do not put the sunlight into the panel-the sunlight arrives on its own. This example is simple as we can see the sunlight reaching the solar panel.

"If, instead of the solar panel, we had a device which absorbs some of the energy that Quantum Mechanics observes and then gives out, say, electrical power, would that be so different? Most people say "yes!--it is impossible!" but this reaction is based on the fact that we cannot see this sea of energy. Should we say that a TV set cannot possibly work because we cannot see a television transmission signal?"

BUT ISN'T IT DANGEROUS?

We have been living and driving with danger for decades--it's called GASOLINE! Cars and trucks are planet-polluting bombs on wheels! But we are accustomed to it, right? And for the most part, we don't blow ourselves up.

But in the water energy system, I know, you think we're talking about tanks of compressed hydrogen in the car, but that's not how it is done! Here's the beauty of it:

Hydrogen is already compressed in plain water!

All we do in a water for fuel system is UNCOMPRESS and USE it--immediately, on-demand, in the engine! No hydrogen bombs on board. Just a container of distilled water! And the exhaust is--WATER! You split water, you burn it, you get fantastic mileage, you get a little water left over.

GREEN TECHNOLOGY

You can't get much greener than this unless you go for an engine designed to run completely on water, like the one that was designed and proven by Stanley Meyers when he drove across the United States on approximately 28 gallons of water. (You can see interviews with him on YouTube.) You can't get much more affordable, either. And because this is GREEN technology, and you will not be causing any damage to the car or the engine (far from it), your warranty will most likely be intact AND the government will owe you money for going green!

INSTALL WATER ENERGY SYSTEM, DROP JAW

You could pay someone to install your water for gas system. There are hundreds of people around the world who are constructing and installing water energy systems, as well as driving "watercars" themselves. These people save gas, save money, get much better mileage, and enjoy smoother-running engines and greatly reduced emissions. And that's why they are happy to do the same for you so you can save gas, save money, get much better mileage, and enjoy a smoother-running engine and reduced emissions.

Or you could do it yourself, in which case you would first get instructions, which are available on line. Then you would make a parts list and buy the parts from hardware and electronics stores. Third, you would construct the components of the water energy system, put them all together, and install the system, making all the necessary adjustments to it. You would now be the proud owner of a Water Hybrid Vehicle. And last, after picking up your jaw from the floor, where it has dropped in astonishment at your engine's mileage and performance, you would become an advocate of water energy, as I have.

BETTER COMBUSTION FOR THE MIND

To really grasp the implications and possibilities here, we must first clean the carbon deposits out of our minds. Using waterfuel is an approach to our cars and fuel that requires more participation from us. The whole water energy system consists of physical components PLUS your mind and attitudes about fuel consumption. To really optimize your waterfuel system, you will also be using fuel warmer, some Kiker wires to improve the spark, Xylene to add to your gasoline, a low-friction synthetic motor oil, a couple bottles of fuel treatment to clean carbon deposits from old unburned fuel out of your engine, a MAP sensor enhancer to keep the car computer from over-correcting the fuel mix back to over-rich, tires that are always fully inflated, and a real-time mileage tracker so that you won't have to use an entire tank of gas to know what mileage you are getting.

Perhaps the most important thing is this:

Trust yourself.

When you use an "alternative" fuel-efficiency system, you are an experimenter who is going against the herd and chances are, you are going to get some flack. Don't be fooled by self-appointed "experts" who don't have hands-on experience and say it can't be done. When they laugh or frown or condescend and say, "It's scientifically impossible," well, first of all, you know they are not "true scientists" (so why are they acting like they know what "scientifically" means?). Ask them if they have ever tried it themselves. You will find they have not. Further discussion might be fruitless, but you can try. Tell them to just wait and see. See for yourself. Don't wait ten years for big industry to do it because they don't want to GIVE you anything--they are only thinking about what they can GET from you while they continue making empty promises.

WHAT CAN A WATER ENERGY SYSTEM REALLY DO FOR ME?

Well…

How much will gas cost the next time you fill your tank?

A water energy system won't lower the price of ALL gasoline.

It will lower the price of YOURS. But don't just take my word for it.

Leslie Lackman is an advocate of the application of free, unlimited energies--mind, water, life force--to cars, health, wellness, and performance.