Langsung ke konten utama

Chord Bob Marley - One Love

Bob Marley


A         E
One love,   one heart
D           A          E        A
Let's get together and feel all right
                  A
Hear the children crying (One love)
                  E
Hear the children crying (One heart)
             
              D                        A               E        A
Sayin', "Give thanks and praise to the Lord and I will feel all right."
         D           A          E        A
Sayin', "Let's get together and feel all right." (Whoa, whoa, whoa, whoa)


A                             D         A
Let them all pass all their   dirty remarks (One love)
D                         D              A
There is one question I'd really love to ask (One heart)
A                        D          A
Is there a place for the   hopeless sinner
A                   D            E        A
Who has hurt all mankind just to save his own?  (Believe me)


A        E
One love, one heart
D           A          E        A
Let's get together and feel all right
                 A
As it was in the beginning (One love)
                      E
So shall it be in the end (One heart)
              D                        A               E      
 A
Alright, Give thanks and praise to the Lord and I will feel all right.
D           A          E        A
Let's get together and feel all right. (One more thing)


A                                D        A
Let's get together to fight this Holy Armageddon (One love)
A                                D         A
So when the Man comes there will be no, no doom (One song)
A                        D                    A
Have pity on those whose chances grow thinner
A                     D              E            A
There ain't no hiding place from the Father of Creation


        A        E
Sayin', One love, one heart
D           A          E        A
Let's get together and feel all right."
                A
I'm pleading to mankind (One love)
          E
Oh, Lord (One heart) Whoa.

     D                        A               E        A
Give thanks and praise to the Lord and I will feel all right.
D           A          E        A
Let's get together and feel all right.
(Repeat and fade out)

Komentar

Postingan populer dari blog ini

Bumi Bumi Mengelilingi Matahari 3D Cara meruning dengan menggunakan Keyboard: CTRL + y Yaitu untuk Revolusi Bumi mengelilingi Matahari y yaitu Kebalikannya CTRL + d yaitu untuk Rotasi poros Bumi d yaitu kebalikannya #include #include #include static int year = 0, day = 0; void init(void) { glClearColor (0.0, 0.0, 0.0, 0.0); glShadeModel (GL_FLAT); } void display(void) { glClear (GL_COLOR_BUFFER_BIT); glColor3f (1.0, 0.0, 0.0); /*Warna Merah*/ glPushMatrix(); glutWireSphere(1.0, 20, 16); /* Draw Matahari */ glRotatef ((GLfloat) year, 0.0, 1.0, 0.0); glTranslatef (2.0, 0.0, 0.0); glRotatef ((GLfloat) day, 0.0, 1.0, 0.0); glutWireSphere(0.2, 10, 8); /* Draw planet Kecil */ glPopMatrix(); glutSwapBuffers(); } void reshape (int w, int h) { glViewport (0, 0, (GLsizei) w, (GLsizei) h); glMatrixMode (GL_PROJECTION); glLoadIdentity (); gluPerspective(60.0, (GLfloat) w/(GLfloat) h, 1.0, 20.0); glMatrixMode(GL_MODELVIEW); glLoadIdentity...

Game Diver Jimmy

Bantu Kenny menemukan harta karun, awas ada mahluk yang membahayakan. DOWNLOAD DISINI!!!

Hacking Registry dengan batch file

Pada dasarnya batch file adalah sebuah script apabila script tersebut dijalankan akan berhubungan langsung dengan shell windows. Perintah dasar seperti copy, rename dan masih banyak lagi. Kita akan bahas disini yaitu perintah REG. Perintah REG merupakan perintah untuk mengakses Registry secara langsung.  Perintah dasarnya: REG ADD REG DELETE REG COPY REG SAVE REG LOAD REG UNLOAD REG QUERY REG COMPARE REG EXPORT REG IMPORT 1. REG ADD digunakan untuk menambahkan key atau value pada registry windows. Struktur dari perintah REG ADD adalah sebagai berikut: REG ADD KeyName [/v NamaValue] [/t Type] [/d Data] [/f] Keterangan: REG ADD perintah dasar untuk menambah key atau value pada registry KeyName yang akan dijadikan sasaran (root key) HKEY_CLASSES_ROOT => HKCR HKEY_CURRENT_USER => HKCU HKEY_LOCAL_MACHINE => HKLM HKEY_USERS => HKU HKEY_CURRENT_CONFIG => HKCC NamaValue => digunakan untuk menambahkan nama value pada registry Type =...