清华: https://pypi.tuna.tsinghua.edu.cn/simple 豆瓣: http://pypi.douban.com/simple/ 阿里: http://mirrors.aliyun.com/pypi/simple/ ...
分类:
其他好文 时间:
2020-02-15 15:20:45
阅读次数:
43
参考: https://segmentfault.com/a/1190000016087451 https://www.cnblogs.com/aoede jacqueline/archive/2019/07/25/11244714.html 为什么要生成可执行文件 不需要安装对应的编程环境 可以将 ...
分类:
编程语言 时间:
2020-02-15 13:45:06
阅读次数:
66
simple版本nn模型 训练手写数字处理 import tensorflow as tf from tensorflow.examples.tutorials.mnist import input_data #载入数据集 mnist=input_data.read_data_sets("MNIST ...
分类:
其他好文 时间:
2020-02-15 09:59:32
阅读次数:
81
1 public static void main(String[] args) throws ParseException { 2 /** 3 * 获取当前时间 4 * 5 */ 6 Date date = new Date(); 7 /**转换提日期输出格式*/ 8 SimpleDateForm ...
分类:
编程语言 时间:
2020-02-15 09:24:46
阅读次数:
126
恢复内容开始 requirements.txt文件是为了维护python项目相关的依赖包依赖包及其精确的版本号。以便后续新环境部署。 生成requirements.txt文件: 在python工程目录输入:pip freeze > requirement.txt 如图: 查看requirements ...
分类:
编程语言 时间:
2020-02-15 00:13:22
阅读次数:
103
1.pip国内的一些镜像 阿里云 http://mirrors.aliyun.com/pypi/simple/ 中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/ 豆瓣(douban) http://pypi.douban.com/simple/ 清华大学 ...
分类:
其他好文 时间:
2020-02-14 20:53:52
阅读次数:
65
一、springMVC项目配置文件 1、web.xml文件全局配置 <servlet> <servlet-name> dispatcher </servlet-name> <servlet-class> org.springframework.web.servlet.DispatcherServle ...
分类:
编程语言 时间:
2020-02-14 18:53:11
阅读次数:
82
/*进入数据库*/ USE example; /*查询student表*/ SELECT * FROM student; 例子 /*进入数据库*/ USE `example`; /*判断是否存在这张表,存在就删除*/ DROP TABLE IF EXISTS `simple`; /*创建表*/ CR ...
分类:
数据库 时间:
2020-02-14 01:18:53
阅读次数:
113
Redis没有直接使用C语言传统的字符串表示(以空字符结尾的字符数组,以下简称C字符串),而是自己构建了一种名为简单动态字符串(simple dynamic string,SDS)的抽象类型,并将SDS用作Redis的默认字符串表示。 当Redis需要的不仅仅是一个字符串面量,而是一个可以被修改的字 ...
分类:
其他好文 时间:
2020-02-14 01:13:12
阅读次数:
71
未来的某个时间点执行一次某任务的命令: ,`batch` 命令执行的结果,会发送到任务发起者的邮箱 周期性运行某任务: 命令执行的结果,会发送到任务发起者的邮箱 本地邮件服务 发邮件的协议:smtp(simple mail transmission protocol) 收邮件的协议: pop3(po ...
分类:
系统相关 时间:
2020-02-14 00:47:08
阅读次数:
107