Sacramento Linux User Group is a computer users serving Sacramento and surrounding areas
including the Republic of Davis.
We strive to promote Linux, Free Software, Open Source, open standards, and to generally have a good time by hosting social events that educate, allow members to share ideas and knowledge and to build friendships.
We hold regular meetings on the third Tuesday with usually a social gathering.
Meetings and membership are free and open to the public.
Please sign up for the Lug Nuts mailing list
Social Meetup at Kupros. See you there. It appears that many of us have been using
Thinkpads running GNU/Linux. Bring which gadget you have and hang out and socialize.
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.