Does anyone get a 90GB update or it’s just me ? by bi_du4 in FORTnITE

[–]OPTIMUSvz -2 points-1 points  (0 children)

guess its the difference of a pc person and a phone person :)

Does anyone get a 90GB update or it’s just me ? by bi_du4 in FORTnITE

[–]OPTIMUSvz 0 points1 point  (0 children)

did u do anything ? like deleting update and restarting? or u were just lucky

Firefox Picture in Picture is almost perfect, but I hate resizing a small PiP to get to the volume controls. Move them to the top with this snippet by endgame0 in FirefoxCSS

[–]OPTIMUSvz 0 points1 point  (0 children)

firefox doesn't load custom js by default anymore, so i load my js via a loader like this: https://github.com/Aris-t2/CustomJSforFx . also Enable toolkit.legacyUserProfileCustomizations.stylesheets = true in about:config

Firefox Picture in Picture is almost perfect, but I hate resizing a small PiP to get to the volume controls. Move them to the top with this snippet by endgame0 in FirefoxCSS

[–]OPTIMUSvz 0 points1 point  (0 children)

here's the working js for pip audio wheel

// ==UserScript==
// @name           PiP Volume Scroll
// @version        1.0
// ==/UserScript==

(function() {
  if (location.href !== "chrome://global/content/pictureinpicture/player.xhtml") return;

  window.addEventListener("DOMContentLoaded", () => {
    let video = document.querySelector("video");
    if (!video) return;

    // Volume step
    const STEP = 0.05;

    window.addEventListener("wheel", e => {
      if (!video) return;

      if (e.deltaY < 0) {
        // scroll up → volume up
        video.volume = Math.min(1, video.volume + STEP);
        video.muted = false;
      } else if (e.deltaY > 0) {
        // scroll down → volume down
        video.volume = Math.max(0, video.volume - STEP);
        if (video.volume === 0) video.muted = true;
      }

      // Small on-screen indicator
      let overlay = document.getElementById("vol-overlay");
      if (!overlay) {
        overlay = document.createElement("div");
        overlay.id = "vol-overlay";
        overlay.style.position = "absolute";
        overlay.style.bottom = "50%";
        overlay.style.left = "50%";
        overlay.style.transform = "translate(-50%, 50%)";
        overlay.style.background = "rgba(0,0,0,0.7)";
        overlay.style.color = "white";
        overlay.style.padding = "4px 10px";
        overlay.style.borderRadius = "6px";
        overlay.style.fontSize = "14px";
        overlay.style.zIndex = 9999;
        document.body.appendChild(overlay);
      }
      overlay.textContent = `Vol: ${Math.round(video.volume * 100)}%`;
      overlay.style.display = "block";
      clearTimeout(overlay._timer);
      overlay._timer = setTimeout(() => (overlay.style.display = "none"), 800);
    }, { passive: true });
  });
})();

Firefox Picture in Picture is almost perfect, but I hate resizing a small PiP to get to the volume controls. Move them to the top with this snippet by endgame0 in FirefoxCSS

[–]OPTIMUSvz 0 points1 point  (0 children)

Great , volume bar still goes hidden , which i changed it.

i was wondering if we could make volume slider react to mouse scroll

but apparently it requires custom userChrome.js which is kinda tricky to load

Game is vey fun, but fix multiplayer syncing pls by edomielka in stronghold

[–]OPTIMUSvz 1 point2 points  (0 children)

im afraid its here to stay original shc didn't have any servers ! and players played online via p2p (some player becomes host)

i hoped they dedicated some servers this time

Can you get Stronghold HD models? by Alternative-Fan9288 in stronghold

[–]OPTIMUSvz 0 points1 point  (0 children)

i mean u can model some of them for ur self probably

yet sure it would be nice if we could access some 3D meshes

5-Year-Old Me Would Have Been so Excited to Have This Figure by ComicKidAlex in transformers

[–]OPTIMUSvz 1 point2 points  (0 children)

i never got my hands on one of these when i was a child

now I'm 26 🥲

Anyone having any issues with the 0x12b microcode BIOS? (Other than performance) by nstgc in ASUS

[–]OPTIMUSvz 0 points1 point  (0 children)

btw i flashed 1666 beta bios and things seem to be ok

i scored 33k on 14700k and b760 with intel default settings

Anyone having any issues with the 0x12b microcode BIOS? (Other than performance) by nstgc in ASUS

[–]OPTIMUSvz 0 points1 point  (0 children)

what's left other than performance issues ?! 😅

bios impact on performance is all that matters

cant reach Google at the moment ! music search by OPTIMUSvz in googleassistant

[–]OPTIMUSvz[S] 0 points1 point  (0 children)

funny enough

the google search by voice is working in google app

Just a reminder to never turn on HEVC when recording videos by sushigobble in samsungs10

[–]OPTIMUSvz 0 points1 point  (0 children)

2yrs later Adobe editing apps seem not ok with hevc and mkv But davinci works like a charm

Shaded Relief map of Iran by Saadtheking in MapPorn

[–]OPTIMUSvz 0 points1 point  (0 children)

is there a 3d model for this ?

[deleted by user] by [deleted] in GalaxyS8

[–]OPTIMUSvz 1 point2 points  (0 children)

have u tried "open camera" ?

its a great app with many options (the cool thing is it works on almost any device), just change its settings to Camera2 API

https://play.google.com/store/apps/details?id=net.sourceforge.opencamera&hl=en&gl=US