04 2018 档案
摘要:sudo apt-get remove --purge `dpkg --get-selections | grep i386 | awk '{print $1}'`; sudo dpkg --remove-architecture i386
阅读全文
摘要:转自这里 一般我们用ros限速只是使用了max-limit,其实ros限速可以更好的运用。比如我们希望客户打开网页时速度可以快一些,下载时速度可以慢一些。ros2.9就可以实现。 看图片 max-limit 我们最常用的地方,最大速度 burst-limit 突破速度的最大值 burst-thers
阅读全文
摘要:{ok, Cwd} = file:get_cwd(). Filelist = filelib:fold_files( Cwd, ".*", true, fun(File, Acc) -> [File|Acc] end, []). io:format("~p", [Filelist]).
阅读全文
摘要:go tool dist list
阅读全文
摘要:alias proxy='export http_proxy=socks5://127.0.0.1:1080 https_proxy=socks5://127.0.0.1:1080 all_proxy=socks5://127.0.0.1:1080' alias unproxy='unset http_proxy https_proxy all_proxy'alias get_ip='curl ...
阅读全文
摘要:编译 一般有编译脚本,不需要在vscode里面集成,自己写好以后,vscode直接调用即可 代码include和补全 在项目目录按F1, 输入edit configuration,includePath里面输入头文件目录 调试设置 目标版运行gdbserver :1234 xxx,xxx为我们要调试
阅读全文