LinuxDo 新帖推送
182 subscribers
252K photos
314K links
Download Telegram
标题: 梦想岛全站图册Cosplay爬取!18进;NSFW
作者: #Ra1ndown
板块: #资源荟萃
编号: 851500
帖子: https://linux.do/t/topic/851500
时间: 2025-08-08 14:39:11
摘要:
网友分享的,用了一段时间,批量下载的时候偶尔会有闪退现象,不知道怎么修复

链接:夸克网盘分享
标题: 看看大善人的Agent支持什么开发语言
作者: #yhp666
板块: #开发调优
编号: 851502
帖子: https://linux.do/t/topic/851502
时间: 2025-08-08 14:39:25
摘要:
最近L站里不少佬都在讨论应该学习哪个开发语言?今天刚好参加了一个google的闭门分享,给佬们分享这两张ppt,我觉得google不会是无脑决策的吧
标题: 【AUGMENT CLI】今天好像放量了,三个申请号都通过了,佬友们快去看看
作者: #2333
板块: #前沿快讯
编号: 851503
帖子: https://linux.do/t/topic/851503
时间: 2025-08-08 14:40:50
摘要:
标题: CUSOUR GPT5没有不思考的?
作者: #一梦浮生
板块: #开发调优
编号: 851526
帖子: https://linux.do/t/topic/851526
时间: 2025-08-08 14:48:31
摘要:
思考类型,磨磨唧唧,网络不好,发散, 目前用一上午还是先回到claude4
标题: 糊个workers goproxy玩玩
作者: #AIV8g3Q
板块: #搞七捻三
编号: 851527
帖子: https://linux.do/t/topic/851527
时间: 2025-08-08 14:48:34
摘要:
不想干活就摸鱼
摸鱼糊了个 workers goproxy
测试就
GOPROXY=https://xxx.xxx.workers.dev go install github.com/go-delve/delve/cmd/dlv@latest

肯定没国内哪些带缓存的快,但可以玩玩
代码
export default{async fetch(request,env,ctx){const url=new URL(request.url);const path=url.pathname;if(path.startsWith('/sumdb/')){return handleSumDB(request,env,ctx)}return handleModule(request,env,ctx)}};async function handleModule(request,env,ctx){const url=new URL(request.url);const path=url.pathname;if(path==='/'||path.endsWith('/')){return new Response('not found',{status:404})}try{const target=path.substring(1);const parts=target.split('/@');if(parts.length<2){return new Response('not found',{status:404})}const escapedModulePath=parts[0];const after=parts[1];const modulePath=decodeURIComponent(escapedModulePath.replace(/%2F/g,'/').replace(/%21/g,'!'));if(after==='latest'){return handleQuery(request,modulePath,'latest')}else if(after==='v/list'){return handleList(request,modulePath)}else if(after.startsWith('v/')){const versionPart=after.substring(2);const ext=getFileExtension(versionPart);if(!['.info','.mod','.zip'].includes(ext)){return new Response('not found',{status:404})}const version=versionPart.substring(0,versionPart.length-ext.length);const decodedVersion=decodeURIComponent(version.replace(/%2F/g,'/').replace(/%21/g,'!'));return handleDownload(request,modulePath,decodedVersion,ext)}return new Response('not found',{status:404})}catch(err){return new Response('internal server error',{status:500})}}async function handleQuery(request,modulePath,query){try{const escapedPath=encodeURIComponent(modulePath).replace(/%2F/g,'/');const proxyURL=`https://proxy.golang.org/${ escapedPath }/@${ query }`;const response=await fetch(proxyURL);if(!response.ok){return new Response('not found',{status:404})}const data=await response.text();return new Response(data,{status:200,headers:{'Content-Type':'application/json; charset=utf-8','Cache-Control':'public, max-age=60'}})}catch(err){return new Response('internal server error',{status:500})}}async function handleList(request,modulePath){try{const escapedPath=encodeURIComponent(modulePath).replace(/%2F/g,'/');const proxyURL=`https://proxy.golang.org/${ escapedPath }/@v/list`;const response=await fetch(proxyURL);if(!response.ok){return new Response('not found',{status:404})}const data=await response.text();return new Response(data,{status:200,headers:{'Content-Type':'text/plain; charset=utf-8','Cache-Control':'public, max-age=60'}})}catch(err){return new Response('internal server error',{status:500})}}async function handleDownload(request,modulePath,version,ext){try{const escapedPath=encodeURIComponent(modulePath).replace(/%2F/g,'/');const escapedVersion=encodeURIComponent(version).replace(/%2F/g,'/');const proxyURL=`https://proxy.golang.org/${ escapedPath }/@v/${ escapedVersion }${ ext }`;const response=await fetch(proxyURL);if(!response.ok){return new Response('not found',{status:404})}let contentType='application/octet-stream';switch(ext){case '.info':contentType='application/json; charset=utf-8';break;case '.mod':contentType='text/plain; charset=utf-8';break;case '.zip':contentType='application/zip';break}const data=await response.arrayBuffer();return new Response(data,{status:200,headers:{'Content-Type':contentType,'Cache-Control':'public, max-age=604800'}})}catch(err){return new Response('internal server error',{status:500})}}async function handleSumDB(request,env,ctx){const url=new URL(request.url);const path=url.pathname;try{const sumdbPath=path.substring(7);const parts=sumdbPath.split('/');if(parts.length<2){return new Response('not found',{status:404})}const sumdbName=parts[0];const sumdbEndpoint=parts.slice(1).join('/');const sumdbURL=`https://${ sumdbName }/${ sumdbEndpoint }`;if(sumdbEndpoint==='supported'){return new Response('',{status:200,headers:{'Cache-Control':'public, max-age=86400'}})}const response=await fetch(s
标题: GPT5 天气卡片测试
作者: #Feng Chen
板块: #开发调优
编号: 851528
帖子: https://linux.do/t/topic/851528
时间: 2025-08-08 14:48:46
摘要:
提示词:你是 Apple Inc 的 UI 设计师,以 iOS 18 的设计风格做一个带有动画效果的天气卡片,要求是使用 HTML、CSS 和基础 JavaScript,使用横板天气页面(拥有 4 个天气卡片 (晴天,大风,暴雨,暴雪))。应足够美观,实现一定的交互效果。  引用站内朋友的
<!DOCTYPE html>
<html lang="zh-CN" data-theme="day">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" />
<title>iOS 18 风格 · 天气卡片</title>
<meta name="color-scheme" content="light dark" />
<style>
:root {
--radius-xl: 22px;
--radius-lg: 16px;
--radius-md: 12px;
--shadow-ambient: 0 10px 30px rgba(0,0,0,.15), 0 2px 8px rgba(0,0,0,.12);
--shadow-soft: 0 6px 18px rgba(0,0,0,.12);
--border: 1px solid rgba(255,255,255,.3);
--border-dark: 1px solid rgba(255,255,255,.12);

--bg-app: 245 245 255;
--text: 20 22 28;
--text-dim: 86 90 100;
--surface: 255 255 255
标题: 如何使用claude code二开一个开源项目呢
作者: #a344530569a
板块: #开发调优
编号: 851532
帖子: https://linux.do/t/topic/851532
时间: 2025-08-08 14:49:18
摘要:
在github上克隆了一个项目,想要进行二开,要怎么做才能让它听话照做呢?
标题: 佬们做过微信视频号下面的评论采集吗?
作者: #XiaoYongi
板块: #搞七捻三
编号: 851534
帖子: https://linux.do/t/topic/851534
时间: 2025-08-08 14:49:37
摘要:
佬们做过微信视频号视频下面的评论采集吗?我现在需要基于一个URL地址,获取微信视频下面的评论信息,找了半天也没找到啥好用的办法?有佬做过吗?
地址:https://channels.weixin.qq.com/web/pages/feed?eid=export/UzFfAgtgekIEAQAAAAAAcmoTJ95UmgAAAAstQy6ubaLX4KHWvLEZgBPEzIBsd38tQvSPzNPgMImSpldz8ltd2PQgQzdBV9tk
评论:
标题: 主力机刷类原生系统,日常使用会有安全风险吗?
作者: #Hins
板块: #搞七捻三
编号: 851544
帖子: https://linux.do/t/topic/851544
时间: 2025-08-08 14:51:41
摘要:
本人一台主力机红米note12pro想刷类原生,不root的话,手机上的银行app、还有各种隐私资料、账号密码啥的会不会存在泄露风险和安全隐患呢,求佬友们不吝赐教!
标题: 运维做久了开始迷茫了咋办。
作者: #devxian
板块: #搞七捻三
编号: 851547
帖子: https://linux.do/t/topic/851547
时间: 2025-08-08 14:52:14
摘要:
在这公司干了3年了。丝毫不涨,也没前景。在想应该怎么搞了。做着运维的岗位,还写了很多自动化的脚本,程序等啥的。问题是这岗位用的都是老东西,docker,k8s等啥的是一点没学了。想换公司也很迷茫。  有过来人提提建议吗?
标题: augment+GPT 5等于不废话干活的神!!!除了慢没缺点暂时,高强度8小时工作.
作者: #Mci77777
板块: #搞七捻三
编号: 851548
帖子: https://linux.do/t/topic/851548
时间: 2025-08-08 14:52:45
摘要:
我的代码库2600文件.代码量级200W.
很难有打动我的.
之前是使用cursor,roo
最近改变是augment.CC
现在augment搭载gpt5 真的超吊的.
多的不说了快去爽吧.
绝不拉屎.代码库干净.干活认真不BB就是喜欢这样的员工

不用怀疑我的项目快上线了.到时候给大家发福利
标题: Claude code 使用求助
作者: #杨洋阳
板块: #开发调优
编号: 851549
帖子: https://linux.do/t/topic/851549
时间: 2025-08-08 14:52:47
摘要:
1.claude code的思考过程可以改成输出中文吗?
2.比如我要改哪几个java类,或者参考某个工具类去实现某个功能我要一个个给cc去add文件吗?
3.cc有必要去改提示词吗?
标题: 达成“百尺竿头”,抽新开的team 车3个车位
作者: #anniya233
板块: #搞七捻三
编号: 851552
帖子: https://linux.do/t/topic/851552
时间: 2025-08-08 14:53:37
摘要:
如图,终于到100天了,恰好上一个team车29天未翻车,索性再开一个,看了一下可以用GPT5

佬友们快来
标题: 65生日曲完整上线‖名曲同名纯音乐《十七岁的雨季》
作者: #我是 林可欣!
板块: #搞七捻三
编号: 851556
帖子: https://linux.do/t/topic/851556
时间: 2025-08-08 14:54:30
摘要:
从6512345生日专曲上线!继续讨论:
第六条河-w河 第五个季节-数季(数即数字)
专辑名已更正


i.y.qq.com





星缘之境_第六条河,第五个季节-w河专辑_QQ音乐_听我想听的歌

「一枚罗盘」在名为“生活”的无垠旷野上,我们都曾是迷途者,手握着一枚指针失灵的罗盘。它不指向南北,却固执地、轻微地颤向一个神秘的坐标。那不是方位,更像是一个密码,一个由第六与第五构成的谜题。「一片疆域」当你放弃寻找世俗的道路,选择相信这枚罗盘的指引,一片新的疆域便豁然展开。那里,流淌着第六条星尘之河,河水温柔,能冲刷一切不安与困惑。那里,时间停驻在第五个永恒的季节,气候温润,能让所有梦想的种子悄然发芽。这片疆域,是你专属的王国,是你的灵魂版图。「一首祝歌」这首歌,便是这个王国的国歌,是为你加冕的...


















【AI音乐评测网站第六版】恳请各位平常听点小音乐的佬友前来参与ab测试 说不定以后能成为“大股东”


搞七捻三



[image]
六次了,不想听了,发出 17 岁那年的雨季吧







【AI音乐评测网站第六版】恳请各位平常听点小音乐的佬友前来参与ab测试 说不定以后能成为“大股东”


搞七捻三



wtf!
亏我还在等你上次说的那个纯音乐







【AI音乐评测网站第六版】恳请各位平常听点小音乐的佬友前来参与ab测试 说不定以后能成为“大股东”


搞七捻三



发出记得@我
vip 简单 8.10 我的 88vip 更新







【AI音乐评测网站第六版】恳请各位平常听点小音乐的佬友前来参与ab测试 说不定以后能成为“大股东”


搞七捻三
标题: 🎮 吃了 1 惊!2 条对话生成的 3D 游戏!!Opus 4 ✕ Perplexity GPT-5
作者: #林黛玉倒拔垂杨柳
板块: #搞七捻三
编号: 851557
帖子: https://linux.do/t/topic/851557
时间: 2025-08-08 14:54:31
摘要:
(\ _ /)
( ・-・)っ — - -
/っ   \   起因是发现 PPLX 的 GPT-5 生成 SVG 意外地保真





GPT-5 生成的 SVG?


开发调优



我去!PPLX 的效果这么好
<svg width="520" height="320" viewBox="0 0 520 320" xmlns="http://www.w3.org/2000/svg">
<defs>
<!-- Simple wheel spoke pattern -->
<g id="spokes">
<line x1="0" y1="-50…



于是就想起一个诺基亚 6220C 时代的 N-GAGE 小游戏蹦球历险记,就简单描述下需求:

成品传送门:蹦蹦球历险记 - 完整版
↑ 按住右键旋转视角,这效果,屌炸了。为什么不直接用 Opus?因为我觉得 Claude 遵循指令强但创意方面其他俩会更天马行空一点。 只是懒得再生成一次了

↑ 想贴源码结果字数超了,需要的话直接打开 右键-查看网页源代码 吧,一样的一字未改。