上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 30 下一页
摘要: New in version 3.5. Enable/Disable output of compile commands during generation. This option is implemented only by Makefile Generators and the Ninja. 阅读全文
posted @ 2021-11-09 18:03 fndefbwefsowpvqfx 阅读(1537) 评论(0) 推荐(0)
摘要: performing an insertion if such key does not already exist. #include <iostream> #include <map> int main() { std::map<char, int> letter_counts; letter_ 阅读全文
posted @ 2021-10-26 15:14 fndefbwefsowpvqfx 阅读(55) 评论(0) 推荐(0)
摘要: 查看正在运行的插件,有的插件有问题,导致vscode 各种异常 例如 Running 'File Rename' participants... 这次是由markdown table插件引起的。。。 阅读全文
posted @ 2021-09-07 18:42 fndefbwefsowpvqfx 阅读(206) 评论(0) 推荐(0)
摘要: 使用 nvm 管理不同版本的 node 与 npm https://www.runoob.com/w3cnote/nvm-manager-node-versions.html 阅读全文
posted @ 2021-07-26 10:30 fndefbwefsowpvqfx 阅读(50) 评论(0) 推荐(0)
摘要: 编译器会给类的非静态成员函数添加一个this参数。 int square(int num) { return num * num; } class Hehe{ public: int square(int num) { return num * num; } }; int main() { int 阅读全文
posted @ 2021-06-28 12:25 fndefbwefsowpvqfx 阅读(595) 评论(0) 推荐(0)
摘要: class Base{ public: Base() { } virtual ~Base(); void foo() { wrong(); } virtual void wrong() = 0; }; void Base::wrong(){} Base::~Base(){ foo(); } clas 阅读全文
posted @ 2021-06-23 19:35 fndefbwefsowpvqfx 阅读(79) 评论(0) 推荐(0)
摘要: #include <iostream> class Base { public: Base() { foo(); } void foo() { wrong(); } virtual void wrong() = 0; }; void Base::wrong() { std::cout << "bas 阅读全文
posted @ 2021-06-23 10:09 fndefbwefsowpvqfx 阅读(122) 评论(0) 推荐(0)
摘要: https://kubernetes.io/docs/concepts/cluster-administration/networking/ Cluster Networking Networking is a central part of Kubernetes, but it can be ch 阅读全文
posted @ 2021-04-28 12:43 fndefbwefsowpvqfx 阅读(109) 评论(0) 推荐(0)
摘要: index PostgreSQL uses Lehman-Yao's high concurrency B-tree for standard indexes (https://www.csd.uoc.gr/~hy460/pdf/p650-lehman.pdf). Along with some P 阅读全文
posted @ 2021-04-27 14:57 fndefbwefsowpvqfx 阅读(126) 评论(0) 推荐(0)
摘要: https://www.digitalocean.com/community/tutorials/understanding-the-gopath Introduction This article will walk you through understanding what the GOPAT 阅读全文
posted @ 2021-04-21 15:44 fndefbwefsowpvqfx 阅读(328) 评论(0) 推荐(0)
摘要: ![](https://img2020.cnblogs.com/blog/859364/202104/859364-20210421121739367-1060895752.png) 阅读全文
posted @ 2021-04-21 12:18 fndefbwefsowpvqfx 阅读(36) 评论(0) 推荐(0)
摘要: 1 class A { virtual void fun2(); virtual void fun3() {}; }; int main() { new A; return 0; } //LNK2001: unresolved external symbol "private: virtual vo 阅读全文
posted @ 2021-03-30 22:06 fndefbwefsowpvqfx 阅读(103) 评论(0) 推荐(0)
摘要: https://pygments.org/ https://github.com/pygments/pygments style name pygments\styles\__init__.py #: Maps style names to 'submodule::classname'. STYLE 阅读全文
posted @ 2021-03-29 10:21 fndefbwefsowpvqfx 阅读(148) 评论(0) 推荐(0)
摘要: 1 从目标上说MinGW 是让Windows 用户可以用上GNU工具,比如GCC。 Cygwin 提供完整的类Unix 环境,Windows 用户不仅可以使用GNU 工具,理论上Linux 上的程序只要用Cygwin 重新编译,就可以在Windows 上运行。 2 从能力上说如果程序只用到C/C++ 阅读全文
posted @ 2021-03-27 10:27 fndefbwefsowpvqfx 阅读(76) 评论(0) 推荐(0)
摘要: sudo code --force --install-extension 13xforever.language-x86-64-assembly code --list-extensions 13xforever.language-x86-64-assembly 1yib.nodejs-bundl 阅读全文
posted @ 2021-03-24 22:26 fndefbwefsowpvqfx 阅读(152) 评论(0) 推荐(0)
摘要: leader https://vi.stackexchange.com/questions/836/what-is-leader Vim is full of various commands, which are assigned to almost all keys on the keyboar 阅读全文
posted @ 2021-03-13 20:57 fndefbwefsowpvqfx 阅读(86) 评论(0) 推荐(0)
摘要: -- Selecting Windows SDK version 10.0.18362.0 to target Windows 10.0.18363. -- The C compiler identification is MSVC 19.28.29334.0 -- The CXX compiler 阅读全文
posted @ 2021-03-13 20:46 fndefbwefsowpvqfx 阅读(199) 评论(0) 推荐(0)
摘要: 为什么不用cywin,msys2? 因为windows下,编译会自动选择m$的vs编译器,可能导致编译的时候用的是windows上的python,运行的时候用的cywin或msys2的python。 最终就是运行不了。 节约时间。就不折腾了。 基本 win10 64位 python3 64位 vim 阅读全文
posted @ 2021-03-13 19:14 fndefbwefsowpvqfx 阅读(181) 评论(0) 推荐(0)
摘要: # sarasa font http://mirrors.tuna.tsinghua.edu.cn/github-release/be5invis/Sarasa-Gothic/LatestRelease/ ![](https://img2023.cnblogs.com/blog/859364/202 阅读全文
posted @ 2021-03-13 16:55 fndefbwefsowpvqfx 阅读(159) 评论(0) 推荐(0)
摘要: fonttools pip install fonttools The character code points for a ttf/otf font are stored in the CMAP table. You can use ttx to generate a XML represent 阅读全文
posted @ 2021-03-13 16:51 fndefbwefsowpvqfx 阅读(137) 评论(0) 推荐(0)
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 30 下一页