3370 summary

by dixalex

HTML

<pre>0:01
it's Sunday morning and we have been in a study on Sunday morning on
0:06
predestination and I've found that my Sunday morning Sunday night and
0:11
Wednesday night messages are beating beginning to blend together and I've
0:17
been on predestination for several years on Sunday morning what I'm going to do
0:23
is kind of switch Sunday morning and Sunday night since they're blending
0:28
together and I'm going to teach on it's kind of difficult to say what the
0:34
subject is this morning because we've been talking about demons on Sunday night demons and of course we don't
0:42
believe in demons here the word demon is the Greek word dear money on Dai mo n io
0:51
n their money on comes from the root die o dial meaning to distribute fortunes
1:03
and that is our word that word diet their money on is our demon now jesus
1:12
said that demons were self he said it when you're reading notice who's talking
1:19
what they're saying there's a controversy about what demons are
1:25
because you had two views of what demons were you had Jesus view and you had the
1:34
world's view now the world said everything was due to demons they said
1:40
and they called their gods by the title of demons and they said that when a
1:50
person was sick that it was a god that moved into him and made them sick and so
2:00
it was a God that came and inhabited their body when I say gods when I say
2:06
gods their gods were Hercules Venus
2:13
adonis Tammuz and the list goes
2:18
Jupiter Zeus these were their gods in the different city-states
2:23
series Sybil here in what we call Turkey and Attis
2:29
ates ates actus that is really peculiar
2:36
because attaced was and sometimes they spell ATT is r18 YS na te s is the word
2:47
tree of the knowledge of good and evil in the garden so all of these gods of
2:55
the world they called the Jews call them demons and what the Jews call demons the
3:01
Arabs called genies genie comes from the word gene gene and our genes are our
3:11
makeup...

JavaScript

var preText = $('pre').text(); // Retrieve the text inside the <pre> element
var lines = preText.split('\n'); // Split the text into an array of lines

var combinedLines = [];
for (var i = 0; i < lines.length - 1; i += 2) {
  var combinedLine = lines[i] + ' ~ ' + lines[i + 1];
  combinedLines.push(combinedLine);
}

var separateArrays = [];
var batchSize = Math.ceil(combinedLines.length / 5);

for (var j = 0; j < combinedLines.length; j += batchSize) {
  var batch = combinedLines.slice(j, j + batchSize);
  separateArrays.push(batch);
}

for (var k = 0; k < separateArrays.length; k++) {
  console.log(separateArrays[k]);
}