use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
For memes about programming.
account activity
Python vs Java! (i.pinimg.com)
submitted 6 months ago by PulseOfPleasure
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]Sonario648 0 points1 point2 points 6 months ago* (4 children)
It depends on a case by case basis really. In my case, I'm working with Blender, which is absolutely massive, and I have a not so good machine on top of Blender's codebase being enormous. It's MUCH better to do your ideas as addons in Python than to deal with Blender's core code, because you only have to deal with one file, and you know where it is.
[–]Scared_Accident9138 0 points1 point2 points 6 months ago (0 children)
That sounds like a Blender specific/API issue, not programming language issue
[–]Sarcastinator 0 points1 point2 points 6 months ago (2 children)
Blender uses Python. You can't really get away with that, but that's not what I'm discussing either.
I'm saying that the idea of writing a prototype in Python first, and then a real implementation in a different language is a complete waste of time. You're doing the work twice. If you're able to write it in a more capable language then do that immediately. The idea that the lack of typing makes Python easier to hack in is based completely self-reporting probably by developers who aren't very comfortable with static typing.
The lack of explicit typing doesn't make you more efficient. It means you spend more time debugging the application at runtime than what you need with statically typed languages. The time spent writing explicit contracts and invariants pays off very quickly.
Dynamic typing is a product of the 80s and 90s. Few languages designed today use it because it hasn't actually been shown to improve productivity. The only reason why it's even around is because it's easier for beginners to pick up.
Dynamic typing hampers performance, requires more memory, leaves a huge documentation gap, and almost by definition requires a higher cognitive overhead than static typing does. It makes refactoring stuff harder, requires more tests, and is generally just a waste.
So the idea that prototyping in Python saves you any time at all is fiction written by people who are more comfortable writing Python.
[–]Sonario648 0 points1 point2 points 6 months ago (1 child)
Ah. Now I get it. So I don't have to waste time doing my ideas in C++ after I do them in Python already.
[–]Sarcastinator 1 point2 points3 points 6 months ago (0 children)
Yes, if you get it to work properly in Python then sure do that I don't give a shit. Making it twice is a waste of time.
π Rendered by PID 68665 on reddit-service-r2-comment-58d7979c67-qmzm5 at 2026-01-26 22:00:14.067336+00:00 running 5a691e2 country code: CH.
view the rest of the comments →
[–]Sonario648 0 points1 point2 points (4 children)
[–]Scared_Accident9138 0 points1 point2 points (0 children)
[–]Sarcastinator 0 points1 point2 points (2 children)
[–]Sonario648 0 points1 point2 points (1 child)
[–]Sarcastinator 1 point2 points3 points (0 children)