HackerTrans
TopNewTrendsCommentsPastAskShowJobs

Mavvie

no profile record

comments

Mavvie
·4 miesiące temu·discuss
Sounds like my coworkers.
Mavvie
·5 miesięcy temu·discuss
That makes sense, but surely there's a middle ground somewhere between "AI does everything including architecture" and writing everything by hand?
Mavvie
·11 miesięcy temu·discuss
Indeed, the correct term here is nullipotent.
Mavvie
·2 lata temu·discuss
I haven't tried this yet, but I wanted to say I think there's a lot of potential in this space. There's so much friction with the current popular solutions...and yet it's so hard to justify trying some of the newer and less popular ones.

I wish you luck because there are a lot of good ideas in here. Running locally and remote debugger are the most exciting to me.
Mavvie
·2 lata temu·discuss
I'd argue that Tenerife was due to taking off (in bad weather), not landing. But of course, a bunch of planes landing at the same airport without ATC sounds quite dangerous.
Mavvie
·2 lata temu·discuss
This sounds like a very nice compromise actually. I'm surprised it helped with abuse though, since there's a lot of email providers that are easier to create an account with than gmail.
Mavvie
·2 lata temu·discuss
Well, you have to go out of your way to prevent it. The sub-addressing complexity is on the email provider side; ticketmaster doesn't have to do anything for it to work except not reject valid email addresses.

In my experience, most but not all sites will accept "+" email addresses.
Mavvie
·2 lata temu·discuss
I think that's exactly correct. You either do split queries (with more latency) or you do a join (and risk Cartesian explosion). Most ORMs should do this for you.
Mavvie
·2 lata temu·discuss
Wouldn't it cause the cost of consoles to go up and the cost of games to go down, in a way that on average has no significant effect to consumers?

As long as it applies to all companies, why is it an issue?
Mavvie
·2 lata temu·discuss
I don't think that's how it works... It's a checksum, not letting you check if each section is part of the key.

At worst, the key would have some portion less entropy since there's a lot of bits used for checksums.
Mavvie
·2 lata temu·discuss
Can you (or someone else) explain what the alternatives are? How can I write unit tests without mocks or fakes?
Mavvie
·2 lata temu·discuss
I strongly agree with this.

I would add that, at least for me, planning each day out is beneficial as well. When I don't have a plan for a day, I often will sit there, not really doing anything, and not sure what to start doing. This typically ends when I get distracted by something (maybe a question on Slack), and overall leads to some very unproductive days.

Even a simple high-level plan, like "today I want to get these tickets ready for review and work on this RFC", is incredibly helpful for me. A weekly plan may be even more effective, but I struggle to plan that far in advance.
Mavvie
·2 lata temu·discuss
Thank you, I hadn't considered that aspect.
Mavvie
·2 lata temu·discuss
This is pretty interesting. It's not like HTTP needs an intermediate representation, but since cURL is so ubiquitous, it ends up functioning as one. cURL is popular so people write tools that can export requests as cURL, and it's popular so people write tools that can import it.
Mavvie
·2 lata temu·discuss
I wonder if that could be because MySQL 8's replication is backwards compatible but MySQL 5.7's isn't forwards compatible. If so, it makes sense that you're only able to move forward.
Mavvie
·3 lata temu·discuss
That's actually the formula for nullipotency, where applying it 0 times is the same as applying it any number of times.

I believe idempotency is when f(f(x)) = f(x)