摘要: # powershell 的学习 # 获得帮助相关的 # "Hello World" | Get-Member # 数据类型 # 如何定义变量 # - 以 $ 符号开头,可以保存任意的管道或者命令的结果到变量中供后续使用, # - 如果变量存了大量的数据,而不在使用,可以使 $null来释放这些内存空间. 1 # 环境变量: # 获得所有的环境变量 - Get-ChildItem en... 阅读全文
posted @ 2019-05-07 20:58 Huanxi 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 1 ## **Conda 内容** 2 3 ### 激活 conda 内容 4 5 - 确认 conda 已安装 6 `conda --version` 7 8 - 更新 conda 版本 9 `conda update conda` 10 11 - 创建新环境 12 13 `conda create --name snowflakes biopython... 阅读全文
posted @ 2019-05-07 20:56 Huanxi 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 兰色幻想VBA数组入门教程10集1. 前言:不要把VBA数组想的太神秘,它其实就是一组数字而已。2. 数组的维数:Sub 数组示例() Dim x As Long, y As Long Dim arr(1 To 10, 1 To 3) '创建一个可以容下10行3列的数组空间 For x = 1 To 阅读全文
posted @ 2019-05-07 20:49 Huanxi 阅读(832) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Linq; using System.Linq.Expressions; using System.Runtime.InteropServices; namespace app { public abstract class Visitor { private readonly Expression node... 阅读全文
posted @ 2019-05-07 20:46 Huanxi 阅读(632) 评论(0) 推荐(0) 编辑
摘要: using System.Collections.Generic; using System.Data; using System.Data.Common; using System.Linq; namespace app { /* Type Converter: Enumerable.AsEnumerable Quer... 阅读全文
posted @ 2019-05-07 20:45 Huanxi 阅读(2012) 评论(0) 推荐(0) 编辑