For those curious about the drama & lack of wide adoption surrounding the walrus operator
https://dev.to/renegadecoder94/the-controversy-behind-the-walrus-operator-in-python-4k4e
It’s a shame because it’s a really nice feature.
For those curious about the drama & lack of wide adoption surrounding the walrus operator
https://dev.to/renegadecoder94/the-controversy-behind-the-walrus-operator-in-python-4k4e
It’s a shame because it’s a really nice feature.
I started using hatch lately and really like how I can manage everything from the pyproject.toml file
My secret to high uptime:
while True:
try:
main()
except:
pass
I know the language is really academics focused and is really strong in that sense. Otherwise I found that it was a great language for long running services. I use it for some APIs and algorithm trading bots.
I’m debating putting more hours into it, maybe trying a website in genie, but I agree the current ecosystem makes it a hard sell when I can use python instead.
Or, hear me out, .step files. It’s an ISO standard so you know it should be the same across all 3D modeling softwares with lots of support.
I don’t know if no one mentioned Julia because it’s considered popular enough or because it’s really not popular but… Julia for sure.
Forgejo contains all of Gitea, and that has the benefit of allowing Forgejo to be a drop-in replacement. With the decision to become a hard fork, this will no longer be guaranteed
I’m glad to see them move their own direction but I’m skeptical considering the amount of commits they take directly from Gitea. I could see this becoming more like a Fedora/Rhel type of fork but we’ll see.
I’m personally staying with Gitea for now as I have yet to find a reason to switch.
In the case of a hollow cylinder this is something a slicer can handle from a full cylinder model. Remove the infill (inside of the cylinder) and top fill. As for software it depends what you want to create, blender is great for artistic work. For mechanical assemblies I’d throw in onshape with the other suggestions.
That would make sense and if it was part of the communication I would understand. Sadly it’s really up to our guess
My guess is that they are held hostage by a group of evil badgers who want to turn a profit by reselling the base game
I feel like asking for people understanding should be accompanied with an explanation because I have no Idea reading this of the why they would discontinue it.
There you go:
# Start an infinite loop because True will always be True while True: # try to run the main function, usually where everything happens try: main() # in the case an exception is raised in the main function simply discard (pass) and restart the loop except: pass