惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
aimingoo的专栏
aimingoo的专栏
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 聂微东
Engineering at Meta
Engineering at Meta
N
Netflix TechBlog - Medium
Blog — PlanetScale
Blog — PlanetScale
大猫的无限游戏
大猫的无限游戏
Vercel News
Vercel News
D
DataBreaches.Net
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
L
LangChain Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
F
Fortinet All Blogs
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks
Recent Announcements
Recent Announcements
Jina AI
Jina AI
G
Google Developers Blog
腾讯CDC
博客园_首页
博客园 - 【当耐特】

Lisp

大佬们有没有推荐 lisp 的资料,最好是 ansi lisp Lem 编辑器, Emacs 的继任者 请问 lisp people, 哪些能力是只有宏能实现,而函数不能实现的? 试了试缩进语法写 Lisp 是什么原因没有让 lisp 进入工业界(公司)的首选语言呢 一款 lisp 写的基于 GPU 渲染的编辑器 SICP 走起 [101]如何在迭代展开过程中输出中间数据? The Humble Book Bundle: be a coder scheme 一个好玩的开源库 lambda calculus 解决了什么问题? 为什么会出现这个理论? 为什么说它很有价值? 哪里可以找到关于 ANSI Common Lisp 中函数名字的由来? Ask Him Anything: Lisp 社区的核心贡献者 - Kartik Agaram 怎么看 Clozure Common Lisp 的 image 的内容? Scheme 与 Church Number 用过 racket 的进,其实只要你觉得有兴趣的都可以过来看看 又一个玩具 Scheme 解释器,使用 Python 编写 我使用 GNU Common Lisp 开始 Lisp 的学习 在读 On Lisp 学Clojure的朋友们快去做4clojure啊! Exercise SICP in Lua 想给身边的人推荐lisp但是发现接受的很少 Lisp 的 Vim 插件有什么推荐? 有人关注ansi common lisp么?可以看一下豆瓣上的这两个贴 SICP一書學完大約要多長時間? 看了《黑客与画家》就觉得Lisp很强大要去学一下的人弱爆了,你们到底看没看明白作者的中心主旨是什么? 求lisp的一些简单demo 有对Lisp感兴趣的不? 自从看了黑客与画家就对这个很神往,除了AutoLisp有没有别的著名的应用呢? 有人学或用Lisp的吗? a haiku
写了一份 Racket/Emacs 的入门配置指南
keyanzhang · 2015-09-07 · via Lisp

这个学期在做 Dan Friedman 先生的课程助教。上课需要用到 Racket ,所以我写了一份简单的 Emacs 配置指南;如果你想使用 racket-mode 又还没用过 Emacs ,这份文档可能是不错的起点。如有疏漏还请不吝 Issue 和 PR :)
https://github.com/keyanzhang/c311-get-started
----
### `init.el` 中包含的内容如下:
- Automatic package installation, including:
- `racket-mode` for all the greatness.
- We rebind the `racket-run` command to `meta-enter` (`option-enter`). This is basically equivalent with DrRacket's `Run` button. If you don't like the keybinding, just modify it in `init.el`.
- `helm` cuz nobody can memorize all the emacs functions.
- `company` for auto completion.
- `rainbow-delimiters` so we won't need to get LASIK.
- `paredit` is included but disabled by default.
- We highly recommend activating paredit for Scheme/Racket/Lisp modes, but we understand that it could take a while to get used to it.
- Please read http://danmidwood.com/content/2014/11/21/animated-paredit.html first; when you are ready, change the line `(setq paredit-enabled nil )` to `(setq paredit-enabled t )` in `init.el` to activate paredit.
- Fixes
- All the temporary files will be placed under `~/.emacs.d/bkup` so you won't see annoying `bla~` files in your working folder again.
- The Mac `option` key becomes `meta`.
- Perserve some OS X default system shortcuts in Emacs. To name a few:
- `Command-a` = "Select All"
- `Command-x` = "Cut", `Command-c` = "Copy", and `Command-v` = "Paste"
- `Command-s` = "Save"
- `Command-z` = "Undo"
- `recentf-mode`: use `C-x C-r` to access a list of recently edited files.
- Emacs grabs the `$PATH` variable from your shell.