#1、皮肤选择 #2、页面定制 CSS 代码 @font-face { font-family: 'FontAwesome'; font-style: normal; font-weight: normal; } * { margin: 0; padding: 0; } body { backgro ...
分类:
其他好文 时间:
2020-05-07 00:37:21
阅读次数:
51
1 import numpy as np 2 import matplotlib.pyplot as plt 3 import matplotlib 4 matplotlib.rcParams['font.family']='SimHei' 5 matplotlib.rcParams['font.s ...
分类:
编程语言 时间:
2020-05-06 20:12:25
阅读次数:
96
文献名:Improving Identification of In-organello Protein-Protein Interactions Using an Affinity-enrichable, Isotopically Coded, and Mass Spectrometry clea ...
分类:
其他好文 时间:
2020-05-06 18:03:32
阅读次数:
75
GsonFormat 一键根据json文本生成java类 非常方便 alt+s 调用 Maven Helper 一键查看maven依赖,查看冲突的依赖,一键进行exclude依赖 对于大型项目 非常方便 GenerateAllSetter 一键调用一个对象的所有set方法并且赋予默认值 在对象字段多 ...
分类:
其他好文 时间:
2020-05-06 14:12:12
阅读次数:
81
C:\Users\JChen46>mysql -u root -p Enter password: ****** Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 6 Server ...
分类:
数据库 时间:
2020-05-06 13:50:05
阅读次数:
66
一.Pycharm 下载和安装 原文地址:https://www.shuopython.com/archives/2792 Pycharm 下载和安装请参考:Python 环境配置 ,当前版本是2017.2可能安装的时候有点早,目前最新版本已经是2019版本了,所以当时文章的激活码应该都过期了,下面 ...
分类:
其他好文 时间:
2020-05-06 12:09:42
阅读次数:
875
#include <stdio.h> //让n被i除(i的值从2到n-1)int main(){ int n,i; printf("please enter a integer number,n=?"); scanf("%d",&n); for(i=2;i<=n-1;i++) if(n%i==0) ...
分类:
其他好文 时间:
2020-05-05 12:49:00
阅读次数:
274
1 from PIL import Image 2 import numpy as np 3 4 a = np.asarray(Image.open('D:\\python_common_exercise\\exercise\\taylor.jpg').convert('L')).astype('f ...
分类:
其他好文 时间:
2020-05-05 10:58:07
阅读次数:
68
摘要 最近将微人事这个开源项目进行了复现,这篇文章记录mybaits访问数据库这一块。 其中MyBatis是一个流行的持久层框架,支持自定义SQL、存储过程和高级映射。MyBatis消除了几乎所有的JDBC代码、手动设置参数和检索结果。MyBatis可以使用简单的XML或注释进行配置,实现对数据库的 ...
分类:
其他好文 时间:
2020-05-04 21:44:19
阅读次数:
84