摘要:1.下载erlang. https://www.rabbitmq.com/install-windows-manual.html https://erlang.org/download/otp_versions_tree.html https://www.rabbitmq.com/which-erl 阅读全文
dotnet nuget
2021-08-12 11:19 by qgbo, 198 阅读, 0 推荐, 收藏,
摘要:dotnet nuget 是处理 nuget 相关的 命令。 dotnet nuget push.nupkg 可以把本地推到服务器上 local 是处理本地的包,可以清理本地的 缓存包。 C:\Users\qqqgg>dotnet nuget locals plugins-cache -c Clea 阅读全文
random numbers- to learn english
2021-07-04 23:07 by qgbo, 26 阅读, 0 推荐, 收藏,
摘要:14,17,24,83,33,21,43,60,20,28,82,88,79,25,15,93,48,76,40,58,95,13,75,66,38,60,18,25,31,89,20,14,58,53,80,58,63,22,92,60,10,25,88,87 950,928,212,880,46 阅读全文
Codlity(6) RectangleBuilderGreaterArea
2021-06-04 19:25 by qgbo, 64 阅读, 0 推荐, 收藏,
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Min_positive_value { cla 阅读全文
Codlity(4) BinaryGap
2021-06-04 19:23 by qgbo, 30 阅读, 0 推荐, 收藏,
摘要:using System; using System.Linq; using System.Text; namespace BinaryGap { class BinaryGap { public static int solution(int A) { if (A == 0) return 0; 阅读全文
Codlity(2) Min_position_value
2021-06-04 19:21 by qgbo, 48 阅读, 0 推荐, 收藏,
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Min_positive_value { cla 阅读全文
Codlity(3) SocketsLaundering
2021-06-04 19:20 by qgbo, 37 阅读, 0 推荐, 收藏,
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Min_positive_value { cla 阅读全文
Codlity(1) DiamondsCount
2021-06-04 19:17 by qgbo, 56 阅读, 0 推荐, 收藏,
摘要:using System; using System.Collections.Generic; using System.Linq; namespace Min_positive_value { public class point4 { (int x, int y) left; (int x, i 阅读全文
C# ? 语法糖
2021-05-27 10:57 by qgbo, 62 阅读, 0 推荐, 收藏,
摘要:var s ="ssssssssssss";if(s?.Length!=10) Console.WriteLine("xxx"); if(s==null || s.Length !=10) Console.WriteLine("xxx"); 以上代码等价: 以下代码等价: var s ="sssss 阅读全文
正则表达式
2021-05-18 18:29 by qgbo, 53 阅读, 0 推荐, 收藏,
摘要:某些工具生成如下的文件.,文件大小写杂乱,混合/ 空格 public enum xxx { person =1, ComPan=2 Student xiao/hai=3 } 正则表达式处理为合理的方式 针对属性。 先把所有 字符换成小写 ^.*$ \L$0 把特殊字符换成大写 \t([A-Za-z] 阅读全文
浙公网安备 33010602011771号