icetbr
icetbr
Which framework? Deno itself? I've used the ones from here https://github.com/SaltyAom/bun-http-framework-benchmark/tree/main/src/deno And pure deno Deno.serve({ port: 3000 }, () => new Response("Hello, Bench!"));
Do you have the stats? That would be unusual, as I'm not aware of any performance difference between any program between any linux distro.
Do you have any reference of this? It makes no sense, its like saying strawberry ice cream is colder then chocolate ice cream. Mint IS Ubuntu. Even Arch, which is...
You can hide items based on position with this extension [customize-ui](https://marketplace.visualstudio.com/items?itemName=iocave.customize-ui) ```js settings.js "customizeUI.stylesheet": { "div.context-view.monaco-menu-container.bottom.left > div.monaco-scrollable-element > div.monaco-menu > div > ul > li:nth-child(1)": "display: none !important;", //...
@tot-rgo My workaround, using a custom reporter that prints as last message ```js process.stdout.write('\x1b[8m') // adds hide effect to text ``` and as first ```js process.stdout.write('\x1b[0m') // reset effects ```...
This landed on node 22: `--experimental-require-module`. It allows mocha --watch to work with ESM modules, which was broken feature due to require.cache. Here is the person who found the "fix"...