摘要: 自定义Typora主题分享 Typora主题分享 阅读全文
posted @ 2023-08-31 21:50 干徒 阅读(236) 评论(0) 推荐(0)
摘要: # 网址一:Learn Git Branching! https://learngitbranching.js.org/?locale=zh_CN 另外粘贴一篇详细介绍的链接: https://zhuanlan.zhihu.com/p/383960650 # 《为你自己学git》一书的练习场 htt 阅读全文
posted @ 2023-08-29 09:18 干徒 阅读(133) 评论(0) 推荐(0)
摘要: 最新主题仓库:Gitee@ganto/cnblogs-theme 博客园默认皮肤选择 将博客园主题切换为:Custom 博客侧边栏公告 这里是定义公告栏目的地方 页面定制 CSS 代码 先将禁用模版默认CSS勾选上 源代码提供的css为scss格式,要将scss代码编译为css代码,再拷贝到 页面定 阅读全文
posted @ 2023-08-27 01:01 干徒 阅读(74) 评论(0) 推荐(0)
摘要: # Hello Golang ```go // Hello Golang package main import "fmt" func main() { fmt.Println("Hello Golang") } ``` Gogs是unknwon无闻主导开发的git管理平台,类似于gitlab,可以 阅读全文
posted @ 2023-08-16 17:20 干徒 阅读(45) 评论(0) 推荐(0)
摘要: title: Java笔记 description: 我的Java学习笔记 date: 2020-07-26 23:31:27 index_img: http://music.cevno.cn/music.png tags: ["Java","学习笔记"] 基础👇 简单Java类 第一种开发要求 阅读全文
posted @ 2023-03-01 01:21 干徒 阅读(71) 评论(0) 推荐(0)
摘要: ==前端代码缩进2格== ==Java代码缩进4格== ==Golang代码缩进4格== 通用快捷方式 | 快捷键 | 说明 | | | | | Alt+/ | 代码提示 | | Shift+Alt+↑ 或 Shift+Alt+↓ | 复制整行 | | Alt+↑ 或 Alt+↓ | 移动代码 | 阅读全文
posted @ 2023-02-20 13:06 干徒 阅读(77) 评论(0) 推荐(0)
摘要: VMWare 【VMware安装原版macOS虚拟机,从此告别第三方封装镜像】 https://www.bilibili.com/video/BV1TP4y1i7kh/?share_source=copy_web&vd_source=e5014f57b96061a4d1009d47c32b74e8 阅读全文
posted @ 2023-02-20 13:05 干徒 阅读(266) 评论(0) 推荐(0)
摘要: 防抖函数 防抖函数 封装 // 防抖函数的封装 export default function debounce(func, delay){ let timer = null return function () { if (timer) clearTimeout(timer) timer = se 阅读全文
posted @ 2023-02-20 13:04 干徒 阅读(36) 评论(0) 推荐(0)
摘要: # TypeScript ## 准备 安装node.js ## 安装 ```shell npm install -g typescript ``` ## 查看版本 ```shell tsc -v ``` ==在编写ts代码时,有时虽然没有写错,但是依然有报错信息 如:`无法重新声明块范围变量`,只需 阅读全文
posted @ 2023-02-20 13:03 干徒 阅读(82) 评论(0) 推荐(0)
摘要: Object.assign() const a = {name: '小华', age: 19, sex: '女'} const b = {name: '小华', age: 20} const c = Object.assign(a, b) console.log(a) console.log(b) 阅读全文
posted @ 2023-02-20 12:58 干徒 阅读(1670) 评论(0) 推荐(0)