linux 下ws.send() 报错BrokenPipeError ...
分类:
其他好文 时间:
2021-06-22 18:11:36
阅读次数:
0
LRU Least Recently Used 最近最少使用算法 LRU可以算是书本中比较熟悉的算法了,有缓存存在的场景下,基本都会有它的身影。它的作用就是在空间一定的缓存中,淘汰掉最近最少使用的数据,这样就有空间容纳新的数据。 那么假如需要设计一个类似LRU的算法,要支持获取数据get和插入数据p ...
分类:
编程语言 时间:
2021-06-06 19:22:57
阅读次数:
0
https://hyperledger-fabric.readthedocs.io/en/latest/channels.html Channels A Hyperledger Fabric channel is a private “subnet” of communication between ...
分类:
其他好文 时间:
2021-06-02 17:34:38
阅读次数:
0
photoshop javascript window 的一个例子 参考连接:Photoshop scripts · GitHub // Open Recent Files - Adobe Photoshop Script // Description: displays a Recent File ...
分类:
编程语言 时间:
2021-05-25 18:18:28
阅读次数:
0
原文链接:(1条消息) 安装pip报错Traceback (most recent call last): File "get-pip.py", line 22318, in <module> main()_festone000的专栏-CSDN博客 首选说明,我全部注释了Ubuntu自带的源,全改成 ...
分类:
其他好文 时间:
2021-05-04 15:28:07
阅读次数:
0
os.makedirs()遇到的报错解决 本文基于Windows 10提出解决办法 先贴出遇到的错误: PermissionError Traceback (most recent call last) <ipython-input-29-273e681a3508> in <module> 1 im ...
分类:
其他好文 时间:
2021-05-03 13:18:49
阅读次数:
0
问题一:atxserver2-android-provider中平台无法显示Android设备 [D 210424 18:27:37 device:212] [5230d487] tcpproxy.js start *:20000 -> 20002[E 210424 18:27:37 main:26 ...
分类:
其他好文 时间:
2021-04-26 13:17:09
阅读次数:
0
>>> s = txt.lower().split()>>> dd = {}>>> for word in s:... if word not in dd:... dd[word] = 1... else:... dd[word] = dic[word] + 1...>>> ss = sorted( ...
分类:
其他好文 时间:
2021-04-23 12:18:32
阅读次数:
0
EC2 Instance Pricing Options On-Demand Pay by the hour or the second depending on the type of instnace you run. Great for flexbility. (Run proprotype ...
分类:
其他好文 时间:
2021-04-14 12:14:34
阅读次数:
0
用python写数据库连接时要用到数据连接池于是就想到了DBUtils ,这个简单pip install DBUtile 安装完后写代码测试一下 from DBUtils.PooledDB import PooledDB Traceback (most recent call last): File ...
分类:
数据库 时间:
2021-04-02 13:02:54
阅读次数:
0