09 2020 档案

摘要:git merge 从feature分支合并到master分支 $ git checkout master $ git merge feature Auto-merging Document CONFLICT (content): Merge conflict in $codefileAutomat 阅读全文
posted @ 2020-09-30 14:22 Bigben 阅读(1854) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/chaoguo1234/archive/2004/01/13/5351497.html git的合并策略总共有3种,一种是resovle,一种是recursive,一种是octopus。其中resolve和recursive适用于合并2个branch, 阅读全文
posted @ 2020-09-30 14:14 Bigben 阅读(1843) 评论(0) 推荐(1) 编辑
摘要:Git 中的 HEAD 可以理解为一个指针,我们可以在命令行中输入 cat .git/HEAD 查看当前 HEAD 指向哪儿,一般它指向当前工作目录所在分支的最新提交。 cat .git/HEAD ref: refs/heads/<branch name> // 正常 cad0be9ceb89f47 阅读全文
posted @ 2020-09-30 12:41 Bigben 阅读(2679) 评论(0) 推荐(0) 编辑
摘要:空间不足 阅读全文
posted @ 2020-09-30 10:25 Bigben 阅读(448) 评论(0) 推荐(0) 编辑
摘要:《魔戒》(The Lord of the Rings,又译《指环王》)是英国作家托尔金的史诗奇幻小说,是现代正统奇幻文学小说的开山鼻祖,也引发了龙与地下城类型(Dungeons & Dragons)游戏和文学的兴盛。《魔戒》最初在公元1954年至1955年之间出版,是托尔金早期作品《霍比特人》(Th 阅读全文
posted @ 2020-09-28 14:13 Bigben 阅读(4279) 评论(0) 推荐(0) 编辑
摘要:网盘搜索 阅读全文
posted @ 2020-09-28 14:10 Bigben 阅读(2628) 评论(0) 推荐(0) 编辑
摘要:三分钟掌握Markdown Emoji图标 阅读全文
posted @ 2020-09-28 13:45 Bigben 阅读(103) 评论(0) 推荐(0) 编辑
摘要:编码 utf8 gbk Unicode 阅读全文
posted @ 2020-09-25 10:25 Bigben 阅读(10370) 评论(0) 推荐(0) 编辑
摘要:https://blog.logrocket.com/how-to-set-up-a-headless-chrome-node-js-server-in-docker/ January 10, 2020 4 min read Headless browsers have become very po 阅读全文
posted @ 2020-09-22 16:57 Bigben 阅读(419) 评论(0) 推荐(0) 编辑
摘要:ozone chromium headless 阅读全文
posted @ 2020-09-21 19:34 Bigben 阅读(398) 评论(0) 推荐(0) 编辑
摘要:https://chromium.googlesource.com/chromium/src.git/+/master/docs/building_old_revisions.md Building old revisions Occasionally you may want to check o 阅读全文
posted @ 2020-09-21 14:13 Bigben 阅读(815) 评论(0) 推荐(0) 编辑
摘要:D:\dev\electron7\src>ninja -C out/Testing net_unittestsout\Testing\net_unittests.exe --gtest_filter=*HttpContentDispositionTest.Filename*运行:out/Debug/ 阅读全文
posted @ 2020-09-21 10:40 Bigben 阅读(1594) 评论(1) 推荐(0) 编辑
摘要:chromium 保存文件名乱码 content-disposition 阅读全文
posted @ 2020-09-18 20:02 Bigben 阅读(6552) 评论(0) 推荐(1) 编辑
摘要:windows默认的字符集是 gbk。 按下面的步骤改为utf,就可以显示保存为utf8的中文文件。 临时修改:CHCP 65001 阅读全文
posted @ 2020-09-18 16:44 Bigben 阅读(967) 评论(0) 推荐(0) 编辑
摘要:ubuntu查看core dumped的详细错误原因 查看core dumped的详细错误原因 - Hyman的博客 - CSDN博客https://blog.csdn.net/hyman_c/article/details/53082247 Segmentation fault (core dum 阅读全文
posted @ 2020-09-17 19:37 Bigben 阅读(1473) 评论(0) 推荐(0) 编辑
摘要:Linux图形界面多数使用的是 X Server, 我们有时需要关闭/重启它. 比如: 安装 NVIDIA 的驱动程序时,就需要先关闭 X server; 希望让系统以 server 方式运行,关闭桌面环境以降低不必要的性能损耗. Ubuntu18.04 Ubuntu18.04 虽然默认使用了gno 阅读全文
posted @ 2020-09-17 16:57 Bigben 阅读(2314) 评论(0) 推荐(0) 编辑
摘要:把网页输出成pdf:.\chromium -disable-gpu -headless -print-to-pdf https://www.bilibili.com 生成的pdf会花费些时间。等几分钟,看看chromium目录下应该有 output.pdf。 参考 https://segmentfa 阅读全文
posted @ 2020-09-16 11:54 Bigben 阅读(544) 评论(0) 推荐(0) 编辑
摘要:1,外围调用的 js方法: win.webContents.session.getCacheData("http://192.168.50.206:8080/back.html1").then( result=>{ console.log("getCacheData resolve:"+result 阅读全文
posted @ 2020-09-14 14:01 Bigben 阅读(937) 评论(0) 推荐(0) 编辑
摘要:nodejs c++扩展 electron native module 阅读全文
posted @ 2020-09-08 09:55 Bigben 阅读(785) 评论(0) 推荐(0) 编辑
摘要:深入Node.js的模块加载机制,手写require函数 转自:https://segmentfault.com/a/1190000023828613 模块是Node.js里面一个很基本也很重要的概念,各种原生类库是通过模块提供的,第三方库也是通过模块进行管理和引用的。本文会从基本的模块原理出发,到 阅读全文
posted @ 2020-09-04 09:19 Bigben 阅读(991) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示