Ask HN: Who is using C++ as the main language for new project?
21–30 of 199 posts
Re: Ask HN: Who is using C++ as the main language for new project?
#22Re: Ask HN: Who is using C++ as the main language for new project?
#23This is to replace the original PAGES software, which was written in Fortran. M-PAGES is able to process GNSS baselines using all the new satellite systems, as opposed to only GPS.
Edit - my understanding is they chose that language for good extensibility.
Re: Ask HN: Who is using C++ as the main language for new project?
#24Re: Ask HN: Who is using C++ as the main language for new project?
#25Re: Ask HN: Who is using C++ as the main language for new project?
#26I've started using C++ for the REST backend for a mobile app recently. I'm using restinio for the REST layer (sadly deprecated a couple of months ago, but it still seemed like the best option in terms of clean interface) and sqlite for the DB layer. I've architected it all so I have a purely insert-only and order-independent DB on the write-side, so litestream was seeming like a good fit for single-writer, multiple r…
Re: Ask HN: Who is using C++ as the main language for new project?
#27Starting a new side project, no platform-specific functionality needed. Tried out a few relatively "new" languages (more like new to me) and experienced severe frustration from bugs and spotty documentation, lack of proper IDE/debugger support. So, I figured, better the devil you know. And of course: choice of compilers, choice of FOSS libraries, my own libraries and workarounds to various well-known annoyances and,…
Re: Ask HN: Who is using C++ as the main language for new project?
#28Starting a new side project, no platform-specific functionality needed. Tried out a few relatively "new" languages (more like new to me) and experienced severe frustration from bugs and spotty documentation, lack of proper IDE/debugger support. So, I figured, better the devil you know. And of course: choice of compilers, choice of FOSS libraries, my own libraries and workarounds to various well-known annoyances and,…
Re: Ask HN: Who is using C++ as the main language for new project?
#29Me. On every project that I need to compile for AIX. Not my favorite language by far, but it's pretty nearly the best choice on the platform, if you want cross platform code and don't want to fall into Java.