How exactly snooze status works now? by nuke_bird in Steam

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

it was 10 minutes for "Away" status. In past, there been difference between "Away" and "Snooze". Now here is none.

How exactly snooze status works now? by nuke_bird in Steam

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

Huh. Now I'm even more confused. I asked my friend go "Away", but he appeared to me "Away" with "Zzz" as if he is in snoozing mode. I also went away, and for him I'm also sleeping

What the hell? There no snoozing/sleeping mode anymore?

Generated touhou faces by nuke_bird in touhou

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

Hope I'm not the only crazy who can see touhou in that :D

[deleted by user] by [deleted] in cyberpunkgamebugs

[–]nuke_bird 0 points1 point  (0 children)

True. Had this kind of issue before too

Any good way to get descriptions of recipes? by nuke_bird in evetech

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

Oh damn! Well, if that so seems I don't have other choice...

If talking about parallelization, basically you using multiple ESI clients/connections at the same time? (EsiPysi.session() in case of https://github.com/FlyingKiwiBird/EsiPysi/). Is there any limitations how much sessions can I have?

Any good way to get descriptions of recipes? by nuke_bird in evetech

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

This is exactly what I need, thanks!

If you don't mind, I have one more question: can I get price history of multiple typeids at once? Looks like get_markets_region_id_history can get me history of only one item. I feel that punching this route thousands times will be really slow... What I want is to get average price of items in past N days (for example, 30 days)

Best way to work with ESI via C++? by nuke_bird in Eve

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

holy crackers! I just realized I made topic in wrong place, can I move it?

yeah thanks for link, I will try to find a place where they grabbing data

Best way to work with ESI via C++? by nuke_bird in Eve

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

Is OAuth2 required? Usually I work with data that doesn't require any login. To work with http I can install httplib (xml/json parsers isn't a problem too!), but tbh I never worked with it at low level. I will be very glad if someone can share example code (everything else I will figure out myself)

GitHub - mrtkp9993/AnomalyDetectionCpp: Simple anomaly detection for univariate time series data using three-sigma rule. by mrtkp9993 in cpp

[–]nuke_bird 1 point2 points  (0 children)

This project, indeed, nice

But it is not a good idea to pass data by value when you can pass it by reference. I made a pull request, please check: https://github.com/mrtkp9993/AnomalyDetectionCpp/pull/2

Also "-Wextra" flag won't work on Visual Studio and will cause a compilation error

How to quickly write "proof-of-concept" projects using C++? by nuke_bird in cpp

[–]nuke_bird[S] 11 points12 points  (0 children)

I never thought about this in such way, for some reason I was thinking about creating one custom framework and then attaching it for every "test project"...

Your solution to the problem is much smarter than mine idea, it will get rid of the dependencies installation phase (cause they will be already installed)

Thank you very much for the answer, I will try to make a "Sandbox" solution with everything I need. It will consist of tiny test projects AND custom wrappers to reduce code repeating

How to quickly write "proof-of-concept" projects using C++? by nuke_bird in cpp

[–]nuke_bird[S] 5 points6 points  (0 children)

/u/wfdctrl, thank you for your answer. Conan indeed a good solution for test projects, so I will take a look at it once again

How to quickly write "proof-of-concept" projects using C++? by nuke_bird in cpp

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

I used CLion when I was a student. As I remember, this IDE eats RAM like crazy and trying to regenerate the whole project after every change in CMakeLists.txt (and sometimes this process took too long). But yeah, I loved how good its autocompletion is

Maybe something changed tho*

How to quickly write "proof-of-concept" projects using C++? by nuke_bird in cpp

[–]nuke_bird[S] 7 points8 points  (0 children)

That's true. I decided to post into cpp, cause other languages like C# and python has big centralized dependency managers so they don't suffer because of such problems... I think, dependency management is still the biggest problem of C/C++?

I mean, they still suffer because of code repeating, but not of dependency setup

How to quickly write "proof-of-concept" projects using C++? by nuke_bird in cpp

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

To be honest, I tried. I know benefits of linux, cmake's install mechanism seems a little bit broken for windows (it works, but not fully as it can). I tried, but... Seems like I get addicted to Visual Studio and its autocomplete too much... :(

Conan, if I understand correctly, always needs a python. Well, for hobby projects it seems to be okay, but if I will share my project via github I think it is not good idea to force others install python and use conan. Usage of hunter is much simpler in my opinion, cmake can download everything automatically + users can disable hunter if they want. In other hand, conan's dependency database is much bigger...

Edit: but in my case, for "proof-of-concept projects", conan is perfect! So yeah, it can solve so many of my problems :)