UncategorizedAugust 27, 2008 1:50 pm

 

Panantukan ("Dirty Boxing")

is the empty handed boxing component of Filipino Martial Art. Many of the techniques and movements are derived from Eskrima/Kali (Filipino blade and stick fighting). The art primarily consists of upper-body striking techniques such as punches, elbows, head-butts, shoulder strikes, and groin punches, but it also includes low-line kicks and knee strikes to the legs, shins, and groin. Some camps choose to group this kicking aspect into the art of Pananjakman, which relies on kicking and only uses the arms defensively. Common striking targets include the biceps, triceps, the eyes, nose, jaws, temples, the back of the neck, the ribs, and spine, as well as the "soft tissue" areas in the body. Panantukan prefers parries and deflections over blocks, as it is not known whether or not the opponent has a bladed weapon. As such, emphasis is put on minimizing contact from the opponent (in other words, one does not "eat" punches or absorb them the way a Western boxer would.) Panantukan is normally not taught alone; instead it is part of the curriculum of an Eskrima or Kali school. Some Eskrima schools neglect this aspect almost completely, while a few schools solely teach the boxing art, though this is quite rare.

Uncategorized 12:13 pm

This day is a bad for me because of our exam.We ha our exam on our Humanities subject at 10am and the next was our Information Technologies Research subject…And those exams that we had taken was very very hard..whew..Cannot handle this thing anymore and again for tomorow we will have our exam in Descrete Math and on our Operating System..Hmmmp..GoodNight

UncategorizedAugust 12, 2008 10:38 am

Whew..GoodEvening.. Know what my head is aching and I dont know what is the reason for this.. And still Im facing a computer right now because we are still having our Laboratory class in System Programing using C#.. I dont think i can stand after this activity..I want to sleep but before that i want to eat…so wish me luck for this database activity using VISUAL C#..hehehhe

Uncategorized 10:34 am

Uncategorized 10:34 am

UncategorizedAugust 7, 2008 4:34 am

When I am down and, oh my soul, so weary; When troubles come and my heart burdened be; Then, I am still and wait here in the silence, Until you come and sit awhile with me. You raise me up, so I can stand on mountains; You raise me up, to walk on stormy seas; I am strong, when I am on your shoulders; You raise me up… To more than I can be. You raise me up, so I can stand on mountains; You raise me up, to walk on stormy seas; I am strong, when I am on your shoulders; You raise me up… To more than I can be. You raise me up, so I can stand on mountains; You raise me up, to walk on stormy seas; I am strong, when I am on your shoulders; You raise me up… To more than I can be. You raise me up, so I can stand on mountains; You raise me up, to walk on stormy seas; I am strong, when I am on your shoulders; You raise me up… To more than I can be. You raise me up… To more than I can be.

Uncategorized 4:32 am

Hi!! Good morning.. Its Thursday August 07,2008.. Its our internet technology subject today and i love this subject because its all about creating a website using HTML tags and COLDFUSION language..wow i really like it because it is designing and because of this i can make new website’s and maybe, just maybe i can have money because of it.. I want to master this subject because it made me enjoy my college years..hahahaha..just joking..So have a nice day…

UncategorizedAugust 5, 2008 9:59 am

Wow a new assignment again..whew.Tuesday night madness.. 6pm-7:30pm SUBJECT: System Programing… I cannot handle this situation because i dont know how to construct a a form and build a code using C# language…whew..Please Help me..hahahah

Uncategorized 5:22 am

Hi!! GOod Afternoon.. What a nice rainy day it is… I just dont imagine that I was absent on my first and second subject this morning because of the hard rain that I;ve encountered..whew, It is a very bad absent i made because my classmates had a long quiz  and I that was absent had a perfect grade of 0(ZERO)…How nice it is..I think I’m going to make my other coming quizes perfect so I may manage my grades at the finals…WHA T A NICE TUESDAY RAIN…….GRRRRRR…. 

UncategorizedAugust 4, 2008 10:37 am


Program.cs

using System;


using System.Collections.Generic;


using System.Windows.Forms;

namespace Quiz

{

static class Program


{

/// <summary>


/// The main entry point for the application.


/// </summary>

[STAThread]static void Main()

{

Application.EnableVisualStyles();

Application.SetCompatibleTextRenderingDefault(false);Application.Run(new Form1());

}

}

}

————————————————————

Form1.cs

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Text;

using System.Windows.Forms;

namespace Quiz

{

public partial class Form1 : Form

{

public Form1()

{

InitializeComponent();

}

private void Form1_Load(object sender, EventArgs e)

{

foreach (object s in Enum.GetValues(typeof(EmployeeType)))

{

cBoEmployeeType.Items.Add(s);

}

for (int x = 15; x < 70; x++)

{

cBoAge.Items.Add(x);

}

}

private void btnCompute_Click(object sender, EventArgs e)

{

if (cBoEmployeeType.SelectedItem.ToString() == "Supervisor")

{

Supervisor s = new Supervisor(txtName.Text, Convert.ToInt32(cBoAge.SelectedItem));MessageBox.Show("Hello " + s.Name + ". You have a basic salary of\n" + s.ComputeSalary());

}

else if (cBoEmployeeType.SelectedItem.ToString() == "Secretary")

{

Secretary s = new Secretary();

s.Name = txtName.Text;

s.Age = Convert.ToInt32(cBoAge.SelectedItem);

MessageBox.Show("Hello " + s.Name + ". You have a basic salary of\n" + s.ComputeSalary());

}

else

{

Employee em = new Employee(txtName.Text, Convert.ToInt32(cBoAge.SelectedItem));MessageBox.Show("Hello " + em.Name + ". You have a basic salary of\n" + em.ComputeSalary());

}

}

}

}

—————————————————————–

Supervisor.cs

using System;

using System.Collections.Generic;

using System.Text;

namespace Quiz

{

class Supervisor:Employee

{

public Supervisor()

{

}

public Supervisor(string name, int age)

{

}

public override double ComputeSalary()

{

return 15 * 600;

}

}

}

————————————————–

Employee.cs

using System;

using System.Collections.Generic;

using System.Text;

namespace Quiz

{

public enum EmployeeType

{

Supervisor,

Manager,

Secretary

}

class Employee

{

public Employee()

{

}

public Employee(string name, int age)

{

this.name = name;this.age = age;

}

private string name;

public string Name

{

get { return name; }set { name = value; }

}

private int age;

public int Age

{

get { return age; }set { age = value; }

}

public virtual double ComputeSalary()

{

return 15 * 400;

}

 

}

}

————————————————–

Secretary.cs

 

using System;

using System.Collections.Generic;

using System.Text;

namespace Quiz

{

class Secretary:Employee

{

public Secretary()

{

}

public Secretary(string name, int age)

{

}

public override double ComputeSalary()

{

return 15 * 250;

}

}

}

—————————————————————–

Form1.Designer.cs

namespace Quiz

{

partial class Form1

{

/// <summary>

/// Required designer variable.

/// </summary>

private System.ComponentModel.IContainer components = null;

/// <summary>

/// Clean up any resources being used.

/// </summary>

/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>

protected override void Dispose(bool disposing)

{

if (disposing && (components != null))

{

components.Dispose();

}

base.Dispose(disposing);

}

#region Windows Form Designer generated code

/// <summary>

/// Required method for Designer support - do not modify

/// the contents of this method with the code editor.

/// </summary>

private void InitializeComponent()

{

this.btnCompute = new System.Windows.Forms.Button();

this.groupBox1 = new System.Windows.Forms.GroupBox();

this.label3 = new System.Windows.Forms.Label();

this.label2 = new System.Windows.Forms.Label();

this.label1 = new System.Windows.Forms.Label();

this.cBoAge = new System.Windows.Forms.ComboBox();

this.txtName = new System.Windows.Forms.TextBox();

this.cBoEmployeeType = new System.Windows.Forms.ComboBox();

this.groupBox1.SuspendLayout();

this.SuspendLayout();

//

// btnCompute

//

this.btnCompute.Location = new System.Drawing.Point(275, 179);

this.btnCompute.Name = "btnCompute";

this.btnCompute.Size = new System.Drawing.Size(107, 23);

this.btnCompute.TabIndex = 3;

this.btnCompute.Text = "Compute Salary";

this.btnCompute.UseVisualStyleBackColor = true;

this.btnCompute.Click += new System.EventHandler(this.btnCompute_Click);

//

// groupBox1

//

this.groupBox1.Controls.Add(this.label3);

this.groupBox1.Controls.Add(this.label2);

this.groupBox1.Controls.Add(this.label1);

this.groupBox1.Controls.Add(this.cBoAge);

this.groupBox1.Controls.Add(this.txtName);

this.groupBox1.Controls.Add(this.cBoEmployeeType);

this.groupBox1.Location = new System.Drawing.Point(12, 12);

this.groupBox1.Name = "groupBox1";

this.groupBox1.Size = new System.Drawing.Size(378, 152);

this.groupBox1.TabIndex = 8;

this.groupBox1.TabStop = false;

//

// label3

//

this.label3.AutoSize = true;

this.label3.Location = new System.Drawing.Point(260, 44);

this.label3.Name = "label3";

this.label3.Size = new System.Drawing.Size(29, 13);

this.label3.TabIndex = 13;

this.label3.Text = "Age:";

//

// label2

//

this.label2.AutoSize = true;

this.label2.Location = new System.Drawing.Point(18, 96);

this.label2.Name = "label2";

this.label2.Size = new System.Drawing.Size(67, 13);

this.label2.TabIndex = 12;

this.label2.Text = "Job Position:";

//

// label1

//

this.label1.AutoSize = true;

this.label1.Location = new System.Drawing.Point(47, 44);

this.label1.Name = "label1";

this.label1.Size = new System.Drawing.Size(38, 13);

this.label1.TabIndex = 11;

this.label1.Text = "Name:";

//

// cBoAge

//

this.cBoAge.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;

this.cBoAge.FormattingEnabled = true;

this.cBoAge.Location = new System.Drawing.Point(295, 41);

this.cBoAge.Name = "cBoAge";

this.cBoAge.Size = new System.Drawing.Size(66, 21);

this.cBoAge.TabIndex = 10;

//

// txtName

//

this.txtName.Location = new System.Drawing.Point(88, 41);

this.txtName.Name = "txtName";

this.txtName.Size = new System.Drawing.Size(149, 20);

this.txtName.TabIndex = 9;

//

// cBoEmployeeType

//

this.cBoEmployeeType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;

this.cBoEmployeeType.FormattingEnabled = true;

this.cBoEmployeeType.Location = new System.Drawing.Point(88, 91);

this.cBoEmployeeType.Name = "cBoEmployeeType";

this.cBoEmployeeType.Size = new System.Drawing.Size(149, 21);

this.cBoEmployeeType.TabIndex = 8;

//

// Form1

//

this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);

this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;

this.ClientSize = new System.Drawing.Size(417, 217);

this.Controls.Add(this.groupBox1);

this.Controls.Add(this.btnCompute);

this.Name = "Form1";

this.Text = "Salary";

this.Load += new System.EventHandler(this.Form1_Load);

this.groupBox1.ResumeLayout(false);

this.groupBox1.PerformLayout();

this.ResumeLayout(false);

}

#endregion

private System.Windows.Forms.Button btnCompute;

private System.Windows.Forms.GroupBox groupBox1;

private System.Windows.Forms.Label label3;

private System.Windows.Forms.Label label2;

private System.Windows.Forms.Label label1;

private System.Windows.Forms.ComboBox cBoAge;

private System.Windows.Forms.TextBox txtName;private System.Windows.Forms.ComboBox cBoEmployeeType;

}

}

UncategorizedApril 19, 2008 4:55 am

FHM top 10 Sexiest Women in the world 2006

1. Keira Knightley

2. Keeley Hazell



3. Scarlett Johansson

 

4. Angelina Jolie

 

5. Kelly Brook


 

6. Cheryl Tweedy

 


7. Beyonce Knowles

 


8. Evangeline Lilly

 

9. Jessica Alba


 


10. Jessica Simpson

 



Uncategorized 4:43 am

Camilla Belle and Maria Sharapova struck an unlikely friendship as they went about shopping in Miami. They both wore similar summery clothes and in light colors too. I guess good friends dress alike. I watched Camilla in 10,000 BC. She was beautiful and acted well as Evoleta. She cut a lasting impression as the pretty damsel in distress. When she was initially struck by an arrow, everyone felt sad and thought that was the end. However, the director gave us a different ending instead.

EntertainmentApril 15, 2008 7:52 am


 

Ashlee Nicolle Simpson (born October 3, 1984) is an American pop rock singer, songwriter, and actress. Simpson, who is the younger sister of pop singer Jessica Simpson, rose to prominence in mid-2004 through the success of her number-one debut album Autobiography and the accompanying reality series The Ashlee Simpson Show. Simpson received widespread criticism when she used a pre-recorded vocal track on Saturday Night Live in October 2004. Following a North American concert tour and a film appearance, Simpson released a second number-one album, I Am Me, in late 2005. Her third album, Bittersweet World, is scheduled for release on April 22, 2008.

UncategorizedApril 13, 2008 6:34 am

How nice… Im back with my blog again.. i really missed this so much.. I missed posting a blog, post some comments with other bloggers and many other stuff that my blog game me happiness.. It was a very long time when i last logged in with my blog it is beacause i been in a place with no electricity and beacause the place has no electricity then definitely thier has no computer and no internet connection.. How i miss everything..hahaiz.. i have so much to catch up with my blog..grrrrr.

UncategorizedMarch 14, 2008 3:37 am
If you have decided to start working towards a larger penis without pursuing surgical means, keep reading and don’t be afraid to address any future inquiries. Originally conceived by European physicians, a more affordable, comfortable and usable penis enlargement device has been redesigned here in the U.S.A. and is now available to YOU!The new and improved Euro Extender comfort-engineered penis enlargement device is taking the male health world by storm. Never before has there been an extender so versatile - in the medical history of penis enlargement.Try this and you will never regret of what you need and what you want… Just browse the internet by this site http://www.euroextender.com/ and see for your self.. click on this links to know more about the website penis enlargement , penis enlargement information and penis enlarger ..
UncategorizedMarch 10, 2008 7:52 am

People all over the world look to New York for fashion styles and trends. If you are interested in studying in one of the fashion capitols of the world, then you should consider attending New York fashion schools. Just click this http://fashion-school-finder.com/ and it will link you to the hotspot site of New York fashion styles. If you are looking to get some education in the world of fashion, you should check out fashion school finder dot com. They have a wonderful selection of fashion schools listed on their website.The education and training you receive from schools can prove vital for when you are going to look for jobs. Fashion school finder has a great list of all the fashion school in New York City. They can assist you in finding the perfect match for you. Each school has it’s different programs and different instructors. Not all the schools are created equal so it’s important to look through them and research them thoroughly. Fashion school finder dot com can help you during this important selection process. Don’t wait to start your fashion education. Each day you pass up on learning something new is another day you are your current job. Just check out the website if you are still unsure. You can visit thier site at http://fashion-school-finder.com/ and they have all the list of fashion schools new york , new york fashion schools, fashion school in new york and also just click on to those lots of other links for you to get more information..

UncategorizedMarch 5, 2008 5:45 am

Penny Hardaway
Career stats: 15.5 ppg, 4.5 rpg, 5.1 apg, 1.6 spg, 0.4 bpg, .458 FG%, .315 3P%, .773 FT%
Jordan stats: 30.1 ppg, 6.2 rpg, 5.3 apg, 2.4 spg, 0.8 bpg, .497 FG%, .327 3P%, .835 FT%

Hardaway was chosen third overall in the 1993 draft by the Golden State Warriors, but was immediately traded to the Orlando Magic for Chris Webber. He was fortunate enough to play with Shaquille O’Neal for three years and the duo led the Magic to a Finals appearance in 1995, but they couldn’t contend with Hakeem Olajuwon, who was playing at the very top of his game, and the Houston Rockets. Orlando turned out to be too small for both Penny and Shaq so the big man bolted for LA, and the season after Shaq left was the last time Penny averaged better than 20 ppg. Since then, he’s been an injury-riddled complimentary player, playing for Phoenix and now New York. Once he reached the midpoint of his career, Hardaway had lost most of the athleticism that initially drew the MJ comparisons, though he was never really on track to match any of Jordan’s accomplishments anyway. Aside from that, Hardaway should be docked another point just for having a first name like Anfernee.

Uncategorized 5:44 am

Penny Hardaway
Career stats: 15.5 ppg, 4.5 rpg, 5.1 apg, 1.6 spg, 0.4 bpg, .458 FG%, .315 3P%, .773 FT%
Jordan stats: 30.1 ppg, 6.2 rpg, 5.3 apg, 2.4 spg, 0.8 bpg, .497 FG%, .327 3P%, .835 FT%

Hardaway was chosen third overall in the 1993 draft by the Golden State Warriors, but was immediately traded to the Orlando Magic for Chris Webber. He was fortunate enough to play with Shaquille O’Neal for three years and the duo led the Magic to a Finals appearance in 1995, but they couldn’t contend with Hakeem Olajuwon, who was playing at the very top of his game, and the Houston Rockets. Orlando turned out to be too small for both Penny and Shaq so the big man bolted for LA, and the season after Shaq left was the last time Penny averaged better than 20 ppg. Since then, he’s been an injury-riddled complimentary player, playing for Phoenix and now New York. Once he reached the midpoint of his career, Hardaway had lost most of the athleticism that initially drew the MJ comparisons, though he was never really on track to match any of Jordan’s accomplishments anyway. Aside from that, Hardaway should be docked another point just for having a first name like Anfernee.

Uncategorized 5:12 am

When I see your smile
Tears run down my face I can’t replace
And now that I’m strong I have figured out
How this world turns cold and it breaks through my soul
And I know I’ll find deep inside me I can be the one

I will never let you fall
I’ll stand up with you forever
I’ll be there for you through it all
Even if saving you sends me to heaven

It’s okay. It’s okay. It’s okay.
Seasons are changing and waves are crashing
And stars are falling all for us
Days grow longer and nights grow shorter
I can show you I’ll be the one

I will never let you fall (let you fall)
I’ll stand up with you forever
[Your Guardian Angel lyrics on http://www.metrolyrics.com]

I’ll be there for you through it all (through it all)
Even if saving you sends me to heaven

Cuz you’re my, you’re my, my, my true love, my whole heart
Please don’t throw that away
Cuz I’m here for you
Please don’t walk away and
Please tell me you’ll stay

Use me as you will
Pull my strings just for a thrill
And I know I’ll be okay
Though my skies are turning gray

I will never let you fall
I’ll stand up with you forever
I’ll be there for you through it all
Even if saving you sends me to heaven

Uncategorized 5:08 am

<embed src="http://www.metrolyrics.com/scroller/scroller2.swf?lyricid=1752016363&border=2&bordert=80&bgfont=0xC0C0C0&bg=http://www.metrolyrics.com/scroller/bgpic/bluedisco.jpg&filter=0x000000&filtert=25&txt=0xFFFFFF&fontname=arial&fontsize=11&speed=2" quality="high" width="180" height="210" name="scroll" align="middle" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /><br /><a href="http://www.metrolyrics.com/red-jumpsuit-apparatus-lyrics.html" title="Red Jumpsuit Apparatus Lyrics">Red Jumpsuit Apparatus Lyrics</a></embed>