09 2021 档案
摘要:python3 基本用法 1. Python3的格式化输出 使用str.format()方法。 for x in range(1, 11): print('{0:2d} {1:3d} {2:4d}'.format(x, x*x, x*x*x)) print("\n {:-^120}".format(
阅读全文
摘要:KVM, Docker, K8S到底是什么 TBD https://www.cnblogs.com/misswangxing/p/10669444.html https://1o24bbs.com/t/topic/9279 https://medium.com/@ivzhh/%E7%9F%A5%E4
阅读全文
摘要:编译器以及编译过程简介 TBD https://tech.meituan.com/2015/01/22/linker.html https://www.jianshu.com/p/57da8e359115 https://www.cnblogs.com/mickole/articles/365911
阅读全文
摘要:pytest -- pytest-timeouts 简介 pytest-timeouts 简介
阅读全文
摘要:TensorRT 介绍 https://arleyzhang.github.io/articles/7f4b25ce/ https://developer.nvidia.com/blog/speeding-up-deep-learning-inference-using-tensorrt/ http
阅读全文
摘要:私有云搭建 Discourse 博客系统 1. 前期准备 一台配置合适的服务器(笔记本也可), 装有Ubuntu1804。机器配置局域网 IP: 192.168.10.XXX, 机器的ip 对应配置域名:discourse.test.com hostname ip地址 cpu 内存 磁盘 系统版本
阅读全文
摘要:简述Clang 与LLVM 以及其关系 随着 Android P 的逐步应用,越来越多的客户要求编译库时用 libc++ 来代替 libstdc++。libc++ 和 libstdc++ 这两个库有关系呢?它们两个都是 C++ 标准库,libc++ 是针对 Clang 编译器特别重写的 C++ 标准
阅读全文