Live data from Hacker News

Ask HN: Who is using C++ as the main language for new project?

news.ycombinator.com

21–30 of 199 posts

Re: Ask HN: Who is using C++ as the main language for new project?

#23
The new M-PAGES software by NGS is written in C++, with a bit of python tooling as well.

This 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?

#26

I'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…

What kind of performance do you need that Dart wasn't sufficient?

Re: Ask HN: Who is using C++ as the main language for new project?

#27
post #4

Starting 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,…

Which languages did you try out?

Re: Ask HN: Who is using C++ as the main language for new project?

#28
post #4

Starting 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,…

Have you tried GO with GoLand IDE?

Re: Ask HN: Who is using C++ as the main language for new project?

#29
post #24

Me. 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.

Go (AKA Golang) has been famous for its portability. The docs seem to indicate Go has had AIX support since version 1.12 [0]. I haven't used it personally, though, so I don't know how good it is.

[0] https://go.dev/blog/ports

Post reply on HN