摘要: 需求类型分类 功能需求 作者端需求 作者可以编排图书的目录结构、章节内容,章节内容中包括图片、视频、文字和集成第三方软件边学边练,能定义常见练习题比如问答题、选择题 作者编辑时可以预览读者端的效果,手机效果、Web和桌面软件效果,作者可以限制只在某一种或几种终端上使用 作者可以设定图书阅读顺序,比如 阅读全文
posted @ 2020-04-23 21:17 pubuliuyun 阅读(191) 评论(0) 推荐(0) 编辑
摘要: 1. 安装opengl开发环境 brew install glew https://github.com/glfw/glfw.git mkdir build cd build cmake .. make make install 2. 安装cmake插件 3. 测试代码 test.cpp #defi 阅读全文
posted @ 2020-04-01 19:39 pubuliuyun 阅读(2284) 评论(0) 推荐(0) 编辑
摘要: 首先输入 gcc memu.c linktable.c -o memu -g 进行编译得到memu,然后 gdb memu, 进入gdb调试命令行,输入 layout next 命令,再打断点 break main,再用 run 命令运行menu,得到如下调试窗口 使用n、s、print pNode 阅读全文
posted @ 2020-03-18 23:07 pubuliuyun 阅读(233) 评论(0) 推荐(0) 编辑
摘要: vim 使用: Navigating: %: Jump to matching bracket>: Indent<: de-indent=: Properly Indent=+G: Format code~: Change case of character>+%: Indent block Nav 阅读全文
posted @ 2020-03-08 17:47 pubuliuyun 阅读(288) 评论(0) 推荐(0) 编辑