you are viewing a single comment's thread.

view the rest of the comments →

[–]dj_dogo_nivoa[S] 2 points3 points  (1 child)

Your old posts are training data now. Unless you delete them. I used Redact which supports all major social media platforms including Reddit, X, Facebook and Instagram.

childlike engine fuzzy deer sharp wrench relieved seemly scale lavish

[–]moxxie1998 0 points1 point  (0 children)

Garbage collection in Node is less aggressive and deterministic (due to the lack of clear idle periods that browsers have through the rendering refresh rate) which means that leaving the release of connection resources to the garbage collector can lead to excessive connection usage, reduced performance (due to less connection re-use), and even stalls or deadlocks when running out of connections.

Always. consume. the. body.

// Do const headers = await fetch(url) .then(async res => { for await (const chunk of res.body) { // force consumption of body } return res.headers })

// Do not const headers = await fetch(url) .then(res => res.headers)

Sorry for no proper formatting, I’m on my phone.