Lisp is only a general idea about syntax and macros. If you want numerical computations you want a big library like blas, and the problem is about efficient memory allocation, cache and garbage collection. If you want deep learning you want a big library.
Lisp is like arithmetic, without more concepts or libraries it doesn't work, you have to reinvent the wheel.
R provides near 8000 useful packages, that's what makes a language a useful tool to solve a problem, and it can call routines in C, fortran or use C with armadillo. To sum up, a language without a great community and specific libraries is not a way to fix the world, on top of that there are few jobs using Lisp. Clojure is trying to take advantage of all those java libraries, that is a good step in the right direction. Clasp is another idea trying to use C++.
Just a little nickpick, reading the first lines, I would prefer the author to explain the Pythagorean theorem in R^n like this (is a very simple proof)
v . v = |v|^2, and u and v are orthogonal (u . v = 0) then
|u+v|^2 = (u+v) . (u+v) = u.u + v.v = |u|^2 + |v|^2
A nice example of a projection, if v=(1,1,1,...,1) then the projection of u over v is mean(u)*v
Genes don't encode all the necessary information for growing up. There are time windows for activation of high level functions. (Cats get blind if their time window for visual learning is not used). So you need to take into account the time window and the other interactions before trying to speed up intelligence.
The next step is to build a chatbot to replace the professor at teaching. If someone is not going to enjoy the fruits why are you going to supply the knowledge base for a chatbot that is going to replace you?
Planned obsolescence = obsolescencia planeada in Spanish, designing purposely a product that won't last to get money through client's pockets. Examples with ink for printers was on courts.
For people like me that are used to only reading the comments: You can read the book online, code is in ruby, example: tabu search for the traveling salesman problem.
I should suggest updating the code by using the python ecosystem: numpy, pandas, scikit-learn and enhacing the value book with a little of ML
automation: go to this page, fill in the form, push submit, receive the result, process the result, send the processed result to another program for further analysis, finally emit and alert when attention is needed.
After a glimpse, I should say that if the page needs javascript then use selenium else you use this. So this is like selenium without javascript. Am I right?
Lisp is like arithmetic, without more concepts or libraries it doesn't work, you have to reinvent the wheel.
R provides near 8000 useful packages, that's what makes a language a useful tool to solve a problem, and it can call routines in C, fortran or use C with armadillo. To sum up, a language without a great community and specific libraries is not a way to fix the world, on top of that there are few jobs using Lisp. Clojure is trying to take advantage of all those java libraries, that is a good step in the right direction. Clasp is another idea trying to use C++.