We will be at Bel Air Market at Arden. Please see the locations link to
see the location.
Have you ever wanted to learn Lisp?
Clojure is a modern Lisp running on the Java Virtual Machine to build Web servers.
In this talk, we’ll learn a little bit about Lisp and its history and variants, understand how to operate Lisp systems, install Clojure, start a Compojure project, and build a simple Lisp-based web server in Compojure that will output a factorial function.
We will be at Kupros for this meeting. This will be a social hangout. Bring whatever gadget or your
favorite project or questions (maybe we can answer), and socialize.
We will be at Kupros for this meeting. This will be a social hangout. Bring whatever gadget or your
favorite project or questions (maybe we can answer), and socialize.
We will return to Kupros for this meeting. This will be a social hangout. Bring whatever gadget or your
favorite project or questions (maybe we can answer), and socialize.
Last session, we implemented various CRUD operations. We will continue the process.
We will continue with CRUD (Create, Read, Update, Delete) operations, yet perhaps add the security
components to the REST layer and other aspects!
create database cardb character set utf8;
GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER,
CREATE TEMPORARY TABLES ON cardb.*
TO 'brian'@'localhost' IDENTIFIED BY 'Rockit2';
exportNVM_DIR="$HOME/.nvm"[-s"$NVM_DIR/nvm.sh"]&&\."$NVM_DIR/nvm.sh"# This loads nvm[-s"$NVM_DIR/bash_completion"]&&\."$NVM_DIR/bash_completion"# This loads nvm bash_completion
Start database
sudo service mariadb start
Check that user can connect to MariaDB
mysql -u brian -p cardb
Import Chapter 5 example code and modify SecurityConfig.java per book [Hinkula,238]. We will not have security settings for this demonstration.