会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
鸑鷟虽孤
博客园
首页
新随笔
联系
管理
2025年8月28日
Jenkins 2.516.2 配置(.net9+gitea+自由风格)
摘要: 1. 新建任务 点击新建任务按钮 输入任务名称,选择自由风格,点击确定 2. 配置 2.1 常规配置 2.2 源码管理(Source code management) 选择Git,输入代码仓库的URL,选择一个认证,如果认证选项里面没有,可以点击下面的添加按钮进行新增,然后指定分支,源码库浏览器选择
阅读全文
posted @ 2025-08-28 21:32 鸑鷟虽孤
阅读(29)
评论(0)
推荐(0)
2025年7月3日
Three.js-移动对象到新的父容器并应用变换
摘要: /** * 把一个对象移动到另一个父容器,并应用变换 * @param mesh 移动的对象 * @param newParent 要移动到的父容器 */ const moveMesh = (mesh: THREE.Object3D, newParent: THREE.Object3D) => {
阅读全文
posted @ 2025-07-03 09:24 鸑鷟虽孤
阅读(6)
评论(0)
推荐(0)
2024年4月18日
.net 6 C#中System.IO.Path类的用法
摘要: 1. 说明 /* Performs operations on System.String instances that contain file or directory path information. These operations are performed in a cross-pla
阅读全文
posted @ 2024-04-18 11:37 鸑鷟虽孤
阅读(303)
评论(2)
推荐(0)
2023年8月22日
WinForm窗口拖动
摘要: private Point mypoint; private void panel1_MouseDown(object sender, MouseEventArgs e) { mypoint = new Point(-e.X, -e.Y); } private void panel1_MouseMo
阅读全文
posted @ 2023-08-22 16:09 鸑鷟虽孤
阅读(42)
评论(0)
推荐(0)
2023年8月7日
VS Code配置
摘要: { "eslint.format.enable": true, "editor.codeActionsOnSave": { "source.fixAll.eslint": true }, "[typescript]": { "editor.codeActionsOnSave": { "source.
阅读全文
posted @ 2023-08-07 16:16 鸑鷟虽孤
阅读(40)
评论(0)
推荐(0)
2023年5月23日
PMP之挣值管理(PV、EV、AC、SV、CV、SPI、CPI)的记忆方法
摘要: 挣值管理法中的PV、EV、AC、SV、CV、SPI、CPI这些英文简写相信把大家都搞得晕头转向的。在挣值管理法中,需要记忆理解的有三个参数:PV、AC、EV。 ``` json PV:计划值,在即定时间点前计划完成活动或WBS组件工作的预算成本。 记忆技巧:PLaned,计划,Value,数值,简写
阅读全文
posted @ 2023-05-23 16:01 鸑鷟虽孤
阅读(627)
评论(0)
推荐(0)
2022年10月19日
Vue前端框架大全
摘要: #框架类 Web | 名称 | Vue | 描述 | | : : | :-: | | | Element UI | 2 | 饿了么 | | Element Plus | 3 | 饿了么 | | Ant Design 1 | 2 | 蚂蚁金服 | | Ant Design 2 | 3 | 蚂蚁金服 |
阅读全文
posted @ 2022-10-19 16:39 鸑鷟虽孤
阅读(451)
评论(0)
推荐(0)
2019年8月2日
字节数组(byte[])与16进制字符串转换
摘要: 1 /// <summary> 2 /// 转换扩展类 3 /// </summary> 4 public static class ConvertExtend 5 { 6 /// <summary> 7 /// 将byte[]转换为16进制字符串 8 /// </summary> 9 /// <p
阅读全文
posted @ 2019-08-02 11:27 鸑鷟虽孤
阅读(2916)
评论(0)
推荐(0)
2019年6月20日
C# 整型数和浮点型数的进制转换
摘要: 1.十进制转二进制 /// <summary> /// 十进制转二进制 /// </summary> public class Convert10To2 { /// <summary> /// 将十进制的16位整型数转换为16位二进制字符串 /// </summary> /// <param nam
阅读全文
posted @ 2019-06-20 16:29 鸑鷟虽孤
阅读(2768)
评论(1)
推荐(0)
C# 原码与补码的转换
摘要: /// <summary> /// 求一个16位数数的补码 /// </summary> /// <param name="OriginalCode">传入一个Int16整型</param> /// <returns></returns> public static int ConvertCompl
阅读全文
posted @ 2019-06-20 16:27 鸑鷟虽孤
阅读(4804)
评论(0)
推荐(0)
下一页
公告