V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  sazima  ›  全部回复第 1 页 / 共 13 页
回复总数  258
1  2  3  4  5  6  7  8  9  10 ... 13  
11 天前
回复了 qiayue 创建的主题 分享创造 预告一个小产品,让天下没有难上的站
做什么用的, 看不太懂
31 天前
回复了 MEIerer 创建的主题 求职 公司解散,被迫 gap
贴了个个人站点, 怎么还需要登陆
经济好了吗
研究一下, 不把文件实际解压到磁盘上,只把代码读到内存中也是可以的
把项目代码压缩成 zip , 写一个启动器解压代码并执行。
@lengmou 一般翻个身就好了
比如这个, 运算符就重载了,sesseion.User.filter(User.name == User.nickname | User.age < 15 )
96 天前
回复了 RunDuck 创建的主题 职场话题 程序猿失业,有去搞外挂的嘛?
写过自己用的没敢卖, 相同功能的咸鱼上包月 50 。网友说要买我的永久 700
是不是把 base64 字符串写到日志里面了。
更正:
response.headers['Content-Disposition'] = 'attachment; filename=example.mp3'
bytesio:

```python
process = (
ffmpeg
.input(ogg_path)
.output('pipe:', format='wav')
.run_async(pipe_stdout=True, pipe_stderr=True)
)
out, err = process.communicate()
io = BytesIO(out)

# 创建响应并设置合适的头信息
response = make_response(send_file(io, mimetype='application/octet-stream', as_attachment=True, download_name='example.mp3'))
response.headers['Content-Disposition'] = 'attachment; filename=example.bin'
return response
```
103 天前
回复了 boliang2333 创建的主题 Android 手机刷取了恶意的格机模块怎么办
天机有些 cpu 可以秒解锁 直接强刷
测速
116 天前
回复了 lynn057 创建的主题 职场话题 后端要不要转 AI 应用开发
mark, 不过我建议自己写着玩看看。
这是作弊吗?
199 天前
回复了 zywscq 创建的主题 Python 9 个 Python 中比较复杂的类型注解总结
还有 Generic 泛型
直接按距离查就行, 之前做过和 gis 相关的。

https://dev.mysql.com/blog-archive/geography-in-mysql-8-0/
2022-08-16 18:20:27 +08:00
回复了 rshun 创建的主题 Google 现在注册一个 gmail 这么难?
用 ie 浏览器就可以注册了, 很神奇。
2022-08-16 18:19:05 +08:00
回复了 pppguest3962 创建的主题 Python Win 环境,如何非阻塞运行一个 windows 命令?
loop.run_in_executor
1  2  3  4  5  6  7  8  9  10 ... 13  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   1754 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 34ms · UTC 16:39 · PVG 00:39 · LAX 08:39 · JFK 11:39
Developed with CodeLauncher
♥ Do have faith in what you're doing.