Benjamin Loison

Results 531 comments of Benjamin Loison

In fact if do not `break` then get: isIn=True except sometimes isIn=False ``` timestamp=1722782903 isIn=True timestamp=1722782902 isIn=True ... timestamp=1722782896 isIn=True timestamp=1722782895 isIn=False timestamp=1722782894 isIn=True ... timestamp=1722782880 isIn=True timestamp=1722782879 isIn=False timestamp=1722782878...

```python communityPostMessage = community['contents']['twoColumnBrowseResultsRenderer']['tabs'][5]['tabRenderer']['content']['sectionListRenderer']['contents'][0]['itemSectionRenderer']['contents'][0]['backstagePostThreadRenderer']['post']['backstagePostRenderer']['contentText']['runs'][0]['text'] ``` is not relevant as not from AJAX.

timestamp Python decrease by 1 ```python timestamp = 1722782903 TO_REMOVE = 1 while True: community = getCommunity(timestamp) communityPostMessage = community['continuationContents']['itemSectionContinuation']['contents'][0]['backstagePostThreadRenderer']['post']['backstagePostRenderer']['contentText']['runs'][0]['text'] isIn = 'ce dimanche pour cause de vacances en famille'...

timestamp Python decrease by 100 ```python timestamp = 1722782903 TO_REMOVE = 100 while True: #print(f'{timestamp=}') community = getCommunity(timestamp) content = community['continuationContents']['itemSectionContinuation']['contents'][0] timestamp -= TO_REMOVE if 'messageRenderer' in content and content['messageRenderer']['text']['runs'][0]['text']...

After about 10 executions I confirm that *This channel hasn't posted yet* seems deterministic.

Recently I tried automatically create community posts but do not remember where I keep track of that. I remember having achieved an algorithm blocked due to bot verification after a...

An approximative timestamp is when switching from is in to is not more in, no matter if most recent or not comment.

So: | timestamp | timestamp + 1 | possible | next timestamp | |-----------|---------------|----------|----------------| | False | False | True | | | False | True | True | |...

Maybe the most simple is to guess all community post creation time. Even if start from most recent comment and decrease exponentially time, cannot know if missed one.

Let us assume multiple community posts to start.