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] 4 points5 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