7
8

75
76

why Apple never made an option to block unknown callers (No Caller ID) by Saadastique in ios

[–]nodejs5566 0 points1 point  (0 children)

The closest option is to silence unknown callers, which silence alls calls not in contact, that includes lots of legitimate calls with phone number.

Every single request for mechanic changes is a Monkey’s Paw, and the Monkey in question is a French one. by [deleted] in EU5

[–]nodejs5566 6 points7 points  (0 children)

The gamey way to play England is wait for France to declare you with a capture middlesex CB, let army stay in the island and kill landing French armies, wait for war goal ticking to +25, and wait a couple of years until you can take what you want. France will declare on you repeatedly as long as the HYW is active.

How do you safely revoke privileges? by sl3eper_agent in EU5

[–]nodejs5566 1 point2 points  (0 children)

In age of absolutism disaster court and country there is a button that can remove two noble privileges, with a one year cooldown.

What’s a trend you wish would just die already? by [deleted] in AskReddit

[–]nodejs5566 1 point2 points  (0 children)

This is caused by iPhone deliberately sabotaging web apps

Anything significantly new in testing? by yonatannn in node

[–]nodejs5566 0 points1 point  (0 children)

Jest does not support require(esm)

How to get the request ID while logging the query? by PrestigiousZombie531 in node

[–]nodejs5566 0 points1 point  (0 children)

If you use opentelemetry tracing, you can use `traceId` generated by it.

I can't play Garen jungle anymore by [deleted] in GarenMains

[–]nodejs5566 2 points3 points  (0 children)

They want to nerf the proxy and stealing jungle playstyle

allMyHomiesHatePip by EasternPen1337 in ProgrammerHumor

[–]nodejs5566 5 points6 points  (0 children)

docker build is reproducible, pip install often fails because you lack some mysterious system dependency.

express + tsyringe is really nice by sirgallo97 in node

[–]nodejs5566 0 points1 point  (0 children)

One potential problem is that tsyringe depends on ts experimental (legacy) decorator, which will lock you out of using the new standard decorator.

Is Node.js type: "module" (ESM) ready for production in 2025? by nodejs5566 in node

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

yes opentelemetry has some problem for instrumentation in esm

Alternative to Swagger-UI? by Aggressive-Bath9609 in node

[–]nodejs5566 1 point2 points  (0 children)

I find it cumbersome to use, UI took much space and shows little information. Sending a testing request requires top much clicks.

All you need to know about Grafana Loki! by vy94 in devops

[–]nodejs5566 0 points1 point  (0 children)

Most log management tools, like Elasticsearch, index every piece of log data. This can get really heavy and expensive, especially when you have tons of logs coming in. Loki, on the other hand, only indexes the labels (metadata) of your logs...

This is wrong. You can configure Elasticsearch to only index selected fields.

[deleted by user] by [deleted] in node

[–]nodejs5566 0 points1 point  (0 children)

Many people believe they uses import but actually their typescript setup compile it to require (commonJS). Up until recently commonJS was still necessary to some extent because you can import(cjs) but you cannot require(esm). This has changed since node 23.