摘要: python 的asyncio的相关文章:https://realpython.com/async-io-python/#the-event-loop-and-asynciorun https://glyph.twistedmatrix.com/2014/02/unyielding.html 阅读全文
posted @ 2024-12-02 23:29 saaspeter 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 运行openai相关api的时候,需要用到代理。 key就在环境变量中建立:OPENAI_API_KEY 和 OPENAI_PROXY 在pycharm中如果想让整个python运行的时候都走代理,可以设置Environment Variables:http_proxy=http://127.0.0 阅读全文
posted @ 2024-11-27 20:52 saaspeter 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 在PyCharm的默认颜色中,如果方法名称写错了或变量名称写错了,文字下会有淡黄色波浪线,右侧滚动条也是黄色的,根本看不清楚。 经过一番搜索,发现这个贴子:https://intellij-support.jetbrains.com/hc/en-us/community/posts/11500059 阅读全文
posted @ 2024-11-15 06:24 saaspeter 阅读(9) 评论(0) 推荐(0) 编辑
摘要: from: https://weaviate.io/blog/distance-metrics-in-vector-search Vector databases - like Weaviate - use machine learning models to analyze data and ca 阅读全文
posted @ 2024-11-12 16:03 saaspeter 阅读(10) 评论(0) 推荐(0) 编辑
摘要: from: https://blog.logrocket.com/react-memo-vs-usememo/ Memoization is one of the ways to optimize performance. In this article, we’ll explore how it 阅读全文
posted @ 2024-11-06 23:18 saaspeter 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 国外的不少在线生成二维码网站,但生成后的二维码有猫腻,用相机扫描后发现网址是先经过他们自己的网站,然后再转发到我输入的网址的。 https://www.34qr.com/#text ,这个网站在线生成的二维码没有跳转,输入的是什么网址编入的就是什么网址。 阅读全文
posted @ 2024-11-05 12:07 saaspeter 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 组件地址:https://github.com/pgvector/pgvector 我的机器是MacOS,下载的postgreSQL是15,按理下载下来是自动安装了pgvector,但是测试的时候发现并没有这个extension。 按文档执行: make -- 报错,clang: error: un 阅读全文
posted @ 2024-11-03 22:47 saaspeter 阅读(48) 评论(0) 推荐(0) 编辑
摘要: react native上的notifee组建可发送local notification和remote push notification,可订阅各种Event。我使用的是local notification。另一个与之对应的是expo notification,也是很好的组建,但我的app未来想用 阅读全文
posted @ 2024-09-23 23:42 saaspeter 阅读(20) 评论(0) 推荐(0) 编辑
摘要: install packages in a virtual environment using pip and venv https://packaging.python.org/en/latest/guides/installing-using-pip-and-virtual-environmen 阅读全文
posted @ 2024-07-18 14:32 saaspeter 阅读(3) 评论(0) 推荐(0) 编辑
摘要: pip安装出错: error: externally-managed-environment × This environment is externally managed ╰─> To install Python packages system-wide, try apt install py 阅读全文
posted @ 2024-07-13 17:04 saaspeter 阅读(265) 评论(0) 推荐(0) 编辑