#voice-chat-text-0

1 messages Β· Page 581 of 1

worldly sand
#

I js wanted to show my script

somber heath
#

I gave you the opportunity to stop asking about this. πŸ™‚

paper wolf
#

Welp, you're going to banned anyways

worldly sand
#

Nga

#

Son of a bitch

paper wolf
somber heath
#

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.

paper wolf
#

Mods are slow today...

worldly sand
#

On other acc

paper wolf
worldly sand
paper wolf
#

VPN β‰  safe

worldly sand
#

Il change wifi

#

Ip

#

Von

#

I done these things before

paper wolf
#

No you dont

worldly sand
#

Ive been banned 4x before here

#

😭

paper wolf
#

Okay....

worldly sand
#

Ragebaiter

rough tapir
#

@somber heath @paper wolf If you'd to start python again how'd you do that ?

paper wolf
#

We can leave this discussion to the mods

#

Kindly refrain from interacting with the person

rough tapir
#

As a beginner. From zero.

paper wolf
#

Uhhh... Start coding???

rough tapir
#

Yeah.

paper wolf
#

Idk... The way I start is just

#

Start making projects

wise cargoBOT
#
Go-to beginner resources

Here are the top free resources we recommend for people who are new to programming:

For a full, curated list of educational resources we recommend, please see our resources page!

paper wolf
#

Corey Schafer help me understanding the language it's self

#

And most of the libraries

rough tapir
#

I see.

#

:=

#

You can lower down sensitivity.

#

Nope.

#

High pitched.

#

He's Chemical resistant.

#

XD

#

@unreal berry Chaina

unreal berry
paper wolf
#

chaina???

#

whats that..

#

its like a tea or some sort?

#

oh u meant china

rough tapir
#

He's putting a Tariff on china.

unreal berry
#

To save America

paper wolf
#

lol

#

no, that'll make america go down lol

rough tapir
#

Too much CS @unreal berry

unreal berry
rough tapir
#

i bet @unreal berry got plenty of keyboards.

paper wolf
#

USA rely on foreign brains and arms

unreal berry
#

Yeehaw

paper wolf
#

._. lol

craggy vale
#

Hello

#

remember me

#

πŸ™

#

nice

rough tapir
#

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 πŸ‘‹

rough tapir
#

Gold Dome.

tiny ingot
#

@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

rough tapir
#

What if you do our_iterable = filled_dict.values() ?

tiny ingot
#

!e

filled_dict = {"one":1, "two":2}

our_iterable = filled_dict.values()
our_iterable[1]
wise cargoBOT
tiny ingot
#

iterables = objects which can return an item one by one

#

yield?

rough tapir
#

!e

filled_dict = {"one":1, "two":2}
our_iterable = list(filled_dict.values())
print(out_iterable)
somber heath
#

!e ```py
class Foo:
def iter(self):
yield 1
yield 2
yield from (3, 4, 5)

foo = Foo()
for each in foo:
print(each)```

wise cargoBOT
rough tapir
#

!e

filled_dict = {"one":1, "two":2}
our_iterable = list(filled_dict.values())
print(our_iterable)
somber heath
#

@near blade @tranquil minnow πŸ‘‹

rough tapir
#

!e

filled_dict = {"one":1, "two":2}
our_iterable = list(filled_dict.values())
print(our_iterable)
wise cargoBOT
rough tapir
#

Finally.

near blade
#

Y i can't talk

somber heath
near blade
#

It failed

tidal wedge
#

hello

somber heath
#

!e ```py
def foo():
yield 1
yield 2
yield from (3, 4, 5)

f = foo()
print(f)
for each in f:
print(each)```

wise cargoBOT
candid spire
tidal wedge
candid spire
tidal wedge
#

opal already told me

tidal wedge
#

is that sarcasam

tiny ingot
#

what's yield? a keyword?

candid spire
tidal wedge
candid spire
candid spire
#

I mean yield 1 is object

tidal wedge
candid spire
tiny ingot
#

foo has yield, calling it returns a generator object instead of executing the code immediately.

#

generator object = iterable ?

#

my bad

rough tapir
#

πŸ‘‹ bye bye guys. Gtg.

tidal wedge
candid spire
#

Yield returns the value?

#

So how can we use return within it?

somber heath
#

@lone quest πŸ‘‹

somber heath
#

!e print(dir(list))

wise cargoBOT
# somber heath !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']
tidal wedge
#

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

somber heath
#

@upper gate πŸ‘‹

tidal wedge
#

its the GCD

upper gate
somber heath
#

!d math

wise cargoBOT
#

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.

tidal wedge
#

i do have a text book next to me

#

for python

#

!d math.dist

wise cargoBOT
#

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...
tidal wedge
#

its the img i sent

tidal wedge
#

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

tiny ingot
#

i'll get smth to eat. brb

tidal wedge
tiny ingot
#

!e

def show_user(**kwargs):
    for key, value in kwargs.items():
        print(key, "=", value)

show_user(name="mo", age=67)
wise cargoBOT
tiny ingot
#

!e

def demo(*args, **kwargs):
    print(args)
    print(kwargs)

demo(1, 2, 3, name="mo", age=67)
wise cargoBOT
gentle flint
rough tapir
#

@gentle flint Hello πŸ‘‹

gentle flint
#

hi

rough tapir
#

i can't speak for now.

#

but i'll surely fix it.

craggy vale
#

πŸ’€

#

what's up

#

me doing great wbu @somber heath

candid spire
#

Hi

craggy vale
#

nice

rough tapir
#

You sound like a narrator of some movie. @somber heath

craggy vale
#

me right now

rough tapir
#

Metal Gear ?

#

@somber heath Do you know dangerous dave ?

somber heath
rough tapir
#

Oh.

#

Reverse engineering

somber heath
#

@rain birch πŸ‘‹

rough tapir
#

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.

somber heath
#

@forest sage πŸ‘‹

rough tapir
#

Needs Therapy.

forest sage
forest sage
rough tapir
forest sage
#

but ididnot finish it yet

rough tapir
somber heath
#

@lean linden πŸ‘‹

#

@cerulean roost πŸ‘‹

obsidian dragon
#

@tiny ingot oh pull

tiny ingot
somber heath
#

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...

cerulean roost
#

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

somber heath
#

@peak goblet πŸ‘‹

cerulean roost
#

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

peak goblet
#

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

cerulean roost
#

army infusion

#

lol

#

the discipline's a good take away

cerulean roost
#

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

somber heath
#

@tender tusk πŸ‘‹

cerulean roost
#

def like starmer

#

lol

tender tusk
#

hi

somber heath
cerulean roost
#

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

tender tusk
#

idk how to verifiy mic

#

how to open it?

cerulean roost
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

cerulean roost
#

we would have a shared google docs?

#

lol

tender tusk
#

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

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

somber heath
#

@worn grotto πŸ‘‹

opaque sparrow
#

DUDE MY VSCODE HAS GONE CRAZY

#

I CANT SEE THE BUTTON FROM WHICH I RUN MY CODE 😭

pliant canopy
#

Hey everyone, is there any news on when opus 4.7 is coming to Google Antigravity

shut solstice
#

Hheyy

#

Guyyysssa

#

Ssalamalaikkum

stray pewter
#

<@&831776746206265384>

somber heath
#

@dusky oreπŸ‘‹

dusky ore
#

hello

somber heath
dusky ore
#

thx

somber heath
#

@fickle magnet πŸ‘‹

somber heath
#

@opaque raft

#

!beginner

wise cargoBOT
#
Go-to beginner resources

Here are the top free resources we recommend for people who are new to programming:

For a full, curated list of educational resources we recommend, please see our resources page!

paper wolf
#

Why is this still here...

somber heath
#

@sacred quiver πŸ‘‹

sacred quiver
#

hello

somber heath
sacred quiver
#

ahh its my first day

#

are u good at python

#

and if u are what did u use

#

no like videos,book

#

ahh

somber heath
#

!beginner

wise cargoBOT
#
Go-to beginner resources

Here are the top free resources we recommend for people who are new to programming:

For a full, curated list of educational resources we recommend, please see our resources page!

sacred quiver
#

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

somber heath
#

@raven canopy πŸ‘‹

raven canopy
#

Yeah... wassup

somber heath
raven canopy
#

I still can't speak

somber heath
#

@dire imp πŸ‘‹

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

oak silo
#

hol up no mic detected

#

oh well its broken

#

@somber heath take it easy opal

dire imp
#

lol what happend?

somber heath
#

@heady swift πŸ‘‹

dire imp
#

i have to go guys gb

heady swift
somber heath
# heady swift ?

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.

heady swift
#

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

magic falcon
#

hello anyone can please tell me how to learn create ai agent

somber heath
stray pewter
hollow haven
#

!compban 1027210701963526188

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied ban to @molten bluff until <t:1779125777:f> (4 days).

somber heath
#

@opal sable πŸ‘‹

#

@quasi yew πŸ‘‹

quasi yew
somber heath
#

@sacred walrus πŸ‘‹

sacred walrus
sacred walrus
sacred walrus
#

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()

somber heath
#

!code

wise cargoBOT
#
Formatting code on Discord

Here's how to format Python code on Discord:

```py
print('Hello world!')
```

These are backticks, not quotes. Check this out if you can't find the backtick key.

For long code samples, you can use our pastebin.

sacred walrus
somber heath
#
print("Hello, world.")
print("Goodbye.")```
#
class Foo:
    def __init__(self):
        pass```
#

@marble shoal πŸ‘‹

sacred walrus
somber heath
livid niche
#

apparently germans were lisp heads, im playing around with their eliza program they wrote for c64

wispy marsh
#

def player_Health(lives_Left):
"""" Retruns health if typee failed - 1"""
lives_Left = lives_Left - 1
return lives_Left

livid niche
#

they have a tower of hanoi program too

wispy marsh
#

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
somber heath
#

!code

wise cargoBOT
#
Formatting code on Discord

Here's how to format Python code on Discord:

```py
print('Hello world!')
```

These are backticks, not quotes. Check this out if you can't find the backtick key.

For long code samples, you can use our pastebin.

livid niche
#

this is on a c64 emulator

wispy marsh
#
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
somber heath
#

!f-string

wise cargoBOT
#
Format-strings

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.

wispy marsh
#
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
somber heath
#
lives -= 1```Alternatively.
#

@wispy marsh Back for now but may need to disappear with little notice.

rough tapir
#

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.

somber heath
#

@quasi blade πŸ‘‹

rough tapir
#

I THINK IT'S CORRECT NOW.

wispy marsh
#

πŸ‘

rough tapir
#

Their attack damage and speed is Deadly.

somber heath
rough tapir
#

Yeah.

somber heath
#

Will they call? When will they call if they do? Will I be caught tangled in my own pants around my head? Who knows?

rough tapir
#

What you do zergut ?

#

Had coffee, trying to wake up.

#

byebye πŸ‘‹

somber heath
#

@white roost πŸ‘‹

somber heath
#
class MyClass:
    pass```
#

!e ```py
class MyClass:
pass

foo = MyClass()
bar = MyClass()

print(MyClass)
print(foo)
print(bar)```

wise cargoBOT
somber heath
#

!e ```py
class MyClass:
def foo(self):
print("Hello, world.")

bar = MyClass()
bar.foo()```

wise cargoBOT
tidal wedge
#

hello

somber heath
#

@hearty haven πŸ‘‹

#

!e ```py
class MyClass:
def foo(self):
print("Hello, world.")

bar = MyClass()
print(MyClass.foo)
print(bar.foo)```

wise cargoBOT
tidal wedge
#

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

somber heath
#

!e py foo = [] bar = [] baz = foo print(foo == bar) print(foo is bar) print(foo is baz)

wise cargoBOT
tiny ingot
#

@somber heath πŸ‘‹

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)```

wise cargoBOT
somber heath
#

@gaunt cipher πŸ‘‹

tiny ingot
#

any suggestions?

#

@candid spire @somber heath idk much about monitors. need a sugg.

somber heath
#

!e py text = "Hello, world." foo = text.upper() bar = str.upper(text) print(foo) print(bar)

wise cargoBOT
somber heath
#

@bitter narwhal πŸ‘‹

#

!e ```py
class Foo:
def init(self):
print("Hello, world.")

Foo()```

wise cargoBOT
somber heath
#

!e ```py
class Foo:
def bar(self, value):
print(value)

foo = Foo()
foo.bar("baz")```

wise cargoBOT
somber heath
#

!e ```py
class Foo:
def init(self, value):
print(value)

Foo("baz")```

wise cargoBOT
somber heath
#

!e ```py
class Foo:
def bar(self, value):
print(value)

Foo().bar("baz")```

wise cargoBOT
somber heath
#

!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)```

wise cargoBOT
cerulean roost
#

What are guys working on

somber heath
#

!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()```

wise cargoBOT
cerulean roost
#

I recently learned that if you put … in the Params it enforces named arguments after it or sum like that

somber heath
#

You might be thinking of * and /

cerulean roost
#

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
soft axle
#

none lol

cerulean roost
#

Hey @rigid vapor your writing some code ?

#

hi @wind raptor can i pls have share screen perm?

rigid vapor
cerulean roost
grizzled pecan
#

!begineer

wise cargoBOT
#
Go-to beginner resources

Here are the top free resources we recommend for people who are new to programming:

For a full, curated list of educational resources we recommend, please see our resources page!

tidal wedge
#

hello @cerulean roost

cerulean roost
tidal wedge
#

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

heady widget
#

Hello

cerulean roost
tidal wedge
#

i just got home

heady widget
#

Haha

#

Don't worry

tidal wedge
heady widget
tidal wedge
#

if i had a pixel i would use graphene

#

i just don't use online banking

#

graphene is a hardend android rom

heady widget
tidal wedge
#

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

heady widget
#

Someone teach me python

#

Idk python, I learned a bit in school though

tidal wedge
cerulean roost
#

hey @woven flume

tidal wedge
#

@candid spire i have a question for you

tidal wedge
#

k

tidal wedge
#

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

woven flume
tidal wedge
#

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

cerulean roost
#

good to meet @tidal wedge !

grizzled pecan
#

@candid spire yaa

#

I can't talk I got supressed

grizzled pecan
#

I am freshman

#

In Electrical engineering

#

@candid spire Indian??

candid spire
cerulean roost
heady widget
#

What languages do you guys know other than python?

inner hill
candid spire
#

@wind raptor Could you join the call?

#

Kai Nakamura likes to share the scree for python learning

candid spire
heady widget
#

Hello

cerulean roost
cerulean roost
cerulean roost
inner hill
#

@cerulean roost

cerulean roost
#

b"GIF89a\x01\x00\x01\x00\x80\x00\x00"

#

velocity = 299_792_458

#

velocity = 299792458

fiery shore
#

my head is about to explode

candid spire
#

do you want to learn it?

fiery shore
#

I donno shit

cerulean roost
fiery shore
#

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

candid spire
fiery shore
#

I have seen tutorials but this one looks weird to me

#

i dont see basic programming terms

candid spire
fiery shore
#

oh ok

#

lol

#

waaaaddddaaaaafaaaak

candid spire
fiery shore
#

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.

candid spire
#

brb back

cerulean roost
#

@rough tapir where learning together: https://docs.python.org/3/tutorial/index.html

Python documentation

Python is an easy to learn, powerful programming language. It has efficient high-level data structures and a simple but effective approach to object-oriented programming. Python’s elegant syntax an...

candid spire
#

print("Hello")

cerulean roost
jade mountain
#

hi

cerulean roost
jade mountain
#

i know instagram bulgaria it on war with malta

raw obsidian
#

hello

#

i'm russian too @rich plume

inner hill
#

IS discord in russia @raw obsidian

candid spire
inner hill
#

banned

raw obsidian
#

but we use VPN or DPI disabler

candid spire
raw obsidian
#

i'm math professor assistant in my university

#

i use python for calculus and for graphs

inner hill
#

cool

raw obsidian
#

but my main language is C++, my main job is parallel calculus

#

sometimes i use fortran

inner hill
#

how did picked these languages

does your line of work demands it

are you to old to fortan

cerulean roost
#

sureee

raw obsidian
#

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)

inner hill
#

Good

raw obsidian
#

First of all I'm mathematician, not a coder

inner hill
#

rules in python , c++ and fortan are different

which language you prefer the most

raw obsidian
#

But salaries in IT much bigger than in RND and math jobs (in Russia)

raw obsidian
inner hill
raw obsidian
chrome dawn
raw obsidian
inner hill
chrome dawn
raw obsidian
#

For example my salary as parallel calculus programmer is 400$ , but typical py dev earns 2600$... I think that's bad

weary plume
#

Hi

raw obsidian
# candid spire Tc

Politics is shit, mate. I think we must invest into science not war and etc.

chrome dawn
raw obsidian
#

We should explore space and start colonize planets

raw obsidian
chrome dawn
raw obsidian
chrome dawn
candid spire
#

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

raw obsidian
#

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$(

chrome dawn
raw obsidian
chrome dawn
raw obsidian
#

You can find my articles at google academy , if you want to read my works.

#

But now I’m 40 old depressed man

rugged root
#

I miss being in voice chat

raw obsidian
#

@candid spire what do you think about your country education system ?

chrome dawn
raw obsidian
#

Do you have free universities ?

#

Omg

#

I’m teaching 30 students from India )

candid spire
#

Education is free upto 14 yo in India, anything beyond that you are on your own

raw obsidian
#

We have a lot of students from your country, honestly I can say that they are good students)

chrome dawn
candid spire
raw obsidian
#

Lots of students studying in our medical schools

#

My father teaching them oncology

candid spire
raw obsidian
candid spire
#

For private medical school

raw obsidian
#

We have smaller pieces

candid spire
#

without scholarship

raw obsidian
#

Like 5k$ per year

candid spire
raw obsidian
#

We are learning Indian students in English because we don’t know Hindi

candid spire
#

In India amount would be 50K USD minimum for Bachelor in Medical School without schloraship

raw obsidian
#

I’ve studied for free in university

#

And schools are free , I’ve studied in Physics and Mathematics Lyceum of my city

chrome dawn
# candid spire USD 250K to 1million USD in India

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.

candid spire
# raw obsidian Why it’s so expensive….

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

candid spire
raw obsidian
#

But due to politics our education system have downgraded if we gonna compare to soviet system

candid spire
#

which is 250K to 1 million usd

candid spire
raw obsidian
#

What do you think about studying in Russia ?

candid spire
#

but overall your education is much better than India

chrome dawn
candid spire
#

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

raw obsidian
#

I’m math professor assistant in technical university, you can also study in our technical universities

#

We have English programs too)

candid spire
#

It cost me 900 USD for my major

raw obsidian
#

Nice price

#

But what about jobs in India ?

candid spire
#

I mean competition is high but chance of landing job in India is higher than in Russia for tech

raw obsidian
#

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.

candid spire
candid spire
raw obsidian
#

Yeah but in Russia ordinary JSON enjoyer gets much more than scientist

candid spire
#

maybe supply of scientist is more in russia than demand

raw obsidian
#

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.

candid spire
#

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

raw obsidian
candid spire
#

and if not maybe something else

candid spire
#

that's the beauty of it

#

change

#

socialism is stuck can't adapt to change

#

either way

#

math is demanding role in my country

raw obsidian
#

Socialism gives you life with no alarms and no surprises

candid spire
#

I mean communism is redistribution of wealth and captialism is creation of wealth

#

without wealth, there would be no wealth redistribution

raw obsidian
candid spire
#

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

chrome dawn
#

I have nothing against either socialism or capitalism. I think both are great in their respective places.

candid spire
raw obsidian
candid spire
#

wdym by gandhi?

chrome dawn
#

India was socialist in the past but has somewhat transitioned into a capitalist economy.

candid spire
#

India hasn't transitioned

raw obsidian
candid spire
#

dead in 1984

raw obsidian
#

Yeah , it’s true , I forgot about it

simple elk
#

does anyone now a coding project

chrome dawn
#

@raw obsidian can I send you a friend request?

raw obsidian
raw obsidian
grave dagger
chrome dawn
grave dagger
#

@raw obsidian can you please check the dm?

chrome dawn
candid spire
#

@raw obsidian It's was pleasure talking to you

candid spire
errant oar
#

🀣

raw obsidian
raw obsidian
chrome dawn
# raw obsidian Thanks , bye )

I think I might have to leave too. Thanks @raw obsidian . It was great talking to you. Keep contributing to the field of science.

somber heath
#

@elder barn πŸ‘‹

elder barn
#

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

oak silo
#

im the master at convincing ai women to be flirtatious

stray pewter
somber heath
#

@serene flare πŸ‘‹

serene flare
#

It won't work

stray pewter
oak silo
#

@latent jay yo

#

@gleaming parcel hey i dm'ed you we should talk about ai or something :D

stray pewter
#

very funny guide

#

I was given so that we dont pass out when on parade

#

@somber heath

stray pewter
somber heath
#

Dismissive.

somber heath
# stray pewter

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.

somber heath
#

@silver rose πŸ‘‹

vale pasture
#

do ino ball?

vale pasture
oak silo
#

LOOOOL

livid niche
#

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

oak silo
#

why are you doing this? @livid niche

livid niche
oak silo
#

loool

livid niche
#

i do it a lot because i have no mic

oak silo
#

do you want me to send you one?

livid niche
#

i dont want my address floating about in the ether

livid niche
#

they used a cross compiler so they managed to get a binary

amber sorrel
#

hi, how are these and im a total beginner

cerulean roost
rough tapir
#

Not a moderator.

#

Who are we talking about ?

#

TO enable SS.

somber heath
#

@kind wigeon πŸ‘‹

kind wigeon
#

Hello , Opal

rough tapir
#

Yeah the encoding.

#

too

#

nope

kind wigeon
#

@somber heath , what text editor do you use for coding ??

rough tapir
#

πŸ‘‹ @somber heath

somber heath
rough tapir
#

neovim?

kind wigeon
cerulean roost
rough tapir
#

nah

#

pycharm

#

for win.

#

What IDE you use ?

#

Yup.

#

i use conda too.

#

spyder it has ig

#

sorry read what ?

cerulean roost
rough tapir
#

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?

cerulean roost
#

-- coding: encoding --

rough tapir
#

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.

cerulean roost
#

#!/usr/bin/env python3

rough tapir
#

That is the whole point of an interpreter ig.

#

i think it is the same.

#

ellipsis

#

Are you a beginner ?

cerulean roost
rough tapir
#

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.

cerulean roost
#

some people work a whole year hard to get that

rough tapir
#

Oligarchs yeah

rough tapir
cerulean roost
#

stressing out all year lol

rough tapir
#

πŸ‘‹

#

XD

#

YEah

#

We are neighbours.

#

Nope, my friends are

lucid surge
#

hey any advice or recomondation on youtube to faster learning of python ?

rough tapir
#

I will ask them

lucid surge
#

yes correct

rough tapir
#

!beginner

wise cargoBOT
#
Go-to beginner resources

Here are the top free resources we recommend for people who are new to programming:

For a full, curated list of educational resources we recommend, please see our resources page!

faint cypress
#

do you have been in GEORGIA?

lucid surge
#

thanks gonna check cs50

#

ah okey

#

im using claude code

#

cli

rough tapir
#

@raw obsidian what do you think about 3Blue1Brown ?

faint cypress
#

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?

rough tapir
#
#

I am familiar with some calculus and maths.

faint cypress
#

u said once yo teach some students about how python works and talking about making some graphics . what is biggest challeng of your side

rough tapir
#

Not much here where i live.

faint cypress
#

do you reccomend your students to use AI and solve they problems?

rough tapir
#

inefficient.

lucid surge
#

true ai make you lose abilty to hard focus

thin river
#

What about "Ai will not replace you Person using Ai will"

lucid surge
#

i agree

faint cypress
#

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.

thin river
#

I mean a single Person can do 3-4 people s job using Ai ,why will someone hire me who does things traditionaly

somber heath
#

@raw obsidian Oh no, not me. I never lost control.

thin river
#

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

latent jay
#

I have watch the MIT Global AI hackathon. And the winner is Code Li. The application that he propose was the Rehab AI.

thin river
#

For correct yoga/exercise poses /form

latent jay
#

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

somber heath
#

@plain cedar @lucid surge πŸ‘‹

latent jay
#

gtg. I'm at the office and my working hour is over.

#

thanks

rain viper
thin river
#

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

rough tapir
#

Hello @rain viper

#

πŸ‘‹

thin river
#

They are using GPUs ,RAMs and increasing price

rain viper
somber heath
thin river
#

For some 12 year olds to create a Website Templates using High end models

rough tapir
#

So your'e saying you're from russia and hav'nt played Counter Strike.

somber heath
rough tapir
#

Arma yeah

rain viper
thin river
#

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

raw obsidian
#

Main problem is that bandits are using face recognition systems to stalk people by giving money to goverment workers

thin river
tidal wedge
#

@somber heath ai also needs way more regularion to slow it down

thin river
#

And cheap

tidal wedge
#

Also data centers dont employ a lot of people

rough tapir
#

we're doomed by the time these poeple reach conciousness with these machines.

thin river
#

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

rough tapir
#

0 privacy

thin river
#

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

rough tapir
thin river
#

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 ?

thin river
somber heath
#

@summer sage πŸ‘‹

rough tapir
#

i think that's why china got their own OS and Hardware. and restrictions on Apps.

thin river
rough tapir
#

Japan is doing the same now.

thin river
#

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

rain viper
#

@candid spire πŸ‘‹

thin river
#

Yeah one person had intercepted International Space Station Signals ,So your independent communication ain't safe

#

πŸ˜‚ this funny

somber heath
#

@vast oyster πŸ‘‹

rough tapir
#

@raw obsidian is it true Ramanujan's mock Theta function and modular forms are being studied to understand working of blackhole ?

thin river
somber heath
#

@minor perch πŸ‘‹

rough tapir
thin river
vast oyster
#

The smoke comment got me 😁

#

but yeah my friends who smoke did age faster than us

thin river
#

I mean all dev jobs are desk jobs

#

Expect you use stading desk

#

With a treadmill

rough tapir
thin river
#

I thought 175 cm was 5'8

rough tapir
#

@somber heath U know about assange ?

somber heath
#

What about him?

thin river
#

Why everyday Conversation goes to wars ?

rough tapir
#

Why they took the site down ?

somber heath
#

Because they didn't like it and they can?

solar light
#

@tidal wedge i use mint

vast oyster
#

I'm using Fedora rn

#

I'm in it for the "latest" KDE

solar light
#

bill clinton @vast oyster

tidal wedge
solar light
#

(i created a c++ script that creates any image into headpats)

#

T_T

#

nah python is not my style

#

tbh

somber heath
#

@gritty kestrel πŸ‘‹

gritty kestrel
#

πŸ‘‹

solar light
#

oh yep competitive prgramming @raw obsidian ?

raw obsidian
#

yes

solar light
#

coolio

#

i mainly code for that only

#

how old are you anyways

somber heath
vast oyster
raw obsidian
#

its our russian thing , we love it

vast oyster
#

python has been much faster for me to get results

solar light
raw obsidian
#

i mean we love it

solar light
#

oh yep

gritty kestrel
#

anyone know why cant i talk?

#

a little help might be useful

somber heath
gritty kestrel
#

oh ok, thanks

#

i heard yall

#

but it said im not active enough

#

ok

graceful gull
#

@raw obsidian

#

can i dm you about smth

vast oyster
#

system design might be a better topic to study over the long term

#

hello