摘要: git常见操作 git log filename 查看提交记录 git log -p filename 可以显示每次提交的diff 查看某次提交中的某个文件变化,可以直接加上fileName git show c5e69804bbd9725b5dece57f8cbece4a96b9f80b file 阅读全文
posted @ 2019-08-22 17:49 jiftle 阅读(412) 评论(0) 推荐(0)
摘要: 四象限法则 三、处理四象限事务的法则1、第一象限:立即去做2、第二象限:有计划的去做1)对第二象限的事务进行目标描述和任务分解3、第三象限:交给别人去做,用“猴子法则”走出第三象限大部分人发现时间不够的主要原因是将太多不属于自己的工作揽在自己身上。,另一方面可以应用与在团队协作时不要让工作进度停留在 阅读全文
posted @ 2019-06-14 09:54 jiftle 阅读(570) 评论(0) 推荐(1)
摘要: # vim常用技巧 忠告, 如果有插件的需求,使用neovim替换vim ## 常用命令 ### 格式转换 - 查看文件格式 `:set ff` (支持两种格式 unix, dos) - 文件格式转为linux `:set ff=unix` ### 常用 - 删除空行 `:g/^$/d` 删除空行 阅读全文
posted @ 2017-04-01 12:54 jiftle 阅读(875) 评论(5) 推荐(0)
摘要: windows下启动 cd wp\pynbwp %windir%\System32\cmd.exe "/K" D:\ProgramData\anaconda3\Scripts\activate.bat D:\ProgramData\anaconda3 阅读全文
posted @ 2025-11-12 09:21 jiftle 阅读(5) 评论(0) 推荐(0)
摘要: #!/bin/bash # # This file echoes four gradients with 24-bit color codes # to the terminal to demonstrate their functionality. # The foreground escape 阅读全文
posted @ 2025-11-12 09:06 jiftle 阅读(4) 评论(0) 推荐(0)
摘要: nohup emacs --daemon > /dev/null 2>&1 & 步骤 使用emacs --daemon启动emacs server. 使用emacsclient -t 连接到这个server. 即使关闭emacs后,daemon仍然存在,可重复连接;需要关闭的话,M-x kill-e 阅读全文
posted @ 2025-11-12 09:02 jiftle 阅读(9) 评论(0) 推荐(0)
摘要: 导入第三方jar 源码时,经常会报下面错误: Plugin with id 'com.android.library' not found 这是由于创建jar 源码时的 gradle 版本和你本地 studio gradle版本不一致导致。 最简单做法: 1.新建一个项目 2.打开最外层 build 阅读全文
posted @ 2025-11-03 17:13 jiftle 阅读(18) 评论(0) 推荐(0)
摘要: 2025 年 3 月 26 日,模型上下文协议(Model Context Protocol,简称 MCP)引入了一项关键更新:用 Streamable HTTP 替代原先的 HTTP + SSE 作为默认传输方式。 这一变更在解决原有方案中连接不可恢复、服务端长连接压力大等问题的同时,依然保留了 阅读全文
posted @ 2025-10-28 10:08 jiftle 阅读(90) 评论(0) 推荐(0)
摘要: ![图片](https://img2024.cnblogs.com/blog/137928/202510/137928-20251028093927339-1003957462.png)![图片](https://img2024.cnblogs.com/blog/137928/202510/137928-20251028093936436-1487733085.png) 阅读全文
posted @ 2025-10-28 09:39 jiftle 阅读(7) 评论(0) 推荐(0)
摘要: package main import ( "context" "fmt" "log" "os" "os/signal" "syscall" "time" "github.com/ThinkInAIXYZ/go-mcp/protocol" "github.com/ThinkInAIXYZ/go-mc 阅读全文
posted @ 2025-10-27 23:29 jiftle 阅读(21) 评论(0) 推荐(0)
摘要: package main import ( "context" "errors" "fmt" "log" "net/http" "os" "os/signal" "syscall" "time" "github.com/ThinkInAIXYZ/go-mcp/protocol" "github.co 阅读全文
posted @ 2025-10-27 23:12 jiftle 阅读(14) 评论(0) 推荐(0)
摘要: package main import ( "fmt" "io" "net/http" "net/url" "strings" "github.com/PuerkitoBio/goquery" ) func BingSearch(query string, num_results int) { // 阅读全文
posted @ 2025-10-27 18:17 jiftle 阅读(5) 评论(0) 推荐(0)
摘要: Android Studio Hedgehog | 2023.1.1 截止2025.10.27日,现在最新的Android Studio版本依赖glibc2.29; Android Studio Hedgehog | 2023.1.1,是最后一个glibc2.28的版本。 阅读全文
posted @ 2025-10-27 16:19 jiftle 阅读(2) 评论(0) 推荐(0)