Remix.run Logo
rossant 4 days ago

I like to use comments extensively, even if it’s just to visually separate blocks of code in my IDE. A bit more spacing simply feels cleaner to me.

matt_kantor 4 days ago | parent [-]

Why not use blank lines? (I suspect the answer might be "my code formatter deletes them", which is a damn shame.)

zahlman 3 days ago | parent | next [-]

I used to do that (and it's part of why I put a double line between functions and classes). But over time I started to feel like those were the points where I should just refactor. (If the function can't be cleanly cut at those joints, in turn, I take that as a sign that the logic needs to be disentangled first.)

bonesss 3 days ago | parent | prev | next [-]

.Net languages have ‘regions’ that can collapse & nest, providing a high level narrative of file organization (and, in practice, display most files in a clean collapsed view).

rossant 3 days ago | parent | prev [-]

I do it, but I also like to use headers.