摘要:
title: gcc include带空格路径 date: 2020-03-26 23:15:44 用双引号括起来 g++ -I"C:\Program Files\MySQL\MySQL Server 8.0\include" -c main.cpp -o main.o 阅读全文
摘要:
title: gcc链接时移除未使用的符号 date: 2020-08-03 13:02:52 tags: 参考: https://www.cnblogs.com/dylancao/p/10668549.html https://kb.kutu66.com/function/post_6611676 阅读全文
摘要:
title: make传入变量 date: 2022-09-30 10:05:28 tags: make target FOO=bar 来源:https://stackoverflow.com/questions/2826029/passing-additional-variables-from-c 阅读全文
摘要:
title: "warning: jobserver unavailable: using -j1. Add '+' to parent make rule." date: 2020-04-24 18:38:07 tags: 参考:https://stackoverflow.com/question 阅读全文
摘要:
title: 用C语言生成[0,1)之间的随机浮点数 date: 2020-07-19 20:36:42 tags: 参考: 如何用C语言生成(0,1)之间的随机浮点数? - Milo Yip的回答 - 知乎 https://www.zhihu.com/question/25037345/answe 阅读全文
摘要:
title: HDFS集群部署 date: 2022-06-07 20:16:14 tags: 这里假设name node的host name为hdfs-name,需要配置三个data node,host name分别为: hdfs-data-0, hdfs-data-1, hdfs-data-2。 阅读全文
摘要:
title: Linux m4a转mp3 date: 2020-10-07 19:53:21 tags: 参考:https://blog.csdn.net/weixin_30872671/article/details/97657821 sudo apt install -y faad lame f 阅读全文
摘要:
title: Linux分离人声和伴奏 date: 2022-09-03 13:14:18 tags: 可以使用Spleeter。github: https://github.com/deezer/spleeter 安装Miniconda wget https://mirrors.tuna.tsin 阅读全文
摘要:
title: Linux创建只读目录链接 date: 2021-07-01 16:55:49 相当于让一个可写的目录软链接到另一个地方变成只读的目录,但是原目录仍然保持可写。解决方法是用mount --bind,将目录挂载到目标点,变成只读文件系统。 mount --bind -r /path/to 阅读全文
摘要:
title: Linux压缩pdf date: 2020-08-21 12:51:27 tags: 参考: https://stackoverflow.com/questions/9625967/changing-pdf-image-dpi-using-gs http://milan.kupcevi 阅读全文