C Is Still Everywhere
toptal.com
C Is Still Everywhere
1–10 of 13 posts
Re: C Is Still Everywhere
#2Anyone waiting for the death of C is delusional. It’s the best (often the only) tool for many jobs and will always underpin most of the world’s operating systems and low levels of user space. A few counter examples don’t invalidate this point.
Re: C Is Still Everywhere
#3Re: C Is Still Everywhere
#4A boilerplate project with testing, common libs for data structures, and pointers to useful resources like extra libs, would be really cool. :)
That said if I had to do something nowadays that I would use C for, I'd probably just pick up Rust.
Re: C Is Still Everywhere
#5The most difficult thing I find about C is the (apparent) lack of libraries and packages. With other languages I know where to go to find libraries for anything I need, but I never know where to look with C. As a result I never really use it. A boilerplate project with testing, common libs for data structures, and pointers to useful resources like extra libs, would be really cool. :) That said if I had to do somethin…
I really am not sure if this is a joke or not, but almost every major library has a C interface. Almost all packages in your distro if you use linux have development versions that ship libraries that usually are linkable by C. In fact the wealth of libraries usable from C is usually noted as its main strength.
What exactly are you missing, and have you tried googling? The GNU organization and similar all produce libraries(like https://www.gnu.org/software/gsl/) that are mostly usable from C.
Re: C Is Still Everywhere
#6The most difficult thing I find about C is the (apparent) lack of libraries and packages. With other languages I know where to go to find libraries for anything I need, but I never know where to look with C. As a result I never really use it. A boilerplate project with testing, common libs for data structures, and pointers to useful resources like extra libs, would be really cool. :) That said if I had to do somethin…
> The most difficult thing I find about C is the (apparent) lack of libraries and packages I really am not sure if this is a joke or not, but almost every major library has a C interface. Almost all packages in your distro if you use linux have development versions that ship libraries that usually are linkable by C. In fact the wealth of libraries usable from C is usually noted as its main strength. What exactly are…
Anecdotally the types of libraries shippable with the OS represent a specific category of application which doesn't encompass many developers needs. (Although on the other side, github does not provide usable drivers for most operating systems... your mileage may very).
Re: C Is Still Everywhere
#7Earlier quoted context omitted.
> The most difficult thing I find about C is the (apparent) lack of libraries and packages I really am not sure if this is a joke or not, but almost every major library has a C interface. Almost all packages in your distro if you use linux have development versions that ship libraries that usually are linkable by C. In fact the wealth of libraries usable from C is usually noted as its main strength. What exactly are…
Coming from a different language, the idea that the OS provides your libraries is a radical departure. Generally a modern developer working in any other language will look to github along with the languages package repository for libraries. Anecdotally the types of libraries shippable with the OS represent a specific category of application which doesn't encompass many developers needs. (Although on the other side, g…
Further: https://github.com/oz123/awesome-c as another example of the many many C libraries you could find.
Re: C Is Still Everywhere
#8Earlier quoted context omitted.
Coming from a different language, the idea that the OS provides your libraries is a radical departure. Generally a modern developer working in any other language will look to github along with the languages package repository for libraries. Anecdotally the types of libraries shippable with the OS represent a specific category of application which doesn't encompass many developers needs. (Although on the other side, g…
Even so, github does have a ton of very very popular C libraries(like https://github.com/nothings/stb ). I was bringing up the OS provided ones since they claimed not to be able to find any. My main point is that it is patently absurd to claim that they could not find C libraries. Further: https://github.com/oz123/awesome-c as another example of the many many C libraries you could find.
Many practical C projects seem to simply fork any dependencies they want to use and stick them in their own internal repo/build process.
Re: C Is Still Everywhere
#9The most difficult thing I find about C is the (apparent) lack of libraries and packages. With other languages I know where to go to find libraries for anything I need, but I never know where to look with C. As a result I never really use it. A boilerplate project with testing, common libs for data structures, and pointers to useful resources like extra libs, would be really cool. :) That said if I had to do somethin…
Oh and it’s so poorly documented in practice that you have to cross reference it with codebases to see how the tooling is actually used in practice, then peel back all the weird quirks from those authors.
That’s the hard part.
Googling for a C library isn’t.
Re: C Is Still Everywhere
#10Earlier quoted context omitted.
> The most difficult thing I find about C is the (apparent) lack of libraries and packages I really am not sure if this is a joke or not, but almost every major library has a C interface. Almost all packages in your distro if you use linux have development versions that ship libraries that usually are linkable by C. In fact the wealth of libraries usable from C is usually noted as its main strength. What exactly are…
Coming from a different language, the idea that the OS provides your libraries is a radical departure. Generally a modern developer working in any other language will look to github along with the languages package repository for libraries. Anecdotally the types of libraries shippable with the OS represent a specific category of application which doesn't encompass many developers needs. (Although on the other side, g…