Telegram RegisterThe public register of Telegram

Channel

Бинарный Кофе

@binarycoffee

On this record: Growth · Engagement · What this channel posts · Posts · Citations · Cite this entry

6subscribers

+0 since we began measuring on 9 August 2026

Risers and fallers across the register · movement among entries of Under 1,000.

Register entry

Telegram ID-1002485062297
TypeChannel
Username@binarycoffee
CreatedBetween 1 September 2024 and 31 March 2025— estimated from Telegram’s id allocation, not measured. How this range is calculated.
First recorded12 August 2026
Last confirmed live12 August 2026
Measurements held2
On Telegramt.me/binarycoffee

Growth

69 August 2026 — 6 subscribers12 August 2026 — 6 subscribers9 August 202612 August 2026
2 measurements spanning 3 days. Dots are measurements; the straight line between them is drawn to join them, not to claim we know the path taken in between — snapshots are recorded only when a count changes, so gaps mean “no change observed”, never “interpolated”. The vertical axis spans 5–7 and does not start at zero.
Measurement log — every subscribers count we have recorded
Measured (UTC)SubscribersChange
12 Aug 2026, 20:016no change
9 Aug 2026, 18:506first reading

Engagement

20 posts held, back to 19 April 2025the reader has not yet reached the start of this channel’s public history, so older posts may sit further back, unread. Read across 1 pageof Telegram’s post history, 20 posts per page.

Nothing published in the last 30 days. ERR and ER are rolling 30-day measures, so there is nothing to compute — we hold 20 posts for this entry, the most recent from 22 April 2025. An engagement rate over an empty window would be a number about nothing.

What this channel posts

Photos
44
Videos
7
Links
27

Lifetime counters from Telegram’s own channel header, read 12 August 2026 — not the date at the top of this page, which is when the subscriber count was last read. Below Telegram’s rounding threshold, so these counts are exact.

Video runtime
33s
Average length
17s

Measured directly from 2 videos with a duration reading, out of the posts we hold for this channel — not this channel’s whole posting history, only the sample this register has actually read. An exact reading to the second, taken from the post itself rather than from Telegram’s own rounded chrome, so it carries no mark.

Recent posts

22 Apr 2025, 15:34 UTC6 viewsread 12 August 2026
Photo

Игра Израиля на Ближнем Востоке. Израиль сейчас старается через США сохранить военную базу России в Сирии. Напомню, Россия поддерживает Иран и аккуратно, негласно, его прокси (экзистенциальные враги Израиля). Израиль опасается растущего влияния Турции в Сирии (Турция вражеская для них страна + сосед). Также Турция не совсем уж дружественная для России - потому воен.база там это общий интерес Израиля и России. В с

22 Apr 2025, 15:09 UTC6 viewsread 12 August 2026
Video

Анекдот дня: певице на Евровидении от Мальты запретили петь песню из-за одного слова. Её песня называется «Kant», что с мальтийского переводится как «пение». Но оно звучит как английское «cunt», что переводится как п%зда, а фраза «serving kant» — «служить п%зде». Многоходовочка с игрой слов не сработала, и теперь ей нужно либо заменить слово, либо выбрать другую песню, либо же совсем не участвовать.

22 Apr 2025, 14:49 UTC6 viewsread 12 August 2026

Browser # Один браузер может содержать множество контекстов browser = playwright.chromium.launch() context1 = browser.new_context() context2 = browser.new_context()

22 Apr 2025, 14:31 UTC6 viewsread 12 August 2026

if last_new_day_check is None or (now - last_new_day_check).total_seconds() >= CHECK_NEW_DAY_INTERVAL: # Логика проверки на "новый день" # ... last_new_day_check = now # Обновляем время последней проверки

22 Apr 2025, 14:28 UTC6 viewsread 12 August 2026

if last_new_day_check is None or (now - last_new_day_check).total_seconds() >= CHECK_NEW_DAY_INTERVAL: # Логика проверки на "новый день" # ... last_new_day_check = now # Обновляем время последней проверки

22 Apr 2025, 14:23 UTC6 viewsread 12 August 2026

Вы абсолютно правы. Изначальная логика с ожиданием следующего дня при первом запуске (если время запуска после 10 утра) была ошибочной. Необходимо дать возможность отправлять посты сразу после запуска, даже если время запуска уже после 10 утра. Исправленный код (без ожидания при первом запуске):

22 Apr 2025, 14:14 UTC5 viewsread 12 August 2026

if last_new_day_check is None or (now - last_new_day_check).total_seconds() >= CHECK_NEW_DAY_INTERVAL: # Логика проверки на "новый день" # ... last_new_day_check = now # Обновляем время последней проверки

22 Apr 2025, 14:06 UTC5 viewsread 12 August 2026

if last_new_day_check is None or (now - last_new_day_check).total_seconds() >= CHECK_NEW_DAY_INTERVAL: # Логика проверки на "новый день" # ... last_new_day_check = now # Обновляем время последней проверки

22 Apr 2025, 14:00 UTC5 viewsread 12 August 2026

if last_new_day_check is None or (now - last_new_day_check).total_seconds() >= CHECK_NEW_DAY_INTERVAL: # Логика проверки на "новый день" # ... last_new_day_check = now # Обновляем время последней проверки

22 Apr 2025, 13:55 UTC5 viewsread 12 August 2026

Теперь проверка на "новый день" выполняется только в том случае, если last_new_day_check равно None (при первом запуске) или если прошло больше CHECK_NEW_DAY_INTERVAL секунд с момента последней проверки. Логика работы: 1. При запуске бот инициализирует last_new_day_check значением None. 2. В цикле process_queue проверяется, прошло ли больше часа с момента последней проверки на "новый день". 3. Если прошло больше ча

22 Apr 2025, 13:48 UTC4 viewsread 12 August 2026

Ключевые изменения: 1. continue после ожидания нового дня: Добавлено ключевое слово continue после await asyncio.sleep(wait_seconds) в блоке if wait_for_next_day:. Это заставляет программу перейти к следующей итерации внешнего цикла while True:, пропуская остаток текущей итерации. Это позволяет повторно проверить условия для ожидания нового дня. 2. Ожидание перенесено выше: Ожидание перенесено выше. Объяснение логи

Showing the 12 most recent of 20 posts we hold for @binarycoffee. View and reaction counts are the latest single reading for each post, not a live figure, and a recent post is still accumulating both. A view count marked was rounded by Telegram before we ever saw it — t.me prints views in full below 1,000 and to three significant figures above, so ≈1,200,000 means somewhere between 1,150,000 and 1,249,999. Unmarked counts are exact. Text is reproduced from the public post preview and truncated for length.

Mentions

Names

Channels on the register whose handles appear in this channel's posts.

A mention is a weaker signal than a forward and is counted separately for that reason — naming a channel is not republishing it, and a handle in a post body is easy to place deliberately. The post counts beside each row below are distinct posts in which the handle appeared, from posts we have read on both sides — the “Named by N registered channels” figure above is a different count, of distinct NAMING CHANNELS rather than posts, and is not the sum of the rows under it.

Cite this entry

A live page changes as we take new readings, so a citation should name the measurement it is based on, not just the URL. The line below cites the subscriber count as measured 12 August 2026 — this entry's latest reading, not the date you are reading this.

“Бинарный Кофе” (@binarycoffee), 6 subscribers as measured 12 August 2026. Telegram Register, tgregister.com/channel/binarycoffee.

Full measurement history, CC BY 4.0. Every reading this register holds for this entry, not just the latest one, as a dated, downloadable record: CSV · JSON. Free to use with attribution to tgregister.com. Each file carries its own generation timestamp, which is the figure to cite for exactly when the data was retrieved.