linux.do
21.9K subscribers
137K photos
203 videos
133 files
280K links
linux.do最新话题和热议话题
Download Telegram
订阅GPTPlus之后取消自动续费有几率触发免费续费,如图
2 posts - 2 participants

Read full topic

via LINUX DO - 最新话题 (author: JackMeds)

Invalid media: image
沉浸式翻译插件的哪个模型好用

不要境内模型
境外连接速度比较快和比较准的

7 posts - 7 participants

Read full topic

via LINUX DO - 最新话题 (author: crazyhaiouhun)
Linux下沙盒或Docker的使用

如何在Linux上运行沙盒,Docker。只跑VS code 和 Python 脚本,图片查看器。

1 post - 1 participant

Read full topic

via LINUX DO - 最新话题 (author: Vastsea)
【黄金】佬们来聊聊黄金

1. 黄金还会跌回800吗?
2. 短期(一个月内)黄金还会涨多少?
3. 年底黄金预计会涨到多少?

10 posts - 8 participants

Read full topic

via LINUX DO - 最新话题 (author: 21zys)
【抽奖】Augmentcode 试用账号*3 (10.21注册)

抽奖主题: 抽 3 个Augment Token 50次7天有效期,购买所得,10月21日注册

🏆️ 奖品详情:

[奖品1]:Aug Token 50次7天有效期 * 3

[形式]:SESSION 格式发放

:three_o_clock: 活动时间:

开始时间:即刻起
截止时间:2025-10-21 18:30

📝 参与方式:

在本帖下回复任意即可,希望各位佬友点赞支持!

🔍️ 抽奖规则:

每位用户仅允许参与一次。
使用官方抽奖工具工具随机抽取中奖者。

⚠️ 注意事项:

本活动将在活动截止时间后关闭回帖,以确保公正性。
中奖者将在活动结束后1小时内在本帖公布
所有规则及抽奖结果由活动发起人和论坛管理团队最终解释。

期待您的积极参与,祝您好运!如有任何疑问,欢迎随时联系抽奖发起人。

22 posts - 22 participants

Read full topic

via LINUX DO - 最新话题 (author: HOX2333)
本人在macOS 26上python开发遇到的一个问题,我觉得很有代表性,供佬们参考

我的macOS版本为:
ProductName:            macOS
ProductVersion: 26.0.1
BuildVersion: 25A362

我使用PyCharm开发程序时,程序内含对Tkinter的引用,在PyCharm内,无论是内置虚拟环境,还是系统环境,直接运行都提示如下:
/usr/bin/python3 /Users/***/PyCharmMiscProject/script.py
macOS 26 (2600) or later required, have instead 16 (1600) !

进程已结束,退出代码为 134 (interrupted by signal 6:SIGABRT)

但是同样的代码,我直接在终端内使用python3 script.py,毫无问题,可以流畅运行。

关于这个报错,我在Github上找到一个issue:
github.com/python/cpython

`platform.mac_ver()` returns macOS version of 16.0 instead of 26.0 on Tahoe

已打开 02:00PM - 18 Jun 25 UTC
已关闭 01:04PM - 22 Sep 25 UTC
bwoodsend
type-bug OS-mac stdlib pending
# Bug report ### Bug description: macOS have switched their versioning scheme to calendar based so we're going 14 -> 15 -> 26 -> 27. Python is reporting the old versioning scheme. ```console > python -c 'import platform; print(platform.mac_ver())' ('16.0', ('', '', ''), 'arm64') # Or > python -m platform macOS-16.0-arm64-arm-64bit ``` Apple appear to be pulling the same stunt with `/System/Library/CoreServices/SystemVersion.plist` (the file used to [identify the macOS version](https://github.com/python/cpython/blob/v3.13.5/Lib/platform.py#L467)) as they did with the 10.x -> 11 transition where, in order to avoid breaking code that made invalid assumptions about what the next macOS version would be, they instead broke it for everyone by making the file [dynamically mislead any program which tries to read it](https://developer.apple.com/forums/thread/664974) which isn't compiled with SDK >=26. <details><summary>Dynamic file contents!</summary> ```console > cat /System/Library/CoreServices/SystemVersion.plist <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>BuildID</key> <string>B41EBE0C-41CA-11F0-B36A-391502BEE5D6</string> <key>ProductBuildVersion</key> <string>25A5279m</string> <key>ProductCopyright</key> <string>1983-2025 Apple Inc.</string> <key>ProductName</key> <string>macOS</string> <key>ProductUserVisibleVersion</key> <string>26.0</string> # <--- Good <key>ProductVersion</key> <string>26.0</string> <key>iOSSupportVersion</key> <string>26.0</string> </dict> </plist> > python -c 'print(open("/System/Library/CoreServices/SystemVersion.plist").read())' <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>BuildID</key> <string>B41EBE0C-41CA-11F0-B36A-391502BEE5D6</string> <key>ProductBuildVersion</key> <string>25A5279m</string> <key>ProductCopyright</key> <string>1983-2025 Apple Inc.</string> <key>ProductName</key> <string>macOS</string> <key>ProductUserVisibleVersion</key> <string>16.0</string> # <--- Bad <key>ProductVersion</key> <string>16.0</string> <key>iOSSupportVersion</key> <string>26.0</string> </dict> </plist> > otool -l /bin/cat | grep sdk sdk 26.0 > otool -l (pyenv which python) | grep sdk sdk 13.3 ``` </details> The behaviour is tied to the SDK version that Python is compiled with so this affects any existing builds of Python (including the official installers) and any builds done in the future not on SDK 26. It doesn't affect the (deprecated) system installation of Python which is compiled with the latest SDK. It is possible to get around this by installing the experimental Xcode command line tools for 26 then rebuilding Python from source. Would it make sense for `platform.mac_ver()` to correct versions `[16, 26)` to their actual version? ### CPython versions tested on: 3.15 ### Operating systems tested on: macOS ### Linked PRs * gh-136339

虽然可以在终端内运行,但是开发工作我还是尽量想在PyCharm完成的,佬友们有办法解决吗?

1 post - 1 participant

Read full topic

via LINUX DO - 最新话题 (author: Eric)
结婚证找不到了怎么办

刚领证不久,然后忘记丢哪儿了,我跟我对象都不太在意这个,但是丢了需要补不?

25 posts - 17 participants

Read full topic

via LINUX DO - 最新话题 (author: 沃德玛雅)
Cursor 无限续杯,求推荐

[!info]佬友们有物美价廉的Cursor 无限续杯推荐吗?方便的话麻烦私一下,谢谢。
海鲜市场、某宝都行

3 posts - 3 participants

Read full topic

via LINUX DO - 最新话题 (author: baixiaochong)
大模型(DS、豆包之类)日渐成熟,SEO的广告发展方向会是什么样的呢

现在搜索引擎的使用率应该会低很多,那些做SEO的,包括百度那些垃圾广告的竞价收入肯定少了很多,未来广告主怎么和这些agent合作呢?广告和大模型的输出之间有冲突的话应该怎么平衡呢?
突发奇想,好奇未来会是什么样子,佬们有没有想过这个问题呀

3 posts - 2 participants

Read full topic

via LINUX DO - 最新话题 (author: FedoraLover)
读《以日为鉴》小记————持续

10-21

1、保就业还是保发展?

日本保就业的代价就是银行因不良债务破产,最终搭上了整个银行金融体系。

但比金融体系失控更大的代价有吗?

有的,因为长期的超量下跌,成家量萎靡90%,企业融资难,上市公司失去了融资的可能,日本因此错过了半导体与互联网发展的黄金10年的机遇,相反韩国则6年超过日本,成为芯片第一生成大国,日本没有孤注一掷的投入新兴产业,虽然保住了就业,但因此错过发展机遇。

1 post - 1 participant

Read full topic

via LINUX DO - 最新话题 (author: maxweil)
鱼缸的低吸水泵哪个好? 目前是森森的,用一段时间就需要清理一下,要不噪音就很大。 佬们有没有推荐好用静音的水泵呢? 扬程1.5m左右, 流量1000L的就行。

2 posts - 2 participants

Read full topic

via LINUX DO - 最新话题 (author: 星辰之间)
请教下佬友们,关于rag文档更新方便的问题

两个问题,请教下佬友们:
1、比如我有2份文档,但是2份文档里面对某个内容重复了,我如果让更新第二份文档到向量库的时候能避开重复的数据保存?
2、删除文档的时候,如何删除其对应的向量数据库中的内容?用什么逻辑去做判断。
谢谢

1 post - 1 participant

Read full topic

via LINUX DO - 最新话题 (author: pgdoryoku)
降温后实实在在感受到了秋意

这两天起床拉开窗帘都是阴阴的,偶尔还会下点下雨
自来水温也低了下来 用来洗脸刚刚好
同时会莫名其妙想起中学
一些以前的人和事

碎碎念 突然就很想听陈奕迅的好久不见
早上一直在循环
“你会不会忽然地出现”
“不再去说从前 只是寒暄”

这种天气脑子真是清醒并混乱着
但是不烦躁

2 posts - 2 participants

Read full topic

via LINUX DO - 最新话题 (author: 小忆ing)
智谱推出 GLM4.6/4.5 企业coding plan 套餐,10人起订,比个人版多3倍以上

带联网、图像理解(应该是集成了对应的mcp能力)

企业10人起订,

你会订吗?

1 post - 1 participant

Read full topic

via LINUX DO - 最新话题 (author: Safphere)

Invalid media: image
关于农村大队统计消费情况

老家村里大队打电话说是我家被统计局抽中了,需要提供往后俩年消费情况,每月需要把每天的消费情况如实记录,每月会给200块钱补贴。请问有佬遇到过这种事情吗,应该没啥问题吧。

1 post - 1 participant

Read full topic

via LINUX DO - 最新话题 (author: TTTEST)
cursor的token和cookie怎么用?

我看有很多人发各种的token和cookie,但是翻了好多帖子没发现具体怎么使用。看到之前有人说用curs0r但是发现删库跑路了,有没有好心佬教一教

1 post - 1 participant

Read full topic

via LINUX DO - 最新话题 (author: wyc)
IOS26 ,Apple music 播放孤勇者闪退,歌曲已下架

1 post - 1 participant

Read full topic

via LINUX DO - 最新话题 (author: ddjason)
iPhone 外版机器如何用上国行eSIM?

目前国行eSIM仅支持iPhone Air,之前看到港行eSIM有种可以绑定内地中国联通的服务,那是不是就能使用外版机器用上国行eSIM了;
感觉国内AI这块到时要上也要被删减严重,但港版17pro有满血AI还有张实体卡槽,想去整个有没有方法用上国行eSIM还是要等开放?

5 posts - 3 participants

Read full topic

via LINUX DO - 最新话题 (author: Sakura)
2025年10月 求推荐2k左右人体工学椅

目前在用的ergomax-evo一代已经三年多了,这一款没有躺下的腿部支撑不方便午休,加上坐垫网布有些塌陷准备返厂更换以后买一把新的。

首先排除西昊、网易严选、黑白调。

看了下价位区间内,偏贵的是保友金豪的e2/e2pro,便宜一点的是ergomax的evo2和emperor2、保友金豪b,其他品牌和产品不太了解了,求大佬们推荐和分享一下体验如何

2 posts - 2 participants

Read full topic

via LINUX DO - 最新话题 (author: 乐观的摸摸头)
昨晚黄金📉了两个点

近一周还会再📉吗?大概📉多少?

19 posts - 10 participants

Read full topic

via LINUX DO - 最新话题 (author: F-Droid)
CherryStudio有配置同步的功能吗? 要怎么用呢?
有两台电脑都用CherryStudio, 但是配置不一样, 现在想要将CherryStudio 合成一份, 要怎么办呀

5 posts - 5 participants

Read full topic

via LINUX DO - 最新话题 (author: sddxsm)