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

Apa itu API

Bagaimana membuat aplikasi atau website dengan performa yang baik? Bagaimana membuat website yang mudah dikembangkan di berbagai platform? Bagaimana mengintegrasikan website dengan aplikasi yang berbeda bahasa pemrograman? Jawabannya adalah dengan membuat API. Untuk membuat API, arsitektur yang paling populer yaitu RESTful API.   Pada tutorial kali ini saya akan sharing bagaimana membuat RESTful API menggunakan node.js, express, dan MySQL secara step by step. Api itu RESTful API? RESTful API  merupakan implementasi dari API  ( Application Programming Interface ). REST (REpresentational State Transfer) adalah suatu arsitektur metode komunikasi yang menggunakan protocol HTTP untuk pertukaran data dan metode ini sering diterapkan dalam pengembangan aplikasi. Mungkin terdengar rumit tapi sebenarnya tidak. Tujuannya untuk menjadikan system dengan performa yang baik, cepat, dan mudah untuk dikembangkan ( scale ) terutama dalam pertukaran dan komunikasi data...

Arsitektur & Organisasi Komputer

    Arsitektur Komputer  Dalam bidang teknik komputer, arsitektur komputer adalah konsep perencanaan dan struktur pengoperasian dasar dari suatu sistem komputer. Arsitektur komputer ini merupakan rencana cetak-biru dan deskripsi fungsional dari kebutuhan bagian perangkat keras yang didesain (kecepatan proses dan sistem interkoneksinya). Dalam hal ini, implementasi perencanaan dari masing–masing bagian akan lebih difokuskan terutama, mengenai bagaimana CPU akan bekerja, dan mengenai cara pengaksesan data dan alamat dari dan ke memori cache, RAM, ROM, cakram keras, dll). Beberapa contoh dari arsitektur komputer ini adalah arsitektur von Neumann, CISC, RISC, blue Gene, dll.     Arsitektur komputer juga dapat didefinisikan dan dikategorikan sebagai ilmu dan sekaligus seni mengenai cara interkoneksi komponen-komponen perangkat keras untuk dapat menciptakan sebuah komputer yang memenuhi kebutuhan fungsional, kinerja, dan target biayanya. Arsitektur komputer ini...

How to use CKEditor in Nuxt Js

Requirement:  Node 14.18.3 NPM 6.14.15 Yarn 1.22.4 yarn add @ckeditor/ckeditor5-vue@23.0.0 yarn add @blowstack/ckeditor5-full-free-build@1.0.2 // plugins/ckeditor.vue import Vue from ' vue ' import CKEditor from ' @ckeditor/ckeditor5-vue ' Vue . use ( CKEditor ) // components/CkEditor.vue < template > < ckeditor : editor = " editor " : value = " value " : config = " config " @ input = " ( event ) => $emit ( ' input ' , event) " /> </ template > < script > let FullFreeBuildEditor; let CKEditor; if (process . client ) { FullFreeBuildEditor = require ( ' @blowstack/ckeditor5-full-free-build ' ); CKEditor = require ( ' @ckeditor/ckeditor5-vue ' ); } else { CKEditor = { component: { template: ' <div></div> ' } }; } export default { name: ' CkEditor ' , components: { ckeditor: CKEditor . component , }, p...