Tuesday, October 16, 2012

Weight Loss Update: 1

So what had happened was....lol

You know when a story starts off like that, it is time for the excuses to why something did turn out like it should have. I was doing VERY well with my weight loss journey, LOST about five pounds... and then HOMECOMING HIT. I pigged out, drank all that I could and packed on the calories and the pounds. So now a few days after homecoming i have lost 2 pounds. bringing my weight down to 146. I was looking at some videos and pictures of myself from my junior year of college, I was so small, and it motivated me to get back to that size before my wedding. I will begin using MyFitness Pal again this week, along with going to the gym with Josh (when this school work isn't in the way). Does anyone know of any good diets? I can not always be trusted to eat right, and the right portions on my own. I need a diet that lays out the foods for you and requires minimal ingredients.

Thursday, September 20, 2012

Starting my weight Loss Journey



So I want to loose about 30 pounds in the next two years. The problem with that is that I have been saying that for the past two years. -_-

The boyfriend and I... [yes Boyfriend; Im still waiting on my engagement being official in the traditional sense. I got to help pick out my custom setting... just waiting for good ol Dad to give his blessing.] Have decided that we like A-line and Mermaid/Trumpet style dresses. I want something A-line that will show off a sexy body/waist proportion and he has always invisioned his wife in a mermaid since he's seen them [ he thinks they are sexy].

I am not overweight, but my mom and I have agreed if I want to be even somewhat comfortable in a mermaid dress, i need to loose weight. At first I wanted to loose about 1- 20 pounds, but my mother's doctor said she needs to loose 30 as her weight and thyroid is affecting her health. I decided I would loose the 30 pounds with her.

So far I am using myfitnesspal (1200 calories a day) and exercising for times a week. My current weight is 147.949(or whatever the scale says) so I will just say 148. If i loose 30 pounds I will be 118. I loved my weight at 115, so I think at 118 I will be happy .

Are any of you trying to loose weight? If so we can encourage each other and keep each other updated.
By the way check out this post by nnyish on WeddingBee, it really motivated me.

Wednesday, September 19, 2012

Blog Reconstruction

Now that I am done using my blog for academic purposes, I can reclaim it to use for its original purpose! To  release all of my excitement and create lasting memories for me to look back on. For the next two years this blog will be decided to my life as a student, professional and [most excitedly] a future bride.

So once again let me give you the welcome from when I first created this blogspot..


Welcome to my blog! From here we will be flying first class, and at the highest altitude to ensure a smooth ride. Buckle up and enjoy the fun, especially the view during landing, from your window seat of course! From lift off to landing... I am happy to share this wild ride with you.

Wednesday, August 10, 2011

Assignment 10 Exercises for chapters 14 & 15

/**********************************************
*T'Nora Green
*Assignment 10, Chapter 14,  Exercise 4
***********************************************/


Part A:

import java.util.Scanner;

public class Division2
{
  public static void main(String[] args)
  {
    Scanner stdIn = new Scanner(System.in);
    double n;
    int d;

    System.out.print("Enter numerator: ");
    n = stdIn.nextDouble();
    do
    {
      System.out.print("Enter divisor: ");
      d = stdIn.nextInt();
    } while (d == 0);
    System.out.println(n / d);
  } // end main
} // end Division2 class

Part B:

import java.util.Scanner;

public class Division2
{
  public static void main(String[] args)
  {
    Scanner stdIn;
    double n;
    int d;
    boolean OK = false;

 while(!OK)
    {
      stdIn = new Scanner(System.in);
      try
      {
        System.out.print("Enter numerator: ");
        n = stdIn.nextDouble();
        
do
        {
          System.out.print("Enter divisor: ");
          d = stdIn.nextInt();
 } while (d == 0);
        System.out.println(n / d);
        OK = true;
      } // end try
      catch (Exception e)
      {
        System.out.println("Error!");
      }
    }
  } // end main
} // end Division2 class



/**********************************************
*T'Nora Green
*Assignment 10, Chapter 15,  Exercise 15
***********************************************/
Added Fragment:



System.out.print("Enter full pathname of file: ");
fileIn = new Scanner(new FileReader(stdIn.nextLine()));

while (fileIn.hasNextLine())
{
String file = fileIn.next();
numWords++;
}   //end of while loop

System.out.println("Number of words = " + numWords); 

fileIn.close();}  //end of try