clog/tutorial
2021-11-04 19:36:03 -04:00
..
13-tutorial Change author to david@botton.com to correct how things appear on quickdocs.com 2021-11-04 19:36:03 -04:00
01-tutorial.lisp Typo 2021-02-14 09:30:40 -05:00
02-tutorial.lisp Minor updates to comments. 2021-11-02 21:48:31 -04:00
03-tutorial.lisp Minor updates to comments. 2021-11-02 21:48:31 -04:00
04-tutorial.lisp typos 2021-07-11 21:12:42 +05:30
05-tutorial.lisp Minor updates to comments. 2021-11-02 21:48:31 -04:00
06-tutorial.lisp style changes 2021-02-01 12:05:57 -05:00
07-tutorial.lisp Minor updates to comments. 2021-11-02 21:48:31 -04:00
08-tutorial.lisp function to add units 2021-02-10 19:57:43 -05:00
09-tutorial.lisp suggestion against reusing tmp 2021-02-14 18:24:56 -05:00
10-tutorial.lisp Minor updates to comments. 2021-11-02 21:48:31 -04:00
11-tutorial.lisp Minor updates to comments. 2021-11-02 21:48:31 -04:00
12-tutorial.lisp Minor updates to comments. 2021-11-02 21:48:31 -04:00
13-tutorial.lisp Edit the instructions in tutorial-13 for accuracy 2021-02-05 11:23:25 +00:00
14-tutorial.lisp Minor updates to comments. 2021-11-02 21:48:31 -04:00
15-tutorial.lisp Minor updates to comments. 2021-11-02 21:48:31 -04:00
16-tutorial.lisp sbcl detected issues 2021-03-04 13:51:20 -05:00
17-tutorial.lisp Minor updates to comments. 2021-11-02 21:48:31 -04:00
18-tutorial.lisp Minor updates to comments. 2021-11-02 21:48:31 -04:00
19-tutorial.lisp sbcl detected issues 2021-03-04 13:51:20 -05:00
20-tutorial.lisp sbcl detected issues 2021-03-04 13:51:20 -05:00
21-tutorial.lisp sbcl detected issues 2021-03-04 13:51:20 -05:00
22-tutorial.lisp Minor updates to comments. 2021-11-02 21:48:31 -04:00
23-tutorial.lisp sbcl detected issues 2021-03-04 13:51:20 -05:00
24-tutorial.lisp Minor updates to comments. 2021-11-02 21:48:31 -04:00
25-tutorial.lisp fixed regression related to auto-place 2021-03-12 17:27:32 -05:00
26-tutorial.lisp adjustment to comments 2021-03-21 08:27:29 -04:00
README.md Tutorial 26 2021-03-16 23:33:08 -04:00

To run a tutorial load clog:

CL-USER> (ql:quickload :clog)
To load "clog":
  Load 1 ASDF system:
    clog
; Loading "clog"
...........................
(:CLOG)

Load the tutorial:

CL-USER> (load "/Users/dbotton/common-lisp/clog/tutorial/01-tutorial.lisp")
#P"/Users/dbotton/common-lisp/clog/tutorial/01-tutorial.lisp"

Start the tutorial:

CL-USER> (clog-user:start-tutorial)
Hunchentoot server is started.
Listening on 0.0.0.0:8080.
HTTP listening on : 0.0.0.0:8080
HTML Root         : static-files/
Boot file default : /boot.html

Most demos startup a browser, if not use http://127.0.0.1:8080

Tutorial Summary

  • 01-tutorial.lisp - Hello World
  • 02-tutorial.lisp - Closures in CLOG
  • 03-tutorial.lisp - Events fire in parallel
  • 04-tutorial.lisp - The event target, reusing event handlers
  • 05-tutorial.lisp - Using connection-data-item
  • 06-tutorial.lisp - Tasking and events
  • 07-tutorial.lisp - My first CLOG video game (and handling disconnects)
  • 08-tutorial.lisp - Mice Love Containers
  • 09-tutorial.lisp - Tabs, pannels and forms
  • 10-tutorial.lisp - Canvas
  • 11-tutorial.lisp - Attaching to existing HTML
  • 12-tutorial.lisp - Running a website in CLOG (routing)
  • 13-tutorial/ - Flying Solo - A minimalist CLOG project
  • 14-tutorial.lisp - Local (persistent) and Session client side storage
  • 15-tutorial.lisp - Multi-media
  • 16-tutorial.lisp - Bootstrap 4, Loading css files and javascript
  • 17-tutorial.lisp - W3.CSS layout example and Form submit methods
  • 18-tutorial.lisp - Drag and Drop
  • 19-tutorial.lisp - Using JavaScript components
  • 20-tutorial.lisp - New CLOG plugin from JavaScript component
  • 21-tutorial.lisp - New CLOG plugin in Common-Lisp
  • 22-tutorial.lisp - CLOG GUI Menus and Desktop Look and Feel
  • 23-tutorial.lisp - Using semaphores to wait for input
  • 24-tutorial.lisp - CLOG WEB containers (in progress)
  • 25-tutorial.lisp - A "local" web app using CLOG WEB
  • 26-tutorial.lisp - A web page and form with CLOG WEB