V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  gwy15  ›  全部回复第 12 页 / 共 12 页
回复总数  239
1 ... 3  4  5  6  7  8  9  10  11  12  
2019-12-16 20:37:50 +08:00
回复了 JCZ2MkKb5S8ZX9pq 创建的主题 Python 快速使用 Python 小工具的方法请益
如果常用,打包到 setup.py 里的 scripts 里面然后 setup.py install。这个默认就在 path 里面,就跟 flask 或者 gunicorn 这种命令一样,随处都可以运行还跨平台。

另外如果要经常修改,用 setup.py develop
2019-12-15 13:05:07 +08:00
回复了 nyanyh 创建的主题 C++ 这种情况下虚函数能使用模板代替吗?
用模板,ClassA1 的模板参数得是一个具体的类而不是模板类,这里的依赖变成了
type(a1) = classA1<type(b1)> = classA1<classB1<type(a1)>>
所以构成了循环依赖,模板系统里这个方程的解是不存在的,模板没法展开。

如果不关心具体的实现,这样可以通过编译。但是调用的是 derived<int>,不是你想要的那个结果
```c++
classA1<classB1<int>> a1;
classB1<classA1<int>> b1;

a1.ptrToAnother = new classB1<int>();
b1.ptrToAnother = new classA1<int>();

a1.ptrToAnother->func();
b1.ptrToAnother->func();
```
要在路由器层面做得 自签 CA+MITM 做 301/302,不过我建议直接浏览器写个油猴插件……
有 supervisord 这种现成的解决方案为什么不用呢?或者自带的 systemd 也行啊?
2019-12-11 11:02:10 +08:00
回复了 yeyu1989 创建的主题 Python 如何比较两个大的文本文件内容的差异
看看 Myers 算法
2019-12-09 15:59:14 +08:00
回复了 zhoushiya 创建的主题 分享发现 刚发现居然还有不怕死的提供 20G 免费网盘?还不限速?
这推广有点硬……奶牛快传不是一样的吗,界面还比这个好看
只针对个人博客的话,最简单的办法是套上 CDN 全站加速,这个是支持 ipv6 的
2019-11-26 17:20:58 +08:00
回复了 CrazyRain0001 创建的主题 问与答 有什么好的代码文件内容自动整理工具吗?
看你啥语言了,
C 系:clang-format
py:autopep8
2019-11-24 18:50:38 +08:00
回复了 googlehub 创建的主题 程序员 老生常谈的密码管理问题
@houshuu KeeWeb 了解一下,electron 开发,不仅跨平台还有离线网页
2019-11-24 00:10:29 +08:00
回复了 yukinotech 创建的主题 PowerShell powershell 一个很诡异的问题
进入了选中模式,不用 ctrl c,用回车也可
2019-11-15 23:11:38 +08:00
回复了 666VS2333 创建的主题 问与答 域名购买
海外市场 namesilo+aws/digitalocean+cloudflare 就行
另外提供自动生成的字幕
https://c-t.work/s/c6ef099beefe4f
复制粘贴:
1st -> 1:33
-> when you should commit() your database session
2nd -> 7:20
-> three attributes of the session you probably don't know about (new, deleted, dirty) sounds great for all tracking of changes to objects
3rd -> 11:08
-> related to 2nd regarding when these 3 lists are cleaned and when the db session is cleared in Flask SQLAlchemy; remove() method of the session; how does it affect long-running tasks (e.g celery); be aware of memory usage
4th -> 14:09 -> nice way for handling db.session.remove() and keeping clean the session via context manager.
你这个问题是直接用 r.text 包含一个隐式 decode,如果 requests 没有成功猜对编码会直接抛异常。需要手动解码的情况,采用 bytes = r.content.decode('utf8').encode('utf8')

另外如果 utf8,gbk,Windows-1254 都失败,可以尝试一下 GB18030,或者拷贝出来原值找个猜测解码的网站
2019-11-06 20:38:20 +08:00
回复了 gowk 创建的主题 程序员 请大家推荐一个 Go 相关的域名
如果要备案就阿里云(万网)吧,不然 namesilo
2019-11-06 18:54:31 +08:00
回复了 hjq98765 创建的主题 Python Python 的 json 包好像有个小 bug?
看一下 cc['y'].__class__,不一定是 int
2019-11-06 14:03:28 +08:00
回复了 uti6770werty 创建的主题 Python 如何屏蔽 pyppeteer 的一些日志输出?
Launcher(options={'logLevel': logging.WARNING})
1 ... 3  4  5  6  7  8  9  10  11  12  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   2711 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 40ms · UTC 12:30 · PVG 20:30 · LAX 04:30 · JFK 07:30
Developed with CodeLauncher
♥ Do have faith in what you're doing.