Skip to main content

Posts

Thats my king by Cece Winams

Lyrics with notes. Verse 1 Hmm I wish I could tell you Wish I could describe it But I can't contain it Can't keep it to myself There aren't enough colors To paint the whole picture Not enough words to ever say what I've found Wonderful and beautiful And glorious, and holy He is merciful and powerful Who we talkin' about? That's my King We declare the glory Give Him all the honor Altogether worthy Who we talkin' about? That's my King There's no one before You Yes, we will adore You All of this is for You Who we talkin' about? That's my King Jesus, You're my King Ay, ay, ay, ay I'm letting the rocks cry Without joining the chorus There aren't enough notes to make the harmony It's the song of the angels (angels) Through all of the ages (ages) It's all of the earth and heaven's symphony Wonderful and beautiful And glorious, and holy He is merciful and powerful Who we talkin' about? That's my King We declare the glo
Recent posts

The Blood by Pastor Desola

 By your stripe we ve been made whole again By the death we have conquered  the grave  By your resurrection we have passed to life. You are God yes you are you are God. You are God yes you are you are yah. By your name we broken chain By your name you made the way. You are God yes you are you yah. 2ce  By the blood, by the blood by the blood,  By the blood, by the blood Your precious blood. By the blood you’ve broke chain By the blood you made a way You are God yes you are you are God. You are God yea you are you are yah. 2ce  You are yah you are yah  You are God you are yah.
 MongoDB  MongoDB is a Document database with the scalability and flexibility that you want  with the querying indexing that you need. Scalability is the capacity to be changed in size or scale while  flexibility is the quality of being modified easily without being broken. Key MongoDB Features Document Based: Mongo DB stores data in documents (field-value pair data structures, NoSQL) instead of rows and column styles in traditional database in NoSQL pronounced (NO Sequel Data abase) Scalability: It is very easy to distribute data across multiple machines as your users  and amount of data grows. so whatever you do mongo Db gives you the room for you to grow. Flexibility: There is no need to define a documents data schema before filling it with data meaning each documents can have a different number and types of field, and we can also change this  fields all the time. And all this is really inline with some real life business situation and therefore it proves really useful Performant:

All of my Help by TCW lyrics

  I will stand on your Promise I will trust in your words I will wait on the one who holds the universe I will run to your altar throw my cares at your feet I know you hold my life and you know my every need you are the one who lift me up you are the one who fill my cup you are my God I will trust in you, my God I will stand on your Promise I will trust in your word I will wait on the one who holds the universe I will run to your altar throw my cares at your feet I know you hold my life and you know my every need chorus you are the one who lift me up you are the one who fill my cup you are my God I will trust in you, my God   Repeat Chorus (4x) All of my help comes from you God (2x) call and Response  All of my Help comes from you God (16x) you are the one who lift me up you are the one who fill my cup you are my God I will trust in you, my God you are the one who lift me up you are the one who fill my cup you are my God I will trust in you, my God written by Kest

Nodejs, Blocking Vs Non_Blocking

  Blocking  refers to operations that  block  further execution until that operation finishes while  non - blocking  refers to code that doesn't  block  execution. Or as  Node .  js  docs puts it,  blocking  is when the execution of additional JavaScript in the  Node .  js  process must wait until a  non -JavaScript operation completes Synchronous vs Asynchronous Synchronous (or sync) execution usually refers to code executing in sequence. In sync programming, the program is executed line by line, one line at a time. Each time a function is called, the program execution waits until that function returns before continuing to the next line of code. Asynchronous  (or async) execution refers to execution that doesn’t run in the sequence it appears in the code. In async programming the program doesn’t wait for the task to complete and can move on to the next task. I will give this simple illustration so that you will understand this two subject so well. Imagine you visit a restaurant a

Nodejs, MVC and Back End Architecture

  What is MVC, It is an acronyms with the meaning as follows M  ---- Model V  ----- View C  -----Controller MVC   is a back end architecture that helps us categorize our files when coding. The Model is all the code that is relating to the  Business logic  part of the Project.  The View is all the code that has to do with the  Presentation Logic , how the users experience the product. The Controller deals with the codes relating to the  application logic. .. Why is it necessary to arrange our codes properly,  >>To aid debugging >> To help navigation and make development easier >>To help other people read and comprehend your codes Comparison between Controller and Model Application Logic (Controller) --code that concern application implementation --managing request and responses --about technical aspects of your project . Business Logic (Model) -- code that actually solves business problem --Directly related to business rules, how the business works Recommendation: Fat