121 106 97 29 25 17 10 9 8 8 7 7 5 5 4 4 4 4 3 3 3 3 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 学习 中的文章

elisp数据结构hash | elisp类型

hash在高级语言中有普遍的实现,elisp也不例外。 hash创建 hash读取 hash写入 hash遍历 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 ;; 创建 (setq xx(make-hash-table :test 'equal))……

阅读全文

字符串包含 | Java基础

字符串之间用分号分割,如果比较时未引入分隔符会引起bug 场景如下: 1 2 3 4 5 6 7 boolean pcLoginByCode = false; //是否包含 String vcodeLoginDomain = xx; //读取数据库里的一个配置,如 aa;bb;cc; if (StringUtils.isValid(vcodeLoginDomain) && StringUtils.isValid(domain.getName()) && vcodeLoginDomain.contains(domain.getName())) {//比……

阅读全文

letcode基础题

題目描述: 不清楚的第一个人的解法: 于是使用到智能AI解答,发现这个解法很简洁……

阅读全文

学习方法

费曼学习法 主题 教别人 回顾 简化 康奈尔笔记法 record reduce recite reflect review 记忆曲线 记忆由快到慢 番茄钟工作法 25分钟工作 5分钟那休息 提问学习法 是什么 为什么 怎么办 模仿学习法 观察 复现……

阅读全文

elisp结构Association List | elisp类型

Association List (aka alist) is a value type in Emacs Lisp. Association List is a List , where each element is a Cons Pair , like this (cons key val) In each cons pair, the key and value can be any value type. Items in Association List can have duplicate keys, and order is maintained. 创建 1 2 3 4 5 6 7 8 9 10 11 Tip: dot notation for cons when creating a association list, For example……

阅读全文

把github当作图床

思路如下: 在github创建一个仓库 申请github的personal仓库 把图片转换成base64 调用gitApi3 rest接口 参考博客: python 通过 github api 上传图片,实……

阅读全文