Jump to content

justme007

Advanced Member
  • Posts

    140
  • Joined

  • Last visited

Everything posted by justme007

  1. Yes! It is beautiful! It's the best feeling I've ever had - observing miracles!!!
  2. Hello brothers and sisters, I've been going through The Book of ZECHARIAH. I started at Chapter 7 today. I realized something amazing about that beautiful Chapter. I will describe that in detail after this post too. I want to talk about Chapter 11. Let's look at the verse 14. It comes right after the verses that describe the 30 pieces of silver. It is a well known fact that those verses - the ones up to and including the verse 13 - that talk about the 30 pieces of silver are prophetic and talk about the betrayal by Judas. And then there is the verse 14, the next verse, the verse that immediately follows them. That verse has the name Judah in it. Judas is the Greek version of Judah. It is the same name. The name of the person who was the receiver of the silver is mentioned in the very next verse! The verse 14 says that there will no longer be Union between Judah and Israel. The act of treachery by Judas breaks his union with the rest of the apostles. It also makes him an outcast for the rest of the righteous believers in Israel. It's amazing, I just noticed this today. I tried looking for commentaries that comment on that and I haven't found any online. Are there any commentaries that talk about that? Could someone post a link?
  3. I am going through The Bible, doing daily readings. In my case it's mostly listening to the audio version. There were so many things that happened, so many things I want to write about. I would like to focus on the last several days. Starting at Chapter 5 of The Gospel Of JOHN, I saw miraculous events like the ones I described above associated with every chapter, every day. Chapter 5: I was riding a bus. The weather was cloudy but dry. Usualy, when there is a rainbow, it happens during or right after the rain. And when one sees a rainbow it is usually sunny at the moment. The rain passes, the sun comes out and the rainbow appears. That has been my observation. On the day I'm talking about a very bright rainbow suddenly appeared lime out of nowhere. The sun was not out and there was no rain. Right before exiting the bus I was listening to JOHN Chapter 5. What I later learned(audio version doesn' specify verses, just chapters) was verse 39 was talking about The Bible Itself. That got me thinking about The Bible. The last 3 verses, 45 to 47 also talk about The Bible Itself. So, I got out of the bus, thinking about The Bible. And then I noticed the bus had a licence plate 3927 - 39 Books of The Old and 27 Books of The New Testements. And all of that under that bright unusual rainbow! What are the chances?
  4. Hello brothers and sisters, i just wanted to write something, like a testimony that sums up the last year or so of my life. i want to explain why i started writing about evolution, why i started thinking about it and what i realized during that time. a) 1) i watched a documentary about flagellar motor and irreducible complexity. it was a Christian documentary. look it up online, it has to be on youtube or something. i got really delighted after watching that. 2) i went online to learn more about that. the first thing i stumbled upon was a wikipedia article. and the article had a very strong atheistic bias. that was very disturbing to read. i stopped reading that as soon as i realized that. it is very sad, but its easy to notice that the so called scientific community has a general atheistic bias. 3) i started thinking a lot about the issue of abiogenesis and about the many ways to disprove those "theories". b) 1) i realized many things that i will try my best to describe in detail in the near future. i was blessed with the realization of those things! 2) one day i stumbled upon an article about the n queens problem. I felt compelled to start working on that that day. I felt compelled to put aside something else I was trying to work on and to start working on that. I will write about that in detail later. the thing I was working on is not directly related to the issue of abiogenesis/evolution. it is something I was blessed with realizing during the process of thinking about those issues. 3) not long ago I felt compelled to post what I have achieved with the n queens problem: - I used JavaScript. that was the first thing readily available to me and I have some experience with it. I just needed something that can process loops. - I am pretty sure the algorithm is in polynomial time. that needs to be double checked just in case. - the algorithm runs 7 times. it runs once for every board starting at size 4 and ending at size 10. it gets the right answer 3 times out of 7. - the code is a "rough draft". it has many functions that are either unnecessary, incomplete, non working or incorrect. it's a work in progress. I felt compelled to post it the way it is. - the formula that forms the basis for functions 15 could be adjusted, modified and improved to achieve better optimization results. - i'm not sure if they exist, but I have not found any optimization methods/algorithms for this problem. the only solution that I was able to find online was the simple backtracking one. oh, I wanted to mention one more thing: I apologize if I don't reply on time when someone writes me. I have fybromialgia and other disability issues that I struggle with. here is the code of what I was talking about in javaScript: <!DOCTYPE html> <html> <body> <h2>JavaScript Loops</h2> <p id="demo"></p> <script> var text = ""; var i; var j; var k = 0; var l = "43"; var n = "99" for (i = 1; i < 5; i++) { for (j = 1; j < 5; j++) { k++; text += "The" + k + " number is " + i + j + "<br>"; } } var m = text.indexOf(l); var o = text.indexOf(n); //another example var ac = "...The number is " + "aa" + "jj" + "<br>"; var size = 5; var ar = []; var ar_1 = []; //var aa; //var ab; function myFunction1(aa, ab){ var aa1 = aa; var ab1 = ab; for (i = aa; i < size; i++) { for (j = ab; j < size; j++) { if(i-aa1 == j-ab1){ ac += "...The number is " + i + j + "<br>"; } } } for (i = aa; i < size; i++) { for (j = ab; j > 0; j--) { if(i - aa1 == ab1 - j){ ac += "...The number is " + i + j + "<br>"; } } } for (i = aa; i > 0; i--) { for (j = ab; j < size; j++) { if(aa1-i == j-ab1){ ac += "...The number is " + i + j + "<br>"; } } } for (i = aa; i > 0; i--) { for (j = ab; j > 0; j--) { if(aa1-i == ab1 - j){ ac += "...The number is " + i + j + "<br>"; } } } for (i = 1; i < size; i++) { ac += "...The number is " + i + ab + "<br>"; } for (j = 1; j < size; j++) { ac += "...The number is " + aa + j + "<br>"; //check again } return ac; } //var aa2; //var ab2; //var ac2=""; function myFunction2(aa22, ab22) { //aa2=aa22; //ab2=ab22; var ac2=""; ac2 = "The number is " + aa22 + ab22 + "<br>"; var ad2 = ac.indexOf(ac2); return ad2; } //var ab33 = 0; function myFunction3(aa33) { var ab33 = 0; for (j = 1; j < size; j++) { if(myFunction2(aa33,j) < 0){ ab33++; } } return ab33; } function myFunction4(aa44) { var ab44 = 0; var ac44 = 100; var ad44 = 0; var aaa44 = 0; var aab44 = 0; //var aac44 = 0; //var aad44 = 0; var ae44 = "f4"; for (j = 1; j < 5; j++) { //var ab44 = 0; //var ac44 = 100; var aac44 = 0; var aad44 = 0; if(myFunction2(aa44,j) < 0){ //var aaa44 = 0; //var aab44 = 0; var k1 = j+1; for (k = k1; k <5; k++){ aac44 = aac44+1; var aacc44 = aa44+aac44; if (myFunction2(aacc44,k) < 0){ aaa44 = aaa44+1; } } var k2 = j-1; for (k = k2; k >1; k--){ aad44 = aad44+1; var aadd44 = aa44+aad44; if (myFunction2(aadd44,k) < 0){ aab44 = aab44+1; //} //} } } //ab44 = aaa44+aab44; } //} ab44 = aaa44+aab44; if(ac44>=ab44){ ac44=ab44; ad44=j; } } //return ac44; //return ad44; ae44 = ae44 + "_" + ac44 + "_" + ad44; return ae44; } //ac1 = ""; function myFunction5(aa55) { ac1 = ""; for (j = 1; j < size; j++) { if(myFunction2(aa55,j) < 0){ ac1 += "The number is " + aa55 + j + "<br>"; } } return ac1; } function myFunction6(aa66){ var aacc1 = myFunction5(aa66); return aacc1; } function myFunction7(aa77, ab77){ var ac77 = 0; if (myFunction2(aa77, ab77) < 0){ ac77=1; } return ac77; } function myFunction8(aa88, ab88){ var ac88 = aa88; if(ab88>aa88){ ac88=ab88; } var ad88=ac88; var ae88 = 0; var af88 = 1; while (ad88<4){ //ad88++; var ag88 = aa88 + af88; var ah88 = ab88 + af88; ae88 += myFunction7(ag88, ah88); af88++; ad88++; } return ae88; } function myFunction9(aa99, ab99){ var ac99 = aa99; var ab199 = 4 - ab99; if(ab199>aa99){ ac99=ab199; } var ad99=ac99; var ae99 = 0; var af99 = 1; while (ad99<4 && ad99>1){ //ad99++; var ag99 = aa99 + af99; var ah99 = ab998 - af99; ae99 += myFunction7(ag99, ah99); af99++; if(aa99>ab99){ ad99++; } if(ab99>aa99){ ad99--; } } return ae99; } function myFunction10(aa10, ab10){ var ac10 = aa10; var ac110 = ab10; var ae10 = 0; var af10 = 1; while (ac10 <4 && ac110 >1){ var ag10 = ac10 + af10; var ah10 = ab10 - ac110; ae10 += myFunction7(ag10, ah10); ac10++; ac110--; } return ae10; } function myFunction11(aa11, ab11){ var ac11=0; var ad11=0; var ag11=0; var x = aa11 + 1; var x1 = aa11 - 1; var y = ab11 + 1; var y1 = ab11 - 1; for (i = x; i < size; i++) { for (j = y; j < size; j++) { if(i-x == j-y){ //var ae11 = i-aa11; //var af11 = j-ab11; ac11 += myFunction7(i, j); } } } for (i = x; i < size; i++) { for (j = y1; j > 0; j--) { if(i - x == y1 - j){ //var ae111 = i-aa11; //var af111 = j-ab11; ad11 += myFunction7(i, j); } } } ag11=ac11+ad11; return ag11; } function myFunction12(aa12, ab12){ var ac12=0; var ad12=0; //var ag12=0; var x = aa12 + 1; var x1 = aa12 - 1; var y = ab12 + 1; var y1 = ab12 - 1; for (i = x; i < size; i++) { for (j = y; j < size; j++) { if(i-x == j-y){ ac12 += myFunction7(i, j); } } } for (i = x; i < size; i++) { for (j = y1; j > 0; j--) { if(i - x == y1 - j){ ad12 += myFunction7(i, j); } } } //ag11=ac11+ad11; return ac12; } function myFunction13(aa13, ab13){ var ac13=0; var ad13=0; //var ag13=0; var x = aa13 + 1; var x1 = aa13 - 1; var y = ab13 + 1; var y1 = ab13 - 1; for (i = x; i < size; i++) { for (j = y; j < size; j++) { if(i-x == j-y){ ac13 += myFunction7(i, j); } } } for (i = x; i < size; i++) { for (j = y1; j > 0; j--) { if(i - x == y1 - j){ ad13 += myFunction7(i, j); } } } //ag11=ac11+ad11; return ad13; } function myFunction13_1(aa13, ab13){ var ac13=0; var ad13=0; //var ag13=0; var x = aa13 + 1; var x1 = aa13 - 1; var y = ab13 + 1; var y1 = ab13 - 1; for (i = x; i < size; i++) { for (j = y; j < size; j++) { if(i-x == j-y){ ac13 += myFunction7(i, j); } } } for (i = 1; i < size; i++) { ad13 += myFunction7(i, ab13); } //ag11=ac11+ad11; return ad13; } function myFunction13_2(aa13, ab13){ var ac13=0; var ad13=0; var ad13_2=0; //var ag13=0; var x = aa13 + 1; var x1 = aa13 - 1; var y = ab13 + 1; var y1 = ab13 - 1; for (i = x1; i > 0; i--) { for (j = y; j < size; j++) { if(x1-i == j-y){ ad13_2 += myFunction7(i, j); } } } //ag11=ac11+ad11; return ad13_2; } function myFunction13_3(aa13, ab13){ var ac13=0; var ad13=0; var ad13_3=0; //var ag13=0; var x = aa13 + 1; var x1 = aa13 - 1; var y = ab13 + 1; var y1 = ab13 - 1; for (i = x1; i > 0; i--) { for (j = y1; j > 0; j--) { if(x1-i == y1 - j){ ad13_3 += myFunction7(i, j); } } } //ag11=ac11+ad11; return ad13_3; } function myFunction14(aa14, ab14){ var ac14 = "f14"; ac14 += "<br><br>" + myFunction11(aa14, ab14) + "<br><br>" + myFunction12(aa14, ab14) + "<br><br>" + myFunction13(aa14, ab14); return ac14; } function myFunction1_1(aa, ab){ var aa1 = aa; var ab1 = ab; var ac1 = ac; for (i = aa; i < size; i++) { for (j = ab; j < size; j++) { if(i-aa1 == j-ab1){ ac1 += "...The number is " + i + j + "<br>"; } } } for (i = aa; i < size; i++) { for (j = ab; j > 0; j--) { if(i - aa1 == ab1 - j){ ac1 += "...The number is " + i + j + "<br>"; } } } return ac1; } function myFunction1_2(aa, ab){ var aa1 = aa; var ab1 = ab; var ac1 = ac; for (i = aa; i < size; i++) { for (j = ab; j < size; j++) { if(i-aa1 == j-ab1){ ac1 += "...The number is " + i + j + "<br>"; } } } for (i = aa; i < size; i++) { for (j = ab; j > 0; j--) { if(i - aa1 == ab1 - j){ ac1 += "...The number is " + i + j + "<br>"; } } } for (i = 1; i < size; i++) { ac1 += "...The number is " + i + ab + "<br>"; } for (i = aa; i > 0; i--) { for (j = ab; j < size; j++) { if(aa1-i == j-ab1){ ac1 += "...The number is " + i + j + "<br>"; } } } for (i = aa; i > 0; i--) { for (j = ab; j > 0; j--) { if(aa1-i == ab1 - j){ ac1 += "...The number is " + i + j + "<br>"; } } } return ac1; } function myFunction2_1(aa22, ab22, ac22) { //aa2=aa22; //ab2=ab22; var ac2 = ""; ac2 = "The number is " + aa22 + ab22 + "<br>"; var ad2 = ac22.indexOf(ac2); return ad2; } function myFunction3_1(aa3, ab3, ac3, ad3) { var abb33 = 0; var ac_1 = myFunction1_2(aa3, ab3); if(myFunction2_1(ac3,ad3,ac_1) < 0){ abb33 = abb33+1; } return abb33; } function myFunction3_1_1(aa3, ab3, ai3) { var x = 0; var j = 1; while (j < size ) { x += myFunction3_1(aa3, ab3, ai3, j); j++; } return x; } function myFunction3_1_2(aa3, ab3, ai3) { var x = myFunction3(ai3); var y = myFunction3_1_1(aa3, ab3, ai3); var z = x - y; return z; } function myFunction3_2(a){ var x = []; var i = a +1; while(i<size){ x.push(myFunction3(i)); i++; } return x; } function myFunction3_2_1(a,b){ var x = []; var i = a + 1; while(i<size){ x.push(myFunction3_1_1(a,b,i)); i++; } return x; } function myFunction3_3(a,b){ var x = 0; var result = 0; var i = 0; var y = myFunction3_2_1(a,b); var z = myFunction3_2(a); while (i<y.length){ result = z - y; x+=result; i++; } return x; } function myFunction3_1_1_1(aa3, ab3) { var i = aa3 +1; var o = 0; var n = 0; var res = 0; while (i<size){ o = myFunction3(i); n = myFunction3_1_1(aa3, ab3, i); res += n*size/o + n/size; i++; } return res; } function myFunction15_1(a, b) { var x; var ae15_1 = 1; if(myFunction2(a,b)<0){ var ab15 = myFunction12(a,b); var ac15 = myFunction13(a, b); var ac15_1 = myFunction13_1(a,b); var acc15 = ab15 - ac15; var acc16 = ab15 - ac15_1; var acc17 = ac15 - ac15_1; var acc18 = myFunction3_3(a, b); var ae15 = ab15 * size * size + ac15 * size * size + ac15_1 * size * size + Math.abs(acc15) * size + Math.abs(acc16) * size + Math.abs(acc17) * size + acc18; ae15_1 = ab15 * size * size + ac15 * size * size + ac15_1 * size * size + myFunction3_1_1_1(a, b); //x = ae15; x = ae15_1; }else { x = size*size*size*size; } return x; } function myFunction15_1_v2(a, b) { var x; var ae15_1 = 1; var ae15_1_v2 = 1; if(myFunction2(a,b)<0){ var ab15 = myFunction12(a,b); var ac15 = myFunction13(a, b); var ac15_1 = myFunction13_1(a,b); var ac15_1_v2_1 = myFunction13_2(a,b); var ac15_1_v2_2 = myFunction13_3(a,b); var acc15 = ab15 - ac15; var acc16 = ab15 - ac15_1; var acc17 = ac15 - ac15_1; var acc18 = myFunction3_3(a, b); var ae15 = ab15 * size * size + ac15 * size * size + ac15_1 * size * size + Math.abs(acc15) * size + Math.abs(acc16) * size + Math.abs(acc17) * size + acc18; ae15_1 = ab15 * size * size + ac15 * size * size + ac15_1 * size * size + myFunction3_1_1_1(a, b); ae15_1_v2 = ab15 * size * size + ac15 * size * size + ac15_1 * size * size + ac15_1_v2_1 * size * size + ac15_1_v2_2 * size * size + myFunction3_1_1_1(a, b); //x = ae15; //x = ae15_1; x = ae15_1_v2; }else { x = size*size*size*size; } return x; } function myFunction15(aa15) { var x = []; var j = 1; while (j < size) { x.push(myFunction15_1(aa15, j)); j++; } x.sort(function(a, b){return a - b}); return x; } function myFunction15_v2_part1(a) { var x = []; //var i = 1; var j = 1; //while (i < size) { while (j < size) { x.push(myFunction15_1_v2(a, j)); j++; } //i++; //} x.sort(function(a, b){return a - b}); return x; } function myFunction15_v2_part2() { var x = []; var i = 1; //var j = 1; while (i < size) { //while (j < size) { x.push(myFunction15_v2_part1(i)); //j++; //} i++; } x.sort(function(a, b){return a - b}); return x; } function myFunction15_v2() { var x = []; var i = 1; var j = 1; while (i < size) { while (j < size) { x.push(myFunction15_1_v2(i, j)); j++; } i++; } x.sort(function(a, b){return a - b}); return x; } function myFunction15_v2_for() { var x = []; //var i = 1; //var j = 1; for (i = 1; i < size; i++) { for (j = 1; j < size; j++) { x.push(myFunction15_1_v2(i, j)); //j++; } //i++; } x.sort(function(a, b){return a - b}); return x; } function myFunction15_v2_fix3() { var x = []; var ij = 1; var sizeSq = size * size; var i = 0; var j = 0; while (ij < sizeSq) { i = Math.ceil(ij/size); j = ij-Math.floor(ij/size)*size; x.push(myFunction15_1_v2(i, j)); ij++; } x.sort(function(a, b){return a - b}); return x; } function myFunction15_v2_fix4a(aa15) { var x = []; var j = 1; while (j < size) { x.push(myFunction15_1(aa15, j)); j++; } x.sort(function(a, b){return a - b}); return x; } function myFunction15_v2_fix4b() { var x = []; var x1 = [] var i = 1; while (i < size) { //var myChildren = myGirls.concat(myBoys); //x1 = x; x = x.concat(myFunction15_v2_fix4a(i)); i++; } x.sort(function(a, b){return a - b}); return x; } function myFunction15_v2_fix5ax(aa15) { var x = []; var j = 1; while (j < size) { x.push(myFunction15_1(aa15, j)); j++; } x.sort(function(a, b){return a - b}); return x; } function myFunction15_v2_fix5a(aa15) { var x = size; var y = 1; if(x>0){ y = aa15/x; } var z = 1; if(aa15>size){ z = Math.ceil(y); }else { z = 1; } return z; } function myFunction15_v2_fix5b(aa15) { //var x = size - 1; var x = size; var y = 1; if(x>0){ y = aa15/x; } var z = Math.floor(y); var z1 = Math.ceil(y); //var x1 = 0; var x1 = 1; if(z == z1){ x1 = x; }else { x1 = aa15 - x * z; } return x1; } function myFunction15_v2_fix5abTest(){ var x = ""; var y = 1; var z = size * size + 1; while(y < z){ x += "(" + myFunction15_v2_fix5a(y) + "," + myFunction15_v2_fix5b(y) +")"; y++; } return x; } function myFunction15_v2_fix5c() { //var x = size - 1; var x = size; var y = x * x + 1; var x1 = []; var ij = 1; var i = 1; var j = 1; while (ij < y) { i = myFunction15_v2_fix5a(ij); j = myFunction15_v2_fix5b(ij); x1.push(myFunction15_1_v2(i, j)); ij++; } x1.sort(function(a, b){return a - b}); return x1; //return 1; } function myFunction15_1_1(aa15) { var x = []; var j = 1; while (j < size) { x.push(myFunction15_1(aa15, j)); j++; } ar_1 += size + "<br>"; ar_1 += x + "<br>"; return ar_1; } function myFunction15_2(a) { var x = myFunction15(a); var y = x[0]; return y; } function myFunction15_2_v2() { //var x = myFunction15(a); var x = myFunction15_v2_fix5c(); //current var y = x[0]; return y; } function myFunction15_3(a,b) { var x = 0; if(myFunction15_1(a,b)==myFunction15_2(a)){ x = b; } return x; } function myFunction15_3_v2(a,b) { var x = 0; if(myFunction15_1_v2(a,b)==myFunction15_2_v2()){ x = b; } return x; } function myFunction15_4(a,b) { if(myFunction15_3(a,b)>0 && myFunction2(a,b)<0){ myFunction1(a,b); ar.push(a+","+b); } return ar; } function myFunction15_4_v2(a,b) { if(myFunction15_3_v2(a,b)>0 && myFunction2(a,b)<0){ myFunction1(a,b); ar.push(a+","+b); } return ar; } function myFunction16(a) { var j = 1; while (j<size){ myFunction15_4(a,j); j++; } return ar; } function myFunction16_v2(a) { var j = 1; while (j<size){ myFunction15_4_v2(a,j); j++; } return ar; } function myFunction16_v2_fix1() { //var x = ""; var i; var j; var y = 1; var z = size * size + 1; while(y < z){ //x += "(" + myFunction15_v2_fix5a(y) + "," + myFunction15_v2_fix5b(y) +")"; i = myFunction15_v2_fix5a(y); j = myFunction15_v2_fix5b(y); myFunction15_4_v2(i,j); y++; } return ar; } function myFunction17() { var i = 1; while (i<size) { myFunction16(i); //ar_1 += "line" + i + " "; //myFunction15_1_1(i); i++; } return ar; } function myFunction17_v2() { var i = 1; while (i<size) { myFunction16_v2(i); //ar_1 += "line" + i + " "; //myFunction15_1_1(i); i++; } return ar; } function myFunction17_v2_fix1() { var i = 1; while (i<size) { myFunction16_v2_fix1(); //ar_1 += "line" + i + " "; //myFunction15_1_1(i); i++; } return ar; } function myFunction18() { var arr = "function18"+ "<br><br>"; while(size <12){ ac = "...The number is " + "aa" + "jj" + "<br>"; ar = []; myFunction17(); arr+= ar+"<br><br>"; size++; } return arr; } function myFunction18_v2() { var arr = "function18_v2"+ "<br><br>"; size = 7; while(size <8){ ac = "...The number is " + "aa" + "jj" + "<br>"; ar = []; myFunction17_v2(); arr+= ar+"<br><br>"; size++; } return arr; } function myFunction18_v2_fix1() { var arr = "function18_v2_fix1"+ "<br><br>"; size = 7; while(size <8){ ac = "...The number is " + "aa" + "jj" + "<br>"; ar = []; myFunction17_v2_fix1(); arr+= ar+"<br><br>"; size++; } return arr; } //myFunction1(1,3); //var output = "<br><br>" + myFunction15(2) + "<br><br>" + myFunction15_1(2,1) + "<br><br>" + myFunction15_2(2)+ "<br><br>" + myFunction15_3(2,1) + "<br><br>" + myFunction15_4(2,1)+ "<br><br>" + myFunction16(2); //var output2 = "<br><br>" + myFunction17() + "<br><br>" + myFunction18() + "<br><br>" + "f3_2" + "<br><br>" + myFunction3_2(1) + "<br><br>" + "f3_1" + "<br><br>" + myFunction3_1(2,2,6,1); //var output3 = "<br><br>" + "f3_1_1" + "<br><br>" + myFunction3_1_1(2,2,6) + "<br><br>" + "f3_2_1" + "<br><br>" + myFunction3_2_1(2,2) + "<br><br>" + "f3_3" + "<br><br>" + myFunction3_3(2,2); // + "<br><br>" + ar_1; //var output4 = "<br><br>" + myFunction18_v2() + "<br><br>" + "f15_v2_fix5a " + size + "<br><br>" + myFunction15_v2_fix5a(25) + "<br><br>" + "f15_v2_fix5b " + size + "<br><br>" + myFunction15_v2_fix5b(25); //var output4a = "<br><br>" + "f15_v2_fix5a " + size + "<br><br>" + myFunction15_v2_fix5a(25) + "<br><br>" + "f15_v2_fix5b " + size + "<br><br>" + myFunction15_v2_fix5b(25) + "<br><br>" + myFunction15_v2_fix5abTest(); //var output5 = "<br><br>" + myFunction15_v2_fix5c() + "<br><br>" + myFunction15_4(1,1) + "<br><br>" + myFunction18_v2_fix1(); size = 5; var outputA = myFunction18(); //myFunction1(1,3); document.getElementById("demo").innerHTML = outputA; //"another example" + "<br><br>" + myFunction12(1,1)+ "<br><br>" + myFunction13(1,1) + output + output2 + output3 + output4a + output4 + output5; </script> </body> </html>
  5. Hello brothers and sisters, Here are the facts from history that have to do with the Second world war and the observations about them. To me it looks just stunning. Those facts are well known and documented. They are being taught as parts of history lessons in schools and colleges. But so far I have not seen anyone looking at them from the point of view of Biblical determinism/compatibilism! Here are the events I'm talking about in point form: Invention of the atomic bomb: - main inventor: Leo Szilard - crucial contributors: several of them. - most the above had one thing in common: they were Jews that had to leave Germany because the nazi defilers took power. - Einstein- Szillard letter was dated August 2 , 1939. It was written before main events of the war took place. - nazis entered the war with conventional weapons only. They lost. Now, lets look at what could have been: 1) Let's compare world war 2 to other similar events in terms of propoganda: - from a quick look at the history, from ancient to world war 2: -- it seems to be quite uncommon for invaders and agressors to turn their aggession against someone based on their ethnicity in their official propaganda. Sometimes they would do that but most of the time that is because the ethnic group they are aggessive against is in control of the territories that they want to invade. In this case Jews controlled no territory and were not capable of resistance against a regular army. - the degree of racism - antisemitism and other racism - and the fake facts, fake science invented to back it up is unprecedented, as far as i can tell. It is literally unprecedented from historical point of view. 2) Let's compare the invention of atomic bomb to other inventions. - it is very unique no doubt. It is the only invention in the world to date that allows a quick victory without a long costly war. - regardless of who invents it first, invention of nuclear weapons is a turning point in history. 3) Lets look at the time and place: - it could have been any other time between probably the second half of 1800s to late 1900s. Those are just my rough estimates. And that could have been any other place in the world. 4) Lets look at the inventors: - it could have been any other group of people, not a group composed of mostly Jews, or it could have been a group of Jews but at another place and at some other time. Conclusion: - if the things were left unchanged and the inventors didnt have to leave the nazis would very likely have nuclear weapons and enter the war with them. - with the above in mind there is a very high chance of them conquring at least all the territories they initially wanted. That would probably end up being the entire Europe, a half of Asia and a half of Africa. - there is also a chance that with that kind of turn of events they would end up conquring the entire world. - in any case, nazi defilers would secure a lot of conqured lands. With nuclear weapons at their disposal they would get to keep those lands. - the above would mean that the most evil and abominable group of invaders that ever existed would end up controlling at least the largest part of the world, with their abominable doctrines and with their idolatry. - Yes, idolatry. I was surprised to learn that they were in fact trying to bring pagan traditions back to life with the disgusting idolatry! Idolatry has been dead for many centuries in most parts of the world. They were trying to bring that evil sin back to life! - what about the many prophecies about Israel returning? After so many years! - instead of the world most of which is polluted with radiation and controlled by evil racist idolators we were blessed with their defeat and with fulfillment of prophecies! What are the chances?
  6. Hello brothers and sisters. Im not sure if this is the right place for my question but here it is: I've been going through the 2 chapters several times already and I have difficulties picturing everything described. The Temple, the two pillars and their tops, the rest of the items. I tried to look online, for pictures, but couldn't find any good sources so far. Any recommendations?
  7. Brothers and sisters, let us just remember what we focus on. We are focusing on praising GOD!!!!!!! Wether the earth is "old" or "new", wether something is litteral or metaphorical, that could lead us to debates and thinking and research. But we should never forget about why we are doing that!
  8. Oh, I just realized something. I was going through Genesis. I was looking for something that was not related to topics discussed above. First, about what I was looking for: I was looking for the verses that support vegan lifestyle and love for animals. Look first at Mathew 19:8. Let's think about it in depth. On top of the topic of marriage that is being discussed at the moment there is also a clear general message in that verse. The message is: we must try to do everything the way it was, or as close to the way it was in the beginning. Therefore, what we read in the first 3 chapters of Genesis, about the way it was in the beginning, that's the way we need to try to do things. And about vegan lifestyle - Genesis 1:29. About love for animals in general - there are many places in The Bible that point to that. Now, about what I found relating to the above discussion: I was reading through Genesis 2. Look at Genesis 2:17. Adam was specifically told that on the very day when he eats of the forbidden tree he will surely die. Now, there is another possible meaning for that. (We know that he died many years later). The meaning could be: on the day he eats the fruit the process leading to his death will start. Therefore his death will be inevitable. And death is looked at not as an instantaneous event but as a long process. And the date of death is the beginning of the process in Adams case. If that approach were to be applied today then a person's date of birth would coincide with their date of death. Now, what if the same approach were to be applied to the days of creation? May GOD!!! be praised!!!!!!! May GOD!!! be praised forever!!!!!! When writing these posts I never want to achieve anything for myself. I write them because they seem like "money" and posting them here seems like giving them to the "exchangers" - Mathew 25:27. Therefore, as soon as I think that I found something that looks like it might be "money", I'm in a hurry to give it to what seems like "exchangers". And about myself I shall always add: I am a dead dog and a flea - First Samuel 24: 14.
  9. Hello, brothers and sisters, I wanted to comment on the second last reply I received: Deuteronomy 13 - first 5 verses. Also 5:13 - The Fifth Book - Chapter 13. Read it carefully. Any sign that may appear troubling is there to test our faith! And absolutely everything is under absolute control of GOD!!!!!
  10. i'm continuing to write here. this post is sort of becoming like my blog. I wanted to describe December 10 of both this year and of 2014. That date is also special for me. that is the day when I was healed from my alcohol dependence. and the way I was healed from it was through seeing these signs! I had a really serious drinking problem. it was really damaging and detrimental to others around me and myself. slowly but surely I was heading towards one of the 3 alternatives that they say severe alcoholics have: death, jail, or a mental institution. I had been a Christian, I should say I had been trying to be a Christian during all that time, time of my addiction. looking back and analyzing the events of my life I see that all the hardships that I had to go through were results of my sins. they were the consequences of me being lukewarm and not being a passionate dedicated and 100 percent committed to following The Bible! but thankfully, I still prayed every day and never stopped believing! believing is truly a gift from Above in every situation! I prayed. my prayer was about my drinking. after another binge with sad consequences I needed to know what to do next. u see, even after all my problems I was never ready to give up drinking until that day. all my previous attempts to stop were "fake". I was always waiting for my next binge, even when sober. the only time when I decided to completely quit was after I got my drunk driving charge 10 years ago. I left the police station where I spent the night and firmly decided to never drink again. I changed my mind only after a couple of days. I started "waiting" for the next time when I can "relax" - for my next binge that is. that time I stayed sober for 45 days and that was sort of my record for a long time. but despite those 45 days of "technical sobriety" the real sobriety only lasted for a couple of days - those days when I wanted to give up alcohol completely. on the 10th of December 2014 I was praying! I was praying for a sign. I wanted to know what to do next. I wanted to know if I could continue drinking. u see, all that time I had been desperately trying to learn to drink "in a civilized manner" - problem free drinking that is. I thought that was possible for me. in my sinful weakness I knew that stopping completely would be impossible, that it would be way too hard and undoable in my case. I was praying for a sign. I thought: "if the first moving car on the road that I see has an even plate number - that means that I am allowed to drink again". I thought that on my way out for a walk, or to do some chores, I don't remember exactly where I was going. I thought that while in the elevator. there is another number that I have "imprinted" in my mind. that number is 611. for me it symbolizes blessing. long time ago that number was associated with one of the first of these beautiful, great signs that I've seen. I had a telus cell at the time and it was on my phone screen. you know the telus moto - "the future is friendly". that is how that number got to symbolize blessing, good life, good outcome, and friendly future for me. so, on that day, dec 10, 2014 I prayed in the elevator. that was in my apartment building where I lived at the time. as soon as I exited the building I saw a car with 611 on it's plate parked right next to the front door. I was excited. I kept on praying! I believed that to be the answer to what I prayed about, or a part of the answer. You see, I believed that I just needed to learn to drink "safely" or "normally". until the very end of my alcohol abuse I haven't been able to realize that I need to abstain completely. I even started attending AA meetings. I later stopped attending those, but that's another story. But all that time regardless of how serious and desperate and dire my situation would get I kept on being stupid and blind. I kept on thinking that I needed to learn to drink safely. I failed to realize that every time I start a binge I loose my mind and become unable to control the amount of alcohol I consume as well as any weird, dangerous, shameful, or illegal behaviour that follows as a result. On that day when I prayed, in my sinful blindness I was hoping to see a comforting sign that would mean that I am still allowed to drink and look for ways to make my drinking "safe and normal". And seeing 611 initially made me think that it was the sign that meant that I was still allowed to drink. but then I remembered the actual condition that I prayed about, namely for an even number on a moving car. so I kept on walking and waiting until I see one. finally I saw a car. I looked at the plate number. the number was 116. in my mind the reverse of something means the opposite of it. therefore, if 611 means that future is friendly, then 116 means that it is unfriendly. therefore, the meaning of what I observed was clear to me. it meant that if I were to continue to drink then the future would be unfriendly. After that I prayed for another sign. I asked if there was any way I would be able to learn to drink responsibly and if there was any way I would be able to continue to drink. as soon as I prayed about that I saw a plate with 382 on it. in my mind the number 82 is associated with decease. Then I prayed again and asked if I could ask about all of that again, one more time. I thought - even means yes, odd means no. the first number that I saw was odd. That was it for December 10, 2014. In my sinful mind of an addict - alcoholic is an addict - I still was thinking, that maybe soon I will be allowed to drink again. I thought that maybe I misunderstood something and that wonderful sign was a warning and not a complete ban. So, on December 20, 2014 I went for a walk. that was a long walk. at some point during that walk I prayed. I asked if I would be allowed to drink again soon, when things calm down and I become a bit more responsible and learn to "manage the situation". that is approximately what I was thinking at the moment. I looked to my left and saw a car with 382 on its plate parked in a driveway. immediately, when I prayed and asked that question that was the first thing I saw. About an hour later I was coming back home. I prayed again. in my sinful mind I still didn't realize that I needed to quit drinking for good. I asked for a sign confirming that I should stop drinking for good. I didn't have anything particular in mind, at least I don't remember if I did. I just thought, "a sign in general". I was thinking: "as I understand, I need to stop drinking for good. That is what I am going to do. This is what I am ordered to do! I hope I understand everything correctly". and I was hoping to see a sign confirming that I understood everything right. and right away I saw a car with 611 on it. I was walking alongside a busy street and it was driving past me. That is the end of the events that happened in 2014. Now, the events that happened on December 10 of 2017: My mom and I were having a conversation about the fact that I have been sober for exactly 3 years on that day. I calculated the number of days in my head - 1096 days - 3 years one of them leap. On that day we were going to Church. The first bus we took had the side number 5109, (root number 83). The second bus that we took had the root number 96. Put that together and: 5109 96 - 1096. These numbers also are associated with other numbers that are imprinted in my mind in a similar way. 510 - there is a song in my language which translates "JESUS!!! Is the King of the whole earth". It has the length of 5 minutes and 10 seconds - 5:10 - 510. That is the version of it that I have saved on my cell. The number 109 has the meaning imprinted in my mind also - "Love from Above!" The number 83 means something important as well for me. It means: "gift of friendly future in order for me to be able to serve and worship" That is the way of putting that into words. It is from another day 2 years ago when I saw one of these wonderful signs. On that day I saw a number 61183. I was wondering in my mind, what could 83 mean? When I came home (it was my birthday) my friend bought me a gift and there was a number on the package of that gift. It was 61141183. I still have that package. So, in my mind that number started to mean "a gift of friendly future in order to enable me to be an efficient worshiper and servant". I described above the meaning associated with the numbers 411 and 611. After we came home from Church I went to a store, to Walmart. I got the receipt and looked at the numbers on it. The top corner numbers were 611 and 94 on the left and on the right top corners respectively. And 94 started to mean "post that on line/share the story/post that on the forum" for me after I started this post. Therefore I decided to post everything about that day. It took me a while to write everything. I have fybromialgia and tmj. Those things give me headaches and sleepiness. I can't function. That is why it took me so long. I will post the pictures a little later. I will need to add additional explanations to those pictures.
  11. Here is an addition to my initial post, the continuation of events! Briefly: I was walking. I was approaching an intersection. I raised my eyes and saw the car standing on the intersection. It was a car with a phone number written on its side. The phone number had 411 and 94 in it. I saw that and started thinking about this - this post, those events, this! I took a picture of the car. After taking it I walked to the stop - 10 metres or so. In about 40 seconds I saw a bus. License plate 949 9 - photo. Number on the side of the bus is 5139. 513 - the other prominent number - Revelation 5:13 - total Devine Superiority! Then i pay attention to the time - i say pay attention because i've been looking on my cell screen the whole time taking photos - the time was 9:49 pm. Praise praise praise! Praise forever! I walked for about 15 minutes. I did not pay attention, but there were probably about 5 buses that passed me. Then I saw the bus 6694 - the one that started the sequence of events - took a photo.
  12. The discovery is really amazing! I also just paid attention again to the fact that there are 27 books in The New Testament. And the Gospel of John, although fourth, could be looked at as the most prominent one. And both Genesis 1 and John 1 talk about "in the beginning"! 27 - e to one decimal - 2.7.
  13. That is amazing! Recently I started studying Hebrew and started trying to read The Bible in Hebrew. I actually memorized Genesis 1:1 in Hebrew.
  14. AMEN! If we believe we will be blessed with the ability to see the miraculous and the wonderful! My brother, would you tell me more about where you see the Pie and the e in those wonderful chapters? I would love to see that
  15. Have you ever notice any amazing coincidences? Like when you think about something and then you look and lift up your eyes and you see something that is strongly related to what you were thinking? And how often is that that the thoughts you were thinking are actually prayers? I had a lot of those amazing coincidences. I believe them to be blessings! In my case I started noticing them in the numbers that I see around me. At first there were few. Then there were many. I started writing them down in my diary and also taking pictures. The coincidences are so amazing. I call them Manna. I also call them "The Sign". They strengthen my faith and help me. On the 7th I had a surgery. A minor one, they needed to pull 3 teeth out of my mouth, long story. But for that i had to be sedated. My prayer was, i was a bit concerned about complications. So, my prayer was for my mind not to get affected by things like stroke, if it were to happen due to sedation. I heard that things like that could happen; that did happen to my grandma too, but as a result of a different surgery. I prayed! Shortly before, namely on the 4th and on the 6th I saw some of those beautiful signs I talked about. My prayer was to wake up from the sedation and to still remember them. I did! Nothing happened by Mercy! Everything in our life is by Mercy! We have to be thankful for everything! And always pray! I felt compelled writing about them. I will try to describe the events of those 2 particular days: First, about the number. Number 411. In my mind that one means Revelation 4:11. For me that is one of the most prominent numbers. It means Absolute Devine Superiority! In my mind I have about 10 numbers like that between 1 and 1000. Second, about the events. On the forth I took a bus. November the 4th. On that bus there was a little table. The bus'es number was 94. And the number on the side of the bus was 6694. The table was 94-11 - I took a picture: On the 6th I was on my way to visit my friend. I was on a bus stop. I must mention that the bus 6694 has another one of those special numbers on it's licence plate. There are about 10 of them in my mind as I described above. So, I got off my bus on my friend's stop and was on my way to her place. Suddenly that bus 6694 entered the stop. I looked at it and decided to take a picture. What triggered the desire was the number 58 on it's plate. At the time I unfortunately forgot that it was "the bus from 2 days ago. Unfortunately it's hard to keep track of multiple things in my memory. So I took a picture of the bus again: Upon examining it just now I realized that it was a different bus, 6494, not 6694. And what attracted my attention to it was the number 257 on it's plate, which also is associated with something in my mind, but with something different. Like I said, it is not always easy to keep track of multiple things in one's memory, Unfortunately Here is the rest of the event: After that picture was taken I walked about 20 steps to an intersection. The first thing I noticed on it was the car with 411!: Then I got to my friend's building entrance - about 3 min walk. Before entering her building I saw a truck with 94 on it's plate: After spending some time at my friend's place my brother came to pick me up. We were supposed to go someplace. When I got in the car the time was 4:11!: And when we got to the place and parked the first thing I saw was a car with 411!: Now it started on day 4 of 11th month. And it made me remember that on the same date 2 years ago I also had a prominent event like that with the number 411! Like I said, because of the multitude of these events that I have been blessed with I have to right them down and use other memorization/recording techniques. To my shame i should say that i do forget some important information often. But according to my calculations the chances of that being a coincidence are smaller than 2 people having the same DNA, or winning a lottery, any lottery. I'm talking about that particular set of events I described. And I've been blessed with seeing many more. I felt compelled to write about that!
  16. I just want to say one thing. I am a Russian patriot and it's easy to guess the type of feelings I have towards the US government. but I love all Christians no matter where they are from and they are all my brothers and sisters. and that terrible shooting is evil and abominable. the person or persons responsible for it are pathetic cowards freaks and abominations and they will be punished in this life or after it. every filthy freak who raises their hand against Christians will be punished!
  17. justme007

    racism

    Of course, accusing someone falsely is without a doubt sinful and abominable.
  18. justme007

    racism

    How should we define racism from the Biblical point of view? First, we need to look at the foundations, the core principles that The Bible teaches us. Justice and equality are among those principles. Everyone is equal unless someone forfeits their equality by unrighteousness. The equality is restored when they repent. Being of different race, color, language, citizenship, culture or patriotic feelings toward a certain country could never be looked at as something unrighteous. That's probably a definition of racism by the way, thinking that someone is better than someone else because of any of the above. Every race, color, ethnicity or country has righteous believers. And being disrespectful or aggressive towards any of the above, or thinking that someone is better than someone else based on the above is racism. And it is disrespectful and hurtful towards those believers. That type of attitude violates the core principles of justice and equality, and is sinful and completely unacceptable without any doubt.
  19. justme007

    racism

    Racism is an abomination and a sin. Any Christian should agree with this statement.
  20. About the age of the Earth: The point I was trying to make is that whatever the age of the Earth is, we should never doubt The Bible! Therefore, either the verses that talk about days of creation are symbolic and the Earth is old and The Bible is true, or those verses are literal and the Earth is young and The Bible is true! in either case The Bible is true! we shouldn't let the doubt in our hearts ever! the age of the Earth could be looked at as a puzzle to solve, a test of faith, but never as a reason to doubt! we should never doubt! Something i wanted to say in addition: the reason i started posting is because i have done a lot of thinking and realized some things. i mean the things i started writing about, about disproving the evolution as we know it or disproving the possibility of non organic matter turning into living cells on its own. i want to add that it was not my intention to insult or confront anyone of you, brothers and sisters. what i want to do is what Matthew 25:27 says, that is my intention. i would like to start more threads about the topic soon. i just need some time to think and word them properly.
  21. What I wanted to say about Deuteronomy 13:1-4 was that we should treat the ideas of atheism and all similar things, evolution etc, the same way as words of false prophets and dreams of false dreamers mentioned in these verses.
  22. How many, why: One more or less well know person is Hugh Ross. Look him up on YouTube. I do not like some of the things he has to say, in particular the things he says about animals - that is cruel and goes in contradiction with: the very last verse of Jonah, Proverbs 12:10 and other Scriptures. Back to the subject: I just typed "Hugh Ross old earth" and "old earth vs new earth creationism" into the YouTube search. A lot of interesting videos came up. Post the Scriptures: 1) 2 Peter 3:8. That's one I could think of right now. Here the issue is addressed directly. 2) There are many Scriptures that could indicate in general that when we think that something has to be interpreted literally it turns out that the meaning was symbolic. One example i could think of at the moment is Malachi 4:5-6 combined with Mathew 17:10-13. Here is something we should remember: young or old earth, literally or symbolically, we must always remember that The Bible is true! We should never let any justification of doubt to enter our hearts. We should diligently study the Scriptures every day. We should study the world around us in order to advance our spiritual growth. In fact, whatever we do in general should be done for the only purpose of worship and spiritual growth. Never doubt! Remember Deuteronomy 13 - pay special attention to the first 4 verses of the chapter, as well as examine it as a whole.
  23. There are a lot of old earth creationists, i'm one of them for example. Careful examination of The Bible leads many believers to become old earth creationists. it is so sad to see The Bible misinterpreted, which happens so often unfortunately.
  24. exactly. there are so many ways to see that life cannot originate on its own.
×
×
  • Create New...