打开chrome\VERSION文件即可
git系列1:clone
git clone https://bitbucket.org/chromiumembedded/cef.git -b 6099 其中-b表示clone远端的6099分支,但同时也会拉取其它远端分支的信息。 如果不想拉取其它远端分支的信息,只想要6099这一个分支的信息,需要加上--single-branch选项。
AI系列1:几个工具
1.Imagine Meta 公司推出的文生图工具,使用 Facebook 和 Instagram 的11亿张图片进行训练,现在可以免费使用。 2.NotebookLM 谷歌发布的 AI 笔记工具,用户上传文档,然后可以对文档提问,并且自动生成笔记,目前对美国用户免费开放。 不过,它好像只支持上传英文PDF 3.RoomGPT 开源,你上传一张房间照片,它会使用 AI 重新设计你...
开源软件推荐系列7:ftp工具FileZilla
免费开源跨平台的ftp工具 https://filezilla-project.org/sourcecode.php https://svn.filezilla-project.org/svn/FileZilla3
depot_tools系列2:gclient介绍
代码checkout工具,是一个Python脚本 gclient help [sync] 帮助和子命令帮助 它可以在checkout代码后运行Hooks .gclient]文件是通过gclient config <url>生成的,或手动创建的,跟src目录同级,其中 -unmanaged参数表示 unmanaged mode (is the default),在.gcli...
Qt官方示例解析系列4:Image Scaling
实现了什么功能 异步下载 用到的知识点 qsizetype std::optional,为空会返回std::nullopt; 网络请求 QFutureWatcher: 使用信号槽monitoring a QFuture QFuture<int> future = QtConcurrent::run(...);#run返回的future不能cancel, watcher...
Goma系列1:介绍
https://chromium.googlesource.com/infra/goma/client/ #它还有一个sever Goma is a distributed compiler service for open-source project such as Chromium and Android.
GN系列1:介绍
https://chromium.googlesource.com/chromium/src/tools/gn/+/48062805e19b4697c5fbd926dc649c78b6aaa138/README.md 用于生成Ninja文件(Ninja可以看作make编译工具),.ninja文件可以看作Makefile gn 即 Generate ninjia ,可以理解为cmake工具...
depot_tools系列1:windows安装
它里面有很多工具,如 fetch --help gclient help #代码checkout工具 安装 以下为win上安装文档 win上下载 depot_tools.zip 并解压 或 git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git 将 C:\src\depot_too...
WebRTC系列2:windows编译
先配置好depot_tools 下载源码 fetch --no-history --nohooks webrtc gclient sync 进入src目录配置 gn gen out/Default Done. Made 1764 targets from 295 files in 5178ms 编译 autoninja -C out/Default ninja: Enter...