Openclaw 大乱斗,杀死比赛!

  • 图1 NemoClaw 来了,OpenClaw 已死!

  • 图2 CoWork 来了,OpenClaw 已死!

  • 图3 Perplexity Computer 来了,OpenClaw 已死!

  • 图4 OpenClaw 已死,nanobot 来了!

  • 图5 nanobot 已死,PicoClaw 来了!

  • 图6 PicoClaw 已死,FemtoClaw 来了!

  • 图7 FemtoClaw 已死,ZeroClaw 来了!

  • 图8 ZeroClaw 已死,NoClaw 来了,杀死比赛!

1 个赞

阵亡的将士真多。。。

1 个赞

图片.png

3 个赞

您发的这个知乎插件或者脚本是啥,还可以看MCN,感觉有点意思 :woozy_face:

你看看最后一个。。。

现已加入科技自媒体标题模板库

我记得,国内的手机厂商,每次发布新手机,都说超越苹果。但是,第二年发布会,还是说“超越苹果”。苹果年年被超越,但是,为啥这么个垃圾公司的市值不掉呢?

这么多的东西都超越了OpenClaw,但是,为什么它的Star还在快速上涨呢?

诶,奇怪奇怪

2 个赞
修复Firefox知乎评论区bug https://www.zhihu.com/question/554983886/answer/1953310361613768287
// ==UserScript==
// @name         Zhihu Disable Scroll Anchoring
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Disable scroll anchoring on Zhihu by setting overflow-anchor: none on body
// @author       You
// @match        *://*.zhihu.com/*
// @grant        none
// @run-at       document-start
// ==/UserScript==

(function() {
    'use strict';
    function disableScrollAnchoring() {
        document.body.style.setProperty('overflow-anchor', 'none', 'important');
    }
    if (document.body) {
        disableScrollAnchoring();
    } else {
        document.addEventListener('DOMContentLoaded', disableScrollAnchoring);
    }
})();
恢复知乎惊喜表情 https://zhuanlan.zhihu.com/p/1997308999595483524
// ==UserScript==
// @name         Zhihu Image URL Replacer
// @namespace    https://tampermonkey.net/
// @version      1.0
// @description  Replace a specific Zhihu image URL with another one
// @match        https://www.zhihu.com/*
// @match        https://zhuanlan.zhihu.com/*
// @grant        none
// ==/UserScript==

(function () {
    'use strict';

    const OLD_URL = 'https://pic1.zhimg.com/v2-5c9b7521eb16507c9d2f747f3a32a813.png';
    const NEW_URL = 'https://pic2.zhimg.com/v2-3846906ea3ded1fabbf1a98c891527fb.png';

    function replaceImages(root = document) {
        // Replace <img src="">
        const imgs = root.querySelectorAll(`img[src="${OLD_URL}"]`);
        imgs.forEach(img => {
            img.src = NEW_URL;
        });

        // Replace srcset (Zhihu often uses this)
        const srcsetImgs = root.querySelectorAll('img[srcset]');
        srcsetImgs.forEach(img => {
            if (img.srcset.includes(OLD_URL)) {
                img.srcset = img.srcset.replaceAll(OLD_URL, NEW_URL);
            }
        });

        // Replace background-image URLs
        const elements = root.querySelectorAll('*');
        elements.forEach(el => {
            const bg = getComputedStyle(el).backgroundImage;
            if (bg && bg.includes(OLD_URL)) {
                el.style.backgroundImage = bg.replaceAll(OLD_URL, NEW_URL);
            }
        });
    }

    // Initial run
    replaceImages();

    // Observe dynamically loaded content
    const observer = new MutationObserver(mutations => {
        for (const m of mutations) {
            m.addedNodes.forEach(node => {
                if (node.nodeType === Node.ELEMENT_NODE) {
                    replaceImages(node);
                }
            });
        }
    });

    observer.observe(document.body, {
        childList: true,
        subtree: true
    });
})();





备用:

3 个赞

明显的不当类比

这都是国外的?国内的这两天集体面世,那叫一个乱,还以为国外没人用呢