摘要:
这个会判断是否启动 Emacs daemon,如果没有启动他会自己启动 alias ec='emacsclient -t -a ""' alias sec='sudo emacsclient -t -a ""' 阅读全文
摘要:
![image](https://img2022.cnblogs.com/blog/2146100/202207/2146100-20220709222608261-1124286324.png) 阅读全文
摘要:
《Rust 烹饪书》https://llever.com/rust-cookbook-zh/intro.zh.html 《Rust高级编程》https://learnku.com/docs/nomicon/2018 《RustApp入门》https://learnku.com/docs/rust-i 阅读全文
摘要:
![image](https://img2022.cnblogs.com/blog/2146100/202206/2146100-20220625051952725-513067688.png) 阅读全文
摘要:
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 阅读全文
摘要:
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 阅读全文
摘要:
关于Vue2.x与Es6一些特性 Vue的定位,就是快速开发。 这些特性,我没有过于熟练,导致写的代码质量不高。 过滤器 <template> <div> {{title | myFilter}} </div> </template> <script> export default { name: 阅读全文
摘要:
高并发 高并发最容易出现的问题就是数据安全能不能得到保障。 你需要保证速度,又需要保证数据安全,那么速度也必然会有所下降。 所以最简单的办法就是提升硬件。或者把Mysql换成MongoDB,加个Redis,等等。 其实最好的办法就是加Redis,因为你的资料的占用时间不会太长,也就没有什么影响,任务 阅读全文
摘要:
SpringBoot高级技术 博客地址: step6 SpringBoot高级技巧 异步线程池 书上讲的是什么像异步操作那样,然后不需要等待。 问题是,不需要等待,但数据在生成的时候的时间并不能省。 我们计时不是从开始到得到数据时候吗? 我觉得是多任务的时候可以用异步线程池,如:统计和拿到各大模块的 阅读全文
摘要:
SpringMVC 参考:《深入浅出 SpringBoot 2.X》 虽然说的是SpringBoot,但把SpringMVC将的很好,正是SpringMVC应用到SpringBoot中非常典型的应用方式。 多数SpringBootWeb的项目,都是用MVC,在SpringBoot的应用中,MVC变得 阅读全文