Buat uTs Web Based ni..
Pert 1-6 Materi:
- Basic HTML
- Intermediate HTML
- JavaScript (pengenalan, sintax2 dasar)
- Pengenalan web
PG 20 soal 40%
Essay 1 soal (5 item) 10%
Kasus 2 soal 50%
Kamis, 23 April 2009
Sabtu, 18 April 2009
"Stuck With Each Other"
(feat. Akon)
[Shontelle]
You can, think you can get free
You think you won't need me
That you're gonna get you somethin' better,
But you know that we're in this forever,
And you can, think you can walk out
Even with your doubts,
But you know that we're in this together
You can try to push me from you
Nothing you do will keep us a part
[Chorus: Shontelle]
Cause it's too late, there's no escape
Might as well face it, baby we're stuck with each other
Stuck with each other
Ain't nothin you can do about it
It's been too long, it's been too strong
Cause we belong here
Baby, we're stuck with each other
Stuck with each other
Stuck in love with each other
(stuck in love with each other)
[Akon]
Yeah
Now I can say that I would not care
If you were not there,
Tell myself that I'll be fine without ya
but I would die if I was not around ya,
and I can try to convince you
I don't need to be with you,
But my only thoughts are thoughts about ya,
What can I do, love is like glue.
There's no way to
Tear us a part
Cause it's too late (too late, too late)
There's no escape, might as well face it,
Baby we're stuck with each other
Stuck with each other (with each other)
ain't nothin i can do about it
It's been too long, it's been too strong
yes, we belong here,
Baby we're stuck with each other
Stuck with each other (stuck with each other)
stuck in love with each other
(stuck in love with each other)
[Bridge: Shontelle]
There's nothing i'd rather do
Than to sit with you forever
Can't think of nothin better
Than to be stuck with you
Cause it's too late, there's no escape
Might as well face it,
baby we're stuck with each other
Stuck with each other
Ain't nothin we can do about it
Oh yeah
Cause it's too late, there's no escape
Might as well face it,
baby we're stuck with each other
Stuck with each other
Ain't nothin I can do about it
It's been too long, it's been too strong
Yes, we belong here
baby, we're stuck with each other
Stuck with each other
Stuck in love with each other
(stuck in love with each other)
Cause it's too late, there's no escape
Might as well face it,
Baby we're stuck with each other
Stuck with each other
Ain't nothin we can do about it
It's been too long, it's been too strong
Yes we belong here,
baby we're stuck with each other
Stuck with each other
Stuck in love with each other
(stuck in love with each other)
Ain't nothin gonna stop me and you ey
Cause you know we just stuck like glue ey
Akon
Ain't nothin we can do
We stuck in love with each other
Lagi suka banget ma lagu ini ni.. irama nya enak dhe..
soundtrack na film confession of a shopaholic..
hehehee
(feat. Akon)
[Shontelle]
You can, think you can get free
You think you won't need me
That you're gonna get you somethin' better,
But you know that we're in this forever,
And you can, think you can walk out
Even with your doubts,
But you know that we're in this together
You can try to push me from you
Nothing you do will keep us a part
[Chorus: Shontelle]
Cause it's too late, there's no escape
Might as well face it, baby we're stuck with each other
Stuck with each other
Ain't nothin you can do about it
It's been too long, it's been too strong
Cause we belong here
Baby, we're stuck with each other
Stuck with each other
Stuck in love with each other
(stuck in love with each other)
[Akon]
Yeah
Now I can say that I would not care
If you were not there,
Tell myself that I'll be fine without ya
but I would die if I was not around ya,
and I can try to convince you
I don't need to be with you,
But my only thoughts are thoughts about ya,
What can I do, love is like glue.
There's no way to
Tear us a part
Cause it's too late (too late, too late)
There's no escape, might as well face it,
Baby we're stuck with each other
Stuck with each other (with each other)
ain't nothin i can do about it
It's been too long, it's been too strong
yes, we belong here,
Baby we're stuck with each other
Stuck with each other (stuck with each other)
stuck in love with each other
(stuck in love with each other)
[Bridge: Shontelle]
There's nothing i'd rather do
Than to sit with you forever
Can't think of nothin better
Than to be stuck with you
Cause it's too late, there's no escape
Might as well face it,
baby we're stuck with each other
Stuck with each other
Ain't nothin we can do about it
Oh yeah
Cause it's too late, there's no escape
Might as well face it,
baby we're stuck with each other
Stuck with each other
Ain't nothin I can do about it
It's been too long, it's been too strong
Yes, we belong here
baby, we're stuck with each other
Stuck with each other
Stuck in love with each other
(stuck in love with each other)
Cause it's too late, there's no escape
Might as well face it,
Baby we're stuck with each other
Stuck with each other
Ain't nothin we can do about it
It's been too long, it's been too strong
Yes we belong here,
baby we're stuck with each other
Stuck with each other
Stuck in love with each other
(stuck in love with each other)
Ain't nothin gonna stop me and you ey
Cause you know we just stuck like glue ey
Akon
Ain't nothin we can do
We stuck in love with each other
Lagi suka banget ma lagu ini ni.. irama nya enak dhe..
soundtrack na film confession of a shopaholic..
hehehee
Minggu, 12 April 2009
perciapan kuiz psbd lab
kawan - kawan 04PHM Binus.. besok kan ada kuiz online lab psbd tu.. yiu kita belajar bareng.. ni ak kaci mini note buat diapal.. hehe..
Create Database
CREATE DATABASE database_name
Drop Database
DROP DATABASE database_name
Create Table
CREATE TABLE table_name
( field1_name datatype ( length ),
field2_name datatype ( length ),
field3_name datatype ( length ),
....
PRIMARY KEY ( field_name ),
FOREIGN KEY ( field_name ) REFERENCES table_name,
constraint [constraint_name] check (criteria)
)
Drop Table
DROP TABLE table_name
Create Index
CREATE INDEX "INDEX_NAME" ON "TABLE_NAME" (COLUMN_NAME)
Drop Index
DROP INDEX table_name.index_name
Create view
Create view view_name
[ ( column , .....) ]
As subquery
[ with check option]
Drop View
Drop view [nama view]
GRANT
GRANT ON TABLE “table_name”
to “user_public”
REVOKE
REVOKE ON TABLE “table_name”
from “user_public”
Insert Into
INSERT INTO table_name ( field1_name , field2_name , ...)VALUES ( value1 , value2 , ...)
Update
UPDATE table_nameSET field1_name = [new value]WHERE {condition}
Alter Table
ALTER TABLE table_name ADD column_name datatype
ALTER TABLE table_name DROP COLUMN column_name
Create Database
CREATE DATABASE database_name
Drop Database
DROP DATABASE database_name
Create Table
CREATE TABLE table_name
( field1_name datatype ( length ),
field2_name datatype ( length ),
field3_name datatype ( length ),
....
PRIMARY KEY ( field_name ),
FOREIGN KEY ( field_name ) REFERENCES table_name,
constraint [constraint_name] check (criteria)
)
Drop Table
DROP TABLE table_name
Create Index
CREATE INDEX "INDEX_NAME" ON "TABLE_NAME" (COLUMN_NAME)
Drop Index
DROP INDEX table_name.index_name
Create view
Create view view_name
[ ( column , .....) ]
As subquery
[ with check option]
Drop View
Drop view [nama view]
GRANT
GRANT ON TABLE “table_name”
to “user_public”
REVOKE
REVOKE ON TABLE “table_name”
from “user_public”
Insert Into
INSERT INTO table_name ( field1_name , field2_name , ...)VALUES ( value1 , value2 , ...)
Update
UPDATE table_nameSET field1_name = [new value]WHERE {condition}
Alter Table
ALTER TABLE table_name ADD column_name datatype
ALTER TABLE table_name DROP COLUMN column_name
Langganan:
Postingan (Atom)