Yo, welcome👀
Been thinking about making this channel for a long time... finally stopped overthinking and just did it..
📌 This is a programming channel
Like… i will literally explain what a text editor is
🔥 First thing we are building — Telegram Bots
📌 After that we go step-by-step into:
💡 How this will work:
⚠️ You will have to actually do the work
Watching does not teach you… doing does
⭐ This is for you if:
First lecture dropping tomorrow
Please open Telegram to view this post
VIEW IN TELEGRAM
All lectures in order — bookmark this post
This index gets updated as new lectures drop
Please open Telegram to view this post
VIEW IN TELEGRAM
Before we write a single line of code you need to understand what you are actually doing
Most beginners skip this and get confused later
We are not skipping it
This lecture covers:
Please open Telegram to view this post
VIEW IN TELEGRAM
A computer is just a very fast, very dumb machine
It does exactly what you tell it — nothing more, nothing less
Programming is just giving the computer those instructions in a language it understands
Think of it like this —
You are the brain, the computer is the hands
Your code tells the hands what to do
That is literally it
Everything else is just learning how to give better instructions
Please open Telegram to view this post
VIEW IN TELEGRAM
There are hundreds of programming languages
We are starting with Python and here is why:
Compare this:
public class Main {
public static void main(String[] args) {
System.out.println("Hello World");
}
}```python
print("Hello World")
`Same result
Python just gets out of your way so you can focus on learning to think like a programmer
Please open Telegram to view this post
VIEW IN TELEGRAM