Halaman

Jumat, 21 Juni 2013

pemotretan di area kampus universitas muhammadiayah sukabumi
model : Feby fatmawati Ohorella
fotografer : Safina al kafnur dan Ulpah novianti

Jumat, 07 Juni 2013

Lirik Lagu Akon - Don’t Matter

Konvict Konvict
Oh
Ohoohwooe
Oooh
Ooohhwooe

Nobody wanna see us together
But it don’t matter no
Cause I got you babe
Nobody wanna see us together
But it don’t matter no
Cause I got you babe
Cause we gon’ fight
Oh yes we gon’ fight
Believe we gon’ fight
Fight for our right to love yeah
Nobody wanna see us together
But it don’t matter no
Cause I got you

Nobody wanna see us together
Nobody thought we’d last forever
I feel I’m hopin’ and prayin’
Things between us gon’ get better
Men steady comin’ after you
Women steady comin’ after me
Seem like everybody wanna go for self
And don’t wanna respect boundaries
Tellin’ you all those lies
Just to get on your side
But I must admit there was a couple secrets
I held inside
But just know that I tried
To always apologize
And I’m a have you first always in my heart
To keep you satisfied

Nobody wanna see us together
But it don’t matter no
Cause I got you babe
Nobody wanna see us together
But it don’t matter no
Cause I got you babe
Cause we gon’ fight
Oh yes we gon’ fight
Believe we gon’ fight
Fight for our right to love yeah
Nobody wanna see us together
But it don’t matter no
Cause I got you

Got every right to wanna leave
Got every right to wanna go
Got every right to hit the road
And never talk to me no more
You don’t even have to call
Even check for me at all
Because the way I been actin’ lately
Has been off the wall
Especially toward you
Puttin’ girls before you
And they watchin’ everything I been doin’
Just to hurt you
Most of it just ain’t true (Ain`t true)
And they won’t show you
How much of a queen you are to me
And why I love you baby

Nobody wanna see us together
But it don’t matter no
Cause I got you babe
Nobody wanna see us together
But it don’t matter no
Cause I got you babe
Cause we gon’ fight
Oh yes we gon’ fight
Believe we gon’ fight
Fight for our right to love yeah
Nobody wanna see us together
But it don’t matter no
Cause I got you

Oh oh oh oh oh
Cause I got you
Cause I got you
Ooooh
Cause I got you babe
Cause I got you

Nobody wanna see us together
But it don’t matter no
Cause I got you babe
Nobody wanna see us together
But it don’t matter no
Cause I got you babe
Cause we gon’ fight
Oh yes we gon’ fight
Believe we gon’ fight
We gon’ fight
Fight for our right to love yeah
Nobody wanna see us together
But it don’t matter no
Cause I got you babe
Cause I got you

Lirik Lagu Paramore – That’s What You Get

No sir, well I don’t wanna be the blame, not anymore.
It’s your turn, so take a seat we’re settling the final score.
And why do we like to hurt so much?
I can’t decide
You have made it harder just to go on
And why, all the possibilities where I was wrong
That’s what you get when you let your heart win, whoa.
That’s what you get when you let your heart win, whoa.
I drowned out all my sense with the sound of its beating.
And that’s what you get when you let your heart win, whoa.
I wonder, how am I supposed to feel when you’re not here.
’Cause I burned every bridge I ever built when you were here.
I still try holding onto silly things, I never learn.
Oh why, all the possibilities I’m sure you’ve heard.
That’s what you get when you let your heart win, whoa.
That’s what you get when you let your heart win, whoa.
I drowned out all my sense with the sound of its beating (beating)
And that’s what you get when you let your heart win, whoa.
Pain make your way to me, to me.
And I’ll always be just so inviting.
If I ever start to think straight,
This heart will start a riot in me,
Let’s start, start, hey!
Why do we like to hurt so much?
Oh why do we like to hurt so much?
That’s what you get when you let your heart win!
Whoa.
That’s what you get when you let your heart win, whoa.
That’s what you get when you let your heart win, whoa.
Now I can’t trust myself with anything but this,
And that’s what you get when you let your heart win, whoa.

Selasa, 04 Juni 2013

contoh coding KASIR :

Program Kasir;
uses wincrt;
var
nama_barang : array[1..20] of string;harga : array [1..20] of real;
     banyak : array[1..20] of byte;kata,grs :string;x,y,i,j :byte;
     Jum_Harga,Total_Harga,disc,Total_Bayar,uang :real;
begin
     clrscr;
grs:='===============================================================';
kata:='Program Kasir';x:=round((78-length(kata))/2);
gotoxy(x,2);
writeln(kata);
x:=round((78-lenght(grs))/2);
gotoxy(x,3);write(grs);
{-----------------------------}
gotoxy(x,4);write('Data Belanja');
gotoxy(x,5);write(grs);
gotoxy(x,6);writeln('| No | Nama Barang | Harga Satuan |Banyak | Jumlah Harga |');
gotoxy (x,7);write(grs);
{-----------------------------------------------}
i:=0;Total_Harga:=0;repeat
       i:=i+1;
       gotoxy(x,7+i);write('| ',i);
       gotoxy(x+5,7+i);write('|');
       gotoxy(x+7,7+i);readln(Nama_barang[i]);

       if Nama_Barang[i]  <>'' then begin
      gotoxy(x+25,7+i);write('|');
      gotoxy(x+28,7+i);readln(Harga[i]);
      gotoxy(x+28,7+i);writeln(Harga[i]:10:2);
      gotoxy(x+41,7+i)write('|');
      gotoxy(x+44,7+i);readln(Banyak[i]);
      gotoxy(x+50,7+i);write('|');
      Jum_Harga:=Harga[i]*Banyak[i];
      gotoxy(x+53,7+i);writeln(Jum_Harga;10;02);
      gotoxy(x+65,7+i)writeln('|');
      Total_Harga:=Total_Harga+Jum_Harga ; end;

    until nama_barang[i]='';
    {----------------------------------------------------------------}
    disc:=0;
    if (Total_Harga > 10000) and (Total_Harga <100000) then
    disc:=0.05 * Total_Harga
    else if (Total_Harga >= 100000 ) then
    disc:=0.1 *Total_Harga;{--------------------------------------------------}
         kata:='Faktur Penjualan';
         y:=round((78-length(kata))/2);
         gotoxy(y,2);writeln(kata);
             j:=i-1;gotoxy(x,8+j);write(grs);
             gotoxy(x,8+j+1);write('Total Belanja :');

             gotoxy(x+53,8+j+1);write(Total_Harga;10:2);
             gotoxy(x,8+j+2);
             write('Discount :')gotoxy(x+53,8+j+2);write(disc;10;2);
             gotoxy(x,8+j+3);write(grs);
             gotoxy(x,8+j+4);write('Total Bayar setelah discount :');
             Total_Bayar:=Total_Harga-disc;
             gotoxy(x+53,8+j+4);write(Total_Bayar:10:2);
             gotoxy(x,8+j+5);write('Uang diBayar');
             gotoxy(x+53,8+j+5);readln(Uang);
             gotoxy(x+53,8+j+5)writeln(Uang:10:2);gotoxy(x,8+j+6);
             Writw(grs);gotoxy(x,8+j+7);
             write('UangKembali');gotoxy(x+53,8+j+7);
             write(Uang-Total_Bayar:10:2);
      end.