HackerTrans
TopNewTrendsCommentsPastAskShowJobs

LonelyWolfe

no profile record

comments

LonelyWolfe
·vor 6 Monaten·discuss
Here's mine: https://roman015.com/
LonelyWolfe
·letztes Jahr·discuss
I heard something like this in the Linus video. That video also mentioned Sony as well.
LonelyWolfe
·letztes Jahr·discuss
This feels like the most probable reason. Likely a big redesign would be needed for larger resolutions.
LonelyWolfe
·letztes Jahr·discuss
Just venting and ranting about AR glasses here:

One thing about AR glasses that I don't get so far: Why do ALL of the AR glasses use only 1080p displays per eye whereas all the other VR solutions that also have a display right in front of your eye have even bigger resolutions?

I really do want AR glasses that can act as an alternative to a physical display. But they're always 1080p for some reason. The companies I've seen making them appear to me to keep fixing important issues and adding really useful features - but seem to avoid touching anything that would improve the resolution.

Edit : There's a part of me that believes the situation here is a lot like how Linus Tech Tips described the Dashcam situation.
LonelyWolfe
·letztes Jahr·discuss
I'm calling it - Doom is next.
LonelyWolfe
·vor 2 Jahren·discuss
This shouldn't be done directly from the bank but as a third party that is supported by the bank and a bunch of other companies concerned about this.

That way the bank doesn't have to worry about any legal or good will issues from doing this.
LonelyWolfe
·vor 2 Jahren·discuss
Your Welcome!
LonelyWolfe
·vor 2 Jahren·discuss
I made this to play the game automatically. It's a simple WinForm application but I've left the JavaScript version in there too:

https://github.com/roman015/InfiniteCraftAutomation
LonelyWolfe
·vor 2 Jahren·discuss
Lemme know if there's another way to press every combination:

let maxElementReachedForElement = {}; let totalElements = 0; let firstElement = 0; let secondElement = 0;

setInterval(function() {

  document.getElementsByClassName('mobile-item')[firstElement].getElementsByClassName('item')[0].click();

  document.getElementsByClassName('mobile-item')[secondElement].getElementsByClassName('item')[0].click();

  totalElements = document.getElementsByClassName('mobile-item').length;

  secondElement = (secondElement + 1) % totalElements;

  if (secondElement == 0) {
   maxElementReachedForElement[firstElement] = totalElements; 
   if (Object.keys(maxElementReachedForElement).some(item => maxElementReachedForElement[item] < totalElements)) {
    let prevStart = Object.keys(maxElementReachedForElement).find(item => maxElementReachedForElement[item] < totalElements);
    firstElement = prevStart;
    secondElement = maxElementReachedForElement[prevStart]; // Start from previous end
   } else {
    firstElement = (firstElement + 1) % totalElements;
    secondElement = firstElement; // No need to repeat the previous combinations.
   }
  }

  document.title = firstElement + '+' + secondElement + '|' + totalElements;
}, 500); // TODO : Find a way other than delay
LonelyWolfe
·vor 2 Jahren·discuss
On mobile it's just tapping, no drag and drop required.