@Cryptomator Hi, I bought a license through the website, but I didn't realize I can't use Google Drive through the F-Droid APK. Is there anyway to enable it?
@DasSurma Congrats! I started working professionally in software engineering 7 years ago and you've helped me grow throughout those years with your content. Looking forward to seeing what you'll do next at Shopify!
Also, which new city are you moving to?
@NatalieMarleny Thanks for this, I'm entrenched in the Next/React ecosystem too but have always been interested in Svelte. This video pushed me over the edge to try it out!
@beekeeperdata Is there a way to have multiple databases open in a single window? I have to open many databases across various services and having a window for each is cumbersome
@supabase_io Hey! Was looking for Supabase's blog's RSS feed and found this, https://t.co/rMChw9KeBD
Is this official? Or could it go down at some later point?
@cassidoo maxNum solution
maxNum = (n, m, k) =>
parseInt(
n
.concat(m)
.sort((a, b) => (a <= b ? (a === b ? 0 : 1) : -1))
.slice(0, k)
.join(""),
10,
);
https://t.co/rrF2DLsMNE
@thebrownpirate@cassidoo Hey! I tried putting your code in my test runner, and it looks like the case ["XOX", " X ", " "] is failing.
I was able to make it pass by changing the last line. See attached image.
Feel free to see it and fork it here: https://t.co/ITlFHwXaff