快速安装命令如下: sudo apt-cache search sogou sudo apt-get install sogoupinyin sudo apt --fix-broken install 【根据上一条命令的实际情况看】 sudo apt-get install sogoupinyin ...
分类:
其他好文 时间:
2020-04-30 15:20:27
阅读次数:
923
find : find命令详解 find 解释:find search for files in a directory hierarchy 用法:Usage: find [ H] [ L] [ P] [ Olevel] [ D help|tree|search|stat|rates|opt|exe ...
分类:
其他好文 时间:
2020-04-30 13:24:30
阅读次数:
247
安装ElasticSearch的图形化管理工具Kibana https://www.elastic.co/cn/downloads/kibanaKibana是Elastic Search的web界面管理工具,提供可视化的es管理界面,非常人性化。 首先在网上下载kibana的tar包,解压修改con ...
分类:
其他好文 时间:
2020-04-30 11:48:17
阅读次数:
148
方法:二分查找 def binary_search(mountain, target, l, r, key=lambda x: x): target = key(target) while l <= r: mid = (l + r) // 2 cur = key(mountain.get(mid)) ...
分类:
编程语言 时间:
2020-04-30 09:43:56
阅读次数:
60
题目描述 Although Inzane successfully found his beloved bone, Zane, his owner, has yet to return. To search for Zane, he would need a lot of money, of whi ...
分类:
其他好文 时间:
2020-04-30 09:32:09
阅读次数:
48
"题目" Although Inzane successfully found his beloved bone, Zane, his owner, has yet to return. To search for Zane, he would need a lot of money, of whi ...
分类:
其他好文 时间:
2020-04-29 23:39:16
阅读次数:
77
查看可安装的jdk版本 yum search java|grep jdk 安装指定jdk版本 yum install java-1.8.0-openjdk 查看安装目录 which java 这个时候javac命令是不能执行的,需要安装java-1.8.0-openjdk-devel.x86_64 ...
分类:
其他好文 时间:
2020-04-29 20:15:21
阅读次数:
56
前言 考虑到docker hub注册中心在国内比较缓慢,可以自己配置docker加速器,或者使用老牌镜像ustc(中国科技大学), 配置方式可参考。。。。。 docker中rabbitmq安装步骤如下: 1、搜索镜像:search rabbitmq,从下图中可以看出搜出的镜像并没有带web管理界面( ...
分类:
其他好文 时间:
2020-04-29 12:23:18
阅读次数:
64
TypeScript 介绍,安装和开发工具 视频地址:https://www.bilibili.com/video/BV1yt411e7xV?from=search&seid=3283823731602112531 1. 安装: npm install -g cnpm --registry=http ...
分类:
其他好文 时间:
2020-04-29 10:58:23
阅读次数:
53
搜索长度未知的有序数组。题目给了一个数组和一个target数字,如果你能在input数组中找到target,就输出其index,否则return -1。例子, Example 1: Input: array = [-1,0,3,5,9,12], target = 9 Output: 4 Explan ...
分类:
其他好文 时间:
2020-04-29 10:54:54
阅读次数:
81