V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  hei1000  ›  全部回复第 4 页 / 共 103 页
回复总数  2041
1  2  3  4  5  6  7  8  9  10 ... 103  
2022-01-03 21:31:14 +08:00
回复了 aydd2004 创建的主题 macOS 求推荐一个蓝牙鼠标
MX Master3 啊
2022-01-01 13:19:35 +08:00
回复了 somereason 创建的主题 Linux Linux 下有什么杀毒软件?
如果你是 Linux 高手,你不需要杀毒软件,如果你是 Linux 小白,你不需要杀毒软件
2021-12-31 11:49:30 +08:00
回复了 cw2k13as 创建的主题 Linux 求推荐一个小白入手的 Linux 桌面版
更新频率稳定?是更新频率稳定的大还是稳定的小啊?
2021-12-30 17:58:12 +08:00
回复了 Yggdroot 创建的主题 C++ 用 C++14 写了个模糊查找命令行工具
@josephxrays fzf:什么,听说有人有重写我?
2021-12-28 12:55:08 +08:00
回复了 Mangozhen 创建的主题 游戏主机 PS5 怎么挂代理看 Youtube 和 Netflix?
如果经常这样看的话建议使用软路由,如果偶尔看的话建议放气这给方法,直接电脑 /平板 /手机
垃圾排版,把我的缩进都删了
@kgdb00
```
# generate compile_commands.json file for C/C++ files used by ccls/lsp
if test -f CMakeLists.txt
cmake -H. -B build -DCMAKE_BUILD_TYPE=Debug -DCMAKE_EXPORT_COMPILE_COMMANDS=YES
test -f build/compile_commands.json; and ln -nsfv build/compile_commands.json .
else if test -f meson.build
if test -d build
# compile_commands.json is only updated by meson compile(ninja) if no --reconfigure
meson build --reconfigure
else
meson build
end
test -f build/compile_commands.json; and ln -nsfv build/compile_commands.json .
else if test -f scripts/gen_compile_commands.py # available for Linux kernel v5+
make defconfig
if test $status = 0; and make
scripts/gen_compile_commands.py
end
else if test -f Makefile -o -f makefile # NOTE: some old linux kernel src contains the Makefile/makefile, this will fail
# NOTE: If inside old linux kernel, check https://github.com/gniuk/linux-compile-commands for more info
# make clean # without this line, the compile_commands.json generated may be empty

# NOTE: pip install scan-build to get intercept-build
if command -q intercept-build; and command intercept-build --append -v make
else if command -q compiledb; and command compiledb -f -v -n make
else if command -q bear; and command bear --append -- make
else
echo "None of scan-build/compiledb/bear is not installed or all failed to generate compile_commands.json!"
end
end
find . -name "compile_commands.json" -exec ls -lh {} +
end
```

这是我生成 compile_commands.json 文件的一个 fish shell 函数,make/cmake/meson/linuxkernel 都包括了
你没有先生成 compile_commands.json 文件?
2021-12-22 04:43:58 +08:00
回复了 Vogan 创建的主题 分享发现 [贴码]v0.0.4 发布,支持暗黑模式
Linux
Comming soon.

MacOS
Working in progress.

1. Typo
2. Coming soon and Working in progress 具体什么区别,Coming soon 是还没开始做还是快完成了?
2021-12-20 01:23:30 +08:00
回复了 deadtomb 创建的主题 问与答 请问在国内的大家 目前合法使用的搜索引擎应该用哪个?
你都上 V 站了,这个问题无所谓了吧
2021-12-20 01:21:18 +08:00
回复了 Lagrangist 创建的主题 YouTube 正确的刷 youtube 姿势是什么?
我很早之前就发现这个问题了,好多 channel 更新不手动打开就看不到,所以我把 https://www.youtube.com/feed/subscriptions 做为刷 youtube 的入口,如果里面列出来的更新没兴趣再进入 https://www.youtube.com
2021-12-19 21:23:16 +08:00
回复了 xinghen57 创建的主题 问与答 关于 youtube-dl 的两个问题
淦,看了这帖子我才发现 youtube-dl 自己的问题,我之前一直以为我的节点慢,刚才试了下,同一个 youtube 链接,youtube-dl 下载 50K 的速度,yt-dlp 的速度几 M~十几 M ,果断放弃 youtube-dl 换到 yt-dlp 了
2021-12-17 04:42:59 +08:00
回复了 Licsber 创建的主题 宽带症候群 个人收藏、归档视频 有比 HEVC 更好的编码方式吗?
我前不久试过 hevc+ffmpeg 各种参数搭配测试效果,最后发现直接提供 bitrate 是最好的,其他 preset 都不好控制清晰度+文件大小的平衡

`ffmpeg -hide_banner -i input.mp4 -c:v hevc_nvenc -c:a copy -b:v 2000k output.mp4`
上面 2000k 换成自己想要的
2021-12-15 22:39:15 +08:00
回复了 ABCDiSDR 创建的主题 问与答 vivaldi 浏览器内地网络,翻译问题
saladict 不好用吗
2021-12-13 21:20:52 +08:00
回复了 qaqLjj 创建的主题 问与答 半吊子程序员怎么学习 Linux , Linux 爱好者请进
什么叫学习 Linux ,直接上手用就完了,有疑问或者碰到问题就 Google ,时间长了自然就多多少少会了
2021-12-12 20:19:35 +08:00
回复了 cynthiatxdwalla 创建的主题 分享发现 Chrome 插件分享
smartUp Gestures 鼠标手势
ContextSearch-web-ext 复制弹窗搜索
BitWarden 密码管理
Saladict 辞典

以上必备
2021-12-11 13:30:46 +08:00
回复了 jdhao 创建的主题 Vim Nvim 0.6 正式版发布了
你是不是在 reddit 发过帖子
2021-12-06 08:46:20 +08:00
回复了 golangLover 创建的主题 程序员 看日志有什么好的工具
不知道你说的什么 log ,各种各样 log 格式都不一样,你可以试试 lnav
1  2  3  4  5  6  7  8  9  10 ... 103  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   5661 人在线   最高记录 6543   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 47ms · UTC 06:31 · PVG 14:31 · LAX 23:31 · JFK 02:31
Developed with CodeLauncher
♥ Do have faith in what you're doing.