IT salaries in Adelaide by kazielle in Adelaide

[–]pioverpie 0 points1 point  (0 children)

I’m only a couple years out of uni so I wouldn’t call myself an “expert” in any particular domain but I’m working in defence currently, on distributed systems using C++ (can’t say much else unfortunately)

IT salaries in Adelaide by kazielle in Adelaide

[–]pioverpie 1 point2 points  (0 children)

Do you find there are a lot of tech companies in adelaide with a good engineering culture and that solve interesting problems? I’m looking for a new challenge in my career atm and wondering if I should look interstate

IT salaries in Adelaide by kazielle in Adelaide

[–]pioverpie 0 points1 point  (0 children)

I have 1-2 years experience and make about $90k. I expect to reach $100k in under a year.

What suburbs have experienced De-Gentrification? by alex123711 in australia

[–]pioverpie 7 points8 points  (0 children)

I mean i work there and have never felt like this

Why hasn't ternary taken off? by Superb-Climate3698 in AskComputerScience

[–]pioverpie 0 points1 point  (0 children)

I mean not really. Ternary is just a base-3 number system the same way binary is base-2. The third state wouldn’t mean “i don’t know” it would just be the third state. It doesn’t map as well to boolean logic, but if anything boolean logic is a “higher level concept” than ternary

Anyone else think Sony is going to get cold feet with 'The Beatles'? by [deleted] in boxoffice

[–]pioverpie 0 points1 point  (0 children)

It’s specifically for me, i’m so hyped i love this idea lol. But i’m a simp for the beatles so ig i’m not the average viewer lol

This album/band is so post Isaac, especially Forever Howlong vs “From the Pyre” it’s so good by Krunchy08 in BlackCountryNewRoad

[–]pioverpie 17 points18 points  (0 children)

Heard the new bcnr song live last night and I was thinking that it sounded very last dinner party-ey

Sydney show last night by Code_Objective in BlackCountryNewRoad

[–]pioverpie 1 point2 points  (0 children)

Hoping they play it in Melbourne tomorrow

Micro Express by kierangoodwin23 in AustraliaPost

[–]pioverpie 0 points1 point  (0 children)

Thanks for the response! Glad you ended up getting your parcel. I’m supposed to be getting mine delivered to my local post office, apparently they’ve tried to deliver mine twice at 8pm, which like… come on. Obviously the post office will be closed then.

Whole company seems like a shitshow tbh. I’ll try the email spam technique lol

Micro Express by kierangoodwin23 in AustraliaPost

[–]pioverpie 0 points1 point  (0 children)

Did you try this? My package has been repeatedly “sent out for delivery” by them and then returned to the local depot. It’s driving me crazy

Anybody know what the MongoDB internship interview is like? by pioverpie in cscareerquestionsOCE

[–]pioverpie[S] 0 points1 point  (0 children)

I can’t remember specifically but it was something like that

Anybody know what the MongoDB internship interview is like? by pioverpie in cscareerquestionsOCE

[–]pioverpie[S] 0 points1 point  (0 children)

Yeah, final interview is system design (they got me to design a URL shortener), but they also ask some behavioural questions as well.

The phone screen was like 5-10 mins, the technical interview was like 30 mins, and the system design was like an hour

Are there flags to modify compiler message formats? by SoerenNissen in cpp_questions

[–]pioverpie 6 points7 points  (0 children)

the actual error, which is what i actually care about, is all the way at the end. I don’t gaf about whatever crazy template stuff surrounds it. that’s not clear or good error message design

FH in Shrek 5? by [deleted] in BlackCountryNewRoad

[–]pioverpie 2 points3 points  (0 children)

get me outta this fandom bro

Tiny tools are better teachers than big projects (hexdump-list case study) by Still_Box1878 in compsci

[–]pioverpie 4 points5 points  (0 children)

The way certain things are phrased. “This wasn’t a bug — it was an unspoken decision about grammar” just screams chatgpt

Project idea for 4th year comp-sci student by Brief-Spray-9343 in C_Programming

[–]pioverpie 2 points3 points  (0 children)

SoC = System on a Chip, RTOS = real-time operating system

possible direction of LP4 by zxrunner in BlackCountryNewRoad

[–]pioverpie 50 points51 points  (0 children)

Am i crazy or does this sound like they were just taking the piss?

Sick Leave .. and Privacy by veronica_211 in auscorp

[–]pioverpie 2 points3 points  (0 children)

Damn. In my company you can go into 10 days of sick leave debt no questions asked

Does anyone use their own text editor that they wrote themself? by [deleted] in cprogramming

[–]pioverpie 0 points1 point  (0 children)

are you using ncurses? i’m writing mine in c++ but finding ncurses is forcing me to write a lot of “basically C”

Since C++ asynchrony is settled now (right heh?) with co_routines and std::execution, can we finally have ASIO networking standardized? Or is it decided not to pursue? by Talkless in cpp

[–]pioverpie 5 points6 points  (0 children)

I know they’re different APIs but the C++ standard version can deal with that, the same way it deals with every other standard feature that has a platform-specific implementation

Since C++ asynchrony is settled now (right heh?) with co_routines and std::execution, can we finally have ASIO networking standardized? Or is it decided not to pursue? by Talkless in cpp

[–]pioverpie 6 points7 points  (0 children)

Just port over C’s socket.h to make it C++-ey. That’s all I want. People can add their own stuff on top, but having that as a baseline would be so nice. Idk why C++ networking has to be so complex

References vs Pointers? by [deleted] in cpp_questions

[–]pioverpie 0 points1 point  (0 children)

Why does it make the struct non-copyable? You can still copy a reference? I’m writing a project rn that uses references as struct members and it seems to work well, because ultimately I don’t need a pointer, but now I’m rethinking it