It does not. As long as you own the physical hardware you are okay to install on virtualized hardware.
HN user
named-user
Why the quality of the firm is decreasing
Not everyone checks HN and Reddit every day.
Just because it's been asked before doesn't mean that the people answering it are the same etc etc
Advocates of which are: - corporate climbers - CV driven development engineers - those who don't know how to code - those who know they are bad at it - technically curious non engineers
Customer engagement manager
How else do you think they are gonna make money?
Yes because to do otherwise would be exclusionist.
No.....?
Or was that a lie.
Unit tests only catch known failure modes.
TDD only catches assumed known failure modes.
For the jobs he's going to be successful at, he doesn't need a CV.
You're gonna get C&D imminently like that other site did.
I can't find the name of it, sorry.
I fully support what you're doing. I am not fussed with someone's back stories about how their great grandmother's auntie's friend had her hair dyed when walking her dog to pick cherries... Blah blah... Just want the recipe and method
But unfortunately... Advert revenues are a thing.
Efuses
Clearly people don't like the fact that you're making a very valid point.
This site is almost as bad as Reddit, go with the status quo and polish each others ego or you're downvoted or flagged.
Which has what implications?
Your comment is kind of meaningless drivel with abstruse language.
In many situations it's much more an art than a science. Oftentimes you see "we multiplied independent variable X by independent variable Y and that is what we attribute this increase in Z to"...
But it's wrapped up in such complicated rhetoric that no one questions it (perhaps less cares...)
I shouldn't berate it though. It pays the bills..
It's not though is it. It's a piece of paper to say for 2 years or so you worked as a researcher employed by the university, at least that's my experience in the UK.
Much better off just going in to industry. People praise PhDs too much. No one at work knows of mine. It's not on my CV either.
What is awful is when someone with a PhD in, say, biology uses this as leverage in a completely unrelated field (data science). Malicious ambiguity...
You're not an authority on something just because you have a PhD, certainly not an authority on everything. This is, damagingly, how many behave... You're barely scratching the surface at that level. It warrants a lifetime of work to get anywhere near the level of respect some put up on them. I guess that speaks volumes to the general level of insight into education by most..
Can someone condense this down in to a couple of sentences ?
I wouldn't bother. Fire up MS Word and use your journal's provided template.
Yes, the input layer and .... The input layer?
FastAPI is hard to contend with for anything marginally complex, without having to dig deep in its internals.
If you want performance, or to apply more rigorous (read: enterprisey) development practices, you really are better off looking elsewhere.
However, you can get a Data Science python developer to front their code behind an API with minimal ceremony.
Type safety does not exist in Python. Type hinting does not solve this problem, neither does Pydantic. These are bandaids for huge shortcomings of using the wrong tool for the job.
I agree absolutely.
It's always a matter of choosing the least worst solution with Python, and additionally patching over shortcomings of the language with afterthought-tooling.
Yes
I think it's generational.
I believe we are limited by our own experience, a lot of software is built upon the idea that problems are solved through procedural steps rather than a series of transformations.
This does not lend itself to thinking in a way that aligns nicely with functional programming.
Future generations will naturally think in ways unfathomable to you and I, and this will cause a shift in the fundamental approaches to software development.
tools like type-hints, mypy, (frozen)dataclasses, Pydantic, etc. is trying to address at least the latter two points here (type-driven & illegal-states-unrepresentable)
At some point you have to admit to yourself that it's the wrong tool for the job, when is this going to be?
Dependency/environment management is poor as well given how popular the language is. I believe it's popularity is similar to that of PHP in the past; flooded with carefree users.
I would strongly advise against using python for anything other than PoC/experimental endeavours.
It's a scripting language, and should be used as such.