Feature Flag Demo (ToneStone)
3:51
3 жыл бұрын
Napari: Adding WebUI to a Python App
35:22
Napari: 2020 Rendering Review
28:53
3 жыл бұрын
Napari: Monitor Demo
3:22
3 жыл бұрын
VS Code Python Debugger Overview
3:45
Napari: Rendering Demo
2:39
3 жыл бұрын
Napari: PR #1510 - Async Loading
29:00
Article: Brain Oriented Programming
9:25
Napari Async Image Loading Demo
11:14
Пікірлер
@AslamNazeerShaikh
@AslamNazeerShaikh 4 күн бұрын
Clean Code is True Shit. The real gem is code whatever you understand & like, without any limitations.
@dovos8572
@dovos8572 26 күн бұрын
i'm not really against OOP but i find that it is really hard to actually get it right without starting over. to setup a clean and extensible class and inheritance structure, you need to be completely aware of what classes you actually need and what they should be able to do. i'm currently learning the Godot game engine and it's base classes inheritance structure is one of the cleanest i know. the thing is that it only works because it is a mix of inheritance and composition. it has a clear separation between node classes and Resource classes. resources are components that can be added to a node. a shape would be a resource that you can add to a node to display it. i find that what most people think OOP is, is a purely on inheritance reliend data structure with no composition or config files. so if they try to explain OOP they end up with the car model where they go "car" -> "Jeep" -> "Motor" or something similar and then fail to add tires or the rest of the car to the structure. they completely miss that compositon is a thing in OOP too. "clean code" shouldn't be about "optimised code" and or the speed of the code but about how tightly knotted the spaghettie lines are. (i find most abstracted code ends up more tightly knotted than what most see as bad spaghettie code) the godot engines inheritance is max 7 deep starting with the abstract "Object" class going "Object" -> "RefCounted" -> "Resource" -> "InputEvent" -> "InputEventFromWindow" -> "InputEventWithModifiers" -> "InputEventMouse" -> "InputEventMouseMotion" i know people who start with 7 deep inheritance before they even get to the class they want to actually write instead of writing the class and then look where in the inheritance tree it makes sense. it is so easy to "clean up" code by removing layers on layers of abstraction that have little use or even should be composed in instead to make it easily changable. "Vehicle" -> "car" + "Specs" + "GroundMovementHandler" -> "Plane" + "Specs" + "GroundMovementHandler" + "AirMovementHandler" and so on. (+ means composed in) clean code is code that can be changed without 20+ other scripts and functions breaking because of a single line. it means to make code only as abstract as it actually needs to be to do it's job. there is no need for 5+ layers of abstraction for an UI based clicker game but some still try to do that and cry about OOP being painful to do.
@StefanH
@StefanH 29 күн бұрын
That video you responded to made me angry in a way few videos do. There's things I agree with but it's just the definition of premature optimization. Write the simplest solution first, the one that's easy to understand and edit. When the time comes to add more features (ie add more shapes) or when performance becomes an issue, then redesign the architecture to fit your new needs. Clean code to me just means "Simple, good code" that does exactly what it needs, not more, not less. It's impossible to know the final needs and design of the program but you'll find out as you go. Premature abstractions and hyperoptimization are both unnecessary unless the design calls for it, but don't waste your time doing either of these things right off the bat. Optimize when needed, abstract when needed. That's clean code
@emperorpalpatine6080
@emperorpalpatine6080 23 күн бұрын
sometimes , redesigning is hard. Imagine for example , you wrote a path tracer . You use shapes and primitives using abstractions, so , A shape abstraction that can take any shape , a material abstraction , a texture abstraction , etc etc... Since you usually work with hundreds of millions of shapes , and a lot of materials , textures etc as well , you quickly find yourself with a program that , for 500MB of 3D models , will eat up at least half of that size in term of ram , because of the 8 bytes padding of the vtable. That's a lot . Imagine also , the fact that now you want to scale it , and distribute it on gpu ... Now your virtual dynamic dispatch doesn't work from CPU to GPU... This can be a pain to redesign.
@kacper7516
@kacper7516 Ай бұрын
So what is clean code? By what you mention it is just simple code?
@tobevasoftware
@tobevasoftware Ай бұрын
I don't think there is one definitive definition of what clean code is. This is the whole confusion. Robert Martin's definition was based on what his consulting company did in the 1990s and 2000s primarily with Java -- it does not extend to all time and space. Clean FP code will look very different from clean OOP code or Procedural code, and every language has quirks and idioms of what works in that language. I gave some famous developer's definitions in the video: "Clean code is elegant, efficient and straight-forward" and "Clean Code looks like it was written by someone who cares. But obviously this doesn't teach you how to write your code. I think most of the entire field of software engineering is about telling you how to write your code. It's a mistake to over-focus on one single book.
@andysmountain
@andysmountain Ай бұрын
Great presentation. Some great food for thought. I personally sometimes spend too much time trying to build the most "clean" and expandable code for future cases that will probably never come. I'm definitely taking some of your points into consideration next time!
@paulcosta8297
@paulcosta8297 Ай бұрын
As a professional low level performance hardware graphics programmer, I am entirely opposed to you and my experience always proved Casey right to the extent his opinion would differ with yours. You are NOT considering all factors. Maintainability, extensibility, programmer productivity, and mental appreciation of a feeling of optimum quality are all real factors optimized by DOD and pessimized by OOP.
@DjebbZ
@DjebbZ Ай бұрын
Genuinely curious: what's DOD ? Data Oriented Design?
@paulcosta8297
@paulcosta8297 Ай бұрын
@@DjebbZ Yes, I spend 3 years obsessing over Mike Acton's legendary 2014 Cppcon talk which is programmer life changing and continue to reap utterly transformational benefits. Can't recommend rejecting OOP and embracing DOD enough.
@tobevasoftware
@tobevasoftware Ай бұрын
I am 100% for DOD if it gets you the performance you need or is otherwise a good solution for the problem you are trying to solve. I'm only against scaring people away from OOP due to performance concerns that are completely valid in some cases but completely invalid in many other cases. So yes, DOD is great, and you should use it. You say you are a "professional low-level performance hardware graphics programmer." That is great, but the world is large and contains MANY different types of software. For example, Casey's loop took around 2 nanoseconds. Imagine a loop that takes 2 minutes! You can see the OOP overhead in that case is zero. Most software is not games, graphics, or real-time in any way. Millions of programmers write internal software in a relatively slow language. It might run once a day at 2 a.m. and take an hour to finish. No one cares about the speed as long as the results are available at 7 a.m. The world is large, and thus the world of software is large. I tried to make this point in the video, but I think it's hard for some people to grok for whatever reason.
@paulcosta8297
@paulcosta8297 Ай бұрын
Excuses for suboptimal quality.
@nicolaskeroack7860
@nicolaskeroack7860 Ай бұрын
I loved the chainsaw argument pretty funny, but if 'clean code' doesn't provide any benefits why learn that toxic pattern at all my point is why not just make your c code easier, it doesn't need to be in python to be easy in the end you just interface and call functions
@tobevasoftware
@tobevasoftware Ай бұрын
In the video, I try to make the point that "clean code" is a useless phrase because it means essentially polar opposite things to different groups of people. Casey's OOP version of the code is 100% vanilla text-book OOP, there nothing "clean code" about it. Therefore, my focus is really on OOP. Casey says OOP performs so badly you should never use it ever. This is a false statement. The performance overhead of OOP varies from huge to negligible. Therefore, it is important to know which situation you're in. Note that I'm 100% for Casey's style of code if you are in a situation that needs the performance, as I say in the video.
@nicolaskeroack7860
@nicolaskeroack7860 Ай бұрын
@@tobevasoftware we were talking about oop? I thought we were talking about convoluted python code that thinks 50 abstractions ahead, and microservices(adding tons of latencies) when gta 5 and cod are proven model of monolithic architecture(no virtual network or latencies) and they are orders of magnitude more complicated than any netflix api, and they don't have the overhead of 50 containers within 6 vms, and then you need a literal devop job just to manage all that kubernetes cluster mess
@tobevasoftware
@tobevasoftware Ай бұрын
Games like GTA and COD are brilliantly engineered, but using that exact style for every project wouldn't work. Yes you can overdo distributed systems, like you can overdo anything. But distributed systems are not automatically worse than monoliths. If it were that simple, every company using micro-services would be stomped by someone doing the same thing with a monolith. I'm all for monoliths. They are great. But they aren't always the right approach.
@nicolaskeroack7860
@nicolaskeroack7860 Ай бұрын
@@tobevasoftware now that you repeated it thrice(once in the video and two times in the comments) I think what you said starts to sink in, basically what you're trying to tell us is that if your app is gonna be a candy crush style game that only runs locally(and doesn't need to serve 100 0000 peoples daily and run on my aws bill) then its okay to waste cycles with rtarted concepts that adds ton of overhead to your code because you won't need those cycles anyway. so beginners: don't feel bad if your code runs like crap, as long as there's enough cycles to make that square move through javascript
@nicolaskeroack7860
@nicolaskeroack7860 Ай бұрын
@@tobevasoftware btw one of the main reason I'm like this is because I think nowaday software is way overengineered and has way to many lines, and it makes me crazy that I'm always being told 'you can't understand oppenoffice its 7 billions lines' for example (and im not even joking its like 2 millions lines) why does it need microservices when something as complicated as gta doesn't. why do you need to learn all that stuff, and then just because you learned it you feel forced to apply all those concepts at once to your code, and you end up with unreadable mess both for the computer and the human
@atabac
@atabac Ай бұрын
depends on what you mean by clean code. does clean code mean does it mean the abstract mental model implemented in code, or the organization of data in your mind. or the actual written code? clean code is just for managers who cant read code or for jr programmers that needs a bit of time to dig deep. i do hack codes to circumvent programming language capabilities and its compiler's limitation unless its open source.
@tobevasoftware
@tobevasoftware Ай бұрын
"Clean code" is used to mean both "good code" and "bad code," depending on who you ask, so it's sadly just not a very useful term. I hope the "clean code means bad OOP code" goes away at some point, and "clean code" can become just a compliment like it used to be. Casey and many low-level programmers dislike OOP because the overhead can be massive: 20X, as he documents. That is a positively horrendous amount of overhead. I totally agree with him: don't use OOP in those situations. I disagree with him because he falsely claims OOP always leads to bad performance, which isn't true. It can lead to bad performance, but in many cases, the performance penalty is negligible. His opinion was likely formed because he's been writing game code since he was 18, whereas I've worked in many different industries writing many different types of code. So, we are coming at it from different directions.
@JohnB5290
@JohnB5290 2 ай бұрын
A problem with OOP is that both logic and data get scattered all over the place. I'm not sure that by splitting everything into tiny little bits of files, classes, functions and data you really gain in maintainabily in the long run. As to Caseys example: An array of triples (shape,w,h) together with a definition what shape, w, and h are *is* much simpler and much simpler to work with than all these classes. Suppose, for some reason, you need to make a copy of you data structure. It will be one line of code for the array of values, whereas you will need to add a virtual clone method to every class in the OOP case. Conjecture: OOP code almost always gets pretty complex pretty soon, as you do not see the entire picture anymore.
@tobevasoftware
@tobevasoftware Ай бұрын
It's definitely possible to excessively decompose your code so that it's "scattered all over the place" in "tiny little bits." And it's certainly possible to come away from Uncle Bob's Clean Code book and excessively decompose things to the point of incomprehensibility. I'm actually not advocating that people follow the rules in Uncle Bob's Clean Code book. I'm just advocating people not believe Casey that the overhead of OOP or "clean code" is ALWAYS prohibitive. It is definitely prohibitive in his example, but there's code that is 1000% different from that example, where virtual functions contain millions of floating point operations instead of two, such that the OOP overhead is nothing. That said, despite his harping on short functions, I'm positive Uncle Bob is not for "excessive decomposition" and "incomprehensibility" because those are inherently bad things. I think he'd be for choosing the right trade-off between function/class/file size and the ability to read and understand the code. Even if his book didn't spell that out very well.
@thedrunkmonkshow
@thedrunkmonkshow 2 ай бұрын
I enjoyed this push back of a push back with regard to our current day's programing environment and coder attitudes. One thing that I've always done and still do even more so now that I'm in my 40's is to hear out as many perspectives as I can, take in what's valuable, maybe try it in a small experimental project, then discard what isn't all while fighting the temptation to absorb any single philosophy or slip into a rigid adherence to a particular programming style or language. Another thing I've decided lately too is to branch out from my comfort zone of languages like VB and C/C++ into something like F# but with F# in particular I still can't wrap my mind around doing everything completely functional. I say all that to say in terms of this topic, while going through my journey the other day I watched an interesting video where the programmer made an argument that what we understand or commonly perceive as OOP today is more of a watered down derivative than what it's original intent and application was and makes me want to understand more about it from that angle. He used Squeak and Smalltalk as an example of what OOP originally meant so now I'm interested in digging a bit deeper into that or seeing what's the difference between classic OOP and modern OOP. Maybe some of the reservations or concerns I've had against OOP were misguided and it's really against the modern way all along where if I went back to learn the concept in it's original intent and implementation there's value in there I didn't know about. 😃
@kromkle
@kromkle 2 ай бұрын
great video, found it through the article which was also very good
@SneedsFeeduckAndSeeduck
@SneedsFeeduckAndSeeduck 2 ай бұрын
2-second loop bodies, lol. But I have to disagree with "It's fine to use OOP". It makes any future optimisations basically impossible. Blackboxing your control flow will kill any kind of free performance that you'd have gotten by not black-boxing it. Blackboxing is useful if you want to mentally compartmentalise concepts to reason about them in terms of common properties they have. But in a program, you're not reasoning about things on an abstract level. You're doing concrete workloads on concrete objects. As soon as you start using OOP, you're probably using it at every level of the program. An OOP solution requires more code to write, and has less performance ALWAYS, because the compiler cannot optimise it. So it actually takes more effort to even write it out. The only kind of effort that OOP saves is that you do not have to think much about what kinds of problems you're solving. Regarding your claim that Width, height is invalid: Casey could easily have added a flag or enum that controlled the general class of shape (branching in a switch to the correct formula, or using an additional factor and weight). That would have slowed down individual shapes a bit, but it would still make it faster than an OOP version. OOP only cares about the abstract operation you want to perform, but completely disregards memory layout, the similarities of data types, or the similarities of operations. OOP is platonic programming, and since it discards basically all concrete parts of the problem from its model, it not just prevents the compiler from having a deep understanding, but also the programmer. OOP is for intellectually lazy or disabled programmers.
@tobevasoftware
@tobevasoftware Ай бұрын
I've seen loop bodies that take minutes. Let's say you are processing 20 point clouds and each point cloud contains 1 billion points. Loop through the 20, each time you have to process 1 billion points. The virtual function overhead of a few nanoseconds every few minutes is zero. Not all code is games or graphics or real-time in anyway. Much code in the world is internal-facing business code written in a slower language like Java or C#. Casey has worked on game-code since he was 18. He's so deep in it, he doesn't seem to grok the wider the dynamic range of software or software developers out there.
@zombi1034
@zombi1034 2 ай бұрын
As Obi-Wan once said: "Only a sith deals in absolutes." Same goes for coding😊
@JosifovGjorgi
@JosifovGjorgi 2 ай бұрын
"Clean code contains piles of useless abstractions, is overengineered, obscures the flow of control with tiny methods and classes that each do very little" Because clean code has tools to create abstractions, however it doesn't give you an answer to the question why and when to use it, so people apply to everything if you don't limits then it doesn't have limits Clean code isn't written with good engineering vocabulary, it is written as gospel This means that if you remove 2-3 words from the gospel it has different meaning A good engineering and well written rules don't have that problem a great example is Fallacies of distributed computing - if you know them you can't misuse the rules, unlike the rules proposed by Clean code/ SOLID or other gospels on the internet
@sigmundwong2489
@sigmundwong2489 2 ай бұрын
I feel that your title does not match your argument. To extend the metaphor, your argument seems to be: "use chainsaws to cut trees, and scalpels to cut surgical incisions. They both have a place, and it depends what you're trying to cut and why." Meanwhile, your title reads: "Chainsaw Cutting is Good Cutting."
@tobevasoftware
@tobevasoftware 2 ай бұрын
The title doesn't mention chainsaws, even though yes the thumbnail has a surgeon holding a chainsaw. The title is "Clean Code Means Good Good: The Horrible Performance Debate". But yes I think the title is misleading in a way, and I might change it at some point. The chainsaw analogy would have been clearer if I'd added in "the scalpel" and made the connection that Casey's optimization reflects someone expertly using a scalpel to write great code. Some people assume I'm pro-OOP and anti-Optimization but that's not at all true. Your summary is my actual position: both are tools that have their place. I'm definitely going to change the title for the written article. I'm not sure yet if I'll change it for the video. I haven't thought of a new title though. It has to be slightly catchy -- this isn't a dry academic article. People won't even click to read an article unless the title grabs them a bit.
@SneedsFeeduckAndSeeduck
@SneedsFeeduckAndSeeduck 2 ай бұрын
​@@tobevasoftware If OOP had the massive productivity of a chainsaw compared to other cutting implements, then I could agree. But nothing indicates that OOP code is more productive to write than non-OOP code. You're comparing a well-optimised version of the code to OOP, while even the non-optimised sane (=non-OOP) code is already massively faster than OOP. All OOP does is lower the entry barrier of knowledge required to add new code. It costs productivity due to bureaucracy and it costs performance due to blackboxing.
@mehmetyirtici5322
@mehmetyirtici5322 2 ай бұрын
Thank you for this lecture.
@AK-vx4dy
@AK-vx4dy 2 ай бұрын
Nice essay, it is pleasnt to listen. Excellent job!
@AK-vx4dy
@AK-vx4dy 2 ай бұрын
11:51 As you showing mobile game, you forgot about power effeciency and battery use, then Casy is still not wrong.
@tobevasoftware
@tobevasoftware 2 ай бұрын
The time it takes to process 100 shapes is one ten-thousandth of the frame, so the energy expenditure would be equally negligible. So, no, there is no measurable energy advantage in the 100-shapes case. But in the 1M shapes case, you are right. Going from 88% of the frame time down to 3.6% would save a lot of energy. Even if, to your eye, the game plays the same. So yes, you should use Casey's optimized version if you need to process 1M shapes per frame. The whole trick is that 100 shapes are such a small amount that it basically doesn't matter how you process them. While 1M shapes are so many, it matters a great deal how you process them.
@AK-vx4dy
@AK-vx4dy 2 ай бұрын
@@tobevasoftware Generaly may be neglible but It depends how finely tunned is idle detection on hardware as i know on mobile devices this detection is very "agreessive". But also this exemplary 100 shapes is only a part of this game or part of processes running on this device, if every programmer wave a hand on few cycles or microwatts we end in situation we currently often have: short battery life and/or sluggish system response. Simillar topic is about cloud. Backend on node or php may produce acceptable response times in miliseconds, but we use many times much energy or many more machines.
@SneedsFeeduckAndSeeduck
@SneedsFeeduckAndSeeduck 2 ай бұрын
@@AK-vx4dy This. The mindset of being intellectually lazy at the cost of performance will apply to all parts of the program. And nowadays, it applies to all levels of the code, except if you're lucky enough to use some low-level library written by someone who is actually a good programmer who cares about performance. Saying a single thing can be slow because it is not that much anyway implies everything else in that application is as fast as it should be, and you're being sloppy just this once on this tiny irrelevant part. But that is never the case. Someone who has the discipline to write a good rest of the program, also has the discipline to write that one part properly. And OOP is not even saving you any effort, because it takes longer to type.
@ImmacHn
@ImmacHn 2 ай бұрын
So use the right tool, for the right job, yup math checks out.
@leshommesdupilly
@leshommesdupilly 2 ай бұрын
To optimize my code, I declare my main function as constexpr so all my code is executed at compile time and I achieve infinite performance
@sp3ctum
@sp3ctum 2 ай бұрын
Incredible. You are literally already done before starting.
@CyberWolf755
@CyberWolf755 2 ай бұрын
The name "clean code" has a lot of bad baggage that needs to be cut and proper well though out ideas and methadologies associated with it for people to forget the currently bad "clean code" and improve. Casey's video just highlighted the currently bad "clean code" with it's on the surface layer concrete, but on the lower layer very poorly defined rules and methodologies. His video on "Performance excuses debunked" is great at showcasing the reasoning of his "attack" on "clean code" and how it's more on the issue that software is doing less problem solving and more wasting time for the users and devs, so being more performance aware should improve the life of a developer and improve the final product for the user. The clean code "rules" should be associated with examples, then analysed if they are practical and performant in different environments (embedded, games, frontend/UI , server, networking, etc.) and have rules of thumb that say how you should tweak it for your environment. E.g. in games, we figured out that shallow and wide inheritance with composition is generally better than deep and narror inheritance. I would really like if you and Casey have a discussion. It would make a really good video.
@tempname8263
@tempname8263 2 ай бұрын
Clean code is a code, where you can easily spot bugs
@exotic-gem
@exotic-gem 2 ай бұрын
I think there are tradeoffs worth making, and tradeoffs that aren’t. Even with the need to support many different types of shape, it would be much more performant to use a switch on the type with static functions calls, as opposed to anything Java offers. Eventually the functions wouldn’t for in the L1 cache anymore, sure, but my personal CPU (Apple M1) has 12 MB of L2 cache, which can fit a truly staggering amount of functions before it is full. This is where languages like Rust are interesting, it has the same ergonomics as the Object Oriented code (just a straight method call on the shape) but does compile down to the static jump table, which doesn’t happen with virtual functions (and might sort of happen in Java, but only if the JVM deems your code worthy of optimisation, which should have been done at compile time instead of needlessly pausing your code)
@exotic-gem
@exotic-gem 2 ай бұрын
*wouldn’t fit in the L1 cache
@adambickford8720
@adambickford8720 2 ай бұрын
Abstractions have a cost; more isn't better. Now instead of learning the problem I have to learn your little dsl abstraction as well. Unless it's a genuine business concept or *really* gnarly, just write the obvious thing. And even then, save the grandiose design for version 2.0 when we're positive we know what we're solving (this is a lie, you will never know) It's easier to add code than to change it. Stop trying to accommodate the future; you're actually making it harder.
@drxyd
@drxyd 2 ай бұрын
If you just focus on writing good code, with correctness, performance and simplicity in mind you'll find that you use the appropriate programming paradigm at the appropriate time. Ultimately the problem space is king.
@GodofWar1515
@GodofWar1515 2 ай бұрын
I found this to be very insightful. It's very easy to fall into the mind set that clean code means boiler plate - bad performance code. But in reality, OOP, Functional, POP, DOD, etc. They're all tools to solve problems we might face in our programming journey. Refusing to learn and understand one of these would mean (Utilising your own analogy) refusing to use chainsaws due to its failure in a specific task. The main points I got out of this is to look beyond the code and understand what is really happening behind the scenes. Understand why your code isn't running well and instead choose the best tool for the job. Keep up the great work with these insightful videos!
@juli0n
@juli0n 2 ай бұрын
If good code was easy...
@rumble1925
@rumble1925 2 ай бұрын
11:45 - spending time to optimize it isn't worth it... but is spending time making this abstraction worth the time then? Obviously in candy crush there are no special shapes, so what's the point exactly of spending more time crafting obfuscated code + making it slower? Maybe im not clever enough for oop and solid but it never made sense to me how this is "clean". Caseys code took me a few seconds to grok, the other code requires up to date documentation with arrows pointing all over the place, especially if it gets more complicated over time.
@rumble1925
@rumble1925 2 ай бұрын
I think it's also telling that enterprise software that is shipped out of these Java shops is usually painfully slow and universally hated by people who use them. Like, it's only recently I realized that Java is actually a fast language, I had the idea that it was a slow and bloated language due to how awful the software is.
@7th_CAV_Trooper
@7th_CAV_Trooper 2 ай бұрын
What makes you think the word clean means obfuscated?
@tobevasoftware
@tobevasoftware 2 ай бұрын
In the video I don't say which of these is the better solution. And I don't think there really is an answer without knowing the context: the rest of the codebase, the goals of the project, the people involved. None of which exist since it's a toy made-up example. All I'm saying with this slide is that performance is not a reason to avoid the OOP version here, in this specific case. Even while performance is a absolutely a reason to avoid OOP in other specific cases.
@rumble1925
@rumble1925 2 ай бұрын
@@tobevasoftware I understood your point, the issue I have is that you made a point of when to use the clean version; the optimized code is still objectively easier to understand, modify and extend - and it still has the benefit of being faster. There really is no point in managing these classes for something as straight forward as implementing different strategies based on type. And to maintain this abstraction you have to come up with a bunch of more abstractions so as to not break the abstraction. I just do not see the point. I've never seen a code base where switching a fundamental piece out has ever been easy despite all these smart engineers coding in this style. Thanks for listening to my Ted talk.
@tobevasoftware
@tobevasoftware 2 ай бұрын
Java and C# are extremely popular with the "enterprise" software which tends to have bad performance because the users are a captive audience. Internal employees who are forced to use the system. There's no competitive pressure. Like the restaurant inside a hotel that's in the middle of nowhere. The polar opposite of that are companies where the users can switch to a competitor with a single click. There performance is table stakes. Imagine a new TikTok clone but the videos load really slowly. But as you allude to Java (Minecraft) and C# (Unity) aren't inherently slow. Slower than C/C++, but decently fast if you are careful.
@chauchau0825
@chauchau0825 2 ай бұрын
After watching that video, my only thought is: When did Clean Code was promoted as a way to improve performance? If not, what's the point to make such a claim ? Unless when someone wants to promoting his own course?
@VACatholic
@VACatholic 2 ай бұрын
Because computers these days are incredibly slow and terrible and your thought process is the exact reason why. I'm glad someone is pushing back against the laziness programmers have been displaying, and actually demanding quality again.
@chauchau0825
@chauchau0825 2 ай бұрын
can't tell if this is a troll or not. Moore's law still valid today. Most code should be created for general use cases unless we need to make a trade off to achieve optimization aspect. Clean code is good code optimized for maintainability and not every piece of code needs to be optimized for speed. Everything is a trade off and the art is knowing when to trade which for which. Like in gaming we definitely want to trade readability for speed as most games lifespan are shorter than exterprise softwares whilst we'd want trade speed for maintainability for enterprise softwares in long run. Dogmatically thinking one type of optimization must be used everywhere is failing to see the full picture. There is no sliver bullet. Every decision is a tradeoff. Saying "clean code: horrible performance" is like saying "performant code: horrible readability". It is meaningless to say so except someone wants to draw attentions to promote one's courses behind paywall. I am trolling now: I am glad Casey video exposed so many single-minded people to worship one-sided opinions as facts.
@VACatholic
@VACatholic 2 ай бұрын
@@chauchau0825 first, Moores law is not in effect today. Not in a way that's meaningful to the past. Second, there's no way that having yo go to 5 different objects through multiple function pointers is more readable than all the code in the same spot. That's just a strawman. Finally, have you ever worked on an "enterprise code base"? They're notoriously hard to work with and extend. Way harder than the if statement casey has. So I just think you don't know what you're talking about. Fundamentally you might like the oo approach because you're used to it, but that doesn't mean it's any those things you said. It's just pure propaganda.
@razorblade413
@razorblade413 2 ай бұрын
​​​​@@VACatholicgood luck when your 5 star dev that optimizes the f out of everything leaves the company and nobody knows how to read that unreadable code. For a company the most important thing is maintenance of code, so when errors might happen even the dumbest dev could fix that easily. Unless you will code the next gta 5 game you will never need those crazy a... optimizations for some indie games or less demanding apps. Nobody cares.
@razorblade413
@razorblade413 2 ай бұрын
​​ the moment the guy hid the assembly code i knew that rant was bs. Maintainability of software is the most important thing. Speed is irrelevant when every year pc are getting better and better. As you said. Moore's law.
@vitalyl1327
@vitalyl1327 2 ай бұрын
There is an approach that was for some reason overlooked by most in the PLT community: languages with a well defined separation between logic and performance semantics. What our manual optimisations are? Just applications of certain rules and strategies - e.g., scramble and de-scramble data around some heavy computation (turn a bitmap into a z-curve, etc.), turn an array of structures into a structure of arrays, fuse loops, and so on. These optimisations make code unreadable and unmaintainable. So the more reasonable approach is to write a readable high-level code, and then annotate it with optimisation hints that must be automatically applied. You really don't need to sacrifice performance for readability while you can have both.
@stefan000
@stefan000 2 ай бұрын
13:19 That chainsaw comparison is quite good, however I think it’s kinda funny how the chainsaw was originally invented for use during complicated childbirth situations.
@tobevasoftware
@tobevasoftware 2 ай бұрын
Wow that's amazing, I had no idea. Yes, that's extremely ironic for the analogy.
@thygrrr
@thygrrr 2 ай бұрын
I love how you use the analogy of a chainsaw for the OOP version instead of for the AVX vectorized version :D But it's true, you don't do the yard work with your scalpel. It's also true that a chainsaw can cut someone open real fast!
@tobevasoftware
@tobevasoftware 2 ай бұрын
I agree it does at first seem like the AVX code would be the chainsaw, ripping through lots of work quickly. But in my version the chainsaw is an analogy for the approach used to write the code, the chainsaw isn't the running code. So to me OOP is this harry-homeowner general-purpose tool, good in a lot of situations, but it's unsuited for writing really optimized code, it's too clunky and unwieldy. I wanted the failure case of the analogy to be vividly a real disaster, reflecting just how bad 25X is, so the chainsaw + surgery image was good for that reason. But yeah, slightly confusing.
@SneedsFeeduckAndSeeduck
@SneedsFeeduckAndSeeduck 2 ай бұрын
A chainsaw is a power tool that vastly outperforms manual tools at just cutting through stuff. How does OOP outperform non-OOP in any way? The only saving you get is that you do not need to have any idea of what kind of things your program deals with, and what operations on those things entail. When does that ever happen? It basically only ever happens if you have user-provided plugins. But for everything else, the possible types of object you're dealing with are well knowable in advance, as well as the actual instructions each operation on these objects entails. The only sane argument for OOP is: "The programmer is mentally overwhelmed by the amount of different kinds of entities that exist, and has no clue what each abstract operation on a class of entities concretely entails for each deriving type, so we completely blackbox everything that has to do with these entities." It is not faster to write, it is not faster to execute. All it does is lessen the mental load expected of the programmer, but also prevents any real understanding from occurring or paying off. OOP sets a hard cap on program performance and programmer productivity, and thereby caters to unskilled or mentally disabled programmers and artificially confines talented programmers in their productivity and in the quality of code they can produce. It's basically the communism of programming and instead of uplifting bad programmers, it drags everyone down to the lowest common denominator. So your chainsaw example is wrong.
@thygrrr
@thygrrr 2 ай бұрын
Finally someone who adds substance and nuance to the polemic discussion of capital C clean code. The double logarithmic plot at 19:20 is pure gold and a great view of optimization as a tradeoff. Also, is 22:11 why it's called C++? 🤔🤯
@tobevasoftware
@tobevasoftware 2 ай бұрын
I love a good log-log plot. An inspiration for them were "population pyramids" if you've seen those: en.wikipedia.org/wiki/Population_pyramid
@tomontheinternet
@tomontheinternet 2 ай бұрын
Awesome video. I'd never heard of the term thought terminating cliche. I'll use that to defend myself against lazy thinking. I like how you we quantified when each approach makes sense. So much of programming feels like it's based on vibes, and it's good to remember that we can base our coding style on the problem at hand.
@Kapendev
@Kapendev 2 ай бұрын
Good video. I personally don't really care about the topic because everyone has a different definition about clean or dirty code. I just want the code. 😅
@GeneraluStelaru
@GeneraluStelaru 2 ай бұрын
You should care. In the end, we're all trying to expand the codebase while mainaining performance and without obfuscating the logic. You'll never enjoy looking at somebody else's code. That's why you should try to make the experience as painless as possible.
@MrBreakstuff
@MrBreakstuff 2 ай бұрын
I generally agree with this assessment (talking about loop bodies is particularly helpful), but you're running into the same problem Casey did when this went viral. The reason people don't like clean code as a book is that you have a bunch of developers using it as a reason to make an abstraction for shapes when they only have one shape type in code. People don't like having to extend code that's prematurely optimized for essentially the same reason they don't like something that's prematurely abstracted: both are very difficult refactors and probably mean changing a fundamental data structure or a shared function call. The advice from both Casey and Bob are the same here: start very simple, and when you see shared values, you put them into a data structure. The difference is primarily on how they handle procedures, and how early they reach for an abstraction. Ask yourself how easy it would be to extend either of these. Since the code hasn't actually gotten the avx implementation yet, it's actually not that hard to make another struct or union for other shapes, and to add appropriate methods to handle that data. The version with inheritance wants to own all possible shapes in its parent class, and so if you run into a shape that doesn't fit the parent, you run afoul of liskov and all your efforts have to be rethought. If you find you have a need to optimize, the work You've done up to the present is also a barrier rather than a help. Clean code as a concept is a bit vague but like porn, you know it when you see it. Unlike porn, no one's going to complain if they see it on a monitor in the office. The book is more an artifact of the Java era, but can still hold some value to developers who know when they're being too proscriptive. The trouble is that since the rise of OOP and clean code, devs increasingly don't have access to this info. They don't know what Uncle Bob assumed they do - that steps like polymorphism over branching can make complex problems easier to read, but they always come with a sizeable overhead, and so shouldn't be taken until very late in a project when you need extreme measures to keep things manageable. I'd generally prefer working with Casey's code over Bob's because i think its simplicity makes it easier to work with, but their process that it starts out exactly the same: do the simplest thing that accomplishes the goal. They then both eliminate redundant code through data structures and better procedures. The difference is the goal they're working towards, and my experience is that close adherence to OOP and the Coean Code book simply isn't readable or maintainable in larger projects because of the code winds up being loosely coupled to a lot of things, and too generic to offer much of a guide to its purpose if the original name isn't relevant any more.
@tobevasoftware
@tobevasoftware 2 ай бұрын
In the video I'm not saying we should follow the guidelines of the Clean Code book. I'm saying that we should take back the phrase "clean code". I think that any code can be clean code. Casey's good code is clearly "clean code", for example. It's silly to cede a generally useful phrase like, which has a long history, to mean "the style of OOP recommended by a 16 year old book that was primarily about Java programming". My second point was that Casey's example only showed OOP was not suitable when the inner loops were tiny: nanoseconds. He did not at all show OOP was unfit when timescales were longer, although he falsely claimed to. But you raise a much bigger question. Which is given these different styles, what is the best way to develop code? That's a way bigger topic than my video attempted to cover. I could imagine in a future post trying to dig more into that, it's a huge topic.
@MrBreakstuff
@MrBreakstuff 2 ай бұрын
@@tobevasoftware I can absolutely get behind that. I also think Casey's "don't teach this without caveats" is fine, especially in the context of the course. His intro even covers doing the same stuff in Python, so there's even more agreement here than I think the Twitter debate will ever capture. What I find very helpful about your video is that this debate often gets framed as a kind of "game devs do this, but 'enterprise' does it this way " culture and practice argument. You very neatly show how thinking about scale should probably change your decision making process, even in the world of game development where people worry about milliseconds. It's one thing to do SIMD operations on a rendering method. It's another to insist that your artists and level designers write in C or C++ and avoid inheritance.
@7th_CAV_Trooper
@7th_CAV_Trooper 2 ай бұрын
So people don't like the book because some other people have a reading comprehension problem? Really?
@MrBreakstuff
@MrBreakstuff 2 ай бұрын
​@@7th_CAV_Trooper to a certain extent, yeah, but it's kind of a problem with the layout. Most people read it as "do this instead of this" instead of the far more reasonable "start here but you probably want to go here when you get some repetition". I think some of that is the Uncle Bob videos, which I always thought took an even harder stance.
@chudchadanstud
@chudchadanstud 2 ай бұрын
​@@MrBreakstuff If it's easy and it meets the customer's needs, why should you care? I personally began struggling to read Casey's code, there was way too much nuance and cognitive load. As soon as I see pointers I start thinking about managing them.
@educobuci
@educobuci 2 ай бұрын
👏
@kirglow4639
@kirglow4639 7 ай бұрын
Good article. Thank you for narrating it
@ComputerScienceSimplified
@ComputerScienceSimplified 3 жыл бұрын
Awesome video, keep up the great work! :)