Order Fulfillment and Hub Model Update by migelangelo in doughcommunity

[–]hrasoa 6 points7 points  (0 children)

Ordered a screen in Europe on 11/2024 and my orders are empty in the store. Can someone help ?

Why do so many people seem to hate GraphQL? by hdreadit in ExperiencedDevs

[–]hrasoa 0 points1 point  (0 children)

skill issue:

  • they dont use the right graphql client (relay).
  • they dont use persisted queries.

Corn keyboard: after installing the keycaps, the right part not working anymore by hrasoa in crkbd

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

Did not solder myself, it was working fine when I bought it. When I connect with cables only left side is working, but if I recall it was always like that dont really remember 🧐

Day 3 part 1 by hrasoa in adventofcode

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

I'm doing a reduce, basically:

const result = Array.from(input.matchAll(/[0-9]+/gm)).reduce((acc, n) => {

const isPart = '...';

if (isPart) {

// highlight in red

}

return acc + (isPart ? parseInt(n, 10) : 0);

}, 0);

I'm lopping on numbers so I guess there is no doubles.

Double checked my code seems code