一些重要的技术文摘LINK

1)关于Merklee树的说明和应用:
http://www.cnblogs.com/fengzhiwu/p/5524324.html

  1. 关于mutable 关键字的说明:
    在lamda表达式中引入匿名函数,而mutable 使得引入参数可以改变,另外mutable可以改变const 量。
    https://liam.page/2017/05/25/the-mutable-keyword-in-Cxx/
  1. constexpr是C++11引入的新的关键字,在编译的时候生成常量,而在这之前可以是非常量。(const是用于初始值即为常量的常量)
    https://blog.csdn.net/YhL_Leo/article/details/50864210
    https://blog.csdn.net/yangyong0717/article/details/73694553

4)auto关键字,是用于自动推导使用函数,库的返回类型,尤其对于使用模板的情况下,对于返回值的类型确定比较困难。
https://blog.csdn.net/hushujian/article/details/43196589

5)关于optional 关键字:
optional利用使用“容器”的方式为函数返回无效值提供容纳方式。
make_optional 则是自动推导optional
https://blog.csdn.net/skdkjzz/article/details/46520131

  1. git 分支的下载方式, 最简单的方法是
    6.1) git branch -a 查看所有的分支
    6.2) git checkout
    就可以切换了,无需单个下载各个branch
    https://gaohaoyang.github.io/2016/07/07/git-clone-not-master-branch/

7)关于systemctl, busctl, init 等工具的由来和作用

http://www.ruanyifeng.com/blog/2016/03/systemd-tutorial-commands.html

https://blog.csdn.net/lineuman/article/details/52578399

附:
1)在CSDN上一些有用的网站汇总:
https://blog.csdn.net/roslei/article/details/73607299
https://github.com/tuteng/Best-websites-a-programmer-should-visit-zh#when-you-get-stuck

  1. wordpress templates and resources:
    http://www.tyler.com
    pixabay.com
    logomakr.com

9)Bootstrap templates free download: (online shop)
https://colorlib.com/wp/free-bootstrap-ecommerce-website-templates/

  1. javascript reference:
    https://developers.google.com/web/tools/chrome-devtools/
    http://crockford.com/javascript/
    https://addyosmani.com/resources/essentialjsdesignpatterns/book/

functions reference:
https://www.w3schools.com/

Github books:
https://github.com/justjavac/free-programming-books-zh_CN

你可能感兴趣的:(一些重要的技术文摘LINK)