LinuxDo 新帖推送
183 subscribers
252K photos
314K links
Download Telegram
标题: 求助:公安部政务服务平台绑定的手机号已经不用了,要怎么换绑?
作者: #Z
板块: #搞七捻三
编号: 851143
帖子: https://linux.do/t/topic/851143
时间: 2025-08-08 12:47:48
摘要:
几年前为网站进行公安备案的时候,注册了公安部的服务平台的账号,当时的手机号已经不用很久了,而且这个平台貌似是升级了,不是现在这样的
现在问题是,我忘记了当时的密码,要找回密码的话,人脸验证之后还要用当时的手机号接验证码:

这个我肯定没办法接到验证码
然后我尝试用我的身份信息重新注册,结果提示我已经有账号了要用我有的账号登录:

我试了好多个密码了,现在锁两小时了,都不对,然后也找不到反馈的渠道,也没有客服
想问一下这种情况应该怎么办?有没有佬能支个招?应该联系什么部门处理
标题: 求酒馆交流社区——言庭、自由AI阵线、废墟之下的藏书室、silly tavern等社区邀请链接
作者: #GodFather
板块: #搞七捻三
编号: 851144
帖子: https://linux.do/t/topic/851144
时间: 2025-08-08 12:47:59
摘要:
求助万能的佬友们,求拟人(现在更名为言庭了)、自由AI阵线、废墟之下的藏书室、silly tavern等社区的邀请链接
最近刚接触酒馆,想多进一些社区学习学习
标题: 求推荐一个快速搭建语音服务器的项目
作者: #crazyhaiouhun
板块: #开发调优
编号: 851147
帖子: https://linux.do/t/topic/851147
时间: 2025-08-08 12:48:20
摘要:
最好是有在网页上就可以实现的
标题: gpt5 svg
作者: #waffie
板块: #开发调优
编号: 851154
帖子: https://linux.do/t/topic/851154
时间: 2025-08-08 12:51:17
摘要:
我用了一个中转站画的,很抽象,不知道是不是真的,有佬友能试下吗?
animated svg of a capybara riding a bicycle
<?xml version="1.0" encoding="UTF-8"?>
<svg width="600" height="220" viewBox="0 0 600 220"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
role="img" aria-labelledby="title desc">

<title id="title">Capybara riding a bicycle</title>
<desc id="desc">A stylized capybara rides a bicycle; wheels spin and the whole scene glides across the canvas.</desc>

<style>
:root{
--capy:#B9835A; /* capybara */
--capy-dark:#8A6447;
--bike:#1e88e5; /* frame */
--wheel:#222; /* tires */
--spoke:#777; /* spokes */
--ground:#cfe8ff;
}
.shadow { opacity:.15; }
</style>

<!-- Simple sky gradient -->
<defs>
<linearGradient id="sky" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#f2fbff"/>
<stop offset="100%" stop-color="#e6f6ff"/>
</linearGradient>

<!-- Motion path (left -> right and loop) -->
<path id="ridePath" d="M -260,0 C 0,0 340,0 620,0" />
</defs>

<rect x="0" y="0" width="600" height="220" fill="url(#sky)"/>

<!-- Ground line -->
<rect x="0" y="170" width="600" height="4" fill="var(--ground)"/>

<!-- Group containing bike + rider; we animate this along a path -->
<g id="rig" transform="translate(0,0)">
<!-- Drop shadow -->
<ellipse class="shadow" cx="150" cy="172" rx="64" ry="8" fill="#000"/>

<!-- Bicycle -->
<g id="bike" stroke="var(--bike)" stroke-width="6" fill="none" stroke-linecap="round" stroke-linejoin="round">
<!-- Wheels -->
<g id="rearWheel" transform="translate(100,160)">
<circle r="32" stroke="var(--wheel)" stroke-width="8"/>
<g id="rearSpokes">
<line x1="0" y1="0" x2="0" y2="-28" stroke="var(--spoke)" stroke-width="2"/>
<line x1="0" y1="0" x2="24" y2="14" stroke="var(--spoke)" stroke-width="2"/>
<line x1="0" y1="0" x2="-24" y2="14" stroke="var(--spoke)" stroke-width="2"/>
</g>
<animateTransform attributeName="transform" attributeType="XML" type="rotate"
from="0 100 160" to="360 100 160" dur="4s" repeatCount="indefinite"/>
</g>

<g id="frontWheel" transform="translate(200,160)">
<circle r="32" stroke="var(--wheel)" stroke-width="8"/>
<g id="frontSpokes">
<line x1="0" y1="0" x2="0" y2="-28" stroke="var(--spoke)" stroke-width="2"/>
<line x1="0" y1="0" x2="24" y2="14" stroke="var(--spoke)" stroke-width="2"/>
<line x1="0" y1="0" x2="-24" y2="14" stroke="var(--spoke)" stroke-width="2"/>
</g>
<animateTransform attributeName="transform" attributeType="XML" type="rotate"
from="0 200 160" to="360 200 160" dur="4s" repeatCount="indefinite"/>
</g>

<!-- Frame -->
<path d="M100,160 150,140 200,160 170,160 150,140 150,120" />
<!-- Handlebars & fork -->
<path d="M200,160 190,132 206,126" />
<!-- Seat post -->
<line x1="150" y1="140" x2="142" y2="126" />
<!-- Crank and chainring -->
<g id="crankset">
<circle cx="170" cy="160" r="10" fill="var(--bike)" stroke="var(--bike)"/>
<g>
<line x1="170" y1="160" x2="186" y2="150" stroke="var(--bike)"/>
<line x1="170" y1="160" x2="154" y2="170" stroke="var(--bike)"/>
</g>
<animateTransform attributeName="transform" attributeType="XML" type="rotate"
from="0 170 160" to="360 170 160" dur="4s" repeatCount="indefinite"/>
</g>
</g>

<!-- Capybara rider -->
<g id="capy" fill="var(--capy)" stroke="var(--capy-dark)" stroke-width="2" stroke-linejoin="round">
<!-- Body -->
<ellipse cx="140" cy="120" rx="44" ry="26" />
<!-- Head -->
<ellipse cx="182" cy="114" rx="20" ry="16" />
标题: 啊!!!!!!啊!!!受不了了!!!
作者: #AzureSun.yang
板块: #搞七捻三
编号: 851160
帖子: https://linux.do/t/topic/851160
时间: 2025-08-08 12:56:01
摘要:
标题: gpt5 API 白嫖办法有哪些
作者: #阿良 - github.com/glidea/zenfeed
板块: #搞七捻三
编号: 851163
帖子: https://linux.do/t/topic/851163
时间: 2025-08-08 12:57:07
摘要:
我先来,搜了站里主要这俩




波波公益站上新 gpt5 全系列


福利羊毛



[Screenshot_2025_0808_085522]
非流式 gpt-5-chat-latest支持流式
https://linux.do/t/topic/847037







喜讯!GPT5仍然可以API白嫖!


前沿快讯



[image]
25万Token一天,够用了!!!
DataShare是这样的。
(需要KYC)
更新:可能不用KYC,比如我的账号。
标题: 求推荐显示器
作者: #すみれ
板块: #搞七捻三
编号: 851171
帖子: https://linux.do/t/topic/851171
时间: 2025-08-08 13:01:39
摘要:
想买个外接Mac的显示器,日常办公,不打游戏.
要求:2k,900块以内,最好能上下升降
标题: 各位佬你们的Chatgpt会员每个月是怎么续费的呀
作者: #eason
板块: #开发调优
编号: 851174
帖子: https://linux.do/t/topic/851174
时间: 2025-08-08 13:03:27
摘要:
求一个稳定方便便宜的续费方法,刚好看到打折嘞
标题: Windows文件解除占用强制删除
作者: #Ra1ndown
板块: #资源荟萃
编号: 851179
帖子: https://linux.do/t/topic/851179
时间: 2025-08-08 13:04:22
摘要:
大家肯定都有遇到文件被占用无法删除的问题
今天推荐一款可以强制删除的单文件绿色软件Delapp1.0.2.0
强制解除占用并删除
链接:/~cead37ikT4~:/

第二款:IObitUnlocker强删文件v1.3.0.11 已汉化+右键+辅助–增强绿色版
注意:
此版汉化全部帮助文件。
添加 IObitUnlocker 右键双菜单(命令行版+界面版),IObitUnlocker辅助器右键菜单(桌面与文件夹空白处),方便使用。汉化支持
链接:夸克网盘分享
标题: Steam 有没有啥塔防肉鸽类游戏推荐呀?
作者: #George
板块: #搞七捻三
编号: 851181
帖子: https://linux.do/t/topic/851181
时间: 2025-08-08 13:06:54
摘要:
Steam 有没有啥塔防肉鸽类游戏推荐呀?
标题: 小滴课堂-互联网架构多线程并发编程原理及实战
作者: #tomm
板块: #资源荟萃
编号: 851184
帖子: https://linux.do/t/topic/851184
时间: 2025-08-08 13:09:29
摘要:
📁 小滴课堂-互联网架构多线程并发编程原理及实战
📁 笔记课件
📄 2-5 线程的挂起跟恢复.mp4
📄 9-6 Executor框架.mp4
📄 7-4 LinkedBlockingQueue的使用及其源码探秘.mp4
📄 4-6 深入剖析ReentrantLock源码之公平锁的实现.mp4
📄 11-3 基础环境搭建.mp4
📄 8-1 CountDownLatch的使用及其源码探秘.mp4
📄 4-1 锁的分类.mp4
📄 4-8 读写锁特性及ReentrantReadWriteLock的使用.mp4
📄 4-13 StampedLock原理及使用.mp4
📄 6-1 什么是原子类.mp4
📄 10-2 先行发生原则 happens-before.mp4
📄 1-2 什么是并发编程.mp4
📄 8-2 CyclicBarrier的使用及其源码探秘.mp4
📄 3-2 从字节码角度剖析线程不安全操作.mp4
📄 9-4 线程池的核心组成部分及其运行机制.mp4
📄 3-1 什么是线程安全性?.mp4
📄 2-1 进程与线程的区别.mp4
📄 1-3 并发编程的挑战之频繁的上下文切换.mp4
📄 7-1 同步容器与并发容器.mp4
📄 2-8 守护线程.mp4
📄 9-5 线程池拒绝策略.mp4
📄 5-4 Thread.join通信及其源码浅析.mp4
📄 8-4 Exchanger的使用.mp4
📄 6-5 原子更新引用.mp4
📄 8-3 Semaphore的使用及其源码探秘.mp4
📄 3-7 如何避免线程安全性问题.mp4
📄 4-10 深入剖析ReentrantReadWriteLock之读锁源码实现.mp4
📄 11-5 消费者编码实现.mp4
📄 2-6 线程的中断操作.mp4
📄 4-12 锁降级详解.mp4
📄 10-1 jvm内存模型.mp4
📄 6-2 原子更新基本类型.mp4
📄 11
标题: 以防你不知道,GPT-5 已进入 OpenAI 数据共享白嫖计划了
作者: #VrianCao
板块: #开发调优
编号: 851186
帖子: https://linux.do/t/topic/851186
时间: 2025-08-08 13:10:33
摘要:
https://help.openai.com/en/articles/10306912-sharing-feedback-evaluation-and-fine-tuning-data-and-api-inputs-and-outputs-with-openai
大家可以玩起来了
目前可调用的情况和模型说明:
gpt-5 :
thinking model
对应 gpt-5-thinking
流式输出需要KYC 非流式可以正常调用

gpt-5-mini/gpt-5-nano:
thinking models
无需KYC

gpt-5-chat:
instruct model
对应 gpt-5 即在ChatGPT中使用的那个非思考模型,无需KYC
标题: 和兄弟的感情
作者: #远
板块: #搞七捻三
编号: 851190
帖子: https://linux.do/t/topic/851190
时间: 2025-08-08 13:11:31
摘要:
(话题已被作者删除)
标题: 突击检查,维护一个数据结构
作者: #Liveless
板块: #搞七捻三
编号: 851197
帖子: https://linux.do/t/topic/851197
时间: 2025-08-08 13:13:34
摘要:
每人写一个数据结构(写名字),对一个有序数列中的数能在 O( \sqrt{n}  ) 内进行区间修改,区间查询和、最小值、最大值。不能重复,不能抄袭。
标题: 和好兄弟的感情
作者: #远
板块: #搞七捻三
编号: 851211
帖子: https://linux.do/t/topic/851211
时间: 2025-08-08 13:18:44
摘要:
最近有点困惑了,来树洞里说说,我和好兄弟从小玩到大,睡过一个被窝,互相打过,慢慢发现好像有点喜欢他,应该说很久之前就有点喜欢他,也不是弯了,就是只跟他有这些想法,这么些年一直不敢常联系,因为现在都成家了,可是我不知道怎么面对这个,有点苦恼,他总说男人没事不用聊太多,没法搞啊
标题: 突然发现我和始皇同一天生日
作者: #snowdropQwQ
板块: #搞七捻三
编号: 851216
帖子: https://linux.do/t/topic/851216
时间: 2025-08-08 13:19:27
摘要:
一看,小蛋糕标(
原来我和始皇同一天生日(

那就祝我和始皇都生日快乐好了(
标题: 有抖音批量取消喜欢的工具吗
作者: #grape
板块: #搞七捻三
编号: 851232
帖子: https://linux.do/t/topic/851232
时间: 2025-08-08 13:22:35
摘要:
有抖音批量取消喜欢的工具吗 不要封号了 因为之前点赞了各种奇葩的内容 怕被查手机 想都取消掉
标题: 今天的google ai studio怎么老是fail to generate
作者: #fish
板块: #搞七捻三
编号: 851243
帖子: https://linux.do/t/topic/851243
时间: 2025-08-08 13:26:45
摘要:
是只有我这样嘛?