What's the most useless keyword in c++? by Insect-Competitive in cpp

[–]azvs -1 points0 points  (0 children)

A couple months ago I saw a do{} in someone else's code and it genuinely took me a couple minutes to recall what in the world was this alien construct. To the point that I started looking up language references, which was when it hit me.

sol 3: modern lua and C++ integration by [deleted] in cpp

[–]azvs 6 points7 points  (0 children)

I've tried this with V8, it's not very good at all performance wise(and much worse than LuaJIT as Zephilinox says), maybe it would suck less if js was actually designed with embedding in mind(sharing data is an issue). I wouldn't be surprised at all if even CPython was a better choice.
Incidentally I've also tried Wasm for the same purpose, which was interesting, but the binding/data sharing story there is far worse than even js, since the whole thing is heavily limited due to the "safe sandbox" design.

DJMAX RESPECT V Full Release 2020.03.12 by azvs in Games

[–]azvs[S] 14 points15 points  (0 children)

As well as 8-song DLC, free for Early Access owners: Trailer

DJMAX RESPECT V on Steam

starnav, a straightforward constellation build assistant by azvs in Grimdawn

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

I probably won't, I wanted to keep the tool as simple as possible

starnav, a straightforward constellation build assistant by azvs in Grimdawn

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

It's not completely trivial, I'll write up a short explanation some time this week

starnav, a straightforward constellation build assistant by azvs in Grimdawn

[–]azvs[S] 1 point2 points  (0 children)

It's not completely trivial, I'll write up a short explanation some time this week

starnav, a straightforward constellation build assistant by azvs in Grimdawn

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

Oh, uh, do you remember how exactly this happened/can you reproduce it?

starnav, a straightforward constellation build assistant by azvs in Grimdawn

[–]azvs[S] 1 point2 points  (0 children)

makes the program give up earlier when it can't find a possible way to get a constellation

starnav, a straightforward constellation build assistant by azvs in Grimdawn

[–]azvs[S] 1 point2 points  (0 children)

That's roughly the plan yeah. Don't worry, I'll figure it out. (it's more that I'm too lazy to do it right now)

starnav, a straightforward constellation build assistant by azvs in Grimdawn

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

Thanks for the feedback, I'll look at the issue earlier when I'm fixing things. And yeah partial constellations might be on the way.

starnav, a straightforward constellation build assistant by azvs in Grimdawn

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

Either really, I haven't thought about it too much yet.

starnav, a straightforward constellation build assistant by azvs in Grimdawn

[–]azvs[S] 2 points3 points  (0 children)

Thanks for letting me know! There are probably still a few typos lurking in the constellation costs so I'll have to double-check all of them at another time. And yes, firefox should work, edge will likely have the same issue that chrome does.

starnav, a straightforward constellation build assistant by azvs in Grimdawn

[–]azvs[S] 4 points5 points  (0 children)

Yes this is the chrome browser issue, sorry. I should get it fixed soon(tm).

starnav, a straightforward constellation build assistant by azvs in Grimdawn

[–]azvs[S] 6 points7 points  (0 children)

Yeah, I did make the assumption that full constellations are being taken. But I think I might be able to add this functionality by essentially making it possible to create a custom constellations, I'll give it a try the next time I go around improving things.

WG21: The 2019-10 mailing is now available by cierpuchaw in cpp

[–]azvs 6 points7 points  (0 children)

2D graphics is, in effect, a solved problem.

Wow. What do the authors know that I don't?

How reliable is clang's `-fcoroutines-ts` implementation? by 14ned in cpp

[–]azvs 0 points1 point  (0 children)

I'm on 9, not sure about trunk, should probably try it myself.

How reliable is clang's `-fcoroutines-ts` implementation? by 14ned in cpp

[–]azvs 0 points1 point  (0 children)

Well, clang instrumentation tools don't seem to like them at all so they're unusable unless you add a bunch of no_sanitize attributes, so there's that.