I think this is a bad idea.
Bleeding edge AI research being driven by shareholder profit motive is gonna lead to abuses of the tech real quick.
Look at how social media algorithms have been abused and misused in part because they're tuned to drive engagement by e.g. surfacing things that will make people react even if the content is untrue.
The Argo project is a workflow engine built on top of kubernetes. Workflows are written as yaml templates and support DAGs as well as loops and conditionals.
We use this at my company to stitch together various scientific software packages each of which can take minutes to 10s of hours to run. Argo supports retrying, resubmitting, suspending, and resuming workflows. It really is a neat project, especially if you are already using kubernetes!
I'm a guy who thinks we should have pushed forward with Assembly, C, and Lisp as the stack for everything. You always have a good tool for the abstraction level you need.
Being able to keep focused and finish one thing is very variable when sitting down to code. In the planning or idea phase I do like to follow and take note of interesting tangents of thought that might be related to the project.
I am curious why a lot of websites use the mobile style "pull out" menu on desktop versions of their sites. Is this for a consistent UX? Something else? Laziness? I personally do not like clicking on something small on the corner to get the menu for which there is plenty of space already on my screen.
Definitely not. It is still "in Diapers" as eduardoejp says in this thread. If you want to learn a lisp that has been around for a while, is proven, and is a fully featured language? Try SBCL (Steel Bank Common Lisp): http://sbcl.org/
Since SBCL is an ANSI compliant lisp, anything that should work for common lisp that isn't SBCL specific (This mostly applies to threading related functions/types if memory serves).
If this doesn't appeal to you after some research, check out one of the popular schemes.
"When I was at CTIA and NCTA, I was an advocate for those interests and I hope I did a very good job as an advocate for them, Today, I have a different client. My client is the American people, and I want to be the best damn advocate they can get." --Tom Wheeler
This seems like a slightly more plausible version of Newt Gingrich promising a moon colony if elected President. And by slightly more I mean something that he would most likely not fulfill once in office. All candidates promise big things to get elected and most of those things never happen.
It makes me really happy to see projects like this for common lisp. I still relatively new to the lisp world but I have fallen in love with the language and development process.
I think it is possible this could speak to a frameworks complexity, flexibility, or lack of documentation. Only one of those things is inherently negative so I would be inclined to appreciate a framework that had a larger presence on google and SO. I speak from my experience with angularJS. I spent time research Angular, Ember, and backbone a while back and went with angular because of its popularity and large presence on SO.
I am only recently a lisp user but honestly, how is the format function far from:
printf("something %s then %d finally %f!", "asd", 1, 1.2)
As mentioned, there is a loop built into format. Since lisp also has a (list) function eg: (list 'a 'b 'c 1) I still don't see an argument beyond familiarity with the C style printf syntax for why format is bad/unreadable.