会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
talentzemin
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
7
8
9
10
11
12
13
14
15
···
46
下一页
2023年2月22日
关于PowerShell job中使用New-PSDrive 的 Bug
摘要: 背景 Start-Job -ScriptBlock { $shareadress = "\\127.0.0.1\E$" $username = "Springfield\Administrator" $pwd = "MyPassword" $password = ConvertTo-SecureSt
阅读全文
posted @ 2023-02-22 20:37 talentzemin
阅读(77)
评论(0)
推荐(0)
2023年2月10日
PowerShell RunSpace
摘要: https://learn.microsoft.com/en-us/powershell/scripting/developer/hosting/windows-powershell-host-quickstart?view=powershell-5.1 https://devblogs.micro
阅读全文
posted @ 2023-02-10 20:44 talentzemin
阅读(21)
评论(0)
推荐(0)
2023年2月8日
All the 16 Lombok Annotations Explained
摘要: 原文:https://medium.com/javarevisited/all-the-16-lombok-annotations-explained-in-a-4-minute-article-926f71934ec6
阅读全文
posted @ 2023-02-08 10:35 talentzemin
阅读(132)
评论(0)
推荐(0)
2023年1月31日
PowerShell SQLServer
摘要: $Conectionstring ="Server=.;Database=master;Trusted_Connection=True;" $sqlconnection = New-Object System.Data.SqlClient.SqlConnection $Conectionstring
阅读全文
posted @ 2023-01-31 15:58 talentzemin
阅读(30)
评论(0)
推荐(0)
2023年1月28日
WPF 不规则界面
摘要: MainWindow.xaml <Window x:Class="iKun.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.
阅读全文
posted @ 2023-01-28 22:37 talentzemin
阅读(40)
评论(0)
推荐(0)
2023年1月18日
VSCode debug gradle multiple-project 项目
摘要: 项目分层(阿里巴巴Java开发手册推荐) Gradle项目 在APP project的build.gradle中配置依赖其他project,执行task会输出到build文件夹 默认debug的时候会创建launch.json { "version": "0.2.0", "configuration
阅读全文
posted @ 2023-01-18 17:03 talentzemin
阅读(263)
评论(0)
推荐(0)
2023年1月13日
Windows安装RabbitMQ
摘要: RabbitMQ 下载 https://github.com/rabbitmq/rabbitmq-server/releases 默认端口 5672 RabbitMQ 依赖ERLang https://www.erlang.org/downloads 版本要对应 https://www.rabbit
阅读全文
posted @ 2023-01-13 14:20 talentzemin
阅读(36)
评论(0)
推荐(0)
2022年12月15日
TIL:Git Squash Commits
摘要: 背景 比如开发某个feature,可能需要好几天,但是每天都需要提交代码(只是假设) 那commit的粒度如何控制,可以看看这个讨论:https://www.v2ex.com/t/623219 可是每天提交的信息好像没啥可以写的,因为功能还没有开发完成 第一天 第二天 第三天(开发完成) PUSH
阅读全文
posted @ 2022-12-15 23:18 talentzemin
阅读(53)
评论(0)
推荐(0)
TIL: Git worktree
摘要: # Create a new branch called "experimental" and switch to it git checkout -b experimental # Create a new working directory for the "experimental" bran
阅读全文
posted @ 2022-12-15 22:53 talentzemin
阅读(29)
评论(0)
推荐(0)
2022年12月12日
关于PowerShell中使用ArgumentList传递数组
摘要: 示例 $array = 'Hello', 'World!' Invoke-Command -ScriptBlock { param([string[]]$words) $words -join ' ' } -ArgumentList $array 输出 Hello 为什么? 因为PowerShell
阅读全文
posted @ 2022-12-12 15:28 talentzemin
阅读(434)
评论(0)
推荐(0)
上一页
1
···
7
8
9
10
11
12
13
14
15
···
46
下一页
公告