February 4, 2010
Am I real?
Do the words I speak before you
Make you feel
That the love I have for you
Will see no ending?
Well, if you look into my eyes
Then you should know
That you have nothing here to doubt
Nothing to fear
And you can lay your questions down
‘Cause if you’ll hold me
We can fade into the night
And you’ll know
The world could die
And everything may lie
Still you shouldn’t cry
‘Cause time may pass
But longer than it’ll last
I’ll be by your side
Take my hand
And gently close your eyes
So you could understand
That there’s no greater love tonight
Than what I’ve for you
Well, if you feel the same way for me
Then let go
We can journey to a garden no one knows
Llife is short, my darling
Tell me that you love me
So we can fade in to the night
And you’ll know
The world could die
And everything may lie
But you won’t cry
‘Cause time may pass
And everything won’t last
But I’ll be by your side
Forever by your side
So you won’t cry
February 2, 2010
"Trust the Lord with all your heart and lean not on your own understanding. In all you ways, acknowledge him and he will make your path straight."
February 1, 2010
We, the sovereign Filipino people, imploring the aid of Almighty God, in order to build a just and humane society and establish a Government that shall embody our ideals and aspirations, promote the common good, conserve and develop our patrimony, and secure to ourselves and our posterity the blessings of independence and democracy under the rule of law and a regime of truth, justice, freedom, love, equality, and peace, do ordain and promulgate this Constitution.
Meaning of Preamble
The term preamble is derived from the Latin preambulare which "means to walk before". It is a introduction to the main subject. It is the prologue of the Constitution.
Preamble not essential in the constitution.
Technically speaking, the Preamble forms no integral part of our Constitution. Of itself alone, it cannot be invoked as a source of private right enforceable by the courts or of any governmental power not expressly granted or at least, clearly implied therefrom.
Object and Value of Preamble
Sets down origin and purposes of the Constitution - While a preamble is not a necessary part of a constitution, it is advisable to have one. In the case of the Constitution of the Philippines, the Preamble which is couched in general terms, provides the broad outline of, and the spirit behind, the Constitution.
It serves two (2) very important ends:
(a)It tell us who are the authors of the Constitution and for whom it has been promugulated and
(b)It states the general purposes which are intended to be achieved by the constitution and the government established under it, and certain basic principle underlying the fundamental charter.
May serve as an aid in its interpretation - The Preamble has a value for purposes of construction. The statement of general purposes may be resorted to as an aid in determining the meaning of vague or ambiguous provision of the Constitution proper. By way of illustration, the government is without power to impose taxes for private purpose because according to the Preamble it is established for the public purpose the promotion of a common good and not for the private purpose.
January 31, 2010
The President shall have an official residence. The salaries of the President and Vice-President shall be determined by law and shall not be decreased during their tenure. No increase in said compensation shall take effect until after the expiration of the term was approved. They shall not receive during their tenor any other sources.
January 30, 2010
Before they can enter on the execution of their office, the President, the Vice-President, Acting President shall take the following oath or affirmation:
"I do solemnly swear (or affirm) that i will faithfully and conscientiously fulfill my duties as a President (or Vice-President, or Acting Vice President) of the Philippines, preserve and defend is Constitution, execute its laws, do justice to every man, and consecrate myself to the service of the Nation. So help me God". (in case of affirmation, last sentence will be omitted.)
January 29, 2010
Many years passed by I stopped blogging because as a college student many different activities and events I have faced for the past years I think Its almost two years I stop blogging. So now I decided to update again those of my blog sites so that I can earn extra curricular income because I realize that without money is difficult for me as a student.
As I begin this blogging again hope that there’s so may opportunities, task, as like as before since I was blogging.
GOD BLESS TO ALL!
October 1, 2008
Hi guys its me again! hehe.. it been a long time I did not make a post of my blog.. I’ll be talking to you about the best method to scan a photo in a computer I have some idea about this, allow me to shared this one to each one of you and here it goes.
If you have a lot of photos to convert, regardless of method, I really don’t think there are any simple ways of getting around this time-consuming and tedious task, unless of course you are able to hand off the the task to someone else. But don’t be discouraged, because within this discussion thread, ample amounts of our member took the time out to offer this ways of converting their photos to digital which range from reccomending certain scanners, using the digital camera technique, to even a few who mention certain companies who offer services that specifically cater to doing this for you and that’s just the beginning.
For starters, I have selected a few featured answers to get the topic rolling. But don’t stop there, there so many great suggestions and experiences shared by our members, so give it all a read to get your mind flowing. And if have an additional methods to this madness, please post them to the thread. The more we can learn from you, the better of we’ll all be. Thanks everyone and have an awesome day!.
September 12, 2008
FrmMain.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace Login
{
public partial class frmMain : Form
{
string id;
public frmMain()
{
InitializeComponent();
}
public frmMain(string user, string pass, string id)
{
InitializeComponent();
textBox1.Text = user;
textBox2.Text = pass;
this.id = id;
}
private void button1_Click(object sender, EventArgs e)
{
Class1 newConnect = new Class1();
newConnect.query_add("UPDATE loginTbl set Username = ‘"+textBox1.Text+"’, Password = ‘"+textBox2.Text+"’ WHERE UserID =’"+this.id+"’");
MessageBox.Show("You have Successfully Updated Your Username and Password");
}
private void button2_Click(object sender, EventArgs e)
{
Class1 newConnect = new Class1();
newConnect.query_add("DELETE from loginTbl WHERE UserID =’"+this.id+"’");
MessageBox.Show("You have Successfully Deleted Your Username and Password");
}
}
}
Create Class1.cs
using System;
using System.Collections.Generic;
using System.Text;
using System.Data.SqlClient;
namespace Login
{
class Class1
{
private SqlDataReader _select;
public SqlDataReader select
{
get
{
return _select;
}
set
{
_select = value;
}
}
public void query_select(string query)
{
SqlConnection c = new SqlConnection(@"Data Source=.\SQLEXPRESS;AttachDbFilename=C:\Documents and Settings\Admin\Desktop\Login Midterm\Login Midterm\loginDB.mdf;Integrated Security=True;Connect Timeout=30;User Instance=True");
c.Open();
SqlCommand q = new SqlCommand(query, c);
SqlDataReader r = q.ExecuteReader();
this.select = r;
}
public void query_add(string query)
{
SqlConnection c = new SqlConnection(@"Data Source=.\SQLEXPRESS;AttachDbFilename=C:\Documents and Settings\Admin\Desktop\Login Midterm\Login Midterm\loginDB.mdf;Integrated Security=True;Connect Timeout=30;User Instance=True");
c.Open();
SqlCommand q = new SqlCommand();
q.Connection = c;
q.CommandText = query;
q.ExecuteNonQuery();
c.Close();
}
}
}
FrmMain Log.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;
namespace Login
{
public partial class frmLog : Form
{
public frmLog()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
Class1 newConnect = new Class1();
newConnect.query_select("SELECT * FROM loginTbl WHERE Username like ‘"+textBox1.Text+"’ and Password like ‘"+textBox2.Text+"’");
if (newConnect.select.HasRows == true)
{
newConnect.select.Read();
string username = newConnect.select["Username"].ToString();
string password = newConnect.select["Password"].ToString();
string id = newConnect.select["UserID"].ToString();
frmMain a = new frmMain(username,password,id);
a.Show();
}
else
{
MessageBox.Show("Invalid Username and/or Password");
}
}
}
}
September 9, 2008
When I was about nine or ten, my parents bought a small aquarium for me and my siblings. After recieving our gift, my older brother brought me with him to the local pet shop in order to buy a new fishes and accessories for the aquarium. We took a few goldfishes, a janitor fish, and some decorations but I recall buying for myself this white angel fish. I remember how mesmerized I was, as a child, of that beautiful creature. And even though it was not my first pet, I truly cherished it because I chose it my self.
Days passed that turned into weeks that turned into months, but no matter how long I have my pet fish it did not matter. My love for it never faded. Each day I came home from school, I would always rush just so I could get a glimpse of my pet and see how lovely it looked with all the other fishes in the tank. Everyday, my siblings and I would take turns feeding our pets and I would always feel assured that my angel fish was healthy and well-fed.
Then, that day came. My memory will seem a little hazy now but I remember that morning like it was just yesterday. It was still very early and I was about to get ready for school when my littele sister woke me up. She said it was probably the janitor fish. Or the goldfish might have been the culprits. Whatever! But, somehow, one of my beloved pets fins got caught in between some of the toys and pebbles in the aquarium. Who knew such tranquil white pebbles could be so abraisive and cause my pet to bleed to death? The scene was horrific. I could not believe it. Just like that, my angel fish was dead.
That was horrible day. There were too many questions but not a lot of answers. How? Did I not take care of my pet enough? Maybe, I forgot to feed it at the night before. Maybe, we should have never placed that janitor fish in there. Maybe, it fought with other fishes. And maybe, I should have put it away on its own bowl. Why? Was I not a good owner? Did I not love it enough?
Then, it dawned on me. No matter what I did, I never would have been able to bring that angel fish back. Yes, at first, it brought me much joy and exicetement.
September 7, 2008
Hundred of brillant mind attempted to define love but they were never successful, maybe because they use so much of their intellect than their heart.
Mots of us are aware that everthing begins in the mind. Even love grows in the hyphotalamus. However, there are deeper emotions, which only the heart sees and the brain neurons do not consider. Now, we are face with the question: "What is real love?" Come on, face it, in our measurable years of experience in this ambiguous world, we still lack with the pertinent experience to aid us in putting into words. The simple ideas we have mind. But if only we would try to go through some readings plus personal contemplations, we would come up with a unanimous perception of what "Real Love" really is.
Love is more than just a word that is why it is far better than an idea. It is not just a simple feeling or a simple product available in departments stores and supermarkets ready for purchase. Love is something that money can’t buy. Love, even in its abstract form, should be selfless, patient, enduring, tolerant, inspiring and enliving. Love is leaving a legacy. Love is powerful because loves gives life.
As what the famous author of a book states; "Life is all about" Because God is love, the most important lesson he wants to learn is how to love. It is in loving that we are most like him, so love is the foundation of every command he has given us. And what better way to how it is giving up. His only Son to die and redeem mankind from sins. Christ love is the grace. His love can never equated.
It is a sad thing though that only few people had a state of love. Some barely even know it. It was said that those who get love the least, need it most. This is because you’ll never know love unless you feel it, unless you receive it and unless you give it away. Each of God creation is peculiar this allows them to pour our love in diverse ways. Some may be expressive while the other conceal it.
A man courting a girl may give a millions of cash, tons of chocolates and serenade her every minute of the day to show his appreciation and thoughtfulness. This however is not a proof that love is true. A love that has depended entirely ont the number of presents will immediately fade, as its foundation is on wealth and not love. Love is inexpensive because in the first place, it is not for sale.
They say you can only give what you have. Since love is everywhere and since were surrounded with the people who are made out of lov, try to receive some love and try to share some love, a love that is real, constant and true.