Self-reliant programmer manifesto
yobibyte.github.io
Self-reliant programmer manifesto
1–10 of 18 posts
Re: Self-reliant programmer manifesto
#2Re: Self-reliant programmer manifesto
#3Re: Self-reliant programmer manifesto
#4I do agree with the nature of self sufficiency. That is the start of durability. Most people find this revolting though. The goal, for most people, isn’t stuff that works properly. The goal is inclusion and comfort, a social baseline opposed to a utility baseline.
Re: Self-reliant programmer manifesto
#5Re: Self-reliant programmer manifesto
#6Those "over complex" code bases like curl handle a lot of edge cases. Your 300 lines of C is starting over and relearning what they already learned.
Re: Self-reliant programmer manifesto
#7At some point we might be able to be confident that the current version of all our dependecies has been carefully reviewed by enough reliable people, but right now we're not even moving in that direction; so, minimizing the dependencies is the proper thing to do.
Re: Self-reliant programmer manifesto
#8Re: Self-reliant programmer manifesto
#9Those "over complex" code bases like curl handle a lot of edge cases. Your 300 lines of C is starting over and relearning what they already learned.
We should begin collecting and centralizing the insights learned from the development of software outside the source code of specific projects
Re: Self-reliant programmer manifesto
#10Those "over complex" code bases like curl handle a lot of edge cases. Your 300 lines of C is starting over and relearning what they already learned.
I agree! However in many cases, these edge cases (I'm not speaking of curl now) are not needed for my personal use. E.g. if I use linux/windows/os, I do not care about how my tool behaves on the other os, I do not want to support all kind of hardware etc. If I am the only users, I can prune these use-cases (and features I mentioned in the post) significantly. E.g. I reimplement a subset of vim at the moment, I do not…
I'm willing to accept a little bloat and pass on inventing wheels myself if I can grab something reliable off the shelf. I don't think that makes me less self reliant.