Skip to content

Instantly share code, notes, and snippets.

View include-yy's full-sized avatar
😋
打 个🦶 先

YI YUE include-yy

😋
打 个🦶 先
View GitHub Profile
@include-yy
include-yy / README.md
Last active January 13, 2024 10:31
simple hashtable implemented in elisp

yyhash -- yy's hashtable implemented in emcas-lisp

  • yyhash-make &optional size ,创建一个哈希表,可以通过 size 指定初始大小

  • yyhash-p obj ,判断对象是否为哈希表

  • yyhash-count obj ,获取哈希表中键值对个数

  • yyhash-size obj ,获取哈希表大小

@include-yy
include-yy / README.md
Last active February 22, 2022 09:44
th11_reimu_a_extra

东方地灵殿 梦A ex 通关 replay

使用方法:

  • 通过命令 base64 将文本格式转换为 replay 格式文件,即

base64 -d th11_07.rpyb64 > th11_07.rpy

(建议直接下载压缩包,如果直接复制文本内容的话,请注意使用 LF 作为换行符)

@include-yy
include-yy / README.md
Last active February 22, 2022 09:43
Rubik's Cube 2*2

使用 elisp 解魔方

运行方法:

加载好所有函数和变量后

M-: (run)

@include-yy
include-yy / README.md
Last active February 22, 2022 09:43
A stream implemented with elisp

SICP 流计算的一个实现

yystream-nullp 判断 stream 是否为空

yystream-car 取得 car 部分

yystream-cdr 取得 cdr 部分

yystream-cons 构建 stream 序对