上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 46 下一页
摘要: 背景 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)
摘要: 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)
摘要: 原文: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)
摘要: $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)
摘要: 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)
摘要: 项目分层(阿里巴巴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)
摘要: 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)
摘要: 背景 比如开发某个feature,可能需要好几天,但是每天都需要提交代码(只是假设) 那commit的粒度如何控制,可以看看这个讨论:https://www.v2ex.com/t/623219 可是每天提交的信息好像没啥可以写的,因为功能还没有开发完成 第一天 第二天 第三天(开发完成) PUSH 阅读全文
posted @ 2022-12-15 23:18 talentzemin 阅读(53) 评论(0) 推荐(0)
摘要: # 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)
摘要: 示例 $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 下一页