Here is my favorite Bible verse related to programming. I subtitle it, "God, calling a function."
"So shall My word be that goes forth from My mouth; it shall not return to me void, but it shall accomplish what I please, and it shall prosper in the thing for which I sent it." -- Isaiah 55:11 (NKJV)
"In view of this, it is ironic that introductory programming is most often taught in a highly imperative style. This may be a memorial unto the children of whoredoms."
This was my first thought as well. In TempleOS there's a game where you can go up to the top of Mt Sinai and have a "prophecy" delivered to you which is mostly a bunch of pseudo-random garble. Would be cool to have it use a markov chain generator akin to this.
Yes, language encodes thought patterns and affects them too.
The software languages we use affect our thinking as much as the spoken languages we use, and to juxtapose the two simply emphasises how closely linked are our notions of spirituality and language used to describe it. calling out the spiritual and throwing the secular world of programming into the same sentence just makes me reconsider which is the driver and which the driven.
I was thoroughly confused when initial reading the title. I thought Lebron James had started experimenting with programming along with his teammate Chris Bosh [1].
I'm trying to figure out what I'm looking at. A quick look at what Markov Chains are doesn't really seem to explain it. This is a mashup of these two books, basically, correct?
Tells you that given the phrase "it is", what comes next was "sunny" 3/4 of the time, and "raining" the rest.
Once you've got that, you can use it to generate random text that has similar characteristics to the training corpus. You just seed it with a couple starting words, and then start randomly choosing what word comes next according to the probabilities you've recorded.
Yes, it's basically a mashups of the two books. Each successive word is chosen randomly in proportion to how often in appears following the two or so words preceding it in the combined text.
"So shall My word be that goes forth from My mouth; it shall not return to me void, but it shall accomplish what I please, and it shall prosper in the thing for which I sent it." -- Isaiah 55:11 (NKJV)