Comment on
A Russian drone has exploded on the territory of the NATO country Romania. The military has raised combat aviation, and now they are searching for the wreckage • World News
Reply in thread
It did, in september 2023.
Comment on
A Russian drone has exploded on the territory of the NATO country Romania. The military has raised combat aviation, and now they are searching for the wreckage • World News
Reply in thread
It did, in september 2023.
Comment on
What are your thoughts on passkey login?
Reply in thread
Comment on
Deno's Standard Library for JavaScript Finally Stabilized at v1 | 3min 5sec Video | Aug 8, 2024
Reply in thread
The video mentions some "de facto" standard libraries like Lodash or Underscore. But there is also Bun which try to promote their standard library like their test runner, their HTTP server, etc..
I like Deno's approach, since they try to make their “Standard library” also available for other platform. But only few of them are compatible with Node.js.
For instance, @std/cli is only available for Deno. So I'll stick with commander which is more standard for CLI tools, and it works with Deno, Bun & Node.js.
Comment on
How to get started with pirating music (mp3s)?
Reply in thread
Recompress to a lossless format (...) There is very little reason for you to do this
I though there are no reasons at all to do it. What could be a valid use case for this ?
Comment on
How to get started with pirating music (mp3s)?
Reply in thread
my two cents,
I personally buy some music from Bandcamp, and I'm pretty sure those songs don't exist on the Apple Music catalog. So I don't want to handle multiple apps to listen what I want.
Also, streaming platforms have the internet constraints. Sometimes, like when I'm driving, I don't have a stable internet connection
Comment on
Is the new #zed editor mostly hype rn?
Reply in thread
I tried Helix but my muscle memory around Vim movements was a non - starter for me. Also , Helix wasn't working out of the box with Vue.JS (it needs to be tweaked a bit.
So I gave a try to LazyVIM and everything works almost as is. I'll never look back.
Comment on
What is your preferred API error response and why?
Reply in thread
I don't get why the RFC show an example returning 403 with body "You do not have enough credit." although there is a dedicated status code " 402 Payment Required". Isn't more correct to use 402 in this situation?
Comment on
What are some easy-to-solve errors you spent awhile fixing?
My top 3 (as mainly JS dev) would be:
string when you know that can happens.JSON.parse('{"n": 123456789123456789012.0}').n
// => 123456789123456800000
Object.freeze a lot). Something like:const CONFIGURATION = { conf: { enabled: false } }
// setup a "copy"
let currentConfiguration = { ...CONFIGURATION }
currentConfiguration.conf.enabled = true
// try to reset the conf
currentConfiguration = { ...CONFIGURATION }
// => { conf: { enabled: true } }
if (foo = false) {
// do something
}
Comment on
I just released my Godot-made game!
Congrat. How long did it take to build this game ?
Comment on
Should you Stay Technical as an Engineering Manager?
Reply in thread
It works on my machine ™
Comment on
What's the most creative or unconventional use of Git you've encountered?
I just discovered from So You Think You Know Git - FOSDEM 2024 that you can use Git to generate columns:
seq 1 24 | git column --mode=column --padding=5
Will render:
1 3 5 7 9 11 13 15 17 19 21 23
2 4 6 8 10 12 14 16 18 20 22 24
It can be useful to list files / permissions in a directory in multiples columns
ls -lah | git column --mode=column --padding=5
(Ok, it's useless)
Comment on
Which are your favourite bookmarklets/user scripts?
I did a quick user script with Tampermonkey to search torrents links from torrents-csv.com of movies when I'm navigating to themoviedb.org . Not sure I can share it but it was really fun to develop and really useful for me.
Comment on
Mullvad VPN or Proton VPN?
I'm really happy with Mullvad and their pricing. I can pay for only one month if I need it so I don't have another subscription to pay each month.
Comment on
Help with LineageOS
I'm in the same situation. I have a One Plus 8, and when I try to update using the updater app on Android, my phone reboot a dozen of time but finally boot without updating Lineage OS. I tried twice and finally gave up...
Comment on
Switched to GrapheneOS today
Reply in thread
Really helpful, thanks. Just curios, does this list apply also for LineageOS + MicroG ?
Comment on
Deno's Standard Library for JavaScript Finally Stabilized at v1 | 3min 5sec Video | Aug 8, 2024
Reply in thread
Comment on
When's the last time you asked a questions on StackOverflow?
Reply in thread
So which one are you using ?
Comment on
Getting started with Turtle or Semantic Web?
Reply in thread
I guess it is https://en.wikipedia.org/wiki/Turtle_(syntax)
Comment on
What is the best cheap cell phones that support Lineage OS (or your perfected Privacy rom)?
Reply in thread
Same with One Plus 8. The only thing I miss is a SD Card and Jack port...
Comment on
Announcing TypeScript 5.6 Beta
Finally we have the Iterator Helper Methods!