上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 16 下一页
摘要: 这个会判断是否启动 Emacs daemon,如果没有启动他会自己启动 alias ec='emacsclient -t -a ""' alias sec='sudo emacsclient -t -a ""' 阅读全文
posted @ 2022-07-10 09:10 皮豪 阅读(64) 评论(0) 推荐(0) 编辑
摘要: ![image](https://img2022.cnblogs.com/blog/2146100/202207/2146100-20220709222608261-1124286324.png) 阅读全文
posted @ 2022-07-09 22:26 皮豪 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 《Rust 烹饪书》https://llever.com/rust-cookbook-zh/intro.zh.html 《Rust高级编程》https://learnku.com/docs/nomicon/2018 《RustApp入门》https://learnku.com/docs/rust-i 阅读全文
posted @ 2022-06-28 20:49 皮豪 阅读(60) 评论(0) 推荐(0) 编辑
摘要: ![image](https://img2022.cnblogs.com/blog/2146100/202206/2146100-20220625051952725-513067688.png) 阅读全文
posted @ 2022-06-25 05:19 皮豪 阅读(53) 评论(0) 推荐(0) 编辑
摘要: vi /etc/apt/sources.list deb http://mirrors.ustc.edu.cn/debian/ bullseye main non-free contrib deb-src http://mirrors.ustc.edu.cn/debian/ bullseye mai 阅读全文
posted @ 2022-06-12 11:28 皮豪 阅读(4206) 评论(0) 推荐(0) 编辑
摘要: link: Chinese Pinyin Package for typing Chinese sudo pkg install -y zh-CJKUnifonts sudo pkg install -y fcitx5 fcitx5-configtool fcitx5-gtk zh-fcitx5-r 阅读全文
posted @ 2022-05-30 09:03 皮豪 阅读(814) 评论(0) 推荐(0) 编辑
摘要: 关于Vue2.x与Es6一些特性 Vue的定位,就是快速开发。 这些特性,我没有过于熟练,导致写的代码质量不高。 过滤器 <template> <div> {{title | myFilter}} </div> </template> <script> export default { name: 阅读全文
posted @ 2022-05-16 18:49 皮豪 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 高并发 高并发最容易出现的问题就是数据安全能不能得到保障。 你需要保证速度,又需要保证数据安全,那么速度也必然会有所下降。 所以最简单的办法就是提升硬件。或者把Mysql换成MongoDB,加个Redis,等等。 其实最好的办法就是加Redis,因为你的资料的占用时间不会太长,也就没有什么影响,任务 阅读全文
posted @ 2022-05-11 20:30 皮豪 阅读(505) 评论(0) 推荐(0) 编辑
摘要: SpringBoot高级技术 博客地址: step6 SpringBoot高级技巧 异步线程池 书上讲的是什么像异步操作那样,然后不需要等待。 问题是,不需要等待,但数据在生成的时候的时间并不能省。 我们计时不是从开始到得到数据时候吗? 我觉得是多任务的时候可以用异步线程池,如:统计和拿到各大模块的 阅读全文
posted @ 2022-05-11 15:31 皮豪 阅读(58) 评论(1) 推荐(0) 编辑
摘要: SpringMVC 参考:《深入浅出 SpringBoot 2.X》 虽然说的是SpringBoot,但把SpringMVC将的很好,正是SpringMVC应用到SpringBoot中非常典型的应用方式。 多数SpringBootWeb的项目,都是用MVC,在SpringBoot的应用中,MVC变得 阅读全文
posted @ 2022-05-10 15:59 皮豪 阅读(36) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 16 下一页