个人感觉默认Git Bash 简直没脸看(乌漆嘛黑),Google了下如何修改Git Bush 1.修改.minttyrc文件 FontHeight=16 Font=Consolas Transparency=low FontSmoothing=full Locale=zh_CN Charset=G ...
/* RANDRECT.C -- Displays Random Rectangles */ #include <windows.h> #include <stdlib.h> //for the rand function LRESULT CALLBACK WndProc(HWND,UINT,WPA ...
分类:
其他好文 时间:
2020-07-16 22:08:07
阅读次数:
107
今天写了两个小练习 了解了一下JAVA的类部分 其中一个小练习是用工具类来完成随机数的产生和排序 另一个是让用户输入两个数并输出最大值 package a20200716;import java.util.Random;import java.util.Arrays;public class a20 ...
分类:
其他好文 时间:
2020-07-16 21:53:55
阅读次数:
50
安全变量 GitLab CI/CD的安全变量有两种,群组安全变量和项目安全变量,群组安全变量可作用于当前群组下所有项目以及子群组项目,递归继承;项目安全变量只作用当前项目。 实际项目配置的群组变量有:CI_REGISTRY(本地Docker Registry的地址),项目变量有:CI_REGISTR ...
分类:
编程语言 时间:
2020-07-16 21:26:07
阅读次数:
64
学习使用PIL生成随机验证码图片的实例! 效果: 代码: # 使用生成随机验证码图片 # Python 3.5.1 import string from random import randint, sample from PIL import Image, ImageDraw, ImageFont ...
分类:
其他好文 时间:
2020-07-16 12:26:42
阅读次数:
69
import csv import random class XmlFormat(object): def __init__(self): self.wf = open('data/res_location.xml', 'w', encoding='utf-8') self.add_header() ...
分类:
其他好文 时间:
2020-07-15 23:52:04
阅读次数:
67
mininet> r1 xterm Warning: This program is an suid-root program or is being run by the root user. The full text of the error or warning message cannot ...
分类:
Web程序 时间:
2020-07-15 23:29:02
阅读次数:
112
1. 存储 /** * @param file 文件 * @param fileUploadPath 存储根路径 * @param staticFileServer 访问根域名 */ public static DataGrid<StaticFileObj> uploadFile(Multipart ...
分类:
其他好文 时间:
2020-07-15 15:30:50
阅读次数:
54
查询Mysql当前正在运行的SQL语句:show full processlist或者show processlist 结果都是从information_schema.processlist表取的结果,所以也可以主直接查询该表select info from information_schema.p ...
分类:
数据库 时间:
2020-07-15 15:27:02
阅读次数:
69
方法:类应该具有的功能;比如 Math.random();Arrays.sort();.... public void eat() { System.out.println("人可以吃饭"); } public void talk(String lanuage) { System.out.print ...
分类:
其他好文 时间:
2020-07-15 15:11:24
阅读次数:
57