2023年3月2日

摘要: FROM centos:7.9.2009 # Install basic dependencies RUN yum -y install gcc gcc-c++ \ gdb \ make \ valgrind \ vim \ wget \ bzip2 ADD ./gcc-5.5.0.tar.gz / 阅读全文
posted @ 2023-03-02 14:52 ac23 阅读(46) 评论(0) 推荐(0) 编辑

2023年2月22日

摘要: 不要通过编译源码的形式升级! 可以参考此文:https://mp.weixin.qq.com/s/bD4KIV7YQOrZO9iP5tkscQ 阅读全文
posted @ 2023-02-22 11:23 ac23 阅读(16) 评论(0) 推荐(0) 编辑

2023年1月12日

摘要: 出自这个GitHub:https://github.com/nanoporetech/scrappie/blob/master/.gitlab-ci.yml # Yaml CI config for Gitlab See. http://docs.gitlab.com/ce/ci/yaml/READ 阅读全文
posted @ 2023-01-12 09:47 ac23 阅读(126) 评论(0) 推荐(0) 编辑
 
摘要: 直接放出gitlab.yml脚本内容 pages: stage: deploy tags: — test-tag script: # run PowerShell Command — powershell -Command "Get-Date" # run PowerShell script — p 阅读全文
posted @ 2023-01-12 09:40 ac23 阅读(128) 评论(0) 推荐(0) 编辑

2022年12月27日

摘要: 主要就是参考这篇文章:https://mohitgoyal.co/2019/02/16/install-jenkins-in-offline-mode-on-centos-rhel/ 我个人一个重要收获是教你怎么通过普通的安装包安装方式安装完成后,使其成为一个Linux service,然后就可以通 阅读全文
posted @ 2022-12-27 21:42 ac23 阅读(160) 评论(0) 推荐(0) 编辑
 
摘要: 镜像 https://developer.aliyun.com/mirror/?spm=a2c6h.13651104.0.d1002.2d0e4763daJ2mk DNS https://developer.aliyun.com/mirror/DNS?spm=a2c6h.13651102.0.0.4 阅读全文
posted @ 2022-12-27 21:28 ac23 阅读(15) 评论(0) 推荐(0) 编辑

2022年12月17日

摘要: 参考资料 1.https://segmentfault.com/q/1010000022466832 “这个例子放在多个镜像里,然后用docker-compose来管理,一次性启动就行 docker-compose.yml” 2.https://faun.pub/c-development-envi 阅读全文
posted @ 2022-12-17 15:33 ac23 阅读(415) 评论(0) 推荐(0) 编辑

2022年11月28日

摘要: std::string parseBond(std::string& fileName) { boost::property_tree::ptree ptree_root; try { boost::property_tree::read_xml(fileName, ptree_root); } c 阅读全文
posted @ 2022-11-28 14:46 ac23 阅读(149) 评论(0) 推荐(0) 编辑

2022年11月18日

摘要: 直接参考下面的文章和图,感谢两位作者 1.http://legendtkl.com/2016/12/31/git-good-practice-gitflow/ 图源:https://juejin.cn/post/6844904159703990279 阅读全文
posted @ 2022-11-18 11:32 ac23 阅读(17) 评论(0) 推荐(0) 编辑

2022年11月12日

摘要: c++ std::chrono::milliseconds TimeUtils::CurrentTimeMillis() { return std::chrono::duration_cast<std::chrono::milliseconds>( std::chrono::system_clock 阅读全文
posted @ 2022-11-12 11:20 ac23 阅读(810) 评论(0) 推荐(0) 编辑