标题: Gemini 2.5 Pro使用一天感受
作者: #Mozi
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/515652
时间: 2025-03-27 00:19:06
摘要:
作者: #Mozi
板块: #开发调优
编号:
515652帖子: https://linux.do/t/topic/515652
时间: 2025-03-27 00:19:06
摘要:
数学一骑绝尘,区分题库全作对,但是latex很少输出,过程的可读性不如o3,4o等等
【长期更新Wiki】语言模型区分题库:主要用来区分语言模型,也能测试逻辑能力 文档共建
图像题库
序号
题型
题目_________________________________
________________
________________
答案
1
数列
设实数列 \(\{x_n\}\) 满足:\(x_0 = 0\),\(x_2 = \sqrt[3]{2}x_1\),\(x_3\) 是正整数,且 \[x…
识图能力初步测试属于第一梯队
分析复杂繁琐的表格精度很高
初步测试,发现Gemini 2.5 Pro分析复杂表格很强 开发调优
[PixPin_2025-03-26_01-20-01]
[PixPin_2025-03-26_01-17-53]
代码目前只测试了写AI五子棋网站,多轮对话写出的机器人很弱
对话很多轮Gemini 2.5 Pro写出来的AI 五子棋还是很弱 开发调优
[image]
思考速度算最快的
markdown格式整理不如o1,o3
标题: 第一次见ipdata 100的
作者: #C
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/515660
时间: 2025-03-27 00:26:55
摘要:
作者: #C
板块: #搞七捻三
编号:
515660帖子: https://linux.do/t/topic/515660
时间: 2025-03-27 00:26:55
摘要:
标题: 🎉高颜值的硅基流动查余额开源了
作者: #F-Droid
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/515662
时间: 2025-03-27 00:28:38
摘要:
作者: #F-Droid
板块: #开发调优
编号:
515662帖子: https://linux.do/t/topic/515662
时间: 2025-03-27 00:28:38
摘要:
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SiliconFlow - 账户余额查询</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
:root {
--primary: #2563eb;
--primary-dark: #1d4ed8;
--primary-light: #3b82f6;
--primary-bg: #eff6ff;
--success: #10b981;
--success-bg: #ecfdf5;
--warning: #f59e0b;
--warning-bg: #fffbeb;
--danger: #ef4444;
--danger-bg: #fef2f2;
--dark: #1e293b;
--gray-50: #f8fafc;
--gray-100: #f1f5f9;
--gray-200: #e2e8f0;
--gray-300: #cbd5e1;
--gray-400: #94a3b8;
--gray-500: #64748b;
--gray-600: #475569;
--gray-700: #334155;
--gray-800: #1e293b;
--gray-900: #0f172a;
--text: #334155;
--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
--shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
--radius-sm: 0.125rem;
--radius: 0.375rem;
--radius-md: 0.5rem;
--radius-lg: 0.75rem;
--radius-xl: 1rem;
--radius-2xl: 1.5rem;
--radius-full: 9999px;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
color: var(--text);
background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
line-height: 1.5;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}
.container {
max-width: 500px;
width: 100%;
margin: 0 auto;
}
.logo {
text-align: center;
margin-bottom: 24px;
}
.logo-inner {
display: inline-flex;
align-items: center;
gap: 12px;
padding: 8px 16px;
background: white;
border-radius: var(--radius-full);
box-shadow: var(--shadow-md);
}
.logo-icon {
width: 36px;
height: 36px;
background: linear-gradient(135deg, var(--primary), var(--primary-light));
border-radius: var(--radius);
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: bold;
font-size: 18px;
}
.logo-text {
font-weight: 600;
font-size: 20px;
color: var(--dark);
}
.card {
background: white;
border-radius: var(--radius-xl);
overflow: hidden;
box-shadow: var(--shadow-xl);
transition: all 0.3s ease;
}
.card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-2xl);
}
.card-header {
padding: 24px;
background: var(--dark);
color: white;
position: relative;
}
标题: clash verge设置socks5失败,但是v2ray可以
作者: #IenG
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/515663
时间: 2025-03-27 00:28:41
摘要:
作者: #IenG
板块: #搞七捻三
编号:
515663帖子: https://linux.do/t/topic/515663
时间: 2025-03-27 00:28:41
摘要:
标题: 有没有大佬帮我看一下cursor自动注册流程卡在了邮箱验证码环节
作者: #陈小壮
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/515664
时间: 2025-03-27 00:29:11
摘要:
作者: #陈小壮
板块: #开发调优
编号:
515664帖子: https://linux.do/t/topic/515664
时间: 2025-03-27 00:29:11
摘要:
标题: Gemini 2.5 Pro在长文本的表现还是很牛的
作者: #Schrödinger
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/515669
时间: 2025-03-27 00:35:14
摘要:
作者: #Schrödinger
板块: #开发调优
编号:
515669帖子: https://linux.do/t/topic/515669
时间: 2025-03-27 00:35:14
摘要:
长文本下,Gemini 2.5 Pro 表现最好
出处
fiction.live
Fiction.live
Read an interactive story as it's being written live. Vote on the direction of the story.
标题: 全网最帅的硅基批量查余额
作者: #F-Droid
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/515670
时间: 2025-03-27 00:35:22
摘要:
作者: #F-Droid
板块: #开发调优
编号:
515670帖子: https://linux.do/t/topic/515670
时间: 2025-03-27 00:35:22
摘要:
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SiliconFlow - 批量余额查询</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
:root {
--primary: #0062ff;
--primary-dark: #0050d0;
--primary-light: #cce0ff;
--primary-bg: #f0f6ff;
--success: #05a660;
--success-light: #e6f6ef;
--warning: #ff9800;
--warning-light: #fff4e6;
--danger: #e53935;
--danger-light: #ffebee;
--info: #0288d1;
--info-light: #e1f5fe;
--gray-50: #fafafa;
--gray-100: #f5f5f5;
--gray-200: #eeeeee;
--gray-300: #e0e0e0;
--gray-400: #bdbdbd;
--gray-500: #9e9e9e;
--gray-600: #757575;
--gray-700: #616161;
--gray-800: #424242;
--gray-900: #212121;
--black: #000000;
--white: #ffffff;
--radius-xs: 2px;
--radius-sm: 4px;
--radius: 8px;
--radius-md: 12px;
--radius-lg: 16px;
--radius-xl: 24px;
--radius-full: 9999px;
--shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
--shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
--shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
--shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
--shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.5;
color: var(--gray-800);
background-color: #f8fafc;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 1.5rem;
}
.navbar {
background-color: var(--white);
box-shadow: var(--shadow);
position: sticky;
top: 0;
z-index: 100;
padding: 1rem 0;
}
.navbar-container {
display: flex;
align-items: center;
justify-content: space-between;
max-width: 1200px;
margin: 0 auto;
padding: 0 1.5rem;
}
.navbar-brand {
display: flex;
align-items: center;
gap: 0.75rem;
text-decoration: none;
}
.brand-logo {
width: 36px;
height: 36px;
background: linear-gradient(135deg, var(--primary), #3d5afe);
border-radius: var(--radius-sm);
display: flex;
align-items: center;
justify-content: center;
color: var(--white);
font-weight: 600;
box-shadow: var(--shadow);
}
.brand-text {
font-size: 1.25rem;
font-weight: 600;
color: var(--gray-900);
}
.page-header {
margin: 2rem 0 2.5rem;
text-align: center;
}
.page-title {
font-size: 2rem;
font-weight: 700;
color: var(--gray-900);
margin-bottom: 0.75rem;
}
.page-description {
标题: 发点chatgpt最新画图功能生成的有趣图片
作者: #closeAI破壁人
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/515671
时间: 2025-03-27 00:37:32
摘要:
作者: #closeAI破壁人
板块: #搞七捻三
编号:
515671帖子: https://linux.do/t/topic/515671
时间: 2025-03-27 00:37:32
摘要:
从照片生成图片,保持内容的一致性太强了
标题: 分享一个我的翻译提示词,配合沉浸式翻译爽的飞起!
作者: #范思哲
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/515672
时间: 2025-03-27 00:38:02
摘要:
作者: #范思哲
板块: #开发调优
编号:
515672帖子: https://linux.do/t/topic/515672
时间: 2025-03-27 00:38:02
摘要:
先贴效果,最开始是v3的普通版本,刚升
级到v30324
提示词:
网页翻译 (仅输出译文)**
您是一位专业的翻译助手,您的任务是将网页内容准确、自然、且富有感染力地翻译成目标语言。您尤其擅长捕捉原文的情感和语气,并将其自然地融入到译文中。
翻译请求指示:
请将以下 {{from}} 文本翻译成 {{to}}。 您的输出必须仅包含译文本身,请勿包含任何前言、解释或其他非译文内容。
翻译要求 (请严格遵守):
语言风格: 地道的中文母语者日常口语风格,译文 自然流畅,避免书面语和机器翻译痕迹。
语气情感: 略微非正式的语气,充分传达原文用户的 热情和真诚的赞赏 之情。
表达技巧: 巧妙融入地道的中文俗语和口语化表达 (例如 “压榨”、“忍痛割爱” 等风格),使译文生动活泼,贴近真实对话。
翻译策略: 避免生硬字面直译,理解原文核心意思和情感,用自然流畅中文 重新组织表达 (神形兼备)。
译文目标: 高度自然地道的中文口语译文,如同真诚用户热情推荐,而非机器翻译。
可选网页上下文信息 (如有,请参考以提升翻译质量):
{{title_prompt}} (网页标题,例如: “网页标题: Cursor 用户评价”)
{{summary_prompt}} (网页上下文摘要,例如: “网页摘要: 本文总结用户对 Cursor 编辑器的正面评价…”)
{{terms_prompt}} (相关专业术语,例如: “专业术语: IDE, 代码编辑器, AI 助手…”)
待翻译的文本内容:
{{text}}
请务必只返回高质量、地道的中文口语化译文!
上面的提示词粘贴即可食用,这不得翻译16级!
标题: 〖第二期(补档)〗IDM免费永久激活教程 2025.1
作者: #I can do this.
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/515675
时间: 2025-03-27 00:39:23
摘要:
作者: #I can do this.
板块: #搞七捻三
编号:
515675帖子: https://linux.do/t/topic/515675
时间: 2025-03-27 00:39:23
摘要:
原文链接:https://linux.do/t/topic/329962
由于该文件开始收费了,所以我就需要补个档
摘自:https://zhuanlan.zhihu.com/p/10096743257
先看效果
Internet Download Manager(简称IDM)是一款强大的下载工具,可以显著提高下载速度,并提供恢复和计划下载的功能。默认情况下IDM安装后只会提供一段试用时间,如果想要免费永久激活它可以按照下面步骤进行操作。
激活教程
在使用此方法前必须先把先前的破解过的IDM彻底删除
(1)确保电脑正常联网,鼠标右键点击“开始”选择“Windows PowerShell(管理员)”。如果 Win11 系统则选择“终端管理员”,或者同时按键盘上win+x,之后选择
(2)在弹出的终端窗口中输入如下命令,然后回车执行:
irm https://massgrave.dev/ias | iex
系统会自动执行相关脚本,然后显示如下弹框,我们按下键盘“2”键进行激活。
(4)接着会提示我们是否确定要激活,我们按下“9”进行激活:
(5)等待一段时间,当显示如下内容时则说明激活完毕。
(6)查看 IDM 的注册信息,可以看到已经成功激活了。
注:有时候软件激活状态会失效,请隔几天再尝试,软件会随时间更新