拉取镜像 root@EricZhou-MateBookProX: docker pull jenkins/jenkins:lts lts: Pulling from jenkins/jenkins 3192219afd04: Pull complete 17c160265e75: Pull comp ...
分类:
其他好文 时间:
2020-09-17 21:34:17
阅读次数:
29
When searching google with the keywords 'n-way anova python', you almost get nothing but one-way/two-way ANOVA from scipy. I developed a C++ version y ...
分类:
编程语言 时间:
2020-09-17 21:33:43
阅读次数:
31
一 什么是 Nacos 服务注册中心和配置中心。 二 使用 下载和启动 使用有两种方式 1.自己下载源码编译 2.下载编译好的压缩包 我比较懒选择了第二种方式。 最新稳定版本 下载地址:https://github.com/alibaba/nacos/releases 还有的版本是:https:// ...
分类:
其他好文 时间:
2020-09-17 20:57:52
阅读次数:
32
一、实例绑定属性和方法(动态语言特有) 先定义class: class Student(object): pass 给实例绑定一个属性: >>> s = Student() >>> s.name = 'Michael' # 动态给实例绑定一个属性 >>> print(s.name) Michael ...
分类:
编程语言 时间:
2020-09-17 20:34:38
阅读次数:
34
题:https://codeforces.com/contest/1404/problem/E 题意:给定n*m矩阵‘#’表示要用砖头覆盖,‘.’表示不能被覆盖,只有1*x的砖头(x可任意),问在砖头不相互覆盖的前提下,最少用几块砖头能按规定把矩阵覆盖 分析: 假设一开始全部都是1*1的砖头去覆盖, ...
分类:
其他好文 时间:
2020-09-17 20:08:46
阅读次数:
22
有时候多个文件同时打开一行tab放不下,该怎么办呢? 一行不行就多行吧... 如下图所示 设置方式: File>Settings>Editor>General>Editor Tabs > Show tabs in one row 取消勾选即可 ...
分类:
其他好文 时间:
2020-09-17 19:49:31
阅读次数:
43
VSAT Service Providers http://www.marinesatellitesystems.com/index.php?page_id=22 Satellite Networks and Technologies Your selection of a marine satel ...
分类:
其他好文 时间:
2020-09-17 19:36:58
阅读次数:
33
TIOBE编程语言排行榜7月更新已公布,排名前十的分别是:Java,C,Python,C++,C#,VisualBasic.NET,JavaScript,PHP,SQL和汇编语言。TIOBE编程社区指数(TheTIOBEProgrammingCommunityindex)是编程语言流行度的指标,该榜单每月更新一次,指数基于全球技术工程师、课程和第三方供应商的数量。包括流行的搜索引擎,如谷歌、必应、
分类:
编程语言 时间:
2020-09-17 19:11:41
阅读次数:
28
uint32_t reverseBits(uint32_t n) { int arr[32] = {0}; int i=0; while(n) { arr[i++] = n % 2; n /= 2; } for(i=0; i<32; i++) { n += (arr[i])? pow(2,32-1- ...
分类:
其他好文 时间:
2020-09-17 18:00:01
阅读次数:
18