clog/tutorial
2022-04-10 23:16:34 -04:00
..
13-tutorial Remove run body in almost every case 2022-03-01 00:48:04 -05:00
28-tutorial Updates to tuts and new with-sync-event 2022-02-10 20:44:11 -05:00
01-tutorial.lisp Remove run body in almost every case 2022-03-01 00:48:04 -05:00
02-tutorial.lisp Remove run body in almost every case 2022-03-01 00:48:04 -05:00
03-tutorial.lisp Remove run body in almost every case 2022-03-01 00:48:04 -05:00
04-tutorial.lisp Remove run body in almost every case 2022-03-01 00:48:04 -05:00
05-tutorial.lisp Remove run body in almost every case 2022-03-01 00:48:04 -05:00
06-tutorial.lisp Remove run body in almost every case 2022-03-01 00:48:04 -05:00
07-tutorial.lisp Remove run body in almost every case 2022-03-01 00:48:04 -05:00
08-tutorial.lisp Remove run body in almost every case 2022-03-01 00:48:04 -05:00
09-tutorial.lisp Added with-connection-cache for minimizing wire traffic on large setups of pages. 2022-04-01 17:37:45 -04:00
10-tutorial.lisp Remove run body in almost every case 2022-03-01 00:48:04 -05:00
11-tutorial.lisp Use #' for flets 2022-04-10 20:28:04 -04:00
12-tutorial.lisp Only add search terms to / 2022-04-10 23:16:34 -04:00
13-tutorial.lisp Move demos and tutorials to their own packages 2021-12-29 13:25:43 -05:00
14-tutorial.lisp Remove run body in almost every case 2022-03-01 00:48:04 -05:00
15-tutorial.lisp Remove run body in almost every case 2022-03-01 00:48:04 -05:00
16-tutorial.lisp Remove run body in almost every case 2022-03-01 00:48:04 -05:00
17-tutorial.lisp Remove run body in almost every case 2022-03-01 00:48:04 -05:00
18-tutorial.lisp Remove run body in almost every case 2022-03-01 00:48:04 -05:00
19-tutorial.lisp Remove run body in almost every case 2022-03-01 00:48:04 -05:00
20-tutorial.lisp Remove run body in almost every case 2022-03-01 00:48:04 -05:00
21-tutorial.lisp Remove run body in almost every case 2022-03-01 00:48:04 -05:00
22-tutorial.lisp Remove run body in almost every case 2022-03-01 00:48:04 -05:00
23-tutorial.lisp Remove run body in almost every case 2022-03-01 00:48:04 -05:00
24-tutorial.lisp Remove run body in almost every case 2022-03-01 00:48:04 -05:00
25-tutorial.lisp Remove run body in almost every case 2022-03-01 00:48:04 -05:00
26-tutorial.lisp Remove run body in almost every case 2022-03-01 00:48:04 -05:00
27-tutorial.lisp Remove run body in almost every case 2022-03-01 00:48:04 -05:00
28-tutorial.lisp typo fix 2022-03-01 10:00:46 -05:00
29-tutorial.lisp add jquery to tut 29 2022-02-16 23:04:27 -05:00
README.md add jquery to tut 29 2022-02-16 23:04:27 -05:00

To run a tutorial load clog:

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

Run the tutorial:

CL-USER> (clog:run-tutorial 1)
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
  • 25-tutorial.lisp - A "local" web app using CLOG WEB
  • 26-tutorial.lisp - A web page and form with CLOG WEB
  • 27-tutorial.lisp - Panel Box Layouts
  • 28-tutorial.lisp - CLOG Builder Hello - A minimalist CLOG Builder project
  • 29-tutorial.lisp - Presentations (and jQuery) - linking lisp objects to clog objects