NodeJS has a flag `--use-system-ca` that will "fix" this!
Should work on MacOS and Windows.
#NodeJS #SSL #Tip
rsync -av -e ssh \
--delete-after \
--exclude 'node_modules' \
--exclude 'dist' \
--exclude '.idea' \
--dry-run \
other-host:/path/to/project/remote/ .
rsync -av -e ssh \
--delete-after \
--exclude 'node_modules' \
--exclude 'dist' \
--exclude '.idea' \
--dry-run \
other-host:/path/to/project/remote/ .
So I took a stab and added "a couple" translations for the nl-NL version 😬. Let's see how this goes!
So I took a stab and added "a couple" translations for the nl-NL version 😬. Let's see how this goes!
- translation of system emails
- sse-c for s3 storage
- translation of system emails
- sse-c for s3 storage
A 2-day “are you really absolutely ridiculously sure” timer. I can only imagine the headaches that this will safe. But off course there will be a first "I accidentally forced delete it anyway, help!" 😅.
A 2-day “are you really absolutely ridiculously sure” timer. I can only imagine the headaches that this will safe. But off course there will be a first "I accidentally forced delete it anyway, help!" 😅.
Can't wait for this!
More on it in the actual merged PR: github.com/coollabsio/c...
Can't wait for this!
More on it in the actual merged PR: github.com/coollabsio/c...
• Redesigned Error UI & Improved Stack Traces
• Streaming Metadata
• Turbopack Performance Improvements
• View Transitions (experimental)
• Node.js Middleware (experimental)
nextjs.org/blog/next-15-2
workchronicles.substack.com/p/comic-did-...
workchronicles.substack.com/p/comic-did-...
git reset HEAD --hard &&
git clean idfx
It resets the repo to HEAD (reverting al changes to tracked files) and it cleans all your untracked and ignored files and directories.
git reset HEAD --hard &&
git clean idfx
It resets the repo to HEAD (reverting al changes to tracked files) and it cleans all your untracked and ignored files and directories.
For example, full disk encryption for VMs in the cloud is mostly manual and not well documented (by the providers).
For example, full disk encryption for VMs in the cloud is mostly manual and not well documented (by the providers).
If you are using server actions in NextJS to post a form, make sure your input element has an `name` and not just an `id`. Otherwise the field won't be available in your FormData field.
Hint: if you use shadcn/ui the name field does not come out of the box, you need to add it!
If you are using server actions in NextJS to post a form, make sure your input element has an `name` and not just an `id`. Otherwise the field won't be available in your FormData field.
Hint: if you use shadcn/ui the name field does not come out of the box, you need to add it!