V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  gray0  ›  全部回复第 2 页 / 共 3 页
回复总数  58
1  2  3  
132 天前
回复了 gosky 创建的主题 Python Python asyncio 中怎么执行 cpu 密集型任务?
何必多 BB 直接上代码

from concurrent.futures import ProcessPoolExecutor
import asyncio

async def integration_process_and_gather():
with ProcessPoolExecutor() as process_pool:
loop = asyncio.get_running_loop()
numbers = [100000000, 1, 100, 10000, 1000000, 1000, 100000]
tasks = [
loop.run_in_executor(process_pool, do_count_number, n) for n in numbers
]
[print(type(task)) for task in tasks]
results = await asyncio.gather(*tasks)
print(f"integration_hello_world {results}")
137 天前
回复了 blueeon 创建的主题 奇思妙想 开一个失业者的咖啡馆怎么样?
想给房东装修队送钱就直说,不如送我
141 天前
回复了 yinshaojun96 创建的主题 程序员 Java 写腻了 想做点小东西 有什么推荐
@goodspb 博客赚不了钱. 三大项更是学生时代应该搞的东西(35 岁迫在眉睫,不应该这么悠闲),不如赌一把,哈哈
141 天前
回复了 yinshaojun96 创建的主题 程序员 Java 写腻了 想做点小东西 有什么推荐
如果我掏出 Map map 和 JSONObject ,阁下又该如何应对?
151 天前
回复了 gray0 创建的主题 分享发现 给大家推荐个开源的 windows 翻译软件,好用
@walkbox 右键软件->偏好设置->OCR 服务 -> +号 ->PaddleOCR ->检查数据包
151 天前
回复了 gray0 创建的主题 分享发现 给大家推荐个开源的 windows 翻译软件,好用
@IDKAFK 我也是用了一段时间,然后更新了下新版,发现好多了,然后才出来推荐一波
感谢作者我也用了好多年了
啊?这么强都找不到工作
158 天前
回复了 wanchenyi 创建的主题 Python Python3 爬虫请教
+线程 = +下载速度,这个不相等吧 ,莫名其妙啊老哥
下载视频可以试试开源项目
https://github.com/soimort/you-get
@meiguozhiguang github 有各种类型的 qinglong 脚本,自己搜搜看,比如 V2EX 签到,刷京东豆子
大哥 用 scoop 啊 怎么还在用百度
https://github.com/ScoopInstaller/Scoop
187 天前
回复了 ccnoobs 创建的主题 信息安全 网站挂马 如何根治?
@gray0 umask 077
187 天前
回复了 ccnoobs 创建的主题 信息安全 网站挂马 如何根治?
新服务器的安全小思路:

1.不应直接以 root 身份登录,新建用户,避免任何容易猜到的内容,例如 admin
2.禁用 root 密码/ssh 登录
3.更改默认的 umask 大多数 Linux 发行版默认 umask 为 022 ,这为每个用户提供了读取权限 修改为 027
sudo bash -c 'echo -e "\numask 077" >> /etc/profile'
4. SSH 安全
SSH 默认从从 ~/.ssh/authorized_keys 读取授权密钥,改为从新建的用户那里读取
# 修改/etc/ssh/sshd_config
AuthorizedKeysFile /etc/ssh/authorized_keys/{user}
尾气吸饱饱
1.开源部分过于技术性,业务/成果较少
2.自我评价精简
3.多写点项目中解决的问题和业务结果
196 天前
回复了 zerone0086 创建的主题 生活 求推荐一款走路鞋
迪卡侬 NH900 很透气
1  2  3  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   1019 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 33ms · UTC 20:54 · PVG 04:54 · LAX 12:54 · JFK 15:54
Developed with CodeLauncher
♥ Do have faith in what you're doing.