Managing Growing Projects Packages and Crates A crate is a binary or library. The crate root is a source file that the Rust Compiler starts from and m ...
前言 由于我安装时选择的是英文最小安装,导致缺失了中文软件支持。解决办法: sudo apt install ibus-pinyin 那么问题来了,什麼是ibus? iBus & Fcitx iBus Intelligent Input Bus,简称IBus,是 Unix-like 操作系统下的多语 ...
分类:
系统相关 时间:
2021-01-26 11:50:30
阅读次数:
0
转自:https://www.cnblogs.com/ggjucheng/archive/2011/12/14/2287738.html https://www.cnblogs.com/fengliu-/p/10219850.html https://blog.csdn.net/m122385376 ...
分类:
其他好文 时间:
2021-01-25 11:36:24
阅读次数:
0
Input: intervals = [[1,3],[2,6],[8,10],[15,18]] Output: [[1,6],[8,10],[15,18]] Explanation: Since intervals [1,3] and [2,6] overlaps, merge them into ...
分类:
其他好文 时间:
2021-01-25 11:29:04
阅读次数:
0
最近在做基于容器的CI/CD, 一个朴素的自动部署的思路是: 从Git Repo打出git tag,作为镜像Tag ssh远程登录到部署机器 向部署环境注入镜像Tag,拉取镜像,重新部署 下面分享我是如何在K8s、docker-compose中注入镜像TAG(持续部署)? k8s 熟悉k8s的同学知 ...
分类:
其他好文 时间:
2021-01-25 11:24:55
阅读次数:
0
1.父域页面(a.html):act/msg/evalStr 为自定义属性 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Insert title here</title> </head> <body> <input type ...
分类:
其他好文 时间:
2021-01-25 11:20:46
阅读次数:
0
Stream主要用于序列化地数据处理(read or write input into output sequentially),比如文件读写,网络数据传输, 或任何端到端的数据交换。Stream在处理数据的时候,与传统方式有所不同,传统方式是把数据作为一个整体进行处理,而stream则是把数据分割 ...
分类:
Web程序 时间:
2021-01-25 11:16:01
阅读次数:
0
https://docs.microsoft.com/en-us/aspnet/core/fundamentals/logging/?view=aspnetcore-5.0 "Logging": { "MinimumLevel": { "Default": "Debug", "Override": ...
分类:
其他好文 时间:
2021-01-25 11:03:58
阅读次数:
0
name = input("name:") age = int(input("age:")) job = input("job:") salary = input("salary:") info = ''' info of '''+ name +''' name:'''+ name +''' age ...
分类:
编程语言 时间:
2021-01-25 10:40:51
阅读次数:
0
1.souce:在当前bash环境下读取并执行FileName中的命令。 可以在shell启动前加载环境变量 weidiandeMacBook-Pro:myshworkspace weidian$ pwd /Users/weidian/myshworkspace weidiandeMacBook-P ...
分类:
其他好文 时间:
2021-01-22 12:29:08
阅读次数:
0