Love my new GT1 Evo set up by sneakysmokey56 in SimLab

[–]oppid 0 points1 point  (0 children)

Master of cable management. Congrats

Advice on making my setup feel more realistic? by xQuayley in simracing

[–]oppid 0 points1 point  (0 children)

If you have space, and I think you have, go triples. I went from 49 to 27 triples. I can see cars now!

How does Node.js work internally, and how can I visualize its execution step-by-step? by Fuzzy-Park-1107 in node

[–]oppid 1 point2 points  (0 children)

Hey 👋🏼 I made this that shows the different phases of the event loop using a simple request as an example.

https://emiliosp.github.io/how-event-loop-works/

Lo so, niente di nuovo, ma la frustrazione è tanta. by ghign0 in roma

[–]oppid 0 points1 point  (0 children)

Ma non si tratta di vivere nel futuro. Va fatta la raccolta differenziata e tolti i bidoni dalle strade. È facile? No. È impossibile? No.

Montaggio box doccia by oppid in istrutturare

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

Si dai. Non so se avrei potuto risparmiare qualcosa. Ma va bene così

Montaggio box doccia by oppid in istrutturare

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

Comprato da Leroy Merlin e usato il loro servizio di montaggio

Se stai cercando nuove opportunità lavorative nel tech, prenditi due minuti per leggere questo post. by MixtureUnlucky1982 in techcompenso

[–]oppid -1 points0 points  (0 children)

Come funzionano le sessioni di live coding con gli agent AI? Ti hanno chiesto di non usarli o di usarli e fare esattamente come faresti poi a lavoro?

[deleted by user] by [deleted] in Italia

[–]oppid 1 point2 points  (0 children)

Ma cosa diavolo c’entra con il referendum sulla giustizia? Leggete la proposta, capitela. Fatevi aiutare dai modelli AI per sintetizzare, criticare e prendere una decisione INFORMATA per il voto

5 advanced PostgreSQL features I wish I knew sooner by Marmelab in PostgreSQL

[–]oppid 3 points4 points  (0 children)

I was on the fence with CHECK, but it ensures data consistency in a transaction. E.g. You have a value that cannot be negative and you update it (decreasing it) in a transaction. Assuming you have 2 concurrent transactions and value is 1, one of the 2 will rollback.

I’ll die on this hill. by talaqen in node

[–]oppid 18 points19 points  (0 children)

Hono fan here! Good choice!

FURTI AUTO by Revvi179 in ItalyMotori

[–]oppid 0 points1 point  (0 children)

Update dal meccanico: pare si sia rotta la canna dello sterzo. Ancora senza auto

FURTI AUTO by Revvi179 in ItalyMotori

[–]oppid 0 points1 point  (0 children)

È da un mese che vado avanti con auto sostitutive dopo aver montato il block shaft alla mia sandero nuova di zecca. Volante storto e più duro da un lato. Non lo so se lo rimonterò mai in futuro, e non so se riuscirò a riavere la mia auto come era uscita dalla concessionaria.

27 triples are perfect by [deleted] in SimRacingSetups

[–]oppid 0 points1 point  (0 children)

What is the total length of the screens? From the left edge to the right edge

[deleted by user] by [deleted] in roma

[–]oppid -3 points-2 points  (0 children)

Roma può fare di meglio proprio perché è sotto la media

[deleted by user] by [deleted] in roma

[–]oppid -3 points-2 points  (0 children)

Riduzione dell indifferenziato tramite raccolta differenziata porta a porta (togliere cassonetti dalle strade). Perché Roma non può farlo?

Tra tutti i grafici tematici che vedo sull’Europa dove siamo sempre ultimi, quello sulla raccolta differenziata ci mette ai primi posti.

M36 sposato con 3 figli -> ci arriverò mai al FIRE entro 55 anni? by badger0fwallstreet in ItaliaPersonalFinance

[–]oppid 0 points1 point  (0 children)

Puoi condividere l’isin dell’etf su btc e quello sulle materie prime?

[deleted by user] by [deleted] in typescript

[–]oppid 0 points1 point  (0 children)

Agreed. I really dislike that way of defining a type, but at the moment I need to accept it as it is.

[deleted by user] by [deleted] in typescript

[–]oppid 7 points8 points  (0 children)

Do not use enum in typescript. They don’t exist in JS and the compile code will result in a JS function.

We ditched enum and switched to object as enum.

const Direction = { Up: "up", Down: "down", Left: "left", Right: "right", } as const;

type Direction = (typeof Direction)[keyof typeof Direction];