vagrant启动报错 报错内容 from C:/HashiCorp/Vagrant/embedded/gems/2.2.7/gems/vagrant-2.2.7/lib/vagrant/util/busy.rb:19:in `busy' 进入 C:\HashiCorp\Vagrant\embedd ...
分类:
其他好文 时间:
2021-02-16 12:13:48
阅读次数:
0
/* { ###################### # Author # # Gary # # 2021 # ###################### */ #include<bits/stdc++.h> #define rb(a,b,c) for(int a=b;a<=c;++a) #de ...
分类:
其他好文 时间:
2021-02-15 12:03:57
阅读次数:
0
目的:为了使git提交的代码能够方便的code review,因此需要搭建一套code review环境。根据网上的建议,选择使用RBTools源码安装(www.reviewboard.org)。 当前系统环境:centos8.1.1911仅支持python3.6 (1)下载RBTools源码:RB ...
分类:
其他好文 时间:
2021-02-08 12:43:19
阅读次数:
0
TXT 1、读取TXT文件 with open('File.txt' , 标识符) as f: print(f.read()) 标识包括:r——文本文件;rb——二进制文件 读取函数有:read()、readlines()、readline() read():一次读取整个文件,直接将所有文件的内容都 ...
分类:
编程语言 时间:
2021-01-28 12:09:40
阅读次数:
0
安装及初始化 清华源镜像 # 安装 [root@ubuntu1804:~]# dpkg -i gitlab-ce_13.7.1-ce.0_amd64.deb # 修改配置文件 [root@ubuntu1804:~]# vim /etc/gitlab/gitlab.rb external_url 'h ...
分类:
其他好文 时间:
2021-01-14 10:38:08
阅读次数:
0
自动导入模块:io 文件的打开:open函数,返回一个文件对象 fobj=open('文件路径') 文件的打开方式:mode='rb' r: 以读取的方式打开文件,文件不存在则报错 (默认值:rt) t: 文本模式 w:以写入的方式打开文件,,不能读取,有则清空,无则创建 a:以追加的方式打开文件, ...
分类:
其他好文 时间:
2021-01-02 11:10:40
阅读次数:
0
ftp相关的包不需要安装,python自带 # -*- coding:utf-8 -*- from ftplib import FTP def upload(f, remote_path, local_path): fp = open(local_path, "rb") buf_size = 102 ...
分类:
编程语言 时间:
2020-12-29 11:28:50
阅读次数:
0
Ruby Script Demo Portscan.rb #!/usr/bin/ruby require 'socket' TARGET = ARGV[0] || '192.168.2.22' MINPORT = ARGV[1] || 22 MAXPORT = ARGV[2] || 80 $i = ...
分类:
Web程序 时间:
2020-12-18 12:51:30
阅读次数:
4
1 base64 的基本使用 import base64 with open('../static/upload/63bc620d1594779d6a98c53a3a8db1e5.png','rb') as f: data=f.read() encodesstr=base64.b64encode(d ...
分类:
其他好文 时间:
2020-11-08 17:03:35
阅读次数:
22
1.下载 https://itqiankun.oss-cn-beijing.aliyuncs.com/others/brew_install.rb 或者 https://raw.githubusercontent.com/Homebrew/install/master/install 安装 ruby ...
分类:
系统相关 时间:
2020-10-30 12:48:40
阅读次数:
22