1 2 3 4 5 ··· 25 下一页
摘要: 阅读全文
posted @ 2024-07-30 15:29 小小仓鼠 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 参考资料:https://cloud.tencent.com/developer/article/2158148 1、获取秒级时间戳与毫秒级时间戳、微秒级时间戳 代码语言:javascript 复制 import time import datetime t = time.time() print 阅读全文
posted @ 2024-07-30 11:26 小小仓鼠 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 字符数组: char ch5[] = "bit"; char ch6[] = {‘b’,'i','t'}; printf("%s\n",ch5); printf("%s\n",ch6); 这两个打印的结果是不同的; 第一个不会报错,第二个会报错。 字符数组与字符串,字符数据输出用%s表示 上面两种方 阅读全文
posted @ 2024-07-29 20:11 小小仓鼠 阅读(1) 评论(0) 推荐(0) 编辑
摘要: git 从远程仓库获取所有分支 git clone xxx cd xxx git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done git 阅读全文
posted @ 2024-07-18 20:47 小小仓鼠 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 参考文档:https://blog.csdn.net/m0_57236802/article/details/133972887 方法1:使用 ssh-agent: 首先,确保你的系统上已经安装了ssh-agent。 启动ssh-agent并添加你的SSH密钥: eval $(ssh-agent - 阅读全文
posted @ 2024-07-17 15:53 小小仓鼠 阅读(1) 评论(0) 推荐(0) 编辑
摘要: const date = new Date(); const year = date.getFullYear().toString().padStart(4, "0"); const month = (date.getMonth() + 1).toString().padStart(2, "0"); 阅读全文
posted @ 2024-07-15 20:43 小小仓鼠 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2024-07-12 23:23 小小仓鼠 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 参考文档:https://www.cnblogs.com/rusking/p/5715715.html https://mp.weixin.qq.com/s?__biz=MjM5NjQ4MjYwMQ==&mid=2664607748&idx=2&sn=45351d08acaec566f9662de5 阅读全文
posted @ 2024-07-11 14:13 小小仓鼠 阅读(2) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/weixin_43911938/article/details/126058162 阅读全文
posted @ 2024-07-09 17:33 小小仓鼠 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.cnblogs.com/kmist/p/10088585.html 使用库函数是源码的一种保护??? <我猜的.> 库函数其实不是新鲜的东西,我们一直都在用,比如C库. 我们执行pringf() 这个函数的时候,就是调用C库的函数. 下面记录静态库和动态库的生成和使用. 阅读全文
posted @ 2024-07-04 15:10 小小仓鼠 阅读(3) 评论(0) 推荐(0) 编辑
1 2 3 4 5 ··· 25 下一页