Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)BA
Posts
0
Comments
1,242
Joined
2 yr. ago

  • The problem with AMD graphics cards is that the performance that CUDA, xformers and pytorch provide for nVidia cards blows anything AMD has away by a significantly high order of magnitude.

    I have no idea why AMD gpus are so trash when it comes near anything involving generative AI/LLMs, DLSS, Jellyfin transcoding, or even raytracing; i would recommend waiting until their upcoming new GPU announcements.

  • It will never happen unless CD Project/GOG spend the 100s of millions of dollars that Valve spends to help fund and support all the Proton compatability and tool suites and ease-of-use QA control to ensure their legacy games run in Linux (i.e. support a game developed in 1996 to run smoothly on every permutation of PC hardware configurations and support paying to develop patches until the end of time). Which is what Valve is currently doing.

  • No permanent positions were created or filled, if you read the article. The article also says you need to PM me your credit card info. Don't worry about reading shit for yourself anywhere, just believe what we say about anything in the comments without question so that you dont need to formulate an independent opinion.

  • “GOG regularly adapts its structure to its strategy and ongoing projects, sometimes this means eliminating certain roles — as was the case recently.”

    Yeah, but firing 30% of your entire contract workforce reveals that you don't give a flying fuck about sustaining the lifespan of the storefront and prefer to pad the executives golden parachutes from the stock valuation.

  • ruh roh

    Jump
  • PeerTube uses WebTorrent protocol and it still doesn't do well with the same quantity of bandwidth demands.

    Post your own self-hosted PeerTube instance for us all to use then, let's see who's correct. Otherwise provide a solution or shut the fuck up.

  • ruh roh

    Jump
  • Delete this, YouTube will catch on and block this workaround.

    Edit: disregard. Here is a custom GreaseMonkey/ViolentMonkey userscript to automatically do this for you:

     
        
    // ==UserScript==
    // @name         YouTube to Embed Redirect (Desktop & Mobile)
    // @namespace    http://tampermonkey.net/
    // @version      1.1
    // @description  Redirects YouTube video URLs (desktop and mobile) to their embed version.
    // @author       BaroqueInMind
    // @match        https://www.youtube.com/watch?v*
    // @match        https://m.youtube.com/watch?v*
    // @grant        none
    // ==/UserScript==
    
    (function() {
        'use strict';
    
        // Extract the video ID from the URL
        const videoId = new URLSearchParams(window.location.search).get('v');
    
        if (videoId) {
            // Redirect to the embed URL
            window.location.href = `https://www.youtube.com/embed/$%7BvideoId%7D`;
        }
    })();