V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  sazima  ›  全部回复第 1 页 / 共 14 页
回复总数  262
1  2  3  4  5  6  7  8  9  10 ... 14  
感觉身边人年龄都长了
9 天前
回复了 sazima 创建的主题 程序员 软考机考无法使用小鹤双拼
@madku 这样可以吗 设置框消失的也太快了
9 天前
回复了 sazima 创建的主题 程序员 软考机考无法使用小鹤双拼
@deepblue1 考试软件一直全屏显示在最前面,输入法不好设置
10 天前
回复了 ly901206 创建的主题 数据库 如何解决空数想据的缓存穿透?
读到空数据, 往缓存里存一个特殊字符串, 比如__null_value__, 取数据的时候判断一下。
23 天前
回复了 qiayue 创建的主题 分享创造 预告一个小产品,让天下没有难上的站
做什么用的, 看不太懂
43 天前
回复了 MEIerer 创建的主题 求职 公司解散,被迫 gap
贴了个个人站点, 怎么还需要登陆
经济好了吗
研究一下, 不把文件实际解压到磁盘上,只把代码读到内存中也是可以的
把项目代码压缩成 zip , 写一个启动器解压代码并执行。
@lengmou 一般翻个身就好了
比如这个, 运算符就重载了,sesseion.User.filter(User.name == User.nickname | User.age < 15 )
108 天前
回复了 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
```
115 天前
回复了 boliang2333 创建的主题 Android 手机刷取了恶意的格机模块怎么办
天机有些 cpu 可以秒解锁 直接强刷
测速
128 天前
回复了 lynn057 创建的主题 职场话题 后端要不要转 AI 应用开发
mark, 不过我建议自己写着玩看看。
这是作弊吗?
1  2  3  4  5  6  7  8  9  10 ... 14  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   963 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 34ms · UTC 21:25 · PVG 05:25 · LAX 13:25 · JFK 16:25
Developed with CodeLauncher
♥ Do have faith in what you're doing.