Roman Davydov

Results 53 comments of Roman Davydov

Can confirm this issue. Restarted the miner, but still no more CLAIM points.

Seems like sha256Hash for ClaimCommunityPoints is the same (46aaee..3d0), but why does twitch return the integrity check error? 🤔 `Status code: 200, Content: {"errors":[{"message":"failed integrity check"}],"extensions":{"challenge":{"type":"integrity"}`

Can confirm the issue. Twitch just won't stop fighting automation. :(. What is interesting, I have several accounts, and some of them are still claiming bonuses like nothing changed.

> CMD-файл создаст задание на обновление раз в час У меня американский формат даты и времени, время выдаётся одной цифрой в часах: `echo %time:~,-3%` ` 0:46:26` *(На самом деле там...

@lazinism by removing comments and formatting your code, we get: ```py self.total_users = ( sum(map(lambda x:x[OutcomeKeys.TOTAL_USERS],self.outcomes)) self.total_points = ( sum(map(lambda x:x[OutcomeKeys.TOTAL_POINTS],self.outcomes)) if ( self.total_users > 0 and all(map(lambda x:x[OutcomeKeys.TOTAL_POINTS]>0, self.outcomes))...

@lazinism Do we really need to use `all(map())` in the condition? Can't we just use: ```py if ( self.total_users > 0 and self.total_points > 0 ): ``` ?

@lazinism Your solution with sum(), map() and lambda-functions is just an elegant way of doing: ```py #inefficient but otherwise outcomekeys are represented wrong. self.total_points = 0 self.total_users = 0 for...

@lazinism Do we really need to use: ```py if ( self.total_users > 0 and all(map(lambda x:x[OutcomeKeys.TOTAL_POINTS]>0, self.outcomes)) ): ``` Can't we just use: ```py if ( self.total_users > 0 and...

Close to playable now on Vulkan (60 fps on 1050ti), except for some kind of a "shifted glass" graphical artifact – two lines in the center of the screen. ##...

`TwitchChannelPointsMiner.py` doesn't produce all the log messages, for example `+50 --> ... REASON: CLAIM` is handled by another module. I decided to add the username to `logger.py`, so it will...