摘要:
#include<iostream> #include<climits> #include<map> using namespace std; int main() { typedef string t_s; typedef long long int t_i; typedef map<t_s, t 阅读全文
摘要:
appimage自身支持直接压缩和解压 --appimage-extract extracts the contents from the embedded filesystem image, then exits. This is useful if you are using an AppIma 阅读全文
摘要:
问题:调用动态库报 cannot open shared object file: No such file or directory 解决: ldd xxx查看依赖缺失 修改共享库配置文件 /etc/ld.so.conf 2.1 添加 include /etc/ld.so.conf.d/*.con 阅读全文
摘要:
# Code Portability and Limitations 代码的可移植性和限制 Emscripten can be used to compile almost any portable C/C++ code to JavaScript. The topics in this secti 阅读全文
摘要:
# API Limitations API限制 The browser environment and JavaScript are different from the native environments that C and C++ typically run in. These diffe 阅读全文
摘要:
# Function Pointer Issues 函数指针问题 There are two main issues with function pointers: 函数指针存在两个主要问题: 1. Function pointer casts can cause function pointer 阅读全文
摘要:
# Portability Guidelines 可移植性准则 Emscripten can be used to compile almost any portable C++/C code to JavaScript. Emscripten可用于将几乎所有可移植的C++/C代码编译为JavaSc 阅读全文
摘要:
来源:https://web.archive.org/web/20120229023146/http://m.alistapart.com/articles/readspec/ September 28, 2001 How to Read W3C Specs by J. David Eisenber 阅读全文
摘要:
1. 查看所有镜像 ```sh $ docker images REPOSITORY TAG IMAGE ID CREATED SIZE local v1.0 f9a2256f9bd5 4 weeks ago 1.11GB hello-world latest bf756fb1ae65 4 mont 阅读全文