Thread

Zero-JS Hypermedia Browser

Relays: 5
Replies: 24
Generated: 20:39:17
Has anyone here used visual studio code to program c++? I’m stuck on including external libraries. It works when writing the code, it autocompletes and knows it’s there on the screen but when I compile it complains it doesn’t know where the called functions are. I’ve tried everything, including adding a complete file path to the library (libwally) but nope, it’s not happy.
2025-07-19 21:54:12 from 1 relay(s) 11 replies ↓
Login to reply

Replies (24)

lol 😂 Well, I solved the issue of linking the libraries via vscode and also command line. Ironically, it was easier to fix and understand the fix via bash than it was via the gui. But I learnt a value lesson in the process. And that’s what I want. So far it doesn’t seem that different learning c++. Maybe because I know a few other languages already, so the basics building blocks are there. I just need to remember the minute nuances. The if else if rather than if and elif and so on. But so far I’ve made my first program that generates mnemonic phrase, xpub, xpriv and addresses, so I’m making progress.
2025-07-20 16:36:41 from 1 relay(s) ↑ Parent Reply
Yeah; that was part of my original problem. I had a few c++ plugins installed and it got confusing what was doing what. So I removed them all and figured out which ones I needed and how to use it. So keeping it simple. C/c++ Compile Run, and c/c++ from Microsoft for the code hinting. Better syntax for the colours and that’s it. Try to keep it lean, and only add when needed
2025-07-20 16:39:54 from 1 relay(s) ↑ Parent Reply
lol 😂 You really don’t like C++ 😜 Well, so far I’ve learnt Python and bash this year, and have now to learn basic C++ and swift. So let’s see where this path takes me. But I do want to make some software for some hardware , and I assume C++ is really good for efficiency when dealing with small hardware with limited resources. I know you might suggest Rust 😂. Let me think about rust.
2025-07-20 18:01:09 from 1 relay(s) ↑ Parent Reply
C++ was the first language I learnt and did a good deal of development using it. You can say I've been traumatized 🤣 Rust on the other hand can achieve the same efficiency as C++ but safer and with more pleasurable experience.
2025-07-20 18:04:21 from 1 relay(s) ↑ Parent 1 replies ↓ Reply
It uses a different paradigm, especially the tough stuff in C/C++ aren't there in Rust. Learning any imperative language will provide the same background whether it's python or C. Also, learning some functional programming previously also helped since Rust uses a lot of that paradigm.
2025-07-20 18:24:25 from 1 relay(s) ↑ Parent 2 replies ↓ Reply