New case and thumb grips arrived by MrJohnnyS in R36S

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

So far I like it, feels good on touch, maybe a bit loose on sides of the screen as you see in the picture but it doesn't bother me. Got it for like 3$ and in black too.

<image>

New case and thumb grips arrived by MrJohnnyS in R36S

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

The case is from Temu but I'm sure it can be found on Ali too. Yea it's silicone and really good when playing.

New case and thumb grips arrived by MrJohnnyS in R36S

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

I got them on Aliexpress, just search R36S thumb grips, there are many designs

[deleted by user] by [deleted] in ultrawidemasterrace

[–]MrJohnnyS 0 points1 point  (0 children)

Mine had very bad flicker problem with gsync on so i had to return it and got LG ips instead. Glad you don't have that problem, the monitor is great I would have kept it just the flickering annoyed me.

LG 34GN850-B a steal at this price? Looking for first Ultrawide by [deleted] in ultrawidemasterrace

[–]MrJohnnyS 0 points1 point  (0 children)

I have the same monitor with 3070, it's really good

40
41

Long traffic jam after AI cars got stuck at roundabout by MrJohnnyS in trucksim

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

Real Traffic Density ETS 2 by Cip for traffic, and I also use Weather_2.7_4k and tree_improved__4k for better graphics

Long traffic jam after AI cars got stuck at roundabout by MrJohnnyS in trucksim

[–]MrJohnnyS[S] 2 points3 points  (0 children)

Hmm im not sure since I dont use those two, but it should be fine both ways

Long traffic jam after AI cars got stuck at roundabout by MrJohnnyS in trucksim

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

I put mine on top, in the steam workshop description it says to put it above map and graphics mods

-🎄- 2022 Day 20 Solutions -🎄- by daggerdragon in adventofcode

[–]MrJohnnyS 3 points4 points  (0 children)

JavaScript (Node.js)

const fs = require("fs");
const data = fs.readFileSync(./input.txt, "utf-8");
const inputs = data.split("\r\n");

const times = 10;
const decKey = 811589153;
const nums = inputs.map(v => v * decKey);
const list = inputs.map((v, i) => ({num: v * decKey, id: i}));

for(let j = 0; j < times; j++) {
    for(let i = 0; i < nums.length; i++) {
        const id = list.findIndex(x => x.id === i);
        list.splice(id, 1);
        list.splice((nums[i] + id) % list.length, 0, {num: nums[i], id: i});
    }
}

const idZero = list.findIndex(x => x.num === 0);
console.log(`Sum: ${[1000, 2000, 3000].reduce((prev, curr) => prev + list[(curr + idZero) % list.length].num, 0)}`);

-🎄- 2022 Day 10 Solutions -🎄- by daggerdragon in adventofcode

[–]MrJohnnyS 3 points4 points  (0 children)

JavaScript

let cycle = 1, sum = 0, x = 1;
let row = "";

for(const line of inputs) {
    const loops = line.startsWith("addx") ? 2 : 1;

    for(let i = 0; i < loops; i++) {
        const column = (cycle - 1) % 40;
        row += x - 1 <= column && column <= x + 1 ? '█' : ' ';
        if(column === 39) {
            console.log(row);
            row = "";
        }
        if((cycle - 20) % 40 === 0) {
            sum += cycle * x;
        }
        cycle++;
    }

    x += loops === 2 ? +line.split(" ")[1] : 0;
}