I'm amazed how quickly the Zed (https://t.co/JN3FGQh0GV) editor has become a more than viable alternative to sublime text. Great timing, my license has run out too.
The one thing that held me back for a long time was the ability to use it as a scratch pad without explicit save.
Thank you @burkeholland for writing this helpful article.
You should never ever run directly against Node.js in production. Maybe.
https://t.co/9pvOdoafTO
@iamscottcab I had the same problem with a Postgres db, ended up putting it in a Docker container in wsl2 and access it from there and Windows.
To access the WSL's ip from Windows I use https://t.co/vcu53rsolU (a project with a reverse proxy needs that).
Just installed the awesome Dank Mono (https://t.co/w9bRj646ZU) font on my system. One thing I stumbled upon- Intellij Idea did not pick up the otf version of the font- had to install ttf to make it work.
Yesterday I learned when adding an `a` tag when a `target=_blank` you should really add some `rel` info to prevent the opened page access to the opener ESLint gave me this:
Using target="_blank" without rel="noopener noreferrer" is a security risk: see https://t.co/JTQpg8fw63
If you want to remove a specific auto suggested URL in Chrome, highlight that auto suggestion in the address bar dropdown and press "Shift-Delete". It should not appear again next time.
My gatsby build was failing with V8 out of memory error. Found out you can fix that by passing "--max-old-space-size=<mb>" to node: In package.json scripts section:
{
"build": "node --max-old-space-size=4096 ./node_modules/.bin/gatsby build"
}
Just watched the latest Star Trek Discovery episode. Did you catch where they said the probe from the future tried a SQL injection attack on the shuttle but failed? That's because they use NoSQL at star fleet, babe ๐คฃ
One problem I had with https://t.co/xsqxgIWhXz was the limited scrollback buffer, which was never quite enough. Turns out you can add a 'scrollback' option to its config file that is processed and passed to xterm.js: