🚀 Фишка Kotlin: Безопасный каст с помощью оператора as? В Java при неверном приведении типов можно легко поймать ClassCastException. В Kotlin эту проблему элегантно решает оператор безопасного каста as?. Если объект нельзя привести к нужному типу, он не ломает приложение, а просто возвращает null. В сочетании с оператором Элвиса (?:) это позволяет писать чистый и безопасный код: ```kotlin // Вместо краша получаем …

Channel
Kotlin developer
@Kotlin0
On this record: Growth · Engagement · What this channel posts · Posts · Polls · Citations · Cite this entry
5,835subscribers
+0 since we began measuring on 7 August 2026
Risers and fallers across the register · movement among entries of 3,162–10,000.
Register entry
| Telegram ID | -1001149209108 |
|---|---|
| Type | Channel |
| Username | @Kotlin0 |
| Description | Канал Kotlin посвящён изучению и применению языка программирования Kotlin в различных областях По всем вопросам пишите @itru1 |
| Created | Between 1 June 2017 and 31 August 2020— estimated from Telegram’s id allocation, not measured. How this range is calculated. |
| First recorded | 7 August 2026 |
| Last confirmed live | 11 August 2026 |
| Measurements held | 2 |
| On Telegram | t.me/Kotlin0 |
Growth
| Measured (UTC) | Subscribers | Change |
|---|---|---|
| 7 Aug 2026, 09:01 | 5,835 | no change |
| 7 Aug 2026, 08:53 | 5,835 | first reading |
Engagement
17 posts held, back to 3 June 2025 — the reader has not yet reached the start of this channel’s public history, so older posts may sit further back, unread. Read across 9 pagesof 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 17 posts for this entry, the most recent from 8 June 2026. An engagement rate over an empty window would be a number about nothing.
What this channel posts
- Photos
- ≈28
- Videos
- ≈1
- Links
- ≈1,240
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. A count marked ≈ was rounded by Telegram before we ever saw it — t.me prints these counters in full below 1,000 and to three significant figures above, so ≈142,000 means somewhere between 141,500 and 142,499.
- Video runtime
- 5m 41s
- Average length
- 5m 41s
Measured directly from 1 video 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
Рейтинг технологий для мобильной разработки для банков в 2026 году Читать...
Google AI Studio теперь создает нативные Android-приложения без SDK, среды и знания Kotlin. Читать...
Kotlin переходит к деструктурированию по именам Читать...
Subject Matter Expert. Чёрная Метка Для Разработчика Это не совсем привычная для меня статья, но я давно хотел поделиться одним своим наблюдением. В ней не будет никаких вещей, связанных непосредственно с разработкой на Java или Kotlin, не будет кода. Я просто решил поделиться опытом. Я надеюсь, читать эту статью Вы будете вечером, в спокойный, выходной день. Читать...
Весь AI-стек Google в одной подписке — Google AI Pro целиком. У Google $200/год, у нас 3 999 ₽ за год. 🧠 Gemini 3.1 Pro — контекст 1 млн токенов 🎬 Veo 3.1 — генерация видео из текста, до 3 в день + 50 через Flow 🎨 Nano Banana Pro — картинки 4K с корректным русским текстом, до 100 в день 🔬 Deep Research — глубокий анализ по сотням источников, 20 отчётов в день 📓 NotebookLM — личная база знаний на 300 источников на пр…
Kotlin developer pinned «Всем привет! Коллеги, чтобы быть более точнее в подборках материала для вас, хочу понять, что вам интересно и на чем вы программируете. Пройдите пожалуйста простой опросик. Можно выбрать несколько опций.»
Всем привет! Коллеги, чтобы быть более точнее в подборках материала для вас, хочу понять, что вам интересно и на чем вы программируете. Пройдите пожалуйста простой опросик. Можно выбрать несколько опций.
- Java для backend-разработки11%
- Java для мобильной разработки4%
- Kotlin для backend-разработки41%
- Kotlin для мобильной разработки62%
- Python5%
- Ни то ни другое, что я тут вообще забыл1%
- Посмотреть ответы4%
The shares total 128%, above 100: this poll accepts more than one answer per voter. No per-option vote count is published, so the number of voters who chose each option is not derivable and is not shown.
💻 github-workflows-kt — инструмент на Kotlin для создания рабочих процессов GitHub Actions github-workflows-kt поможет писать типобезопасный код на Kotlin для организации надежных рабочих процессов, планирования GitHub Actions и т.д. 🖥 GitHub 🟡 Доки
👩💻 FlexibleBottomSheet — мощный и настраиваемый компонент для работы с нижними листами (bottom sheets) в Jetpack Compose, включая мультиплатформенную поддержку! 🌟 Он позволяет использовать сегментированные размеры, настраивать модальные и немодальные типы листов, а также обеспечивает взаимодействие с элементами позади листа, как в Google Maps. Библиотека поддерживает три уровня расширения (полное, промежуточное и с…
readline4k - Kotlin/Native библиотека для разработки консольных интерактивных приложений для Desktop val history = "history.txt" // Filesystem path to the history file. // Configure the LineEditor. val config = LineEditorConfig( maxHistorySize = 100, completionType = CompletionType.LIST, // See the documentation for more options. ) // Create a new LineEditor instance. val editor = SimpleLineEditor( …
Что такое мульти-декларации (destructuring declarations)? Мульти-декларации (destructuring declarations или деструктуризирующее присваивание) — это способ извлечения значений из объекта и присвоения их сразу нескольким переменным. В Kotlin этот механизм поддерживается с помощью оператора распаковки (destructuring operator) — componentN(), где N — номер компонента. При создании data класса Kotlin автоматически созда…
Showing the 12 most recent of 17 posts we hold for @Kotlin0. 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.
Polls
The 2 polls we hold for this entry, as Telegram rendered them when we read the post. A poll’s figures keep moving after that, so each one is dated.
Всем привет! Коллеги, чтобы быть более точнее в подборках материала для вас, хочу понять, что вам интересно и на чем вы программируете. Пройдите пожалуйста простой опросик. Можно выбрать несколько опций.
- Java для backend-разработки11%
- Java для мобильной разработки4%
- Kotlin для backend-разработки41%
- Kotlin для мобильной разработки62%
- Python5%
- Ни то ни другое, что я тут вообще забыл1%
- Посмотреть ответы4%
The shares total 128%, above 100: this poll accepts more than one answer per voter. No per-option vote count is published, so the number of voters who chose each option is not derivable and is not shown.
Допускали ли вы баги (креши, некорректное поведение и прочее) по причине игнорирования возвращаемого значения в функции?
- Да33%
- Нет36%
- Затрудняюсь ответить8%
- Не участвую в опросе23%
Shares as published. No per-option vote count is published by Telegram, so none is shown.
Percentages only — there are no per-option vote counts here, because Telegram publishes none.The public post preview gives each option’s share and a single voter total, and nothing else. Multiplying one by the other would produce a per-option tally that looks measured and is not: the shares are rounded to whole numbers before we ever see them. We print what was published and leave the column that does not exist empty.
The shares need not add up to 100.Rounding alone puts many polls at 99 or 101. A poll that allows more than one answer per voter runs well past 100 by design, and several here do. The bars are drawn against a fixed 100% track at each option’s own percentage rather than normalised to the total, so a poll that exceeds it shows that it does instead of being quietly rescaled.
Read from the 17 most recent posts we hold, published 3 June 2025 to 8 June 2026. Telegram labels each poll by kind — an anonymous poll, a quiz, a closed set of final results — and that label is reproduced rather than paraphrased.
Forward network
Republishes
Channels on the register whose posts this channel has forwarded.
Built only from forwarded posts we have actually read, on both sides. Coverage is early and deliberately incomplete: a missing link means we have not read the post that would prove it, never that the relationship does not exist. Counts are distinct forwarded posts observed, so they only ever go up as we read more.
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 7 August 2026 — this entry's latest reading, not the date you are reading this.
“Kotlin developer” (@Kotlin0), 5,835 subscribers as measured 7 August 2026. Telegram Register, tgregister.com/channel/Kotlin0.
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.