|
----- |
|
--- 92822237 |
|
>Lisp is a family of programming languages with a long history and a distinctive parenthesized prefix notation. There are many dialects of Lisp, including Common Lisp, Scheme, Clojure and Elisp. |
|
|
|
>Emacs is an extensible, customizable, self-documenting free/libre text editor and computing environment, with a Lisp interpreter at its core. |
|
|
|
>Emacs Resources |
|
https://gnu.org/s/emacs/ (Website) |
|
https://github.com/emacs-tw/awesome-emacs/ (Awesome Emacs) |
|
|
|
>Learning Emacs |
|
C-h t (Interactive Tutorial) |
|
https://youtube.com/playlist?list=PLX2044Ew-UVVv31a0-Qn3dA6Sd_-NyA1n (Beginner-friendly Video Series) |
|
https://youtube.com/playlist?list=PLEoMzSkcN8oNmd98m_6FoaJseUsa6QGm2 (Emacs from Scratch) |
|
|
|
>Emacs Distros |
|
https://github.com/syl20bnr/spacemacs/ (Spacemacs) |
|
https://github.com/doomemacs/doomemacs/ (Doom Emacs) |
|
https://github.com/snackon/witchmacs/ (Witchmacs) |
|
https://github.com/pprobst/yukimacs/ (Yukimacs) |
|
|
|
>CL |
|
https://stevelosh.com/blog/2018/08/a-road-to-common-lisp/ (A Road to CL) |
|
https://gigamonkeys.com/book/ (Practical CL) |
|
https://cs.cmu.edu/~dst/LispBook/ (CL: A Gentle Introduction) |
|
|
|
>Scheme |
|
https://scheme.com/tspl4/ (TSPL4) |
|
https://eecs.berkeley.edu/~bh/ss-toc2.html (Simply Scheme) |
|
https://archive.org/details/Schemer/ (Books) |
|
|
|
>Clojure |
|
https://clojure.org (Website) |
|
https://clojuredocs.org (Docs & Examples) |
|
https://mooc.fi/courses/2014/clojure/ (Functional programming with Clojure) |
|
|
|
>Elisp |
|
Emacs docs: C-h f [function] C-h v [variable] C-h k [keybinding] C-h m [mode] M-x ielm [REPL] |
|
https://gnu.org/s/emacs/manual/eintr.html (Aimed at beginners in programming) |
|
https://gnu.org/s/emacs/manual/elisp.html (Elisp Reference Manual) |
|
|
|
>Guix |
|
https://systemcrafters.net/craft-your-system-with-guix/ |
|
|
|
>SICP |
|
https://web.mit.edu/6.001/6.037/sicp.pdf |
|
|
|
>LoL |
|
https://files.catbox.moe/77rqtw.pdf |
|
|
|
>More Lisp Resources |
|
https://pastebin.com/tWQmkX0C |
|
|
|
>Changing Emacs Default Keybindings |
|
https://pastebin.com/2hg4g3C6 |
|
|
|
(def alt-names [/emg/ /emac/ /lol/ /let/ /flet/]) |
|
(swap! prev-thread >>92653036 β) |
|
--- 92822516 |
|
SHUT UP AND HACK! |
|
https://ftp.openbsd.org/pub/OpenBSD/songs/songsh.ogg |
|
--- 92822550 |
|
>>92821810 β |
|
Lain |
|
--- 92822897 |
|
why why why why don't I eval you a lot, forever? /lol/ + /emac/? |
|
https://textboard.org/static/img/abelson-stole-the-precious-course-mit-version.webm |
|
--- 92823093 |
|
Scheme! |
|
--- 92824189 |
|
Clojure 1.12.0-alpha2 release announcement |
|
https://clojure.org/news/2023/04/14/clojure-1-12-alpha2 |
|
--- 92824206 |
|
>>92822237 (OP) |
|
You know it should be reset! right? |
|
--- 92824977 |
|
How do you manage your packages? I like straight.el, but it's too aggressive about pulling dependencies (like bleeding-edge org for any org package). |
|
--- 92825179 |
|
(kill-emacs) |
|
--- 92825847 |
|
Fun fact: EVAL in CL evaluates the given form in the null lexical environment regardless of where it is called. Which means that this: |
|
(defun test-eval (expr) |
|
(let ((y 3)) |
|
(eval expr))) |
|
|
|
(test-eval 'y) |
|
|
|
|
|
Will cause a runtime error since Y is not bound (of course, assuming that there was no dynamic variable named Y defined previously). |
|
|
|
However, if you include the LET bindings in the form itself: |
|
(defun test-eval (expr) |
|
(eval `(let ((y 3)) ,expr))) |
|
|
|
Then (test-eval 'y) will return 3, as you'd expect. Note how backquotes, despite being most often used for macros, can also serve many other purposes. |
|
--- 92826017 |
|
>>92825179 |
|
(makunbound 'christian) |
|
--- 92827544 |
|
>>92821103 β |
|
wtf is a lisp horse |
|
--- 92827855 |
|
"have sex" |
|
https://github.com/zakki/emacs/blob/master/etc/sex.6 |
|
--- 92828320 |
|
>>92822237 (OP) |
|
How do you guys feel about wolfram? It seems to be the preferred langauge used by mathmeticians and physicists and it's very lispy. How would it fare if it wasn't propietary? |
|
--- 92828555 |
|
>>92818228 β |
|
that's your response and I'm the one chugging hfcs? you didn't even refute my point, retard. holy fuck. |
|
--- 92828985 |
|
is use-package useful for a beginner? i kinda want to use it to make things easy but i think it might obscure some elisp that i would otherwise be forced to learn. what do you guys think? |
|
--- 92829072 |
|
>>92828985 |
|
use-package hides to much detail from you. Just use with-eval-after-load, add-hook, define-key, and a few more "primitive" macros/functions first. |
|
--- 92829159 |
|
>>92829072 |
|
yeah thanks i will do that. what do you think about wrapping init.el into an org file? is that actually a good practice or just a youtube meme? |
|
--- 92829183 |
|
>>92829159 |
|
unless you're planning to write a detailed description of your configuration like protesilaos once did, you're better off without "literate programming" |
|
--- 92829404 |
|
I am riding the LISP horse. |
|
--- 92829584 |
|
save-lisp-and-die |
|
--- 92829615 |
|
>>92827544 |
|
She is a horse for maids. |
|
--- 92829794 |
|
>>92829404 |
|
>>92829615 |
|
>forcing the reddit horse |
|
kys |
|
>>>/trash/ |
|
--- 92830613 |
|
>>92828320 |
|
WolframLang is essentially a Lisp. |
|
http://xahlee.info/M/lisp_vs_WolframLang.html |
|
--- 92830822 |
|
what's the best xah article |
|
--- 92830875 |
|
Once again I am sleep deprived to the point of having trouble holding coherent thoughts |
|
Why do I do this to myself fucking hell |
|
|