I know I follow a lot of indie game makers here, but I have little idea of what engines any of of you use. Anybody here know about C++ compiling? @josemachete79 is working on building his own version of #Angband from a cloned repo, and is running into issues compiling.
Any help anyone can offer would be much appreciated- I've played a test build or two of the game and it's working great except for these final compiling issues. Hit him up!
(The image below is a screenshot of the starting character I randomly generated to use when testing one of the builds.)
Protip: If you have test data in your C++ unit tests that needs to be passed into some C API, be consistent and declare it as vector<uint8_t> testData, and always call testData.size() on it, not sizeof(testData) like you do elsewhere for C-style arrays of uint8_t testData[].
Hey I'm still looking for work. I've applied to a lot of places in my area and I'm getting nothing.
I'm a programmer at heart, but I've also been looking for regular entry-level jobs because there haven't been any coding positions open at my level as far as I could tell.
If you can offer me a job, it might save my butt. And if you can't offer me a job, could you at least share this post?
I live 30 minutes away from Bellevue if that helps.
It's weird, I always feel weird passing weak_ptr between functions, as it might be nil and therefore would be pointless. I always prefer to make everything shared_ptr, even though it'll go away all the same, if the final destination is a weak_ptr.
Ok, I guess I'll do an #introduction on this account now:
I'm Eleanor, a software engineer working mostly in #cplusplus and #rust these days. My background is in math, physics, and scientific computing, but I'm currently moving into a new thing that's still programming in Rust and C++, but in a very different domain than what I'm used to (and for a lot more users).
When I'm not staring at text on a screen or managing other aspects of my life, I play the violin and the piano, and I read science fiction and fantasy books. These are few and far between these days since there's always a lot going on.
This account is intended to focus mostly on my computer-related escapades.
I have run this exercise with multiple C++ developers from junior to senior. Its a simple task that can reveal strength/weakness in a devs understanding of what good C++ could look like.
Implement a reverse words function that works in-place on the string provided. - Make it correct - Make it performant - Make it maintainable
Give it a go. I'll also post content warning hint(s) as replies.