tool

Office Tool Plus 安装Office

时间秒杀一切 提交于 2019-11-29 08:33:41
Office Tool Plus 是一款集office 卸载安装管理,激活等多功能于一体的神器。 官网: https://otp.landian.vip/en-us/ 下载 安装 值得注意的是Retail 开头的必须选择 否则会报错。。。 如果非要选择Volume,那么Module 必须切换成Office Tool Plus 来源: https://www.cnblogs.com/xingyunblog/p/11494952.html

[Tool] Continuous Integration & Build Server – TeamCity (一) 安装

非 Y 不嫁゛ 提交于 2019-11-29 06:13:41
[Tool] Continuous Integration & Build Server – TeamCity (一) 安装 前言 在敏捷软件开发之中,使用Continous Intergration Server(简称CI Server)也是一个很重要的辅助, 与以往工作流程的不同之处在于,它可以在使用者将Code Commit至Server之后, 即时的进行一连串的Build、Unit Test、Intergration Test或是Analysis等动作, 确保你所Commit的Code是能够Build以及通过各种测试的, 在这边就不详细的介绍,大家可以参考网络上许多详细的介绍, 今天所要介绍的是一款由JetBrains公司的产品TeamCity, 他在操作和使用上都还满简单的,也提供了网页界面来让大家进行操作, 所以一旦安装完成之后,只要透过浏览器就可以设定CI Server, 以及观看每一个Build的结果如何,还可以透过一些Plug-in或Email来即时获得建置的资讯喔! 接下来会从安装开始,陆陆续续地以几篇文章的方式来介绍, 和大家分享一些在使用上的心得 实际演练 我们可以在TeamCity的官网网站下载主程序, 免费的版本会有些功能及设定上的限制,这几篇的介绍也是以免费版本为主, TeamCity的安装十分简单,就让我们一步一步来看看怎么安装吧! 欢迎画面

Linux-Monitor-Tools

六眼飞鱼酱① 提交于 2019-11-28 05:35:55
80+ Linux Monitoring Tools for SysAdmins command line tools 1、top :系统自带 This is a small tool which is pre-installed on many unix systems. When you want an overview of all the processes or threads running in the system: top is a good tool. Order processes on different criteria – the default of which is CPU. 2、htop: Htop is essentially an enhanced version of top. It’s easier to sort by processes. It’s visually easier to understand and has built in commands for common things you would like to do. Plus it’s fully interactive. 3、atop: Atop monitors all processes much like top and htop, unlike top

详述 IntelliJ IDEA 的使用界面

爷,独闯天下 提交于 2019-11-27 19:49:39
是否还记得在博文“ IntelliJ IDEA 安装目录的核心文件讲解 ”中,这张充满神秘色彩的图片呢?进入她,让咱们一起感受她的魅力吧! 如上图所示,打开 IntelliJ IDEA 后,首先迎接咱们的就是这个界面: 标注1: Create New Project 创建一个新的项目; 标注2: Import Project 导入一个已有的项目; 标注3: Open 打开一个已有的项目; 标注4: Check out from Version Control 可以通过服务器上的项目地址 Checkout(俗称:检出) 项目。 在这里,为了进一步介绍 IntelliJ IDEA,咱们创建一个 Static Web 项目,点击 Create New Project ,进入如下界面: 标注1:IntelliJ IDEA 支持的框架及语言; 标注2:与 标注1 相对应的框架或语言的进一步分类。 在这里,咱们选择“ Static Web”–>“ Static Web”,然后点击“Next”,进入下一步: 标注1:项目名称(咱们自已定义,一般都小写,多个单词用下划线连接); 标注2:项目存储地址; 标注3:模块名称(默认与项目名称相同); 标注4:内容跟路径; 标注5:模块文件存储地址; 标注6:项目格式。 在这里,有一点需要说明,那就是: 在 IntelliJ IDEA 中, Project

本地安装maven库与IDEA安装本地maven库

淺唱寂寞╮ 提交于 2019-11-27 16:47:53
1.在Maven官网下载最新版的安装包:http://maven.apache.org/download.cgi 2.将文件解压到D:\Tool\maven目录下: 3.新建环境变量MAVEN_HOME,赋值D:\Tool\maven 4. 编辑环境变量Path,追加%MAVEN_HOME%\bin\; 5.检查maven是否安装成功 我们可以通过DOS命令检查一下我们是否安装成功: mvn -v 出现此页面就代表maven本地库安装成功 5.2容易错误的地点 前面4步安装成功之前打开的cmd运行mvn -v命令不会成功 如果出现 JAVA_HOME 应该指向JDK而不是JRE 请检查环境变量PATH是否配置了JRE的地址,如果有就删除 请仔细检查JAVA_HOME,MAVEN_HOME 这两个变量的值不应该出现';'(分号) 如果有就删除 请仔细检查PATH中每一个引入的最后是否有';'(分号) 如果没有就加上 win10中编辑环境变量会自动分隔,不需要加';'(分号) 6. 配置 Maven 本地仓库 6.1. 在 D:\Tool\maven 目录下新建 maven-repository 文件夹,该目录用作 maven 的本地库。 6.2. 打开 D:\Tool\maven\conf\settings.xml 文件 . 6.3. 查找下面这行代码: <

arcgis python 获得打印机

这一生的挚爱 提交于 2019-11-27 16:47:11
class ToolValidator: """Class for validating a tool's parameter values and controlling the behavior of the tool's dialog.""" def __init__(self): """Setup the Geoprocessor and the list of tool parameters.""" import arcgisscripting as ARC self.GP = ARC.create(9.3) self.params = self.GP.getparameterinfo() def initializeParameters(self): """Refine the properties of a tool's parameters. This method is called when the tool is opened.""" import arcpy.mapping as MAP printerList = MAP.ListPrinterNames() if not self.params[1].Altered: self.params[1].Filter.List = printerList return def updateParameters

30-类属性、实例属性

夙愿已清 提交于 2019-11-27 16:06:40
类属性、实例属性 class Tool(object): 类属性 num = 0 方法 def init (self,name): # 实例属性 self.name = name Tool.num += 1 tool1 = Tool(“a”) # 实例对象 tool2 = Tool(“b”) # 实例对象 tool3 = Tool(“c”) # 实例对象 print(Tool.num) 实例方法、类方法、静态方法 class Game(object): # 类属性 num = 0 # 实例方法 接受对象 def init (self): # 实例属性 self.name = “laowang” # 类方法 对属性进行修改 @classmethod 接受类的引用 def add_num(cls): cls.num = 100 # 静态方法 静态方法可以不传参数 @staticmethod def print_menu(): print("------1-----") print("------2-----") print("------3-----") game = Game() 通过类的名字调用类方法 Game.add_num() 通过类创建出来的对象调用方法 game.add_num() print(Game.num) 100 Game.print_menu() game

1.1 Spring Tool Suite 简介

本秂侑毒 提交于 2019-11-26 21:30:02
1.1 Spring Tool Suite简介 1.1 Spring Tool Suite简介 如果要开始学习 Spring 并使用 Spring 社区所提供的指南和 Starter 项目的话,那么最好的起步方式之一就是下载 Spring Tool Suite(STS) 。 STS 是一个自定义版本的 Eclipse ,它被用来与各种 Spring 项目进行协作,它同时还包括 Groovy 和 Gradle 功能。即便如此,你可能像我一样,还会使用其他的 IDE ,但是,我强烈建议你给 STS 一个机会,因为它通过 "Getting Started" 项目,能够让你快速地了解 Spring 广阔的生态系统。 所以,你可以访问 这个网站 下载 STS 的最新发布版。在生成第一个 Spring Boot 项目之前,首先需要安装 Gradle 对 STS 的支持。在 Dashboard 中,可以看到 "Manage IDE Extensions" 按钮,然后,需要在 "Language and framework tooling" 区域中选择下载 "Gradle Support" 。 还推荐你下载 "Groovy Eclipse" 以及 "Groovy 2.4 compiler" ,如图1-1 所示,在本书的后文中,介绍使用 geb 构建验收测试时会用到它们。 原文链接: 1.1

Window Types(Tool windows/document windows)/窗口类型(工具窗口/文档窗口) in VS

半城伤御伤魂 提交于 2019-11-26 18:29:51
中文: http://msdn.microsoft.com/zh-cn/library/xs71dea4(VS.80).aspx English: http://msdn.microsoft.com/en-us/library/xs71dea4(VS.80).aspx Window Types The integrated development environment (IDE) contains two basic window types: tool windows and document windows . These two window types behave in slightly different ways. Tool windows and document windows cannot be grouped together in the IDE. Tool windows Tool windows are listed on the View menu and are defined by the current application and its add-ins. You can configure tool windows in the IDE to: Show or hide automatically Tab link with other