mirror of
https://github.com/rabbibotton/clog.git
synced 2025-12-06 10:40:45 -08:00
Add video playlists
This commit is contained in:
parent
3bafcfa56a
commit
901c3a129c
2 changed files with 11 additions and 10 deletions
11
LEARN.md
vendored
11
LEARN.md
vendored
|
|
@ -37,6 +37,12 @@ already being productive means having a bang up time doin' it all.
|
||||||
- [14 - Kindergarten - Concurrent and Parallel Programing](https://docs.google.com/document/d/10MGPC7j4lpGrMlQS4xtQTEGrvpBecgDUnqu1OrjSVxk)
|
- [14 - Kindergarten - Concurrent and Parallel Programing](https://docs.google.com/document/d/10MGPC7j4lpGrMlQS4xtQTEGrvpBecgDUnqu1OrjSVxk)
|
||||||
- [15 - Pulling it All Togeher With A Real GUI App - clos-encounters game](https://github.com/rabbibotton/clos-encounters)
|
- [15 - Pulling it All Togeher With A Real GUI App - clos-encounters game](https://github.com/rabbibotton/clos-encounters)
|
||||||
|
|
||||||
|
CLOG Videos
|
||||||
|
|
||||||
|
- [CLOG "Plunger" Video series use CLOG Builder to create a pro-app](https://www.youtube.com/playlist?list=PLSUeblYuDUiOucAaqkrVlmOG4p-q7lFU6)
|
||||||
|
- [CLOG Extra - Learn tips on using CLOG](https://www.youtube.com/playlist?list=PLSUeblYuDUiNWHCf8xbHNlxPFQ5clF0YG)
|
||||||
|
- [Common Lisp The Language 2ed Book Course](https://www.youtube.com/playlist?list=PLSUeblYuDUiNqagWU4NF4w5zsjs6Xo7H9)
|
||||||
|
|
||||||
Other Tutorials and General Material:
|
Other Tutorials and General Material:
|
||||||
- [lisp-lang](https://lisp-lang.org/)
|
- [lisp-lang](https://lisp-lang.org/)
|
||||||
- [Awesome-CL libraries](https://github.com/CodyReichert/awesome-cl)
|
- [Awesome-CL libraries](https://github.com/CodyReichert/awesome-cl)
|
||||||
|
|
@ -55,11 +61,6 @@ Full Free Books:
|
||||||
|
|
||||||
CLOG Builder Tutorials (Reddit links)
|
CLOG Builder Tutorials (Reddit links)
|
||||||
|
|
||||||
View the CLOG "Plunger" Video series (more weekly) and learn by example
|
|
||||||
how to use the CLOG Builder to create a pro-app:
|
|
||||||
|
|
||||||
https://www.youtube.com/playlist?list=PLSUeblYuDUiOucAaqkrVlmOG4p-q7lFU6
|
|
||||||
|
|
||||||
- [01 - Chat App ](https://www.reddit.com/r/lisp/comments/sj1tv5/clog_builder_tutorial_1_a_chat_app_from_start_to/)
|
- [01 - Chat App ](https://www.reddit.com/r/lisp/comments/sj1tv5/clog_builder_tutorial_1_a_chat_app_from_start_to/)
|
||||||
- [02 - Building a Web Page ](https://www.reddit.com/r/lisp/comments/sn8j77/clog_builder_tutorial_2_building_a_web_page/)
|
- [02 - Building a Web Page ](https://www.reddit.com/r/lisp/comments/sn8j77/clog_builder_tutorial_2_building_a_web_page/)
|
||||||
- [03 - Importing HTML in to Builder ](https://www.reddit.com/r/lisp/comments/snvv0w/clog_builder_tutorial_3_importing_html_adding/)
|
- [03 - Importing HTML in to Builder ](https://www.reddit.com/r/lisp/comments/snvv0w/clog_builder_tutorial_3_importing_html_adding/)
|
||||||
|
|
|
||||||
10
README.md
vendored
10
README.md
vendored
|
|
@ -6,6 +6,8 @@
|
||||||
|
|
||||||
[Learn to program Common Lisp and CLOG here - LEARN.md](LEARN.md)
|
[Learn to program Common Lisp and CLOG here - LEARN.md](LEARN.md)
|
||||||
|
|
||||||
|
[Video of CLOG Builder in action](https://youtu.be/CgTJMxsz3EY)
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||

|

|
||||||
|
|
@ -56,10 +58,8 @@ CLOG is developed with ECL and SBCL, it is tested fairly regulary on
|
||||||
and the ecl Android/iPhone branch for example doesn't use).
|
and the ecl Android/iPhone branch for example doesn't use).
|
||||||
|
|
||||||
CLOG is in QuickLisp (ql:quickload :clog), however I recommend
|
CLOG is in QuickLisp (ql:quickload :clog), however I recommend
|
||||||
installing Ultralisp into your QuickLisp as you likely want the
|
cloning CLOG into ~/common-lisp directory [or other quicklisp/asdf
|
||||||
most up to date version or you can also clone the github repo into
|
findable directory ``(push #P"path/to/dir/of/projects" ql:*local-project-directories*)`` ]:
|
||||||
~/common-lisp directory [or other quicklisp/asdf findable directory
|
|
||||||
``(push #P"path/to/dir/of/projects" ql:*local-project-directories*)`` ]:
|
|
||||||
|
|
||||||
```
|
```
|
||||||
For git (you need the ace editor plug in for the builder too from git):
|
For git (you need the ace editor plug in for the builder too from git):
|
||||||
|
|
@ -74,7 +74,7 @@ To update in the future go to the created directories and type:
|
||||||
git pull
|
git pull
|
||||||
|
|
||||||
|
|
||||||
To add UltraLisp to QuickLisp (_RECOMMENDED_):
|
To add UltraLisp to QuickLisp (updates quicker than the standard QuickLisp):
|
||||||
|
|
||||||
To add UtraLisp to quicklisp install:
|
To add UtraLisp to quicklisp install:
|
||||||
(ql-dist:install-dist "http://dist.ultralisp.org/"
|
(ql-dist:install-dist "http://dist.ultralisp.org/"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue