HN user

fantod

217 karma
Posts0
Comments91
View on HN
No posts found.

I don't know what his reasons are but it makes sense to me. Yes, there are incredible results coming out of the AI world but the methods aren't necessarily that interesting (i.e. intellectually stimulating) and it can be frustrating working in a field with this much noise.

This is... incredible if true. How can this be? I looked up the old walk-in I used to go to (haven't needed it in a while) and it still shows up on maps but the most recent reviews says they "don't do walk-ins anymore". In which case I don't really understand what they do. Genuinely curious about the situation if anyone cares to chime in.

Do you really need a family doctor? I've never had one. Whenever I've had a non-emergency issue (in BC), I've just gone to a walk-in clinic where they've either helped me on the spot or referred me to a specialist. I can definitely see why having a family doctor might be a more pleasant overall experience, but as far as I understand in Canada it's practically a pipe dream.

Re-quoting the GP's quote,

They were given to “paid collectors and employees” who signed written agreements acknowledging that they were sending data streams, including video, back to the company for training purposes.

So it hardly seems likely that they would not be aware of this.

I agree and I think a good thing about the type hints is they help uncover these kinds of code smells. But there are definitely cases where it's definitely not worth the effort to fight mypy.

One example is that variable re-assignment can cause type errors in mypy but re-assigning a variable to a value of a different type is an extremely common and reasonable thing to do in Python. Another situation where strict typing can be borderline hopeless is when parsing e.g. very dynamic content like json. Sure you could encode every possible situation using types but this would basically defeat the purpose of using Python for such a task.

Exactly. When I initially started using typed Python, I would write code as though I were using a statically-typed language. In order to appease mypy, I found myself increasingly needing to either rewrite my code in awkward ways or add explicit ignore comments.

What happened is I started losing out on the advantages that Python provides as a dynamically-typed language without truly gaining those of statically-typed ones. Then I realized, type hints are just that: hints. They're a form of documentation. In some cases, they're very helpful, but in other cases, it doesn't really make sense to use them. I don't need to appease mypy. The type hints are their for the benefit of myself and other developers.

Yup, a friend of mine learning French a few years ago asked me how I, as a native French speaker, deal with this problem. I didn't understand what he was talking about because I had never in my life even noticed it. Learned how to count before I learned how to multiply, after all.

If you're referring to the underlying rigorous analysis / set theory / foundations of math, it's arguably still easier to understand now that those things have been developed. Before these theories existed, your only way of truly "understanding" calculus to a similar level of detail would have been to actually develop the foundations of math, which would be impossibly hard for most people.

My understanding is the Tractatus was meant to "end philosophy" by implying that most of philosophy arises from the confusion between these grammatical artifacts and reality.

Apologies in advance as I haven't read any Wittgenstein myself, but am I wrong in thinking this is what the Philosophical Investigations was about (as opposed to the Tractatus)?