临时换源: pip2 install setuptools==44.0.0 -i https://pypi.tuna.tsinghua.edu.cn/simple 永久换源: vim ~/.pip/pip.conf [global] index-url=http://pypi.douban.com/ ...
分类:
其他好文 时间:
2020-07-09 12:15:00
阅读次数:
203
PHP 全局变量 - 超全局变量 PHP 中的许多预定义变量都是“超全局的”,这意味着它们在一个脚本的全部作用域中都可用。在函数或方法中无需执行 global $variable; 就可以访问它们。 这些超全局变量是: $GLOBALS 引用全局作用域中可用的全部变量$GLOBALS[‘z’] $_ ...
分类:
Web程序 时间:
2020-07-09 12:10:03
阅读次数:
184
定制语音代理(智能体)的背后是什么? What’s behind the move to custom voice agents? 自动化是未来的发展方向。生活在一个现在的时代,希望所有的事情都能迅速得到回答、实现和接受。尽管有了这种根本性的转变,许多人并不接受技术。对一些人来说,这与生活方式有关: ...
分类:
其他好文 时间:
2020-07-09 12:05:24
阅读次数:
72
通过建最小割树 \((Gomory-Hu\ Tree)\) 来快速求解无向图中两点间的最小割。 最小割树中的一条边的权值,为其两端点的最小割,那么任意两点之间的最小割即为路径上的最小值。 通过递归建树即可。 \(code:\) void build(int l,int r) { if(l==r) r ...
分类:
其他好文 时间:
2020-07-08 23:07:25
阅读次数:
69
前言 本系列全部基于 Spring 5.2.2.BUILD-SNAPSHOT 版本。因为 Spring 整个体系太过于庞大,所以只会进行关键部分的源码解析。 什么是公共注解?公共注解就是常见的Java注解,特别是JSR-250中的注解。例如:@Resource、@PostConstructor、@P ...
分类:
编程语言 时间:
2020-07-08 22:52:50
阅读次数:
59
git config --global user.name "用户名" git config --global user.email "用户邮箱" 同时还可以设置让VSCode记住git账号和密码:git config --global credential.helper store git con ...
分类:
其他好文 时间:
2020-07-08 22:46:00
阅读次数:
269
GTID 资料 MySQL 5.6 引入了global transaction identifiers (GTIDs,全局事务ID)的特性,这一特性是用来解决主从复制(replication)场景下的一些问题,GTID 只存在于 binlog 中,数据库中是没有的。 要了解 GTID 的话,官方文档 ...
分类:
数据库 时间:
2020-07-08 21:33:35
阅读次数:
95
1、LAMP 环境搭建 1.1 、安装 apache 安装 pcre tar -zxvf pcre-8.41.tar.gz cd pcre-8.41 ./configure --prefix=/home/pcre make make install 安装 apr tar -zxvf apr-1.6. ...
分类:
其他好文 时间:
2020-07-08 21:26:11
阅读次数:
65
Hello and Welcome to the first part of an exciting series of blog posts where you will learn how to build an end-to-end full stack polling app similar ...
分类:
移动开发 时间:
2020-07-08 19:54:59
阅读次数:
69
因为with里面,一旦结束,就会重新生成with环境变量 https://stackoverflow.com/questions/19277280/preserving-global-state-in-a-flask-application 我们需要保证每个request是独立的,这样才不会造成某个 ...
分类:
其他好文 时间:
2020-07-08 18:07:04
阅读次数:
63