摘要:
alternative to compare things 阅读全文
摘要:
https://man.cx https://manpages.debian.org/ https://www.linux.org/docs/ http://man7.org/linux/man-pages/index.html 阅读全文
摘要:
Java开源分类导航 Web开发 | Web开发框架 | JSP标签库 | AJAX框架 服务器 | 应用服务器 | Web服务器 开发工具 | Eclipse插件 | 集成开发工具 | 项目管理 | Web测试工具 | UML建模 | 源码控制 | 团队协作 | 测试工具 | 项目构建 | 打包工 阅读全文
摘要:
https://jcp.org/en/jsr/stage?listBy=final https://docs.oracle.com/en/java/javase/ 阅读全文
摘要:
C++ Java 阅读全文
摘要:
https://math.stackexchange.com/questions/1307287/random-uniformly-distributed-points-in-a-circle http://mathworld.wolfram.com/topics/ComputationalGeom 阅读全文
摘要:
#include using namespace std; class a{ }aObj; class b{ char x; }bObj; class c{ virtual void foo(){}; char x; }cObj; class d{ void foo(){}; char x; }dObj; class e{ char a;... 阅读全文
摘要:
////////////////// //// debug模式启动浏览器 ////////////////// 以debug模式启动浏览器,才可以attach成功,启动前需要退出chrome Windows Right click the Chrome shortcut, and select pr 阅读全文
摘要:
Does clipping in openGL pipeline happen before or after primitive assembly? https://stackoverflow.com/questions/49860946/does-clipping-in-opengl-pipel 阅读全文
摘要:
\documentclass[12pt]{book} \usepackage{xeCJK} \usepackage{fontspec} \newfontfamily\sourcehansans{Source Han Sans CN} \newfontfamily\sourcehanserif{Source Han Serif CN} \setCJKmainfont{Source Han Seri... 阅读全文
摘要:
window mac 字体安装 打开 字体册 拖入文件批量安装 字体名字在窗口中可见 阅读全文
摘要:
//------------------------------------------------- //查找 //------------------------------------------------- find next ctrl+= find previous ctrl+- find ctrl+f find word... 阅读全文
摘要:
https://code.visualstudio.com/updates/v1_20#_global-snippets Global snippets VS Code now supports global snippets meaning snippets that aren't scoped 阅读全文
摘要:
C TypeBitdepthDescriptionCommon Enum GLboolean 1+ A boolean value, either GL_TRUE or GL_FALSE GLbyte 8 Signed, 2's complement binary integer GL_BYTE G 阅读全文
摘要:
struct Point3D{ float* Coordinates; Point3D(float x, float y, float z){ Coordinates= (float*)malloc(3* sizeof(float)); *(Coordinates+0)=x; *(Coordinates+1)=y; ... 阅读全文
摘要:
Members of type bool, int, uint, float, and double are respectively extracted from a buffer object by reading a single uint, int, uint, float, or doub 阅读全文
摘要:
1 不要相信google 官方的开发文档 时间2018年5月 正确的路径是 当你好奇为什么texture的这个函数链接不上时,不要总是怀疑自己哪里配置错了。 已经被删除了,但是文档告诉你.......... 浪费生命。 阅读全文
摘要:
ABISupported Instruction Set(s)Notes armeabi ARMV5TE and later Thumb-1 Deprecated in r16. Will be removed in r17. No hard float. armeabi-v7a armeabi T 阅读全文
摘要:
生成头文件 jdk 10中,javah 被移除了😔。 使用javac -h 输出路径 输入文件 替代。命令由4部分组成。 例如:javac -h foo in.java 生成in.java文件的头文件到foo文件夹下。 阅读全文