wget命令 wget命令用来从指定的URL下载文件。wget非常稳定,它在带宽很窄的情况下和不稳定的网络中有很强的适应性,如果由于网络的原因下载失败,wget会不断的尝试,直到整个文件下载完毕。如果是服务器打断下载过程,它会再次连到服务器上从停止的地方继续下载。这对从那些限定了链接时间的服务器上下 ...
分类:
系统相关 时间:
2021-06-09 10:36:41
阅读次数:
0
看到一篇文章,介绍了一个用Python实现的python字节码解释器: https://www.aosabook.org/en/500L/a-python-interpreter-written-in-python.html 这是源码: https://github.com/nedbat/byter ...
分类:
编程语言 时间:
2021-06-05 18:30:44
阅读次数:
0
request的header信息在通过feign调用的时候,不能直接传过去,可以写一个拦截器,给他发过去,但是中间出了个小bug,报错too many bytes written,经百度,找了如下https://blog.csdn.net/qq_39986681/article/details/10 ...
分类:
其他好文 时间:
2021-04-07 11:20:39
阅读次数:
0
https://daveceddia.com/deploy-react-express-app-heroku/ You’ve got a React app, and an API server written in Express or something else. Now – how do y ...
分类:
其他好文 时间:
2021-03-31 12:15:10
阅读次数:
0
LG5227 [AHOI2013]连通图 线段树分治板子。这种动态图的问题看都不要看,大概率可以用线段树分治。 我们有一堆的集合,每次把这个集合的边删掉,问你每个时刻的连通性。 我们只需要把这个时刻删去的集合里的边删掉,也就是这个区间不用加这条边,按常规把边扔到线段树上,遍历一下,每个点的连通性就出 ...
分类:
其他好文 时间:
2021-03-08 13:37:10
阅读次数:
0
https://pypi.org/project/retrying/ Project description Retrying is an Apache 2.0 licensed general-purpose retrying library, written in Python, to simp ...
分类:
其他好文 时间:
2021-02-27 13:27:07
阅读次数:
0
A number that will be the same when it is written forwards or backwards is known as a Palindromic Number. For example, 1234321 is a palindromic number ...
分类:
其他好文 时间:
2021-02-01 12:26:52
阅读次数:
0
复制文件 func CopyFile(dstFileName string,srcFileName string )(written int64,err error) { srcFile,srcErr := os.Open(srcFileName) if srcErr != nil{ fmt.Pri ...
分类:
其他好文 时间:
2021-01-30 12:10:15
阅读次数:
0
仅供自己学习 题目: The string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a ...
分类:
其他好文 时间:
2021-01-27 13:14:49
阅读次数:
0
原文: https://www.openshift.com/blog/kerberos-sidecar-container Introduction I was recently asked to help a customer with their app containerization. Th ...
分类:
其他好文 时间:
2021-01-01 12:52:41
阅读次数:
0