Linus's Laws of Writing Readable Code

แชร์
ฝัง
  • เผยแพร่เมื่อ 20 พ.ย. 2024

ความคิดเห็น • 165

  • @cajonesalt0191
    @cajonesalt0191 19 วันที่ผ่านมา +66

    I've never really understood the "don't use comments to explain how something works only why it's in the code" argument, but if the example in this video of explaining "how" is what that rule is supposed to stop, then I totally get it now.

    • @kantancoding
      @kantancoding  18 วันที่ผ่านมา +15

      It’s like, if you are spending a lot of time explaining how your code is working… usually (not always but usually) that code is 💩
      So spend the time making the code better instead of explaining how bad code works.

    • @pdgiddie
      @pdgiddie 10 วันที่ผ่านมา +8

      Writing good code is not just about writing code that works. It needs to lead future maintainers through its intention. That's why naming things well is so important too.

    • @nemanjatrivic9505
      @nemanjatrivic9505 10 วันที่ผ่านมา +5

      If you are implementing some known algorythm then just put a comment and link the source, you will do everyone a huge service.

    • @steve-wright-uk
      @steve-wright-uk 10 วันที่ผ่านมา +5

      Comments are best for WHY not HOW

    • @nemanjatrivic9505
      @nemanjatrivic9505 10 วันที่ผ่านมา

      @@steve-wright-uk if you implemented algorythm and didn't invent it yourself, why wouldn't you link the source to help people understand what you did?

  • @sven-o
    @sven-o 25 วันที่ผ่านมา +284

    If you care about tab width you got no real issues

    • @DemPilafian
      @DemPilafian 24 วันที่ผ่านมา +26

      100% correct. That's why all real developers work alone and never share files with anyone.

    • @sven-o
      @sven-o 24 วันที่ผ่านมา +19

      @@DemPilafian Real devs can just adjust tab width if it really matters to them

    • @jonnyso1
      @jonnyso1 24 วันที่ผ่านมา +20

      I agree, the lead maintainer on the Linux Kernel has no real issues to worry about.

    • @dasmonstrum27
      @dasmonstrum27 24 วันที่ผ่านมา +3

      No cowboys allowed on my squad, since I've made the pipeline.
      Use Linter or expect an error message blocking merge request.

    • @DemPilafian
      @DemPilafian 24 วันที่ผ่านมา +8

      @@sven-o In the real world, tabs result in endless problems. There's a reason well-intentioned projects start off with tabs and switch to spaces but never the other way around.

  • @ktostam3478
    @ktostam3478 11 วันที่ผ่านมา +9

    Strangely meditative, straight to the point and so smooth that it doesn't need outline/introductions to connect the topics. Well done!

  • @tomershechner
    @tomershechner 25 วันที่ผ่านมา +24

    Smooth transitions between concepts, meaningful commentary and instructive examples. What a nice video!

  • @nerdycatgamer
    @nerdycatgamer 24 วันที่ผ่านมา +23

    1:35 You've got the example wrong. We're not `grep`ing the output of the program for the error message (splitting up the error message in the source code isn't going to cause it to be printed any differently anyways): we're `grep`ing the source code for where that error message is, so we can see under what circumstances it gets printed.

    • @kantancoding
      @kantancoding  24 วันที่ผ่านมา +10

      My understanding is that it’s both. Splitting the error message in the source code will cause the message that is printed to be on multiple lines therefore making filtering logs a bit annoying which is what I was showing in the example.
      The same thing applies in the reverse case when grepping the source code for where the error message is.
      The reason I didn’t put time into explaining that is because most modern logging implementations will have the file and line number etc where the error was thrown in the stack trace so you usually don’t need to grep the source code like you mentioned.

    • @venusearth6682
      @venusearth6682 17 วันที่ผ่านมา

      ✅💯

  • @spfy
    @spfy 24 วันที่ผ่านมา +38

    I was confused by what you said about being able to split up lines by concatenating them. In your example, sure, the program output is still in one line so it's possible to use grep. But what if instead, you wanted to find where that error message was in the actual code? Now you can't find it, because it's split up...

    • @christopherjaya342
      @christopherjaya342 24 วันที่ผ่านมา +4

      It's a good practice to seperate the log messages strings from the main function by using char * variables.

    • @spideybra
      @spideybra 14 วันที่ผ่านมา +8

      I'd argue that searching for the message in the source is way more common than grepping a program output. You would usually see the log when inspecting the output after an error, then search for it to find out what went wrong in the code.

    • @pwhqngl0evzeg7z37
      @pwhqngl0evzeg7z37 5 วันที่ผ่านมา

      My hope is that in some languages a preprocessor will assemble such split string literals so that one can grep that output instead. I believe this is true for C(++), for example, and I suspect some nonstandard preprocessors are available for others.

  • @AlexanderVulpes
    @AlexanderVulpes 11 วันที่ผ่านมา +2

    I 100% agree about comments, they're supposed to explain the "what" more than the "how". It's a good way to help future devs find bugs too.

  • @magnusmarkling
    @magnusmarkling 24 วันที่ผ่านมา +40

    How does Linus come into all this? Didn't hear him mentioned even once in the video.

    • @lightningspirith
      @lightningspirith 24 วันที่ผ่านมา +5

      Never heard him talking about these rules either

    • @kantancoding
      @kantancoding  23 วันที่ผ่านมา +37

      These are literally all from the linux kernel coding style guidelines which he wrote. www.kernel.org/doc/html/v4.10/process/coding-style.html

    • @chrissherlock1748
      @chrissherlock1748 13 วันที่ผ่านมา +4

      @@kantancodingouch

    • @maleldil1
      @maleldil1 10 วันที่ผ่านมา +7

      @@kantancoding you might want to make it clearer, and perhaps link the style document in the description.

    • @mikebond6328
      @mikebond6328 6 วันที่ผ่านมา

      @@maleldil1document.? What’s that?

  • @isaiahpan
    @isaiahpan 12 วันที่ผ่านมา +4

    Hm. I have to disagree with your last point. It is far more useful to describe the "why" rather than the "what". The "what" should be readily obvious if you wrote the code correctly.

  • @unexpectedkAs
    @unexpectedkAs 8 วันที่ผ่านมา +1

    Excellent examples! Usually guidelines are difficult to convey because most examples are too trivia, simple and or unrealistic/ academic.

  • @ewhac
    @ewhac 2 วันที่ผ่านมา

    Your next exercise: Illustrate that your "refactored" string copy routine compiles to the same or better assembly language than the original. Show this is true on all platforms (x86, ARM, RISC-V, 68K, etc.).

  • @PJutch
    @PJutch 24 วันที่ผ่านมา +16

    I disagree with 8 tabs example. I used to reading code 2 times more zoomed in than an example you've showed. This makes "too far to the right" mark go to, like, 4 levels of indentation. And also you've showed an example in Go which isn't an OOP-obsessed language. In C++ you'll get 3 levels of indentation just from method in a class in a namespace, and having 24 space nothing always at the start of the line seems bad for me.

    • @fuzzy-02
      @fuzzy-02 9 วันที่ผ่านมา +4

      Indeed.
      The best advice I learned in coding is that all these programming tips, even languages themselves, are simply philosophies of some person, so don't make them sacred texts.
      My laptop screen isn't thay wide so I also prefer 4 char identations even in a language like Go

  • @yusufotar2355
    @yusufotar2355 2 วันที่ผ่านมา +1

    whats the name of the font

  • @siya.abc123
    @siya.abc123 24 วันที่ผ่านมา +8

    2 character indentations are for tiny todo apps. Any large code bases must use 4 characters for legibility

    • @bozdowleder2303
      @bozdowleder2303 18 วันที่ผ่านมา

      You only need 4 spaces if you have multiple indentation levels. Otherwise 2 will suffice. It's not about the size of the code as about how many indentation levels exist in the code

    • @pwhqngl0evzeg7z37
      @pwhqngl0evzeg7z37 5 วันที่ผ่านมา

      ​@@bozdowleder2303The way I see it is even if 2 is good for some people, 4 will only make it more legible. Unless you need to refactor your code.
      But tabs are better anyway.

  • @I_am_Raziel
    @I_am_Raziel 25 วันที่ผ่านมา +30

    Tabs with 4 chars configured

    • @liamappleyard6495
      @liamappleyard6495 23 วันที่ผ่านมา +1

      Only true answer

    • @ifp5
      @ifp5 23 วันที่ผ่านมา +1

      It is much easier to prohibit TABs in your VCS than configure every single editor and utility, given that some of them are 3-rd party and/or not configurable.

    • @MrHerbalite
      @MrHerbalite 2 วันที่ผ่านมา

      @@ifp5 Dump tools that force you to a certain style. I sure did, and it helped me in many ways. Working on space only projects. Change it to a tabbed one for work, and when committing it, it is being feed back into main using spaces. Everyone is happy. Goes for any other combination of problems. Space|Tab discussions are so last century issues to me.

    • @ewhac
      @ewhac 2 วันที่ผ่านมา

      Then your editor is mis-configured, and you _will_ have problems when loading other people's code.
      *_Hard TABs are modulo-8. Period. No exceptions._*

    • @I_am_Raziel
      @I_am_Raziel 2 วันที่ผ่านมา

      Tabs are the best, because everyone can configure his IDE to display whatever they need: 1, 2, 4, 8 or something else. You guys can do whatever you like, but for me, THIS is the best when it comes to indentation.

  • @wjrasmussen666
    @wjrasmussen666 23 วันที่ผ่านมา +4

    Where is Linus other than in the thumbnail?

    • @kantancoding
      @kantancoding  23 วันที่ผ่านมา

      He's literally everywhere since every single one of these are from the linux kernel coding style guidelines which he wrote. www.kernel.org/doc/html/v4.10/process/coding-style.html

  • @tirthasg
    @tirthasg 24 วันที่ผ่านมา +5

    Off-topic question: What VS Code theme and font are you using? Looks good.

  • @fg786
    @fg786 23 วันที่ผ่านมา +3

    I usually write comments on the how and why when I come back to the code later and can't figure it out in a couple of minutes why I did it this way. I mean it's no big deal, there are additional lines that don't bother performance or disk space at all. An issue arises when it's more comments than lines of actual code, or something along those lines, when the code reading flow is interrupted by comments.

    • @maxsamarin9002
      @maxsamarin9002 21 วันที่ผ่านมา +1

      Agreed, I would rephrase the comment tip as "Don't write a long explanation comment if you can rewrite the code to explain itself, and be SHORTER than the long comment". Also assuming that rewriting the code to be longer doesn't increase performance cost. Sometimes smart one-liners aren't there just for the sake of being shorter, but to actually do something in a more performant way.

    • @MortyCJ
      @MortyCJ 5 วันที่ผ่านมา

      Imo comments aren’t for you. If you need comments to understand your own code there’s other problems happening.

  • @1schwererziehbar1
    @1schwererziehbar1 4 ชั่วโมงที่ผ่านมา

    god created eight character indentation to protect us from excessive nesting.

  • @resresres1
    @resresres1 11 วันที่ผ่านมา +1

    What about comments of "i don't know why this piece of code works. DO NOT REMOVE!".

  • @JosephDalrymple
    @JosephDalrymple วันที่ผ่านมา

    I know no one wants to restart the whole "tabs vs spaces" argument again, but I still prefer tabs above all else. With tabs, if you like 2-spaces, you can set your tab width to 2. 4 spaces? Set it to 4. 8? Set it to 8. Why force people to have _your_ preferred indentation length? Just use tabs.

  • @lightningspirith
    @lightningspirith 24 วันที่ผ่านมา +3

    I actually prefer to measure code indentation in pixels because ...

  • @Martin-lc1sk
    @Martin-lc1sk 22 วันที่ผ่านมา +2

    Code should be consistently fornatted
    Code should be commented
    Code should be concise.

    • @kantancoding
      @kantancoding  20 วันที่ผ่านมา +3

      Consistency, definitely.. the others deserve more explanation :)

    • @HoD999x
      @HoD999x 12 วันที่ผ่านมา

      Code should work

  • @jm-pi1kd
    @jm-pi1kd 19 วันที่ผ่านมา +1

    aw man, i use different indentations for different languages. i follow the standards. for python, i use 4. for bash, i use 2. for c, i use 8. but it does not really matter. just go to vimrc and change tabstop and shiftwidth and remove expandtab. your identation will automatically update. you might have to :retab if you were using expandtab before. if someone else gives you a project, change your tabstop and shiftwidth to match the indentation of that person's project. if they're using spaces, set expandtab. match your vimrc settings with that project's settings so that everything is uniform and consistent and easy. if youre working on multiple projects with different indentation levels.... then..... if theyre different languages, autocmd will be fine. if theyre the same language, then..... if you know vim, you'll figure it out.

    • @kantancoding
      @kantancoding  16 วันที่ผ่านมา

      Good points :)

    • @luizAugustoll
      @luizAugustoll 15 วันที่ผ่านมา

      I didn't know the defualt is 8 in c.

    • @jm-pi1kd
      @jm-pi1kd 15 วันที่ผ่านมา

      @@luizAugustoll maybe it was 20 years ago. I looked it up today and most people prefer 4 in C today. i don't remember which standard i read, whether it was GNU C Standards or the C used in Linux development but one of the two said to use 8 spaces per tab. the default in vim is definitely 8 though. you'll have to add tabstop and shiftwidth to change it from the default to 4 spaces or 2 spaces.

  • @MisterDan
    @MisterDan 22 วันที่ผ่านมา +2

    Nicely presented!

    • @kantancoding
      @kantancoding  20 วันที่ผ่านมา

      Thanks! And thanks for watching :)

    • @MisterDan
      @MisterDan 19 วันที่ผ่านมา

      @@kantancoding My pleasure, I write tutorials so I appreciate your work.

  • @omegand.
    @omegand. 25 วันที่ผ่านมา +8

    2:35 yandere dev moment

    • @Tiritto_
      @Tiritto_ 25 วันที่ผ่านมา +1

      Undertale too

    • @Kerojey
      @Kerojey 24 วันที่ผ่านมา

      That's how real programmers code, sorry to break it to you, script kiddie

  • @zbynekdolejsek8930
    @zbynekdolejsek8930 15 วันที่ผ่านมา +2

    while (*src++ = *desc++); nice buffer overflow ;-) Why not use some secure version strncpy(src, desc, lengthOfDesc);?

    • @adrianbool4568
      @adrianbool4568 5 วันที่ผ่านมา +1

      100% agree with your sentiment; although you have your src and "desc" the wrong way round in your call to strncpy()!

    • @pwhqngl0evzeg7z37
      @pwhqngl0evzeg7z37 5 วันที่ผ่านมา +1

      snprintf is even better because strncpy doesn't null-terminate in certain cases.

    • @adrianbool4568
      @adrianbool4568 วันที่ผ่านมา +1

      @@pwhqngl0evzeg7z37 Oh, you are indeed right! I forgot about strncpy's brain dead operation. I note that in MacOS, it warns not to use strncpy instead directing you to use strlcpy instead. strlcpy does the sensible thing of keeping within the given bounds whilst ensuring the NUL is present. However, if I look on local Linux box, that doesn't seem to have strlcpy. :-/ I guess snprintf it is! I tend to use Rust now, so don't need to worry about these particular issues!

  • @Veloxzr
    @Veloxzr 11 วันที่ผ่านมา

    What did you use for the nice code animations?

  • @mrpocock
    @mrpocock 11 วันที่ผ่านมา

    Tabs depend on the language. For example, it's virtually impossible to code java with 8 space tabs as it is all nested scopes, inner classes and so on. Languages like rust with his pattern matching let you have far fewer nested or changed if statements.

  • @iamsaidumar
    @iamsaidumar 3 วันที่ผ่านมา

    whats that theme? and what editor?

  • @Ryan-gf1sz
    @Ryan-gf1sz 11 วันที่ผ่านมา +1

    uh, I'm not sure, do you guys think linux code is readable?

  • @ismbks
    @ismbks 24 วันที่ผ่านมา +2

    would you take a look at bsd kernel guidelines?

    • @ismbks
      @ismbks 24 วันที่ผ่านมา +1

      by bsd i meant freebsd

  • @ruixue6955
    @ruixue6955 19 วันที่ผ่านมา

    2:31 case of long function but acceptable
    2:54 never try to explain how your code works in a comment

  • @venusearth6682
    @venusearth6682 17 วันที่ผ่านมา

    I love ur videos 🥰🥰🥰

    • @venusearth6682
      @venusearth6682 17 วันที่ผ่านมา

      I watch all commercials too😁❣️

  • @aethernal1379
    @aethernal1379 5 วันที่ผ่านมา

    Regarding the long lines issue, what if the problem is caused simply by long variable and/or class NAMES and you can't even sensibly shorten them, because then they'd no longer be clear and precise and so, upon reading the code, you no longer knew what is what?
    So e.g. you have a variable (or a class name) like $aVerySpecificPluginFromAVerySpecificModule that has to be called that, because otherwise it couldn't be differentiated from $anotherVerySpecificPluginFromAnotherVerySpecificModule, and then, in whatever line you need to use this, even if only for something very simple, like a function call without arguments or an assignment or creating a new instance of a class with such a name or whatever, you'll still have a very long line.
    I have yet to see a good solution to this.

  • @dantenotavailable
    @dantenotavailable 24 วันที่ผ่านมา

    I don't think you go far enough with your point about comments.
    Don't tell me how, don't even tell me what. If I can't get a pretty good idea what some code is trying to achieve by reading it then it's probably no better than the code where the programmer felt the need to say how it works. The point where you need a comment is when you need to explain *why* it is the way it is. For example: "This string copy ends up being used in the render loop so if you don't squeeze literally every cycle the framerate is going to tank". Ok great, now I know that if I apply the code clean up then I need to ensure it optimises to the same code and also where I should probably go check performance before releasing it to production. The key part is that if the code looks out of place then the comment is there to try to convince me that doing it this way, as opposed to the way the rest of the codebase works, was the right thing. (Oh also, interface contracts should be documented as a matter of expectation management but that's not really a "comment" even if they use the same mechanism)
    Also, the right number of spaces that an indent should be is whatever my auto-formatter is configured for and the correct way to get those number of spaces is to use the tab key. Also, if I want to go back to the previous level of indentation, I should be able to press backspace once while at the (indented) start of the line or sometimes shift-tab. To put this another way, the editor should act in every way shape and form as if Tab characters were being used but should only ever write the indent as space characters to the file system. I personally think that 2 characters is too little and 8 characters is probably too much but that's because i'm getting on in years and my eyes don't see as well as they used to but, ultimately, whatever is agreed upon as the auto-formatter settings is the correct value.

  • @tarmagoyf95
    @tarmagoyf95 14 วันที่ผ่านมา

    I don't like to have a big switch statements I usually prefer to have map and throw on null

  • @doBobro
    @doBobro 5 วันที่ผ่านมา +1

    I don't think it's a good example of copy-pasted switch case with calculatable keys in a video about readable code.

  • @thmUNIX
    @thmUNIX 14 วันที่ผ่านมา

    2:49 I would just use a dictionary in this case. Match one string to another and increment the required value.

    • @kantancoding
      @kantancoding  14 วันที่ผ่านมา +2

      Yeah, but I mean, it was intentionally made like that to illustrate an example of a long function that’s not complex. But thanks for the code review 😂

  • @UTJK.
    @UTJK. 13 วันที่ผ่านมา +1

    Ok, but where’s Linus?

    • @MarceloBeckmann
      @MarceloBeckmann 8 วันที่ผ่านมา

      He is talking about Linux kernel coding style

  • @Nahsh5ba
    @Nahsh5ba 24 วันที่ผ่านมา +1

    Come on, just set max nesting level in your linter config and it will enforce the rule no matter what tab size is. Really, all of the problems have already been solved by prettiers/formatters and linters.

    • @Hofer2304
      @Hofer2304 14 วันที่ผ่านมา

      The compiler should only get successfully linted code. The programmer must not avoid the linter.

  • @DemPilafian
    @DemPilafian 24 วันที่ผ่านมา +17

    2 spaces requires additional cognitive load to distinguish the nesting level.
    4 spaces is a waste.
    3 spaces is the *ONLY* correct answer.

    • @christernilsson1
      @christernilsson1 24 วันที่ผ่านมา +8

      The tab size should be individual. This can be accomplished by using tabs only, never spaces. End of discussion.

    • @DemPilafian
      @DemPilafian 24 วันที่ผ่านมา +1

      @@christernilsson1 The discussion is over only in fantasies. In the real world, tabs result in endless problems. There's a reason well-intentioned projects start off with tabs and switch to spaces but never the other way around.

    • @christernilsson1
      @christernilsson1 24 วันที่ผ่านมา +2

      @@DemPilafian please list the reasons. Here are mine: tabs are easier to insert and delete. Tabs takes less space. Tab width can be individualized. A company can change the standard from four to three spaces with a keystroke. And the main reason: there is nothing left to discuss.

    • @DemPilafian
      @DemPilafian 24 วันที่ผ่านมา +1

      @@christernilsson1 Tabs are theoretically better than spaces in every way. In practice, however, tabs are a mess.
      1) Web pages and command line tools display tabs with ridiculous amounts of space.
      2) Indentation and alignment are different, and alignment requires spaces which get destroyed by tabs.
      3) For whatever weird reason, experienced smart developers occasionally submit pull requests with some indentation as spaces instead of tabs (the reverse does not happen).
      The real world doesn’t care that tabs are theoretically superior. Engineering managers get tired of tabs interfering with code diffs.

    • @christernilsson1
      @christernilsson1 24 วันที่ผ่านมา +1

      @@DemPilafian Copying indented code from different ai:s and other sources will suffer from having different amount of spaces. All tools should be configurable, like VS Code.

  • @laurii0512
    @laurii0512 4 วันที่ผ่านมา

    I don't care. I always make sure my code is not an overindented nightmare, and 8 char indentation will still allways feel excessive to me. 4 is perfect for me, I find it readable without being too much.

  • @redcollard3586
    @redcollard3586 7 วันที่ผ่านมา

    First of all, it's not actually funny when Linus says nasty things about **anyone who writes code in even a slightly different style then he does** and it's not actually funny when you parrot it, either. He's been working on his attitude in recent years, because he understands how it has hurt the Linux community. You should participate in that reformation.
    Second of all, code styles developed in kernel code in C have a completely different set of requirements than userspace code. Any attempted application of one style to the other should be taken with a massive grain of salt.
    Third, use your IDE to add blank indent markers and they will be easy to see regardless of their width.

  • @yashprogamer647
    @yashprogamer647 24 วันที่ผ่านมา

    0.24 it's the one with 4 spaces

  • @Fetrovsky
    @Fetrovsky 13 วันที่ผ่านมา

    5 character tabs.

  • @supericeg5913
    @supericeg5913 14 วันที่ผ่านมา +1

    As unreadable as it is, that while loop is pretty genius though, I didn't know assignments return the read/written value like that.

  • @anonmousse
    @anonmousse 14 วันที่ผ่านมา

    someone else who uses agave nf, nice

  • @YouPlague
    @YouPlague 14 ชั่วโมงที่ผ่านมา

    Completely misunderstood and misquoted the comment rule though.

    • @kantancoding
      @kantancoding  13 ชั่วโมงที่ผ่านมา

      Seems you’re the one who misunderstood

  • @pwhqngl0evzeg7z37
    @pwhqngl0evzeg7z37 5 วันที่ผ่านมา +1

    I wish more people used tab characters for indentation (with spaces for alignment.) That way the code reader can choose her indentation size by adjusting tab character display width.

  • @TheFrewah
    @TheFrewah 22 วันที่ผ่านมา +1

    If you use a beautifier, there won’t be any problems. Just make sure same settings are used and run it before before you commit and make sure it compiles.

    • @kantancoding
      @kantancoding  20 วันที่ผ่านมา +2

      If only it were that simple 🫠

    • @TheFrewah
      @TheFrewah 20 วันที่ผ่านมา

      @ well, it solves many problems. If you don’t like tabs or something, just let it beautify the code to what you like and then beautify back when you check in. That’s what I liked about vb6. Having said that, there were those that wrote horrible code. My c++ code called vb6 code which was very good for what we wanted.

    • @TheFrewah
      @TheFrewah 20 วันที่ผ่านมา

      @ I should mention some things I really don’t like which are not solved. I really dislike code that is written such that it’s difficult to debug. Don’t use one line to write code that does two things and no nested functions!!. A colleague of mine had a switch statement where only a few cases were considered and there was no default which he claimed would never happen. I did introduce a default and it didn’t take long before it did much to his surprise.

  • @FatherGapon-gw6yo
    @FatherGapon-gw6yo 13 วันที่ผ่านมา

    1 char is plenty

  • @Nellak2011
    @Nellak2011 25 วันที่ผ่านมา +3

    func doSomething(animalType string) {
    if _, exists := animalCounts[animalType]; exists {
    animalCounts[animalType]++
    }
    }

    • @poutineausyropderable7108
      @poutineausyropderable7108 24 วันที่ผ่านมา +3

      It actually does
      animal -> Animal
      (First letter capitalisation)
      if Animal[0] > 'Z'
      Animal[0] += ('A' - 'a');
      The lazy C way. Python is just toHigher()
      Then if exist.

  • @canerdemircigm
    @canerdemircigm 12 วันที่ผ่านมา

    My code style never will be beautiful I know
    funct(abc: xyz) { return }
    funct(abc: xyz) {
    return
    }
    funct(
    abc: xyz,
    klm: nop
    )
    {
    return
    }

  • @YLprime
    @YLprime 16 วันที่ผ่านมา

    Honestly don't think smart code affects readability, if people can't understand a regular function without max 3 lines of hints, it's really a skill issue on their side, unsmarting you code for people who have skill issues is some really unnecessary work. Not being mean just being real, there is nothing wrong with coding smarter. With all the LLMs going on understanding code shouldn't be a problem.

    • @kantancoding
      @kantancoding  16 วันที่ผ่านมา

      Not sure what you mean by “smart” code here. To me, “smart” code is simple.

  • @genechristiansomoza4931
    @genechristiansomoza4931 8 วันที่ผ่านมา

    Clever code is not useful for work. Not readable in one look. Other devs should be able to understand your code clearly for them to update it with confidence.

  • @teenriot-de
    @teenriot-de 10 วันที่ผ่านมา +1

    Linus-Rule 0: Insult people that are not your opponion.

  • @blobthekat
    @blobthekat 6 วันที่ผ่านมา

    I am a tabSize: 3 user

  • @poutineausyropderable7108
    @poutineausyropderable7108 24 วันที่ผ่านมา +4

    8 char is shit. Because good variable names aren't abreviated.
    So the single
    if ( LongAssVariableName > SomeOtherVariable && LongAssVariableName < TheWidthOfYourMom.InCentimeters() ) { ... } will be too much to the right.
    Also, Im shit language like Java where everything is inside a class... Thats 1 less Identation.

    • @Wutheheooooo
      @Wutheheooooo 6 วันที่ผ่านมา

      So you maybe only like scripting languages, because functions as entry point is really important because you can't run code all over the place. So is Java, it just use classes instead, not really different. The C entry point must be a function and called main for example, allow the C runtime to do things before run, even assembly need an entry point.

  • @gcv6761
    @gcv6761 7 วันที่ผ่านมา

    tab tab

  • @reda29100
    @reda29100 24 วันที่ผ่านมา +2

    0:45 let's cut to the chase. How are you going to deal with html and json files then? Scrolling left snd right 5 times a second?
    Having preferences is fine, but claiming they indicate good or bad behavior (as in bad programming habits) is pure nonsense. They're just conventions, and the only downside is they don't work in the outside world. But within a personal project, or a team which agrees upon those conventions, there is not right or wrong style.

    • @funkdefied1
      @funkdefied1 24 วันที่ผ่านมา

      There is no HTML or JSON in the Linux kernel source code. 98.3% C, 0.7% assembly, and it just goes down from there.

    • @kantancoding
      @kantancoding  24 วันที่ผ่านมา +1

      Hmm, JSON isn’t code so I don’t really think these rules apply there. And admittedly, I don’t care enough about HTML to go down that rabbit hole 😂

    • @nerdycatgamer
      @nerdycatgamer 24 วันที่ผ่านมา

      you shouldn't be using HTML or JSON. They're both mistakes made up to solve problems that don't exist

    • @reda29100
      @reda29100 24 วันที่ผ่านมา

      Regardless what you think about these things and whether they are up to the task they're allegedly made to solve, they are still standards in the industry. Whether I, you or they like it or not, they (amd other things you don't like in the industry) are a reality that you, I and he will have to adapt to at some point, at least if we were to engage with the wider audience and teams we're not with at the moment.
      Suppose you're a twch company, need tech workforce, preferably in C, but the entire workforce is too dumb and can only code in [choose a language so that I don't offend you unnecessarily]. And suppose you've been looking desperately for a C programmer for 5 years, and you can't sustain your company anymore (i.e., the ugly reality that json and html are bad solutions and need be disposed of). Do you bet on the utopian programmer that may (i.e., the future in which there would be no json or html, which are the bad inventions the industry adopts today) never come, or adapt to reality, as harsh and ugly it is, and try to make with ehat you got, in the tech workforce market?
      I don't care if json is the worst thing in the world in this regard. What my point is about, is whther you liked it or not, you have to live with it, and adapt, as long as it is going to be the reality for the foreseeable future.
      I haven't worked with html or json much, so I'm not dying on defending this hill, and have no dog in this fight. I am just concerned this self-obsessed attitude still lingers in this community.
      But who am I to envision a society that deviates from normal human behavior? People were, and will ever be believing the sun and the entire universe revolve around their thick skulls.
      Bit sorry to offend you, and I know I'm just a commenter and you are the one who did the work and made the content, but just have some humility.

    • @venusearth6682
      @venusearth6682 17 วันที่ผ่านมา +1

      @@kantancoding😂

  • @lukaschen6799
    @lukaschen6799 วันที่ผ่านมา

    Looks like someone never used html😀

    • @kantancoding
      @kantancoding  วันที่ผ่านมา

      lol what is html?

  • @RalfPinkaire-f7w
    @RalfPinkaire-f7w 11 วันที่ผ่านมา +2

    @3:45 I call bullshit. If someone can't understand basic C theyve no business being in the code. I'd say your restructured code is harder to understand.... I'd be worried you wrote it like that for some obscure case I'm missing.

    • @TavishMcEwen
      @TavishMcEwen 9 วันที่ผ่านมา +3

      Combining multiple writes and a read into a condition is not "basic c"

  • @AnythingGodamnit
    @AnythingGodamnit 23 วันที่ผ่านมา

    Argument falls apart a bit in the context of OO-based UI toolkits where nesting of components is expected to be deep. Yes, one can break apart monolithic components into smaller ones, but even some of the smallest can have a significant depth to their tree.

  • @user-lh3xs9km6z
    @user-lh3xs9km6z 24 วันที่ผ่านมา +3

    Fourth ban innocent devs because their nationality ...

    • @yjlom
      @yjlom 22 วันที่ผ่านมา

      that comes from above

    • @user-lh3xs9km6z
      @user-lh3xs9km6z 22 วันที่ผ่านมา

      @@yjlom SO HE SHOULD HAVE HAD NO ISSUE TELLING THE TRITH ABOUT IT INSTEAD OF HIDING LIKE A COWARD... WITH THE BAN LINUS GET THE VILLAIN STIGMA NOW ...

    • @TheEnmineer
      @TheEnmineer 10 วันที่ผ่านมา

      Weren't banned, just were removed from the ability to sign off on their own code commits because of increasing geopolitical tensions. Believe me, it's safer for everyone involved when they can't be forced to put a backdoor in Linux.