LogoThread Easy
  • 発見
  • スレッド作成
LogoThread Easy

Twitter スレッドの万能パートナー

© 2025 Thread Easy All Rights Reserved.

探索

Newest first — browse tweet threads

Keep on to blur preview images; turn off to show them clearly

best coding model TLDR;

- daily driver: opus 4.5
- plan, audit, fix bugs: gpt 5.2 high
- hardest problems: gpt 5.2 pro via repo prompt

best coding model TLDR; - daily driver: opus 4.5 - plan, audit, fix bugs: gpt 5.2 high - hardest problems: gpt 5.2 pro via repo prompt

TLDR; I make software with AI and talk about it. Serial internet biz builder with multiple 6 & 7 figure exits. Always learning.

avatar for Ian Nuttall
Ian Nuttall
Fri Dec 12 10:14:23
Trying to improve some part of Sponsorgap - just deployed the latest changes for the sponsor profiles - each profile contains:

📊 Ad activity heat map
⏱️ Ad timeline
💰🤖 Estimated Marketing Budget + AI-powered business analysis
🏷️ Categories
🔁 Similar Brands
📇 Marketing contacts

Trying to improve some part of Sponsorgap - just deployed the latest changes for the sponsor profiles - each profile contains: 📊 Ad activity heat map ⏱️ Ad timeline 💰🤖 Estimated Marketing Budget + AI-powered business analysis 🏷️ Categories 🔁 Similar Brands 📇 Marketing contacts

Building digital assets Founder of: 💸 https://t.co/25luMOeurc 📧 https://t.co/R5XVHCie1Z 🔎 https://t.co/zQs9wdGD4c 🏟️ https://t.co/2YDuZxDKM8

avatar for Tobi Hikari
Tobi Hikari
Fri Dec 12 10:10:53
RT @adrien_brbr: I just started posting on TikTok.

3 videos a day.
All about viral news.
Same format every time.

A “Pixar-brain” style pr…

RT @adrien_brbr: I just started posting on TikTok. 3 videos a day. All about viral news. Same format every time. A “Pixar-brain” style pr…

Built Tweet Hunter, Taplio (sold $8m) Growing https://t.co/OyNJ8ZUyOh - https://t.co/jS9GQJ5Ps8 - https://t.co/EFUcKeBbpU - https://t.co/JkVOl1O0S1 - https://t.co/KG9PgxJabg Sharing weekly tips about growth: https://t.co/ereQodN3Ov

avatar for Tibo
Tibo
Fri Dec 12 10:02:55
大家写报告或论文都已离不开 AI 助手,但最头疼的往往不是生成内容,而是把内容“搬”进 Word 时的格式灾难。

尤其遇到数学公式乱码、Markdown 表格错位,手动调整格式的时间比写稿还长。

无独有偶,在 GitHub 淘到了 PasteMD 这个专门解决“最后一公里”的开源小工具。

简单说,就是为了让 Markdown 内容能优雅地躺进 Office 文档里。

核心逻辑处理:读取剪贴板的 Markdown 或网页 HTML,调用 Pandoc 引擎转码,最后自动插入光标位置。

甚至支持智能识别 Markdown 表格,一键粘贴进 Excel,保留格式不串行。

GitHub:https://t.co/49jS1DvR2R

提供了便携版和含 Pandoc 的集成版,无需繁琐配置环境。

只要按下 Ctrl+B,即刻完成从 AI 网页端到本地文档的无缝流转。

对于经常需要整理 AI 生成内容、写论文或做报告的朋友,相信这工具对大家有所帮助。

大家写报告或论文都已离不开 AI 助手,但最头疼的往往不是生成内容,而是把内容“搬”进 Word 时的格式灾难。 尤其遇到数学公式乱码、Markdown 表格错位,手动调整格式的时间比写稿还长。 无独有偶,在 GitHub 淘到了 PasteMD 这个专门解决“最后一公里”的开源小工具。 简单说,就是为了让 Markdown 内容能优雅地躺进 Office 文档里。 核心逻辑处理:读取剪贴板的 Markdown 或网页 HTML,调用 Pandoc 引擎转码,最后自动插入光标位置。 甚至支持智能识别 Markdown 表格,一键粘贴进 Excel,保留格式不串行。 GitHub:https://t.co/49jS1DvR2R 提供了便携版和含 Pandoc 的集成版,无需繁琐配置环境。 只要按下 Ctrl+B,即刻完成从 AI 网页端到本地文档的无缝流转。 对于经常需要整理 AI 生成内容、写论文或做报告的朋友,相信这工具对大家有所帮助。

💡 挖掘开源的价值 🧑🏻‍💻 坚持分享 GitHub 上高质量、有趣、实用的教程、AI工具、前沿 AI 技术 🧐 A list cool, interesting projects of GitHub. ✏️ 公众号:GitHubDaily

avatar for GitHubDaily
GitHubDaily
Fri Dec 12 10:00:02
// ==UserScript==
// @name         小宇宙播客倍速播放
// @namespace    https://t.co/EcRyuxlHjq
// @version      1.1
// @description  为小宇宙网页版添加播放倍速控制功能
// @author       You
// @match        https://t.co/oV7FDA6DLX*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // 等待音频元素加载
    function waitForAudio() {
        const audio = document.querySelector('audio');
        if (audio) {
            addSpeedControl(audio);
        } else {
            setTimeout(waitForAudio, 500);
        }
    }

    // 添加倍速控制
    function addSpeedControl(audio) {
        // 创建倍速控制容器
        const speedContainer = document.createElement('div');
        https://t.co/NnVY7mFfir.cssText = `
            position: fixed;
            top: 80px;
            right: 20px;
            background: white;
            border-radius: 8px;
            padding: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 8px;
        `;

        // 倍速选项
        const speeds = [0.5, 0.75, 1.0, 1.25, 1.5, 1.75, 2.0];
        
        // 创建标题
        const title = document.createElement('div');
        title.textContent = '播放倍速';
        https://t.co/kkc695BtY1.cssText = `
            font-size: 12px;
            color: #666;
            text-align: center;
            margin-bottom: 5px;
        `;
        speedContainer.appendChild(title);

        // 创建倍速按钮
        speeds.forEach(speed => {
            const btn = document.createElement('button');
            btn.textContent = `${speed}x`;
            https://t.co/5ZBU1WBy4L.cssText = `
                padding: 8px 15px;
                border: 1px solid #ddd;
                border-radius: 5px;
                background: white;
                cursor: pointer;
                font-size: 14px;
                transition: all 0.2s;
            `;

            // 设置当前倍速的样式
            if (speed === 1.0) {
                https://t.co/5ZBU1WBy4L.background = 'var(--theme-color, #25B4E1)';
                https://t.co/5ZBU1WBy4L.color = 'white';
                https://t.co/5ZBU1WBy4L.borderColor = 'var(--theme-color, #25B4E1)';
            }

            btn.addEventListener('click', () => {
                audio.playbackRate = speed;
                
                // 更新所有按钮样式
                speedContainer.querySelectorAll('button').forEach(b => {
                    https://t.co/kqnhnypYTa.background = 'white';
                    https://t.co/kqnhnypYTa.color = 'black';
                    https://t.co/kqnhnypYTa.borderColor = '#ddd';
                });
                
                // 高亮当前按钮
                https://t.co/5ZBU1WBy4L.background = 'var(--theme-color, #25B4E1)';
                https://t.co/5ZBU1WBy4L.color = 'white';
                https://t.co/5ZBU1WBy4L.borderColor = 'var(--theme-color, #25B4E1)';
            });

            btn.addEventListener('mouseenter', () => {
                if (audio.playbackRate !== speed) {
                    https://t.co/5ZBU1WBy4L.background = '#f5f5f5';
                }
            });

            btn.addEventListener('mouseleave', () => {
                if (audio.playbackRate !== speed) {
                    https://t.co/5ZBU1WBy4L.background = 'white';
                }
            });

            speedContainer.appendChild(btn);
        });

        // 添加到页面
        document.body.appendChild(speedContainer);

        // 添加快捷键支持
        document.addEventListener('keydown', (e) => {
            // 使用数字键 1-7 快速切换倍速
            if (e.key >= '1' && e.key <= '7') {
                const index = parseInt(e.key) - 1;
                if (speeds[index]) {
                    audio.playbackRate = speeds[index];
                    // 触发对应按钮的点击效果
                    speedContainer.querySelectorAll('button')[index + 1].click();
                }
            }
        });

        console.log('倍速控制已添加!可使用数字键1-7快速切换倍速');
    }

    // 开始监听
    waitForAudio();
})();

// ==UserScript== // @name 小宇宙播客倍速播放 // @namespace https://t.co/EcRyuxlHjq // @version 1.1 // @description 为小宇宙网页版添加播放倍速控制功能 // @author You // @match https://t.co/oV7FDA6DLX* // @grant none // ==/UserScript== (function() { 'use strict'; // 等待音频元素加载 function waitForAudio() { const audio = document.querySelector('audio'); if (audio) { addSpeedControl(audio); } else { setTimeout(waitForAudio, 500); } } // 添加倍速控制 function addSpeedControl(audio) { // 创建倍速控制容器 const speedContainer = document.createElement('div'); https://t.co/NnVY7mFfir.cssText = ` position: fixed; top: 80px; right: 20px; background: white; border-radius: 8px; padding: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); z-index: 1000; display: flex; flex-direction: column; gap: 8px; `; // 倍速选项 const speeds = [0.5, 0.75, 1.0, 1.25, 1.5, 1.75, 2.0]; // 创建标题 const title = document.createElement('div'); title.textContent = '播放倍速'; https://t.co/kkc695BtY1.cssText = ` font-size: 12px; color: #666; text-align: center; margin-bottom: 5px; `; speedContainer.appendChild(title); // 创建倍速按钮 speeds.forEach(speed => { const btn = document.createElement('button'); btn.textContent = `${speed}x`; https://t.co/5ZBU1WBy4L.cssText = ` padding: 8px 15px; border: 1px solid #ddd; border-radius: 5px; background: white; cursor: pointer; font-size: 14px; transition: all 0.2s; `; // 设置当前倍速的样式 if (speed === 1.0) { https://t.co/5ZBU1WBy4L.background = 'var(--theme-color, #25B4E1)'; https://t.co/5ZBU1WBy4L.color = 'white'; https://t.co/5ZBU1WBy4L.borderColor = 'var(--theme-color, #25B4E1)'; } btn.addEventListener('click', () => { audio.playbackRate = speed; // 更新所有按钮样式 speedContainer.querySelectorAll('button').forEach(b => { https://t.co/kqnhnypYTa.background = 'white'; https://t.co/kqnhnypYTa.color = 'black'; https://t.co/kqnhnypYTa.borderColor = '#ddd'; }); // 高亮当前按钮 https://t.co/5ZBU1WBy4L.background = 'var(--theme-color, #25B4E1)'; https://t.co/5ZBU1WBy4L.color = 'white'; https://t.co/5ZBU1WBy4L.borderColor = 'var(--theme-color, #25B4E1)'; }); btn.addEventListener('mouseenter', () => { if (audio.playbackRate !== speed) { https://t.co/5ZBU1WBy4L.background = '#f5f5f5'; } }); btn.addEventListener('mouseleave', () => { if (audio.playbackRate !== speed) { https://t.co/5ZBU1WBy4L.background = 'white'; } }); speedContainer.appendChild(btn); }); // 添加到页面 document.body.appendChild(speedContainer); // 添加快捷键支持 document.addEventListener('keydown', (e) => { // 使用数字键 1-7 快速切换倍速 if (e.key >= '1' && e.key <= '7') { const index = parseInt(e.key) - 1; if (speeds[index]) { audio.playbackRate = speeds[index]; // 触发对应按钮的点击效果 speedContainer.querySelectorAll('button')[index + 1].click(); } } }); console.log('倍速控制已添加!可使用数字键1-7快速切换倍速'); } // 开始监听 waitForAudio(); })();

喜欢摇滚乐、爱钓鱼的PM 网站:https://t.co/vnUpLt752o

avatar for 向阳乔木
向阳乔木
Fri Dec 12 09:35:01
小宇宙网页版没找到倍速播放。

复制网页源代码,发给Claude 4.5 sonnet,提示词:

“这个网页有播放按钮,但不能调整播放倍速,能否写一个油猴脚本解决这个问题:”

直接给页面加倍速,直接铺开,样式都跟原始网页一样。

油猴脚本见评论区

小宇宙网页版没找到倍速播放。 复制网页源代码,发给Claude 4.5 sonnet,提示词: “这个网页有播放按钮,但不能调整播放倍速,能否写一个油猴脚本解决这个问题:” 直接给页面加倍速,直接铺开,样式都跟原始网页一样。 油猴脚本见评论区

// ==UserScript== // @name 小宇宙播客倍速播放 // @namespace https://t.co/EcRyuxlHjq // @version 1.1 // @description 为小宇宙网页版添加播放倍速控制功能 // @author You // @match https://t.co/oV7FDA6DLX* // @grant none // ==/UserScript== (function() { 'use strict'; // 等待音频元素加载 function waitForAudio() { const audio = document.querySelector('audio'); if (audio) { addSpeedControl(audio); } else { setTimeout(waitForAudio, 500); } } // 添加倍速控制 function addSpeedControl(audio) { // 创建倍速控制容器 const speedContainer = document.createElement('div'); https://t.co/NnVY7mFfir.cssText = ` position: fixed; top: 80px; right: 20px; background: white; border-radius: 8px; padding: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); z-index: 1000; display: flex; flex-direction: column; gap: 8px; `; // 倍速选项 const speeds = [0.5, 0.75, 1.0, 1.25, 1.5, 1.75, 2.0]; // 创建标题 const title = document.createElement('div'); title.textContent = '播放倍速'; https://t.co/kkc695BtY1.cssText = ` font-size: 12px; color: #666; text-align: center; margin-bottom: 5px; `; speedContainer.appendChild(title); // 创建倍速按钮 speeds.forEach(speed => { const btn = document.createElement('button'); btn.textContent = `${speed}x`; https://t.co/5ZBU1WBy4L.cssText = ` padding: 8px 15px; border: 1px solid #ddd; border-radius: 5px; background: white; cursor: pointer; font-size: 14px; transition: all 0.2s; `; // 设置当前倍速的样式 if (speed === 1.0) { https://t.co/5ZBU1WBy4L.background = 'var(--theme-color, #25B4E1)'; https://t.co/5ZBU1WBy4L.color = 'white'; https://t.co/5ZBU1WBy4L.borderColor = 'var(--theme-color, #25B4E1)'; } btn.addEventListener('click', () => { audio.playbackRate = speed; // 更新所有按钮样式 speedContainer.querySelectorAll('button').forEach(b => { https://t.co/kqnhnypYTa.background = 'white'; https://t.co/kqnhnypYTa.color = 'black'; https://t.co/kqnhnypYTa.borderColor = '#ddd'; }); // 高亮当前按钮 https://t.co/5ZBU1WBy4L.background = 'var(--theme-color, #25B4E1)'; https://t.co/5ZBU1WBy4L.color = 'white'; https://t.co/5ZBU1WBy4L.borderColor = 'var(--theme-color, #25B4E1)'; }); btn.addEventListener('mouseenter', () => { if (audio.playbackRate !== speed) { https://t.co/5ZBU1WBy4L.background = '#f5f5f5'; } }); btn.addEventListener('mouseleave', () => { if (audio.playbackRate !== speed) { https://t.co/5ZBU1WBy4L.background = 'white'; } }); speedContainer.appendChild(btn); }); // 添加到页面 document.body.appendChild(speedContainer); // 添加快捷键支持 document.addEventListener('keydown', (e) => { // 使用数字键 1-7 快速切换倍速 if (e.key >= '1' && e.key <= '7') { const index = parseInt(e.key) - 1; if (speeds[index]) { audio.playbackRate = speeds[index]; // 触发对应按钮的点击效果 speedContainer.querySelectorAll('button')[index + 1].click(); } } }); console.log('倍速控制已添加!可使用数字键1-7快速切换倍速'); } // 开始监听 waitForAudio(); })();

avatar for 向阳乔木
向阳乔木
Fri Dec 12 09:34:51
  • Previous
  • 1
  • More pages
  • 916
  • 917
  • 918
  • More pages
  • 5634
  • Next