好久没有写html了,记一个修改过程
- Chrome的缓存会影响看效果 按住CTRL+F5刷新清理缓存;
- /var/w3/site_url/...../主题下 footer.php修改文字;
- 改css用Chrome实时修改看效果一次性更新上去。
Graphics-iArcher
好久没有写html了,记一个修改过程
自己生成的lib库里面可能含有未使用的函数接口,有的编译器默认会将他们“优化掉”,导致其他引用该lib库的程序在程序链接时提示未找到的符号。 之前也遇到类似问题
submodule中的url发生了改变,导致submodule更新时提示
fatal: No url found for submodule path ' ' in .gitmodules
使用
git submodule sync
同步.gitsubmodule中的配置,然后再更新
git submodule update
https://blog.csdn.net/huangqiang1363/article/details/83242242
curl -x localhost:8087 https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb > google-chrome-stable_current_amd64.deb
记一个boost问题:
x.obj : error LNK2019: unresolved external symbol "void cdecl boost::throw_exception(class std::exception const &)" (?throw_exception@boost@@YAXABVexception@std@@@Z) referenced in function "void cdecl boost::asio::detail::do_throw_error(class boost::system::error_code const &,char const *)" (?do_throw_error@detail@asio@boost@@YAXABVerror_code@system@3@PBD@Z)
初步查询资料得知是因定义了BOOST_EXCEPTION_DISABLE引起
在此宏被定义后需要用户自定义如下函数 void throw_exception( std::exception const & e ){}
或者在编译选项中使用/GX 或是 /EHsc,这样告诉编译器ENABLE EXCEPTION HANDLE,也可以。
`OpenGL 3.3`遇到纹理贴图像素不是$2^n$时候,加入
“`
glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
“`
具体参数待看
My first paper as second author (the first is my mentor) during my master's period. Computer-Aided Design (Proc. SPM), 102:12-21, 2018
Point Cloud Resampling Using Centroidal Voronoi Tessellation Methods
Zhonggui Chen, Tieyi Zhang, Juan Cao*, Yongjie Jessica Zhang, Cheng Wang
Computer-Aided Design (Proc. SPM) , 102:12-21, 2018