Telegram RegisterThe public register of Telegram

Channel

ᴄᴏᴅᴇ ᴡɪᴛʜ ᴋᴜsʜᴀʟ 👨🏻‍💻

@CodewithKushal

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

35subscribers

+0 since we began measuring on 11 August 2026

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

Register entry

Telegram ID-1003729271744
TypeChannel
Username@CodewithKushal
Descriptionᴡᴇʟᴄᴏᴍᴇ ᴛᴏ ᴄᴏᴅᴇ ᴡɪᴛʜ ᴋᴜsʜᴀʟ ʜᴇʀᴇ ʏᴏᴜ’ʟʟ ʟᴇᴀʀɴ ᴛʜᴇ ᴍᴏsᴛ sᴇᴀʀᴄʜᴇᴅ ᴄᴏᴅɪɴɢ ᴘʀᴏɢʀᴀᴍs ɪɴ ᴘʏᴛʜᴏɴ, ᴊᴀᴠᴀ, ᴄ, ᴄ++, ᴊs ᴀɴᴅ ᴍᴏʀᴇ ᴘᴇʀғᴇᴄᴛ ғᴏʀ ʙᴇɢɪɴɴᴇʀs, sᴛᴜᴅᴇɴᴛs, ᴀɴᴅ ɪɴᴛᴇʀᴠɪᴇᴡ ᴘʀᴇᴘ ...
CreatedBetween 1 January 2026 and 31 January 2026— estimated from Telegram’s id allocation, not measured. How this range is calculated.
First recorded11 August 2026
Last confirmed live12 August 2026
Measurements held2
On Telegramt.me/CodewithKushal

Growth

3511 Aug 2026, 20:17 — 35 subscribers11 Aug 2026, 20:30 — 35 subscribers11 Aug 2026, 20:1711 Aug 2026, 20:30
2 measurements taken within a single day. 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 34–36 and does not start at zero.
Measurement log — every subscribers count we have recorded
Measured (UTC)SubscribersChange
11 Aug 2026, 20:3035no change
11 Aug 2026, 20:1735first reading

Engagement

20 posts held, back to 31 January 2026the 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 6 May 2026. An engagement rate over an empty window would be a number about nothing.

What this channel posts

Photos
2
Links
3

Lifetime counters from Telegram’s own channel header, read 11 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.

Recent posts

6 May 2026, 08:05 UTC284 viewsread 11 August 2026

C# 14 - Extension Members C# 14 adds new syntax to define extension members. The new syntax enables you to declare extension properties in addition to extension methods. You can also declare extension members that extend the type, rather than an instance of the type. In other words, these new extension members can appear as static members of the type you extend. The following code example shows an example of the d

18 Apr 2026, 08:06 UTC326 viewsread 11 August 2026

Compare two string by equals() instead == in java 💡 Use equals() because this method internally checks == plus co hontent equality check ☑️ [ CODE ] public class Test { public static void main(String[] args) { String s1 = "string"; String s2 = "string"; String s3 = new String("string"); String s4 = s3; String s5 = "str"+"ing"; System.out.println("s1==s2 :"+(s1==s2)); System.out.print

18 Apr 2026, 08:03 UTC261 viewsread 11 August 2026

Listing Content Of Directory In Java 📁 In order to list the contents of a directory, below program can be used 🗄 This program simply receives the names of the all sub-directory and files in a folder in an Array and then that array is sequentially traversed to list all the contents import java.io.*; public class ListContents { public static void main(String[] args) { File file = new File("//home/

26 Mar 2026, 13:06 UTC341 viewsread 11 August 2026

*Data Handling Basics Part 1: NumPy (Numerical Computing in Python)* 🐱 NumPy is one of the most important libraries for: - Data science - Machine learning - Scientific computing - Data analytics It provides fast mathematical operations on arrays. 1) Install NumPy* pip install numpy 2) Import NumPy* import numpy as np np is the standard alias. 3) Create NumPy Array* import numpy as np arr = np.array([1, 2, 3,

10 Mar 2026, 10:16 UTC318 viewsread 11 August 2026

JavaScript Clean Code 🛠 Only comment things that have business logic complexity💡 Comments are an apology, not a requirement. Good code mostly documents itself Bad : function hashIt(data) { // The hash let hash = 0; // Length of string const length = data.length; // Loop through every character in data for (let i = 0; i < length; i++) { // Get character code. const char = data.charCodeAt(i);

20 Feb 2026, 13:27 UTC347 viewsread 11 August 2026

Designing APIs for humans: Object IDs 🧑🏻‍💻 Ever wondered why Stripe uses foloowing format to generate unique IDs? Let’s dive in and break down how and why Stripe IDs are structured the way they are: pi_3LKQhvGUcADgqoEM3bh6pslE └┘└────────────┘ └─ Prefix └─ Randomly generated characters You might have noticed that all Stripe Objects have a prefix at the beginning of the ID. The reason for this is quite simple:

6 Feb 2026, 13:08 UTC360 viewsread 11 August 2026

import telebot from telebot.types import ReplyKeyboardMarkup, KeyboardButton, InlineKeyboardMarkup, InlineKeyboardButton token = '68613996:AAFG6d8Q92kKqzG8kY7Negg7sCT83ApBEP8' #bot token from @botfather bot = telebot.TeleBot(token) @bot.callback_query_handler(func=lambda call: True) def callback_inline(call): if call.data == 'test': bot.send_message(call.message.chat.id, 'You clicked on Test Callback (Inli

3 Feb 2026, 04:58 UTC363 viewsread 11 August 2026

OverAPI provides cheat sheets for multiple programming languages and technologies in one place. It’s especially useful for quick syntax reference while coding or revising concepts You can find concise guides for languages and tools like JavaScript, Python, Java, PHP, SQL, HTML, CSS, and more — all organised in an easy-to-read format This resource is ideal for students, developers, and anyone who wants to code faste

Showing the 12 most recent of 20 posts we hold for @CodewithKushal. 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.

Citation-graph rank

Citation-graph rank — 750,841 of 1,340,412entries in the measured graph. A weighted position computed from the forward and mention edges below — republished posts weigh more than named mentions — and recomputed periodically, over the whole graph. Published only as this ordinal position, never as a score: a position is a fact, and a score printed beside one channel’s name would read as a verdict this register does not make. The two counts beneath stay separate for the same reason mentions are never summed with forwards anywhere else on this page — a named-by count costs nothing to manufacture. The top 100 by this measure, or how it is computed.

Mentions

Named by 1 registered channel — every channel on the register whose own posts have named this one, by its current username or any other username it currently holds, merged from two separately captured readings of the same fact so a namer caught by only one of them is not missed and a namer both caught is not counted twice. A username this channel has since dropped is not matched — that handle may belong to someone else now, and crediting today’s namer to yesterday’s owner would misattribute it.

Named by

Channels on the register whose posts name this channel's handle.

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 11 August 2026 — this entry's latest reading, not the date you are reading this.

“ᴄᴏᴅᴇ ᴡɪᴛʜ ᴋᴜsʜᴀʟ 👨🏻‍💻” (@CodewithKushal), 35 subscribers as measured 11 August 2026. Telegram Register, tgregister.com/channel/CodewithKushal.

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.