HOME

Thursday, November 12, 2009

Cancer Update from Johns Hopkins

AFTER YEARS OF TELLING PEOPLE CHEMOTHERAPY IS THE ONLY WAY TO TRY AND
ELIMINATE CANCER, JOHNS HOPKINS IS FINALLY STARTING TO TELL YOU THERE
IS AN ALTERNATIVE WAY.


Cancer Update from Johns Hopkins:




1. Every person has cancer cells in the body. These cancer cells do not show up in the standard tests until they have multiplied to a few billion. When doctors tell cancer patients that there are no more cancer cells in their bodies after treatment, it just means the tests are unable to detect the cancer cells because they have not reached the detectable size.


2. Cancer cells occur between 6 to more than 10 times in a person's lifetime.


3. When the person's immune system is strong the cancer cells will be destroyed and prevented from multiplying and forming tumours.


4. When a person has cancer it indicates the person has multiple nutritional deficiencies. These could be due to genetic, environmental, food and lifestyle factors.


5. To overcome the multiple nutritional deficiencies, changing diet and including supplements will strengthen the immune system.


6. Chemotherapy involves poisoning the rapidly-growing cancer cells and also destroys rapidly-growing healthy cells in the bone marrow, gastro-intestinal tract etc, and can cause organ damage, like liver, kidneys, heart, lungs etc.


7. Radiation while destroying cancer cells also burns, scars and damages healthy cells, tissues and organs.


8. Initial treatment with chemotherapy and radiation will often reduce tumor size. However prolonged use of chemotherapy and radiation do not result in more tumor destruction.


9. When the body has too much toxic burden from chemotherapy and radiation the immune system is either compromised or destroyed, hence the person can succumb to various kinds of infections and complications.


10. Chemotherapy and radiation can cause cancer cells to mutate and become resistant and difficult to destroy. Surgery can also cause cancer cells to spread to other sites.


11. An effective way to battle cancer is to starve the cancer cells by not feeding it with the foods it needs to multiply.






WHAT CANCER CELLS FEED ON:


a. Sugar is a cancer-feeder. By cutting off sugar it cuts off one important food supply to the cancer cells. Sugar substitutes like
NutraSweet, Equal,Spoonful, etc are made with Aspartame and it is harmful. A better natural substitute would be Manuka honey or molasses but only in very small amounts. Table salt has a chemical added to make it white in colour. Better alternative is Bragg's aminos or sea salt.


b. Milk causes the body to produce mucus, especially in the gastro-intestinal tract. Cancer feeds on mucus. By cutting off milk and substituting with unsweetened soy milk, cancer cells are being starved.


c. Cancer cells thrive in an acid environment. A meat-based diet is acidic and it is best to eat fish, and a little chicken rather than beef or pork. Meat also contains livestock antibiotics, growth hormones and parasites, which are all harmful, especially to people with cancer.


d. A diet made of 80% fresh vegetables and juice, whole grains, seeds, nuts and a little fruits help put the body into an alkaline
environment. About 20% can be from cooked food including beans. Fresh vegetable juices provide live enzymes that are easily absorbed and reach down to cellular levels within 15 minutes to no urish and enhance growth of healthy cells. To obtain live enzymes for building healthy cells try and drink fresh vegetable juice (most vegetables including bean sprouts) and eat some raw vegetables 2 or 3 times a day. Enzymes are destroyed at temperatures of 104 degrees F (40 degrees C).


e. Avoid coffee, tea, and chocolate, which have high caffeine. Green tea is a better alternative and has cancer-fighting properties.
Water-best to drink purified water, or filtered, to avoid known toxins and heavy metals in tap water. Distilled water is acidic, avoid it.




12. Meat protein is difficult to digest and requires a lot of digestive enzymes. Undigested meat remaining in the intestines become putrified and leads to more toxic buildup.


13. Cancer cell walls have a tough protein covering. By refraining from or eating less meat it frees more enzymes to attack the protein walls of cancer cells and allows the body's killer cells to destroy the cancer cells.


14. Some supplements build up the immune system (IP6, Flor-ssence, Essiac, anti-oxidants, vitamins, minerals, EFAs etc.) to enable the body's own killer cells to destroy cancer cells. Other supplements like vitamin E are known to cause apoptosis, or programmed cell death, the body's normal method of disposing of damaged, unwanted, or unneeded cells.


15. Cancer is a disease of the mind, body, and spirit. A proactive and positive spirit will help the cancer warrior be a survivor. Anger, unforgiveness and bitterness put the body into a stressful and acidic environment. Learn to have a loving and forgiving spirit. Learn to relax and enjoy life.


16. Cancer cells cannot thrive in an oxygenated environment. Exercising daily, and deep breathing help to get more oxygen down to the cellular level. Oxygen therapy is another means employed to destroy cancer cells.


Tuesday, October 27, 2009

FARMVILLE BOT that works!


FARMVILLE BOT that works!


Bot for FarmVille Site: farmvillebot.net  This bot can automatically: – Plant crops – Harvest crops from land and from trees – Get products from livestock Also, this bot allows you to halve the time necessary for crops to ripen!!! Unlike the rest of bots, this one operates not by clicks, but by sending requests to the game server. It is a more reliable method. Do the following to start the bot: 1. If your default browser is different from Internet Explorer, open Internet Explorer and log in at http://facebook.com selecting the “Remember Me” checkbox. 2. Close Internet Explorer. 3. Run the “farmvillebot” program. 4. Wait till the farm is loaded. 5. Open the “Settings” tab. Specify the necessary settings. That’s all. The bot is ready to work instead of you. You can minimize the program and get down to your business...

galing!!!

Farmville Cheats Tips and Tricks Level Up Fast

Here is a great cheat for Farmville, where you can get a ton of experience points to help you level up fast. All you have to do is click on a friend and chose the “visit/help a friend’s farm” wait for the farm to load, then when it says accept to help don’t click it, instead click the same friends icon again and click “visit/help a friends farm” again.  Keep doing this as many times as you like, I usually do this about 20 times.  Then there will be 20 accept boxes waiting for you to click on.  Each time you click one you will gain 5 experience points, plus you will get 20 coins every time also.

Tuesday, October 13, 2009

Facebook Now Running Over 30,000 Servers

Facebook Now Running Over 30,000 Servers

Shared via AddThis

Sunday, October 11, 2009

Numbers to Roman Numerals Converter - JAVA Programming Sample Codes

Howdy!,

Just wanna share my codes generated for Java Applet (JAVA Programming language) which converts Numbers into Roman Numerals...

import java.applet.*;
import java.awt.*;
import java.awt.event.*;

public class NumberstoRoman extends Applet implements ActionListener
{
    Label line1 = new Label ("_________________________________________________");
    Label title = new Label ("        ROMAN NUMERAL IDENTIFIER                ");
    Label line2 = new Label ("_________________________________________________");
    Label enter1 = new Label("Enter Number [1-3000]:  ");
    Button b1 = new Button("      Compute    ");
    Button b2 = new Button("  Clear ");
    Font big = new Font ("Verdana", Font.BOLD,22);
    Font rodsoft = new Font ("Arial", Font.ITALIC,10);
    Label spcr1 = new Label ("                                                                                                                  ");
    Label result = new Label ("The Roman Numerals are :                   ");
    Label rod1 = new Label ("Developed by:");
    Label rod2 = new Label ("rodsoft:---> http://successum.blogspot.com");
    TextField number = new TextField(8);
   
    public void init()
    {
        title.setFont(big);
        rod2.setFont(rodsoft);
        add(line1);
        add(title);
        add(line2);
        add(enter1);
        add(number);
        add(b1);
        add(b2);
        add(result);
        add(spcr1);
        add(rod1);
        add(rod2);
        number.requestFocus();           
        number.addActionListener(this);           
        b1.addActionListener(this);
        b2.addActionListener(this);

    }
    public void start()
    {
        number.setText("");
        result.setText("The Roman Numerals are:                      ");
        invalidate();
        validate();

    }


    public void actionPerformed(ActionEvent e)
    {
    String romn = "";
        int x = Integer.parseInt(number.getText());       

        {
        if (x>3000)
         {
        result.setText("The Roman Numerals are: out of range!:");
        }   
    }   

    {
    if (e.getSource()==b1)
        {
        while (x > 3000)
            {
                romn += "out of range!:";
                x -= 3000;
            }

             while (x >= 1000)
            {
                romn += "M";
                    x -= 1000;
                }
            while (x >= 900)
            {
                romn += "CM";
                x -= 900;
                }
        while (x >= 500)
            {
                romn += "D";
                x -= 500;
            }
            while (x >= 400)
            {
                romn += "CD";
                x -= 400;
                }
           while (x >= 100)
            {
                romn += "C";
                x -= 100;
                }
           while (x >= 90)
            {
                romn += "XC";
                x -= 90;
                }
           while (x >= 50)
            {
                romn += "L";
                x -= 50;
                }
           while (x >= 40)
            {
                romn += "XL";
                x -= 40;
                }
           while (x >= 10)
            {
                romn += "X";
                x -= 10;
                }
           while (x >= 9)
            {
                romn += "IX";
                x -= 9;
                }
           while (x >= 5)
            {
                romn += "V";
                x -= 5;
                }
           while (x >= 4)
            {
                romn += "IV";
                x -= 4;
                }
           while (x >= 1)
            {
                romn += "I";
                x -= 1;
                }
            result.setText("The Roman Numerals are : "+romn);
           }
   



    else if (e.getSource()==b2)
            {
            number.setText("");
            result.setText("The Roman Numerals are :                   ");
            }
        }
    }
}









//This is only an applet...so you must create html to call on the applet to execute.