#voice-chat-text-0
1 messages Β· Page 581 of 1
I gave you the opportunity to stop asking about this. π
Welp, you're going to banned anyways
Fuck you
Nga
Son of a bitch
That's not going to help you lol
Malware is something we don't do here. We are happy to teach people about Python, and it is a shame you've chosen to squander the opportunity.
Mods are slow today...
I can js use vpn and come in again
On other acc
We can track it
No you cant
VPN β safe
No you dont
Okay....
Ragebaiter
@somber heath @paper wolf If you'd to start python again how'd you do that ?
We can leave this discussion to the mods
Kindly refrain from interacting with the person
The what
As a beginner. From zero.
Uhhh... Start coding???
Yeah.
!beginner
Here are the top free resources we recommend for people who are new to programming:
- Automate the Boring Stuff β an online book (also available to purchase as a physical book)
- Harvardβs CS50P course β video lectures (slides and notes provided) with exercises
- Python Programming MOOC 2026 course β text-based lessons with exercises
- Corey Schafer's YouTube playlist
For a full, curated list of educational resources we recommend, please see our resources page!
I see.
:=
You can lower down sensitivity.
Nope.
High pitched.
He's Chemical resistant.
XD
@unreal berry Chaina
Tarif
He's putting a Tariff on china.
Too much CS @unreal berry
Shut up or I'll put Tarif on you
i bet @unreal berry got plenty of keyboards.
USA rely on foreign brains and arms
No they Rely on The savior of murica
Yeehaw
._. lol
Lmao
Making your own terminal cmds is cool as a beginner.
It's his mic and noise suppression.
@lean orchid Custom + Krisp.
Noise Suppression. is off.
Demn
Too much
Better
Now
@lean orchid Get Voicemeter.
If you can configure it.
Standard one is good.
But you gotta run it everytime you boot your PC.
You gotta restart the Pc.
You can share your screen.
Oh, it's not availale in this channel.
@tiny ingot Hello π
Gold Dome.
@somber heath
I have completed for loops, while and withstatements, and exception handling (try-catch/except). I am on iterables now.
first three commented lines are causing confusion
the rest is all easy.
i got how it works
im confused what it is coz of those 3 lines
What if you do our_iterable = filled_dict.values() ?
!e
filled_dict = {"one":1, "two":2}
our_iterable = filled_dict.values()
our_iterable[1]
:x: Your 3.14 eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File [35m"/home/main.py"[0m, line [35m4[0m, in [35m<module>[0m
003 | [31mour_iterable[0m[1;31m[1][0m
004 | [31m~~~~~~~~~~~~[0m[1;31m^^^[0m
005 | [1;35mTypeError[0m: [35m'dict_values' object is not subscriptable[0m
!e
filled_dict = {"one":1, "two":2}
our_iterable = list(filled_dict.values())
print(out_iterable)
!e ```py
class Foo:
def iter(self):
yield 1
yield 2
yield from (3, 4, 5)
foo = Foo()
for each in foo:
print(each)```
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | 1
002 | 2
003 | 3
004 | 4
005 | 5
!e
filled_dict = {"one":1, "two":2}
our_iterable = list(filled_dict.values())
print(our_iterable)
@near blade @tranquil minnow π
!e
filled_dict = {"one":1, "two":2}
our_iterable = list(filled_dict.values())
print(our_iterable)
:white_check_mark: Your 3.14 eval job has completed with return code 0.
[1, 2]
Y i can't talk
It failed
hello
!e ```py
def foo():
yield 1
yield 2
yield from (3, 4, 5)
f = foo()
print(f)
for each in f:
print(each)```
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | <generator object foo at 0x7fa7b4f86a40>
002 | 1
003 | 2
004 | 3
005 | 4
006 | 5
what's this?
Python
i know
You are smart
opal already told me
what's yield? a keyword?
How about you demonstrate what you have understood?
its a for loop
Hmm?
nvm i was wrong
yield Keyword - Python - GeeksforGeeks https://share.google/c3z8DSJRdInJSTMqi
foo has yield, calling it returns a generator object instead of executing the code immediately.
generator object = iterable ?
my bad
π bye bye guys. Gtg.
k
@lone quest π
??
This one?
!e print(dir(list))
:white_check_mark: Your 3.14 eval job has completed with return code 0.
['__add__', '__class__', '__class_getitem__', '__contains__', '__delattr__', '__delitem__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getstate__', '__gt__', '__hash__', '__iadd__', '__imul__', '__init__', '__init_subclass__', '__iter__', '__le__', '__len__', '__lt__', '__mul__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__reversed__', '__rmul__', '__setattr__', '__setitem__', '__sizeof__', '__str__', '__subclasshook__', 'append', 'clear', 'copy', 'count', 'extend', 'index', 'insert', 'pop', 'remove', 'reverse', 'sort']
might try the euclidean algorithm altho i'm not the best at maths
so "import math"
"import math.dist"?
i thought it was import math
i have this as an example
@upper gate π
its the GCD
hello
!d math
This module provides access to common mathematical functions and constants, including those defined by the C standard.
These functions cannot be used with complex numbers; use the functions of the same name from the cmath module if you require support for complex numbers. The distinction between functions which support complex numbers and those which donβt is made since most users do not want to learn quite as much mathematics as required to understand complex numbers. Receiving an exception instead of a complex result allows earlier detection of the unexpected complex number used as a parameter, so that the programmer can determine how and why it was generated in the first place.
math.dist(p, q)```
Return the Euclidean distance between two points *p* and *q*, each given as a sequence (or iterable) of coordinates. The two points must have the same dimension.
Roughly equivalent to...
its the img i sent
_ _ _ _ _ _ _ _ _ _^^
the one i replyed to
nor do i
i know someone who knows c
but that's about all
_math.h
its only 25 lines
@somber heath
mathmodule.c
i'm looking at all the ones with math in the name
for loop and % sounds a bit simple
yes
that's what i'm doing next well trying
i'm looking where to start
that's what i struggle with the most
which one?
did you say
also i gtg in 10 mins
for school for 6 hours
then home
i'll get smth to eat. brb
k
!e
def show_user(**kwargs):
for key, value in kwargs.items():
print(key, "=", value)
show_user(name="mo", age=67)
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | name = mo
002 | age = 67
!e
def demo(*args, **kwargs):
print(args)
print(kwargs)
demo(1, 2, 3, name="mo", age=67)
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | (1, 2, 3)
002 | {'name': 'mo', 'age': 67}
@gentle flint Hello π
hi
holy cow
π
what's up
me doing great wbu @somber heath
Hi
nice
You sound like a narrator of some movie. @somber heath
me right now

@rain birch π
They already created
That was interesting.
Hav'nt seen Back2theFuture π
Yeah ig
The Library of Alexandria
Key losses included the Library of Alexandria, the Nalanda University Library, and the Library of Constantinople, resulting in the loss of millions of manuscripts.
Lol.
@forest sage π
Needs Therapy.
hello
so bad
Watch One piece.
Oh.
Helo
@tiny ingot oh pull
Lady finger bananas (also known as sugar bananas, fig bananas, or date bananas) are diploid banana cultivars originating in Malaysia or Indonesia, belonging to the Sucrier subgroup of the AA banana cultivar group. Lady finger bananas are the most widely cultivated AA cultivar and are one of the worldβs most popular local bananas. Its fruits ar...
oh
hey
thanks
appreciate that
is there something i need to do to be able to speak in the voice chat?
cool thanks Opal
be active in any of the dicusions?
cool im going to try my best to contribute
@peak goblet π
i just transitioned from dart so my knowledge in python is limited
Google lol
its single threaded i think like python
yhh i was reading on the GIL
Gilectamy?
lol
i guess for programs for the smart glases you would need to do that GILless aproach for the multithreaded
don't like em ?
true
yhh not good
yhh palantir is livid rn
i live in london
most survalenced democratic city
"democratic"
and yet crime is through the roof
yhh hopefully
london as a city is not null safe
right personally ive just the justice system be ridiculously weak so its just gets worse
i saw this guy that was spiting in this young school girls face repeatedly and he was out of prison in 2 weeks
it just making things worse
yhh
i am studying cs in school and they teach us c . do you think it is outdated language and no need for me to give it attention or i do need it
It's a common foundation.
right democratic authority
def
i was actually thinking it would be good to make a democratic system 2.0 where instead of voting for people we vote for ideas to implemented rather
usually authority gets corrupted real quick
yh same its tough
if its by super majority i feel it would work better
@tender tusk π
hi
if 79/100% of people would vote to build an airport or whatever i think it would at least work better than what we got going rn
instead of a king going mad it would have to be everyone going mad lol
#voice-verification @tender tusk
Democracy needs Upgrade
We need mix economy for 3 years atleast capitalism and socialism
Strict action should be taken towards leaders and Goverment employees
From last decades we are seeing only politians and Goverment employees getting benigits from stock market by doing insider trading and no one getting accountable
im from india
And its biggest and largest democracy in the world
India has all three socialism capitlaism and few states are communist
Only problems are corruption
Corruption is the main key that failed socialism
Crony capitalsim had been taken over all over india
An K shape economy is happnening right now
@somber heath @cerulean roost
hipy hopydy
comutalist
to prosper society yh
creating an system to vote would be quiet easy i reckon, the problem is all those bureaucrats, share holders billionaires would oppose it strongly its the transition
maybe an open source project
good to meet Opal see you around
@worn grotto π
DUDE MY VSCODE HAS GONE CRAZY
I CANT SEE THE BUTTON FROM WHICH I RUN MY CODE π
Hey everyone, is there any news on when opus 4.7 is coming to Google Antigravity
<@&831776746206265384>
@dusky oreπ
hello
thx
Here are the top free resources we recommend for people who are new to programming:
- Automate the Boring Stuff β an online book (also available to purchase as a physical book)
- Harvardβs CS50P course β video lectures (slides and notes provided) with exercises
- Python Programming MOOC 2026 course β text-based lessons with exercises
- Corey Schafer's YouTube playlist
For a full, curated list of educational resources we recommend, please see our resources page!
Why is this still here...
Show
@sacred quiver π
hello
ahh its my first day
are u good at python
and if u are what did u use
no like videos,book
ahh
!beginner
Here are the top free resources we recommend for people who are new to programming:
- Automate the Boring Stuff β an online book (also available to purchase as a physical book)
- Harvardβs CS50P course β video lectures (slides and notes provided) with exercises
- Python Programming MOOC 2026 course β text-based lessons with exercises
- Corey Schafer's YouTube playlist
For a full, curated list of educational resources we recommend, please see our resources page!
yeah ive been doing ytvideos but im stuck intutorial he!!
oh thnx ill use that
how old ar u and how long have u been programming
oh u dont work in the field
np
alr thnx ill check these out
see ya
@raven canopy π
Yeah... wassup
I still can't speak
@dire imp π
I dont have permission to talk yet π’
oh shit mb i was talking in the wrong channel XD
so how can i prep for an interview as backend developer
i already know the basics of FastAPI
about that my uncel told me that before C++ there were like c+
i still think if we are going to get c+++
lol c+ dosent exist
is c# the c+++?
XD
so what a cool python trick you can tell me
no fk rust
i also create like full stack desktop apps, most of the time i used selinum, bs4 and pyside6 for the gui
and do you still use pip or are you like a uv + ruff kinda guy?
XD
i really want to switch to arch dwm but i need my adobe stuff
lol what happend?
@heady swift π
i have to go guys gb
?
You joined the voice chat. You did not have voice privileges. I like to give waves to such people, as I find people often don't spot this channel as the associated text channel. I do this so that people can still take part in the conversation.
Take it as a greeting, nothing more, should you wish.
Ohh Like I canβt join voice chat? But can chat here in this group?
Well I did not know that I am new
Sorry
hello anyone can please tell me how to learn create ai agent
You may like to consult with #agents-and-llms.
<@&831776746206265384>
!compban 1027210701963526188
:incoming_envelope: :ok_hand: applied ban to @molten bluff until <t:1779125777:f> (4 days).
I am server muted
hi man
waht you do
in python
Oh, I reached the class and stopped, now I'll continue.
creatures
class Car:
def init(self, color, speed):
self.color = color
self.speed = speed
def show(self):
print("color:", self.color)
print("speed:", self.speed)
car1 = Car("red", 200)
car2 = Car("blue", 150)
car1.show()
print("------")
car2.show()
!code
Oh, I use Novim.
print("Hello, world.")
print("Goodbye.")```
class Foo:
def __init__(self):
pass```
@marble shoal π
.
apparently germans were lisp heads, im playing around with their eliza program they wrote for c64
def player_Health(lives_Left):
"""" Retruns health if typee failed - 1"""
lives_Left = lives_Left - 1
return lives_Left
they have a tower of hanoi program too
for round in range(1, 4):
print("Round " + str(round))
words_to_type = typer.pick_random_words(round, "easy")
passed = typer.play_round(words_to_type, 10)
if not passed:
typer.player_Health(lives)
print(lives)
print("you have lives " + str(lives) + " left")
if lives == 0:
break
!code
try inlining using ```python
this is on a c64 emulator
for round in range(1, 4):
print("Round " + str(round))
words_to_type = typer.pick_random_words(round, "easy")
passed = typer.play_round(words_to_type, 10)
if not passed:
typer.player_Health(lives)
print(lives)
print("you have lives " + str(lives) + " left")
if lives == 0:
break`
def player_Health(lives_Left):
"""" Retruns health if typee failed - 1"""
lives_Left = lives_Left - 1
return lives_Left
!f-string
Creating a Python string with your variables using the + operator can be difficult to write and read. F-strings (format-strings) make it easy to insert values into a string. If you put an f in front of the first quote, you can then put Python expressions between curly braces in the string.
>>> snake = "pythons"
>>> number = 21
>>> f"There are {number * 2} {snake} on the plane."
"There are 42 pythons on the plane."
Note that even when you include an expression that isn't a string, like number * 2, Python will convert it to a string for you.
for round in range(1, 4):
print("Round " + str(round))
words_to_type = typer.pick_random_words(round, "easy")
passed = typer.play_round(words_to_type, 10)
if not passed:
lives = lives - 1
print("you have lives " + str(lives) + " left")
if lives == 0:
break
lives -= 1```Alternatively.
@wispy marsh Back for now but may need to disappear with little notice.
Hello π.
i was having trouble connecting to VC.
Yeah. π₯²
How's it going guys ?
Great. consistent pace is imp.
Slow and steady just like a TORTOISE.
@quasi blade π
I THINK IT'S CORRECT NOW.
i'm sorry i am in a call with andrew screen sharing
π
Their attack damage and speed is Deadly.
I'm waiting on a call, now, which suuuuucks.
Yeah.
Will they call? When will they call if they do? Will I be caught tangled in my own pants around my head? Who knows?
@white roost π
class MyClass:
pass```
!e ```py
class MyClass:
pass
foo = MyClass()
bar = MyClass()
print(MyClass)
print(foo)
print(bar)```
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | <class '__main__.MyClass'>
002 | <__main__.MyClass object at 0x7fa2538086e0>
003 | <__main__.MyClass object at 0x7fa253800690>
!e ```py
class MyClass:
def foo(self):
print("Hello, world.")
bar = MyClass()
bar.foo()```
:white_check_mark: Your 3.14 eval job has completed with return code 0.
Hello, world.
hello
@hearty haven π
!e ```py
class MyClass:
def foo(self):
print("Hello, world.")
bar = MyClass()
print(MyClass.foo)
print(bar.foo)```
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | <function MyClass.foo at 0x7f321cc6efb0>
002 | <bound method MyClass.foo of <__main__.MyClass object at 0x7f321cc606e0>>
what's the diffrence between a function an a method
so def gives functions?
or methods
i think i get it. So its both but mostly functions
i'm going to leave because i got stuff to do rn
bye
have a good day
!e py foo = [] bar = [] baz = foo print(foo == bar) print(foo is bar) print(foo is baz)
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | True
002 | False
003 | True
@somber heath π
!e ```py
class MyClass:
def get_self(self):
return self
foo = MyClass()
bar = MyClass()
print(foo.get_self() is foo)
print(bar.get_self() is foo)```
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | True
002 | False
@gaunt cipher π
this?
!e py text = "Hello, world." foo = text.upper() bar = str.upper(text) print(foo) print(bar)
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | HELLO, WORLD.
002 | HELLO, WORLD.
@bitter narwhal π
!e ```py
class Foo:
def init(self):
print("Hello, world.")
Foo()```
:white_check_mark: Your 3.14 eval job has completed with return code 0.
Hello, world.
!e ```py
class Foo:
def bar(self, value):
print(value)
foo = Foo()
foo.bar("baz")```
:white_check_mark: Your 3.14 eval job has completed with return code 0.
baz
!e ```py
class Foo:
def init(self, value):
print(value)
Foo("baz")```
:white_check_mark: Your 3.14 eval job has completed with return code 0.
baz
!e ```py
class Foo:
def bar(self, value):
print(value)
Foo().bar("baz")```
:white_check_mark: Your 3.14 eval job has completed with return code 0.
baz
!e ```py
class Foo:
def init(self):
self.value = 0
def increment(self):
self.value += 1
foo = Foo()
print(foo.value)
foo.increment()
print(foo.value)
foo.increment()
print(foo.value)```
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | 0
002 | 1
003 | 2
What are guys working on
!e ```py
class Person:
def init(self, name, age):
self.name = name
self.age = age
def greet(self):
print(f"Hello. My name is {self.name} and I am {self.age} years old.")
sally = Person("Sally", 20)
peter = Person("Peter", 17)
peter.greet()
sally.greet()```
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | Hello. My name is Peter and I am 17 years old.
002 | Hello. My name is Sally and I am 20 years old.
I recently learned that if you put β¦ in the Params it enforces named arguments after it or sum like that
You might be thinking of * and /
Oh right I think I was using some package for testing
I guess when youβre building something and you donβt find the package then you found it and you can either extend a package and contribute or build your own for py something where the packages are ?
enjoy sir @somber heath
@soft axle
its a lil hard to trying to learn OOP in python cause I simply have no use cases for it
What cases do you have ?
none lol
Sorry Where ?
Hey @rigid vapor your writing some code ?
hi @wind raptor can i pls have share screen perm?
Sorry was afk but yes
Coool, some personal project ?
!begineer
Here are the top free resources we recommend for people who are new to programming:
- Automate the Boring Stuff β an online book (also available to purchase as a physical book)
- Harvardβs CS50P course β video lectures (slides and notes provided) with exercises
- Python Programming MOOC 2026 course β text-based lessons with exercises
- Corey Schafer's YouTube playlist
For a full, curated list of educational resources we recommend, please see our resources page!
hello @cerulean roost
hey
i need to add more
i'm kind of new
well not new
i've been though quite a bit to make it work
@cerulean roost
tryed gh pages and hated it
so i use cloudflare pages
hello @heady widget
Hello
Coool
ooh graphene os
Yeah XD
if i had a pixel i would use graphene
i just don't use online banking
graphene is a hardend android rom
Once I heard about that OS, I could not wait but to buy the phone
i just use normal android
and linux mint
apple uses swift @candid spire @cerulean roost
for app dev
rn i'm learning python
then might try java
look in dms
hey @woven flume
@candid spire i have a question for you
Yes
barclays is good
i like them
i use them for a reason
england
yes
a popular uk bank @candid spire
i know a lot of ppl who use it
like blik in poland
hi
yes
no
i have a polish friend
i was born in the uk
i am a full citizen
i'm white british
i'm not from any other country
just the uk
anyway i'm going to call with a friend
have a good afternoon
good to meet @tidal wedge !
Yes
What languages do you guys know other than python?
https://www.freecodecamp.org/learn/python-v9/
@cerulean roost
@wind raptor Could you join the call?
Kai Nakamura likes to share the scree for python learning
@inner hill
Hello
hey @heady widget we're discusion and learning from : https://docs.python.org/3.14/reference/index.html
I see
@fiery shore where learning together https://docs.python.org/3.14/reference/lexical_analysis.html#
b"GIF89a\x01\x00\x01\x00\x80\x00\x00"
velocity = 299_792_458
velocity = 299792458
my head is about to explode
If you know about compilation, then it would explode
do you want to learn it?
I donno shit
pull your self together
I am complete begineer
started few days ago
and i donno what the heck are you guys talking
it sounds like you are gonna create some rocket or something
nah
not right now
like kaboom
I have seen tutorials but this one looks weird to me
i dont see basic programming terms
It is detailed documentation on python!!
that's what i was searching for
oh lord
that's why it looks like a old forgotten script of an ancient language to me.
brb back
@rough tapir where learning together: https://docs.python.org/3/tutorial/index.html
print("Hello")
@gaunt cipher https://docs.python.org/3/tutorial/interpreter.html
hi
we're reading and discussing together: https://docs.python.org/3/tutorial/interpreter.html
@rich plume @jade mountain https://docs.python.org/3/tutorial/interpreter.html
i know instagram bulgaria it on war with malta
IS discord in russia @raw obsidian
Good for you, ig?
banned
yes it's banned
but we use VPN or DPI disabler
Report him to Putin
cool joke)
i'm math professor assistant in my university
i use python for calculus and for graphs
cool
but my main language is C++, my main job is parallel calculus
sometimes i use fortran
how did picked these languages
does your line of work demands it
are you to old to fortan
sureee
For example I use Fortran for seismic calculus
Because I've worked for oil company in RND
And my professors taught us C++,Fortran and Python (Matplotlib,SciPy)
Good
First of all I'm mathematician, not a coder
rules in python , c++ and fortan are different
which language you prefer the most
But salaries in IT much bigger than in RND and math jobs (in Russia)
C++, but this language has a lot of problems
Hackers in russia gets paid better , i heard somewhere
and also the govt supports them
Evil Crop
Hahaha , but my family is scientists in oncology , my mindset only about helping people
I too prefer C/C++. The biggest problem with C++ is that it has too many language features.
Yes I I thought about changing my lang to Rust , but Rust doesn't have calculus libs
I have to go @candid spire @cerulean roost
Nah ... C++ is much better for scientific purpose as it's more mature and has more libraries than rust.
For example my salary as parallel calculus programmer is 400$ , but typical py dev earns 2600$... I think that's bad
Yeah, it's true
Hi
Politics is shit, mate. I think we must invest into science not war and etc.
Yeah..... Same in my field too. I'm FPGA developer and FPGAs are more difficult to program. And there are only 70,000 dedicated FPGA developers in the world but FPGA developers are not paid enough.
We should explore space and start colonize planets
Oh , my BF working in this sphere his salary is 4800$ per month include taxes
Really? That's good to hear
Yeah he works for oil company
Then my assumption was somewhat off and extrapolated from a very small dataset.
https://en.wikipedia.org/wiki/Cleisthenes
@cerulean roost
Cleisthenes ( KLYS-thin-eez; Greek: ΞλΡιΟΞΈΞΞ½Ξ·Ο), or Clisthenes (c.β570 β c.β508 BC), was an ancient Athenian lawgiver credited with reforming the constitution of ancient Athens and setting it on a democratic footing in 508 BC. For these accomplishments, historians refer to him as "the father of Athenian democracy". He was a membe...
He is the one who proposed the idea of democracy
and he mentioned democracy by nature is oligarchy
Itβs a main person in oil and industry companies, because without them you canβt run a production.
I can give you good soviet books about electronics, but I think that you canβt understand Russian
Maybe this can sound like a joke , but salaries in Russian Space Company for Fortran satellites programmer is 1300$(
Can you explain how you use calculus for seismic analysis? Like 3d seismic tomography, or earthquake prediction, etc
For determining fracture axes from multi-azimuth seismic P-wave AVO data
Is it industry backed or purely academic?
Itβs about industry , not a pure science
You can find my articles at google academy , if you want to read my works.
But now Iβm 40 old depressed man
I miss being in voice chat
@candid spire what do you think about your country education system ?
Sure. Please, tell me the title of your paper.
Education is free upto 14 yo in India, anything beyond that you are on your own
We have a lot of students from your country, honestly I can say that they are good students)
University level education in India is not free. But it is sufficiently cheap and affordable.
Cost for bachelor or master - Russia > India
Job - Russia > India
Thanks
USD 250K to 1million USD in India
Iβm from Russia )
For private medical school
We have smaller pieces
without scholarship
Like 5k$ per year
Real cheap
We are learning Indian students in English because we donβt know Hindi
In India amount would be 50K USD minimum for Bachelor in Medical School without schloraship
Why itβs so expensiveβ¦.
Iβve studied for free in university
And schools are free , Iβve studied in Physics and Mathematics Lyceum of my city
Medical studies are quite more expensive than engineering studies. When I first read the cost, I thought you meant INR and not USD. But then I read further that it's for medical studies, ah that's why.
ROI - Return on investment is high on this major.
Status - Doctor is high status
Hard to get in Medical college in India, acceptance rate is around 5 to 0.1%
Costly as government can't provide free education for all.
Corruption and business, many college makes good money from each student
in INR it's around 70 million to 8 crore
But due to politics our education system have downgraded if we gonna compare to soviet system
which is 250K to 1 million usd
It's much better than India!!
What do you think about studying in Russia ?
I'm not interested to be in Russia and I'm software guy not medical guy.
but overall your education is much better than India
For medical science it costs similar but quality is much higher in Russia.
as you care about student and field of study
in India education is business and based on your income you get to choose the quality
Iβm math professor assistant in technical university, you can also study in our technical universities
We have English programs too)
Tbh, when it comes to technical uni, fortunately my uni was quite affordable
It cost me 900 USD for my major
In Tech it's much better than Russia
I mean competition is high but chance of landing job in India is higher than in Russia for tech
Nah in software dev comps we have nice salaries, but in science we are poor
Bcs all money now in dev companies like Yandex or Sber , not in math or RND.
It's not about salaries, it's about scale. Indian in India can scale much faster in IT but in Russia scale is less as it
math is money, as cs is math heavy
Yeah but in Russia ordinary JSON enjoyer gets much more than scientist
Yeah they do, but it's all about demand and supply
maybe supply of scientist is more in russia than demand
And also in CV and ML we have good salaries. But my main job is quant calculus, but big companies not interested in this way.
Right now they are not but in future they can be, IT is unpredictable
calculus is used in webgl
you are not useless man
you are using your skills in wrong way
learn gaming or webgl
you will top the chart for job
This industry unpredictable like a capitalism )
and if not maybe something else
Yeah
that's the beauty of it
change
socialism is stuck can't adapt to change
either way
math is demanding role in my country
Socialism gives you life with no alarms and no surprises
Yep but you can't be socialist, if you are not captialist
I mean communism is redistribution of wealth and captialism is creation of wealth
without wealth, there would be no wealth redistribution
I want a life with no alarms and no surprises, because Iβm too old , 41 years old
I do recall my grandfather, he mentioned that those who desire no change are dead
I think he understood this in hard way
as he had no job and india was socialist and ruled by one political party for long period
I have nothing against either socialism or capitalism. I think both are great in their respective places.
I think none of these are great
Now you have a Gandi daughter as a president?
India was socialist in the past but has somewhat transitioned into a capitalist economy.
Not really
India hasn't transitioned
Indria Gandhi
Yeah , itβs true , I forgot about it
does anyone now a coding project
@raw obsidian can I send you a friend request?
Iβm trying to learn ML
Why not ? Itβs a free option?
Same here bro same here
Thanks
@raw obsidian can you please check the dm?
gtg
Alright bye
@raw obsidian It's was pleasure talking to you
bye
π€£
Thanks , bye )
Why not
I think I might have to leave too. Thanks @raw obsidian . It was great talking to you. Keep contributing to the field of science.
Hello @somber heath
I'm currently working on focusing on a specific field in tech ...what would be your best advice on the best options currently @somber heath
im the master at convincing ai women to be flirtatious
It won't work
@latent jay yo
@gleaming parcel hey i dm'ed you we should talk about ai or something :D
very funny guide
I was given so that we dont pass out when on parade
@somber heath
not sure if thats meant in a sarcastic/dismissing/avoiding/or mean way but ok
Dismissive.
You've been pestering me with questions, demanding my attention, I'm clearly getting annoyed and you've sent me this as a non sequitur.
i want to chat
excuse me
@silver rose π
do ino ball?
avg python coder
LOOOOL
ive been up to some 6502 assembly and i accidentally wrote a program that exploded the assembler and created a malformed file
and the file makes your terminal puke when deleting it
guess which version is the dangerous one
one of them works and doesnt explode, the other explodes
@somber heath im a bit of a fan of the older dr who intros because they use cool practical effects to make the intro
@somber heath atleast its not an ex-parrot
@somber heath ive been theming my c64 environment using assembly what do you think of the theme i settled on
why are you doing this? @livid niche
oh bad habit
loool
i do it a lot because i have no mic
do you want me to send you one?
i dont want my address floating about in the ether
i dont know why but writing to 828 causes problems, someone else made the same mistake and this happened to their terminal when they ran the binary
they used a cross compiler so they managed to get a binary
@kind wigeon π
Hello , Opal
@somber heath , what text editor do you use for coding ??
π @somber heath
IDLE. My needs are not extravagant.
neovim?
resonable
nah
pycharm
for win.
What IDE you use ?
Yup.
i use conda too.
spyder it has ig
sorry read what ?
Nope. I'm beginner but ik things.
Official Docs.
ik, what you are talking bout
months ig.
i learned C and C++ then switched to python
Yeah.
Mostly for frontend ig. Flutter
it's good for cross platform dev.
sry, my mic's not working well.
Oh, you're in UK.
Great. My friends went for masters there.
Yup.
Encoding
Text-format ig
Which python is it?
I suppose different OS has different Encoding methods. So the interpreter works accordingly.?
And people also create their own OS.
Yeah ,ig.
oh. That makes more sense.
it's like a preprocessor directives ig.
Bash Scripting use it too.
#!/usr/bin/env python3
That is the whole point of an interpreter ig.
i think it is the same.
ellipsis
Are you a beginner ?
Is '_' the last assigned value by default ?
This is interesting.
Sounds simple.
C++ for calculus.
discrete math.
Where do you use calculus with C++ IRL ?
Realtime coapability.
it's fast too.
Like me.
20k pounds is too much.
some people work a whole year hard to get that
Oligarchs yeah
That's annual salary of a good computer engineer lol.
stressing out all year lol
hey any advice or recomondation on youtube to faster learning of python ?
I will ask them
yes correct
!beginner
Here are the top free resources we recommend for people who are new to programming:
- Automate the Boring Stuff β an online book (also available to purchase as a physical book)
- Harvardβs CS50P course β video lectures (slides and notes provided) with exercises
- Python Programming MOOC 2026 course β text-based lessons with exercises
- Corey Schafer's YouTube playlist
For a full, curated list of educational resources we recommend, please see our resources page!
do you have been in GEORGIA?
@raw obsidian what do you think about 3Blue1Brown ?
I don't know math at all, so would you recommend that I learn math first so that it's suitable for all programming languages ββfor beginners?
My name is Grant Sanderson. Videos here cover a variety of topics in math, or adjacent fields like physics and CS, all with an emphasis on visualizing the core ideas. The goal is to use animation to help elucidate and motivate otherwise tricky topics, and for difficult problems to be made simple with changes in perspective.
For more information...
I am familiar with some calculus and maths.
u said once yo teach some students about how python works and talking about making some graphics . what is biggest challeng of your side
Not much here where i live.
do you reccomend your students to use AI and solve they problems?
inefficient.
true ai make you lose abilty to hard focus
What about "Ai will not replace you Person using Ai will"
i agree
In my opinion, it should still be used, but itβs important to maintain a golden balance. Todayβs world is evolving, and sooner or later everyone will use it. The right decision would be to start teaching people from today how to use it properly, and not only that, but also to teach them how to create their own AI.
I mean a single Person can do 3-4 people s job using Ai ,why will someone hire me who does things traditionaly
@raw obsidian Oh no, not me. I never lost control.
I think we should adopt Ai for own benefit as I always use it ,but only for boring tasks not cognitive one ,like I created a Large JSON for plants data instead of manually creating 200 different plant s JSON data
Do you think Ai is Bubble ? I don't think so
I have watch the MIT Global AI hackathon. And the winner is Code Li. The application that he propose was the Rehab AI.
Yeah I also saw that ,it s just ml image recognition for Physical therapy right ?
For correct yoga/exercise poses /form
Rehab AI is an AI-powered telerehabilitation app designed to monitor, classify, and score physical therapy exercises for remote patients. Created by student developer Cody Li, the project won the Youth Individual Category in the MIT Global AI Hackathon.
you can watch it on youtube
?
Whats your opinion about AI bro
Is it that it's is consuming more energy for the DataCenters to operate then it is giving back to the society
@somber heath Need Expert Opinion here
They are using GPUs ,RAMs and increasing price
Hi bro
My feelings on the matter involve more than I'm willing to type.
For some 12 year olds to create a Website Templates using High end models
That's interesting
So your'e saying you're from russia and hav'nt played Counter Strike.
Undeafen and I'll happily get into it.
Arma yeah
Okay let me
Is it cold there ?
28Β° not so hot for me π
Government goona use image recognition more for Monitoring Civilian rather than curing cancer
Dead Internet Theory is real but not happening for next 30-40 years
Custome and Handmade things are goona be luxury in the near future
Main problem is that bandits are using face recognition systems to stalk people by giving money to goverment workers
Thats the reason ,all things will be made by bots and ai
@somber heath ai also needs way more regularion to slow it down
And cheap
Also data centers dont employ a lot of people
@rain viper
we're doomed by the time these poeple reach conciousness with these machines.
It s goona Sound funny but I saw a prediction video where in the end All The humans job is to run on Treadmill and Generate electricity for the Ai data-centers
0 privacy
China goona be first
I mean there are many ways to acces banned things but yeah most of the kids won't take that much effort to get into that ,so yeah
Hahaha that π€£ funny
And animals being there allies ?
have we reached the peak of Application s and Systems ,like all the usability and accessibility parts ,now only Privacy, Optimization is remaining ,is that true ?
No all the animals are extinct and We only have Robot dog and other robot animals
@summer sage π
i think that's why china got their own OS and Hardware. and restrictions on Apps.
No they just want to control Civilian and gather data of their people
Japan is doing the same now.
Having services from other countries makes the government less powerful in controlling/accessing the peopls digital footprint as they need explicit permission form that digital organisation to get civilan data
@candid spire π
Yeah one person had intercepted International Space Station Signals ,So your independent communication ain't safe
π this funny
@vast oyster π
@raw obsidian is it true Ramanujan's mock Theta function and modular forms are being studied to understand working of blackhole ?
Where do you get this news from
yeah its true
@minor perch π
Movie.
Oh ,which one I am curious
"The man who knew infinity"
I thought 175 cm was 5'8
@somber heath U know about assange ?
What about him?
Why everyday Conversation goes to wars ?
Why they took the site down ?
Because they didn't like it and they can?
(1 Sep 2003) USA: PRESIDENT CLINTON AND BORIS YELTSIN PRESS CONFERENCE - LAUGH ATTACK
Find out more about AP Archive: http://www.aparchive.com/HowWeWork
Twitter: https://twitter.com/AP_Archive
Facebook: https://www.facebook.com/APArchives ββ
Instagram: https://www.instagram.com/APNews/
#President #Clinton #BorisYeltsin #laugh
Y...
(i created a c++ script that creates any image into headpats)
T_T
nah python is not my style
tbh
@gritty kestrel π
oh yep competitive prgramming @raw obsidian ?
yes
nubnubnubnubnub
i havent written c++ outside work for a long time
its our russian thing , we love it
lmao
python has been much faster for me to get results
eh im japanese
i mean we love it
oh yep
