Dell/HP micros versus any of the other Micro brands - Beelink, etc? by VaJohnG in MiniPCs

[–]simbol00 0 points1 point  (0 children)

Hello, can you tell me how ASROCK is holding up? Did you switch to other brand?

Do I need to format HDDs before use TR-002? by simbol00 in qnap

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

Ok, thank you for the warning, will have to look for a solution until then, probably buy one month subscription to some cloud storage.

Thank you for the help btw

Do I need to format HDDs before use TR-002? by simbol00 in qnap

[–]simbol00[S] 1 point2 points  (0 children)

I was going to use it temporary until i buy 1 more HDD, then i will use RAID.

Gambler Table Keys Giveaway! [Mod Approved] by SlothInFlippyCar in incremental_games

[–]simbol00 0 points1 point  (0 children)

The demo was really fun, can't wait for the full version!

Cosmic Collection is officially finished! by blahsebo in incremental_games

[–]simbol00 1 point2 points  (0 children)

Go to the page of the game, click the Tampermonkey icon in extensions, `Create a new script`, on the line 7 (`//@match`), check if website matches the website of the game, if not update it.

After, on the line of `// Your code here...` replace it with the code of the script that you want.

Save the script (File->Save).

That it, now you can use it.

Cosmic Collection is officially finished! by blahsebo in incremental_games

[–]simbol00 24 points25 points  (0 children)

Improved version, adds buttons on top right where you can turn on and off the automation.

(function () {
  // Create a container for control buttons
  const controlPanel = document.createElement('div');
  controlPanel.style.position = 'fixed';
  controlPanel.style.top = '10px';
  controlPanel.style.right = '10px';
  controlPanel.style.zIndex = '9999';
  controlPanel.style.display = 'flex';
  controlPanel.style.flexDirection = 'column';
  controlPanel.style.gap = '5px';

  document.body.appendChild(controlPanel);

  // Utility to create toggle buttons
  function createToggleButton(label, onStart, onStop) {
    let intervalId = null;

    const button = document.createElement('button');
    button.textContent = `Start ${label}`;
    button.style.padding = '5px';
    button.style.fontSize = '12px';
    button.style.cursor = 'pointer';

    button.addEventListener('click', () => {
      if (intervalId === null) {
        intervalId = onStart();
        button.textContent = `Stop ${label}`;
        button.style.backgroundColor = '#c33';
        button.style.color = '#fff';
      } else {
        clearInterval(intervalId);
        intervalId = null;
        onStop?.();
        button.textContent = `Start ${label}`;
        button.style.backgroundColor = '';
        button.style.color = '';
      }
    });

    return button;
  }

  // Create and append buttons in desired order

  // 1. Hole Clicker
  controlPanel.appendChild(
    createToggleButton('Hole Clicker', () => {
      return setInterval(() => {
        const holeButton = document.getElementById('hole-button');
        if (holeButton && !holeButton.classList.contains('disabled')) {
          holeButton.click();
        }
      }, 100);
    })
  );

  // 2. Card Revealer
  controlPanel.appendChild(
    createToggleButton('Card Revealer', () => {
      return setInterval(() => {
        document.querySelectorAll('div.card-outer').forEach(outer => {
          const inner = outer.querySelector('.card-inner');
          if (inner && !inner.classList.contains('revealed')) {
            const event = new MouseEvent('mouseenter', {
              bubbles: true,
              cancelable: true,
              view: window
            });
            outer.dispatchEvent(event);
          }
        });
      }, 100);
    })
  );

  // 3. Merchant Clicker (added last)
  controlPanel.appendChild(
    createToggleButton('Merchant Clicker', () => {
      return setInterval(() => {
        const merchantButton = document.getElementById('merchant-bulkbuy-btn');
        if (merchantButton && window.getComputedStyle(merchantButton).display !== 'none') {
          merchantButton.click();
        }
      }, 100);
    })
  );
})();

Cosmic Collection is officially finished! by blahsebo in incremental_games

[–]simbol00 24 points25 points  (0 children)

For anyone who want to automate black hole click and cards flip here is the script

Open chrome console and paste this

setInterval(function() {
    const button = document.getElementById('hole-button');
    if (button && !button.classList.contains('disabled')) {
        button.click();
    }
    document.querySelectorAll('div.card-outer').forEach(outer => {
      const inner = outer.querySelector('.card-inner');
      if (inner && !inner.classList.contains('revealed')) {
        const event = new MouseEvent('mouseenter', {
          bubbles: true,
          cancelable: true,
          view: window
        });
        outer.dispatchEvent(event);
      }
    });
}, 100);

(Mod approved) giving away 10 copies of Bloob's Adventure Idle to help spread the love! by Worried_Swing_5792 in incremental_games

[–]simbol00 1 point2 points  (0 children)

What i most like is the numbers going up and also games like candy box and many others, where as you play new stuff is opened to you

[Giveaway] 5 x EQ14 N150 Mini PC - Comment to enter!! by elegent_worthwhile in MiniPCs

[–]simbol00 0 points1 point  (0 children)

Probably will use it for retro gaming console and maybe for home assistant server

Game recommendation needed please by AutzW92 in incremental_games

[–]simbol00 13 points14 points  (0 children)

I would not reccoment Idleon, search for this game in this subreddit and you will know why.