#voice-chat-text-0

1 messages · Page 39 of 1

whole bear
#

!e ```py
from decimal import Decimal

ham = Decimal(1.0)
pork = Decimal(2.1)
print(pork + ham)

wise cargoBOT
#

@whole bear :white_check_mark: Your 3.11 eval job has completed with return code 0.

3.100000000000000088817841970
stray niche
#

can you help me find epub of this

#

for we are many? @lavish rover is that it

vocal basin
#

@rugged root are you sure print is calling __str__ and not __format__?
(I'm not 100% sure)

dusk raven
#

!e ```python
from decimal import Decimal

ham = Decimal("1.0")
pork = Decimal("2.1")
print(pork + ham)```

wise cargoBOT
#

@dusk raven :white_check_mark: Your 3.11 eval job has completed with return code 0.

3.1
whole bear
#

!e ```py
from decimal import Decimal

ham = Decimal(1.0)
pork = Decimal(2.1)
print(ham)
print(pork)
print(pork + ham)

wise cargoBOT
#

@whole bear :white_check_mark: Your 3.11 eval job has completed with return code 0.

001 | 1
002 | 2.100000000000000088817841970012523233890533447265625
003 | 3.100000000000000088817841970
stray niche
#

byee

vocal basin
stray niche
#

thank you @lavish rover & @rugged root

rugged root
#

Huh. I genuinely didn't realize there was a format() function

#

Only thought about the method

sweet lodge
#

Wait this isn't the Rust server....

vocal basin
#

!format

#

format is negated

dusk raven
#

@stray niche bye

sweet lodge
whole bear
#

asdflkjhvggasdf

#

I'm home from school

sweet lodge
#

It's dataclasses

whole bear
#

Yes sir

#

!d dataclasses

wise cargoBOT
#

Source code: Lib/dataclasses.py

This module provides a decorator and functions for automatically adding generated special methods such as __init__() and __repr__() to user-defined classes. It was originally described in PEP 557.

The member variables to use in these generated methods are defined using PEP 526 type annotations. For example, this code...

sweet lodge
#

The module name is plural

whole bear
#

Doggo

sweet lodge
whole bear
#

Bro tha dog is so cute

sweet lodge
#

return is a keyword
It's built in

whole bear
#

woof

sweet lodge
whole bear
#

Wait are u a dog lol

#

returns can only be used within a function

sweet lodge
vocal basin
wise cargoBOT
#

@vocal basin :white_check_mark: Your 3.11 eval job has completed with return code 0.

True
whole bear
#

The emoji in ur namd plus ur PFP

sweet lodge
whole bear
#

I bought likealot of books today

#

Of Jeffrey Dahmer

#

Bro what. The hell are trying to do

#

How to get permission

#

To talk

rugged root
#

Check out the #voice-verification channel. That'll tell you what you need to know about the voice gate system

whole bear
#

like that

sweet lodge
#

!eval

from dataclasses import dataclass

@dataclass
class Player:
  name: str

@dataclass
class Menu:
  player: Player

menu=Menu(Player("Steve"))
print(menu.player.name)
wise cargoBOT
#

@sweet lodge :white_check_mark: Your 3.11 eval job has completed with return code 0.

Steve
vocal basin
# whole bear

the target is Menu().name()===Menu().player.name or Menu().name===Menu().player.name?

vocal basin
chilly holly
#

Hello, I could need some help with a façade pattern prog I am making. is there anyone experienced that can have a look at my code? need help asap 😦

whole bear
#

im trying to make a menu class so i can make menus anywhere , inventory, main screen, shops

wise cargoBOT
#

Pasting large amounts of code

If your code is too long to fit in a codeblock in Discord, you can paste your code here:
https://paste.pythondiscord.com/

After pasting your code, save it by clicking the floppy disk icon in the top right, or by typing ctrl + S. After doing that, the URL should change. Copy the URL and post it here so others can see it.

vocal basin
vocal basin
#

Inventory and Pause menu are differents

#

Menu is the common functionality of both

whole bear
#

do i have to import abstract

vocal basin
rugged root
#
from abc import ABC
#

!d abc

wise cargoBOT
#
abc

Source code: Lib/abc.py

This module provides the infrastructure for defining abstract base classes (ABCs) in Python, as outlined in PEP 3119; see the PEP for why this was added to Python. (See also PEP 3141 and the numbers module regarding a type hierarchy for numbers based on ABCs.)

The collections module has some concrete classes that derive from ABCs; these can, of course, be further derived. In addition, the collections.abc submodule has some ABCs that can be used to test whether a class or instance provides a particular interface, for example, if it is hashable or if it is a mapping.

This module provides the metaclass ABCMeta for defining ABCs and a helper class ABC to alternatively define ABCs through inheritance:

chilly holly
vocal basin
#

maybe not the, but a

chilly holly
#

so all anotations goes with : ?

vocal basin
vocal basin
rugged root
#
class C(ABC):
    @abstractmethod
    def my_abstract_method(self, arg1):
        ...
    @classmethod
    @abstractmethod
    def my_abstract_classmethod(cls, arg2):
        ...

chilly holly
chilly holly
vocal basin
whole bear
chilly holly
vocal basin
chilly holly
vocal basin
#

you didn't give the customer to it

chilly holly
#

thats my prob

#

how do i pass that variable to the clas

vocal basin
#

__init__

vocal basin
chilly holly
#

That works

#

but i need to use a design pattern and i chose facade

whole bear
#

so if i was making a menu class i would make it abstract then make like a inventory class to then take in then menu class

frail star
#

is anyone need help?

chilly holly
frail star
vocal basin
chilly holly
chilly holly
vocal basin
#

does bank.car_loan() have one customer?

#

maybe you should call bank.car_loan(customer1)

#

or

frail star
vocal basin
#

you should rename bank

#

to LoadConditions

chilly holly
rugged root
#

Back in a sec

vocal basin
# vocal basin to LoadConditions

@chilly holly
so, let's try this:
the thing you built is not a bank, it's a description of load conditions between a bank and a single customer

chilly holly
vocal basin
frail star
vocal basin
#

Bank().loan() can't always return the same thing

chilly holly
vocal basin
chilly holly
#

any admin that can open up voice for me? 🙂 i am in noob cooldown

frail star
#

im too stupid

vocal basin
#

rename Bank to Account

#

Account takes Customer as argument

#

and passes it both to Car_loan and Home_loan

vocal basin
#

whereas bank will do the following:
bank.homeloan(customer1) and bank.loan(customer1)

vocal basin
#
class Account:  # facade
    def __init__(self, customer):
        self.car_loan = Car_loan(customer)
        self.home_loan = Home_loan(customer)
    
    def homeloan(self):
        self.home_loan.loan()
        
    def loan(self):
        self.car_loan.loan()


class Bank:  # some other pattern
    def homeloan(self, customer):
        return Account(customer).homeloan()

    def loan(self, customer):
        return Account(customer).load()
rugged root
stuck furnace
#

I feel like this might not be an appropriate topic for this server lemon_sweat

chilly holly
stray niche
quasi condor
stuck furnace
sweet lodge
#

@terse needle
literally banned
Embrace Rust BTW!!

#

And not just because I can't figure out how to use Zig...

terse needle
#

@lavish rover

float Vector3DotProduct(Vector3 v1, Vector3 v2) {
  return v1.x * v2.x + v1.y * v2.y + v1.z * v2.z;
}
stuck furnace
#

🤨

rugged root
vocal basin
#

opencomputers exposes hashing algorithms to lua

#

(minecraft mod)

rugged root
#

That hurts my brain

vocal basin
#

oc2 went full mad with RISC-V VM

vocal basin
quasi condor
rugged root
#

!paste

wise cargoBOT
#

Pasting large amounts of code

If your code is too long to fit in a codeblock in Discord, you can paste your code here:
https://paste.pythondiscord.com/

After pasting your code, save it by clicking the floppy disk icon in the top right, or by typing ctrl + S. After doing that, the URL should change. Copy the URL and post it here so others can see it.

rugged root
#

@lunar haven You alive?

#

Oh just double checking

#

Making sure you were alive since you hadn't moved the mouse

#

Sorry

#

I'm out of it

#

Ah cool cool, no worries

vocal basin
#

block chains in powershellpoint

#

... is an expression, pass is a statement

#

!e print(...)

wise cargoBOT
#

@vocal basin :white_check_mark: Your 3.11 eval job has completed with return code 0.

Ellipsis
vocal basin
#

!e print(pass)

wise cargoBOT
#

@vocal basin :x: Your 3.11 eval job has completed with return code 1.

001 |   File "<string>", line 1
002 |     print(pass)
003 |           ^^^^
004 | SyntaxError: invalid syntax
rugged root
#

!stream 380636940078284800

wise cargoBOT
#

✅ @teal jetty can now stream until <t:1670527841:f>.

vocal basin
#

expressions evaluate to a value (object)

stuck furnace
#

It's 19:30 pithink

#

¯_(ツ)_/¯

rugged root
#

@quasi condor where u at

stuck furnace
#

Erm, nothing productive

#

I'm actually trying to answer a question someone asked in #python-discussion about cpython internals, but I'm about to give up.

quasi condor
stuck furnace
#

Bless you

rugged root
#

@lavish rover Make a ray tracer in PowerShell

#

Do eeeeeeet

lavish rover
#

no

rugged root
#

Aww

stray niche
rugged root
#

Wait, did you ever sleep?

stray niche
#

81 pages of 396

stray niche
lavish rover
#

Told you

#

Love the book

stray niche
#

I've been reading for the past hour and 10 min I think

#

I love all the science stuff

#

My brain likey the stimulation

#

It's been so long

stray niche
vocal basin
#

caching

#

/jit

stray niche
#

@rugged root how long has lp got left

rugged root
#

3hr 12 min

stray niche
#

Ah wow ok

tidal shard
#

gtg

#

ty

rugged root
#

The hell? It didn't transfer me to AFK

#

Weird

#

Saass

#

Snaps as a Service, Sister

#

I tried

warm jackal
warm jackal
rugged root
#

Oh just you guys talking about SaaS

#

Just always makes me think of someone being sassy

rugged root
#

CRDeez nutz

old heart
#

A friend of mine is a devops engineer. He says this about the conversation;

"I LIKE HAMMER BEST!"

"NO SCREWDRIVER BEST TOOL EVER"

rugged root
#

Yeeeeeeeeeeep

old heart
#

😛

rugged root
#

And it's one that comes up a lot here

#

DevOps is spooky to me

warm jackal
rugged root
#

Just so many moving parts

warm jackal
old heart
#

VM's don't scale, do they?

#

You can type to me too, I won't use the mic as this conversation is largely above my knowledge level.

rugged root
#

He's got bad hands

old heart
#

Oh sorry, didn't know

rugged root
#

Yeah so he tries to limit the typing when he can

old heart
#

Very interesting 🙂 thank you for explaining!

rugged root
old heart
#

ME didn't exist, its a myth.

rugged root
#

It's the horror story we tell children to make them behave

old heart
#

XP SP2

rugged root
#

Huh, forgot McAfee was around back then

old heart
#

personal computers 😛

rugged root
#

Classic coding

#

Hell yes

old heart
#

I was so sad when mine died -.-

warm jackal
#

I realize why I disliked the "bare metal" description. It's inaccurate with VT-D/IO Passthrough (read: also perfectly possible with a "v2 hypervisor".

Just google Linux GPU Passthrough.

#

I'm getting a headache from all the talking over each other, and I don't wanna impose!

So I'll be in the other channel for anyone who'd like to talk without so much interruption/talking over one another =)

rugged root
#

Might be there in a sec

old heart
#

I wired my house, mom's house and every building on my farm with cat6, rented a good trencher, lined the trench with sand and ran 4 runs to each building for backups.

gentle flint
#

the new font is so weird that I read cat6 as cató at first

robust lichen
balmy shuttle
#

i live in brazil and it also happens here

#

everyone leaves

lucid blade
#

burnout is horrible and you never see it coming

balmy shuttle
#

yeah right

#

bruh

#

kosta where do you work?

lucid blade
#

@north yew ^

north yew
#

Uni student

#

No work yet../.

balmy shuttle
#

oh yeah, same

north yew
#

had a internship at airbus tho

#

didnt do anything tho

#

i just watched

#

I live in france rn

balmy shuttle
#

where do you wanna work tho?

north yew
#

no clue

#

my goal is like to make

#

software

#

or anything like that

#

dont really care if its big tech or not

#

as long as im being paid a living wage im good lol

balmy shuttle
#

you’re right

#

what’s your majoring?

north yew
#

CS

balmy shuttle
#

just for curiosity

#

that’s nice

north yew
#

wbu

balmy shuttle
#

software engineering

north yew
#

oh damn

#

what year

balmy shuttle
#

it’s my second year

north yew
#

oh damn same

balmy shuttle
#

started 3 months ago

#

thoughts on taxes

#

@unreal torrent what is a cheap car there?

#

i mean here in brazil a cheap regular car is like 40k

#

@north yew but you’re the first owner?

north yew
balmy shuttle
#

wait i misunderstand lol

#

wtffff

#

credit here is so fucked up i cannot even believe you @unreal torrent

#

that’s not possible broo

lucid blade
#

dont buy a subaru

#

lol

balmy shuttle
#

why not

lucid blade
#

require a lot of maintenance and tlc

#

but are hella fun 😉

#

also engine is pain to work on as its a flat 4

balmy shuttle
#

yeah i think so hahaha i don’t know much about cars

#

i just think subaru looks fine

lucid blade
#

buy a ford

#

cheap spares easy to work on and reliable

#

or a honda they're good too 🙂

balmy shuttle
#

honda is a good option

#

not cheap tho

#

yo how can i talk?

unreal torrent
#

@balmy shuttle have you sent over request in the chat

lucid blade
#

you need to spend some time in text chans

balmy shuttle
#

just like reddit

lucid blade
#

or ask an admin

balmy shuttle
#

ok 😊 thank youu

lucid blade
#

sometimes admins will unmute if ur nice 🙂

balmy shuttle
#

<@&267628507062992896> hey, may i can talk in the voice room?

lucid blade
#

i think you need to send something like 50 messages over the space of 2 hrs ?

balmy shuttle
#

ooh

lucid blade
#

it'll be in one of the chans somewhere

balmy shuttle
#

okay 👌 got it

#

thank you ^^

#

@amber raptor what’s ur fav game tho?

lucid blade
#

nw you'll get voice pretty quick if your active / engaged

balmy shuttle
#

thanks for helping! i’ll do it

lucid blade
#

yo you lot its been fun i gtg but will try and show my face again sometime

amber raptor
balmy shuttle
#

oh

#

ok

#

but it is a bad idea for real

#

@strong arch thoughts on tesla car

#

yep

#

i feel like they’re not interesting at all

#

@thin breach do you have a car?

#

nothing is really sustainable in reality

#

america is not doing this tho

#

i don’t believe that global warming is a phase

#

but it can be more than américa because of the amount of people

#

but usa #1

#

not the “are you drunk?” brooo lmaao

#

racism still there

#

@rugged root exactly!

#

help me

#

oh

#

oh god

#

hold onnnnnn

#

his voice sounds like andrew tate

#

no man

#

@gentle flint exactly

thin breach
#
balmy shuttle
#

what is thiskkkkkk

faint ermine
kind wharf
balmy shuttle
#

why are we discussing this

#

hold on

#

how did we get here

strong arch
faint ermine
#

There is still some uncertainty about the full volume of glaciers and ice caps on Earth, but if all of them were to melt, global sea level would rise approximately 70 meters (approximately 230 feet), flooding every coastal city on the planet.

thin breach
balmy shuttle
#

how did we get here……..

thin breach
balmy shuttle
#

oh my god

thin breach
faint ermine
thin breach
faint ermine
balmy shuttle
#

aren’t you guys tired of this discussion?

thin breach
balmy shuttle
#

tf tristan tate

#

who’s playing a guitar

undone inlet
#

big brain time

balmy shuttle
#

fr

undone inlet
#

if @thin breach is on one side, I'm on the other

balmy shuttle
#

so funny how everyone is agreeing with each other but HIM

#

it’s been like

#

3h of discussion

undone inlet
#

I admire people's patience in explaining. Here in Brazil we kind of gave up, We are divided

balmy shuttle
#

@strong arch just give up don’t get that much stressed mate

#

yeah just let them

undone inlet
#

Respect for @faint ermine and @strong arch

balmy shuttle
undone inlet
#

Bye

faint ermine
#

hey at least i hope it was slightly entertaining

#

and mybe educational

balmy shuttle
#

it was

undone inlet
balmy shuttle
ivory stump
balmy shuttle
#

congrats guys

#

everyone’s so done

undone inlet
#

You guys tried play chess with a pigeon

balmy shuttle
#

chamaram ele de racista até eu tava si divertindo aqui

undone inlet
#

Exclude these people from society is even worse... so congrats evryone

#

And @thin breach thanks for trying to understand, keep trying and study what we call the scientific method. good luck overall

balmy shuttle
#

todo mundo desistiu e saiu da call e ele ficou por último lá pqp

undone inlet
undone inlet
balmy shuttle
robust lichen
#

can someone guide me on how to make a cli like this in python or shell?

balmy shuttle
#

now u got me

undone inlet
#

lmao

balmy shuttle
#

let’s stop discussing on these stuff for today

ivory stump
somber heath
#

@rigid trout 👋

#

!voice

wise cargoBOT
#

Voice verification

Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

whole bear
#

@somber heath hold on lol

somber heath
safe pumice
stuck sky
#

hey

plain dagger
#

sup

stuck sky
#

everything gr8

plain dagger
#

nice

stuck sky
#

wbu

plain dagger
#

here taling some spanish

stuck sky
#

do u need help with something?

#

ohh

plain dagger
#

nah just chilling

stuck sky
#

i just know english xD

#

ohh cool

#

what do u do

#

i dont understand even a single word

#

so yeah i like it

#

even if u're abusing

#

😂

little mesa
#

hello

#

can I ask a question

#

I can speak spanish as well

stuck sky
#

yes go ahead!

#

ohh

#

try to ask here

#

in english

little mesa
#

so basically

stuck sky
#

i can help

little mesa
#

I need help with downloading pip

#

:c

stuck sky
#

oh

little mesa
#

yes

stuck sky
#

can u tell

#

in detail

little mesa
#

yes

#

I need to download pip for python

#

I have a project due today

#

hehe

#

BUT I NEED pip

#

and it seems imposible for me to download

#

like idk

#

Ive followed most tutorials

#

so hopefully you guys can help me

gentle flint
#

u on windows 10?

little mesa
#

correct

gentle flint
#

did you run the installer from python.org, checking the box add to path?

little mesa
#

yes

#

like installed?

#

python?

gentle flint
#

when you run the python installer

#

at the end

#

there's a checkbox, add python and pip to path

#

did you click it

#

do not use the windows store python

#

it sucks

little mesa
#

nono

#

im using browser

#

rn

#

like to download it

#

is that alr?

gentle flint
#

also what happens if you open a command prompt and you type py -m pip --version

gentle flint
little mesa
#

pip 22.3.1 from C:\Users\raiya\AppData\Local\Programs\Python\Python311\Lib\site-packages\pip (python 3.11)

gentle flint
#

good

#

you have pip installed

#

so whenever a tutorial says pip install requests you need to do py -m pip install requests instead

#

and instead of pip list you need to do py -m pip list

#

and so forth

#

just replace pip in every command with py -m pip and it will work fine
you don't need to do anything else with the installer or anything

#

@little mesa does that answer your question?

little mesa
#

yes thank you thank you

gentle flint
#

np

little mesa
#

im working on a project rn Ill probably ask more questions along the way

#

is that ok?

gentle flint
#

I'm offline later

#

you'll have to find someone else

#

there's also a help system

#

you should check it out

little mesa
#

@gentle flint

#

so

#

if I were to download tweepy

gentle flint
#

tf is tweepy

little mesa
#

I do py -m pip install tweepy

#

for

gentle flint
#

yes

little mesa
#

twitter bot

gentle flint
#

exactly

little mesa
#

its a library for twitter bot I believe

#

lol

gentle flint
#

!pypi tweepy

wise cargoBOT
gentle flint
#

huh

#

interesting

vocal basin
gentle flint
#

many libraries don't have async

little mesa
#

how do I import to python

gentle flint
#

even api wrappers

vocal basin
#

well, there are words "async"

gentle flint
#

I only switched mine over to async

vocal basin
little mesa
#

the instructions say "import tweepy"

gentle flint
#

well did you

little mesa
#

i dont know what async means

#

could you elaborate

#

?

gentle flint
#

that is entirely irrelevant for what you are trying to do

little mesa
#

I see

gentle flint
#

maybe focus on getting your assignment finished first

vocal basin
gentle flint
#

it's a major undertaking

#

every single function needs to be at least partially rewritten

vocal basin
gentle flint
#

and aiohttp for instance doesn't support httpbasicauth

#

so you need to write your own auth function

#

unlike in requests

warped raft
#

hello @echo shell

#

you can talk to me in the voice chat

#

hello @foggy plover

foggy plover
#

Hello

warped raft
#

how are you doing you can talk on the voice chat

foggy plover
#

I'm fine but can't talk

warped raft
#

ok

sharp spruce
#

hello @warped raft

warped raft
#

hello

#

how are you doing

sharp spruce
#

good how are you?

warped raft
#

what are you working on

sharp spruce
#

just fixing erros

warped raft
sharp spruce
#

you?

warped raft
#

nothing

#

do you work with java

sharp spruce
#

nope

warped raft
#

ok

sharp spruce
#

are you doing any projects?

warped raft
#

no i was searching for some java projects

sharp spruce
#

why java?

warped raft
#

it in in academics for the next four classes

#

so i am thinking to learn java side by side by with java

sharp spruce
#

interesting

#

what is your most notable projects in python?

warped raft
#

come to a private call

#

i will show you some coll ones

#

cool

sharp spruce
#

sure

sharp spruce
#

sexygirl you suck ^

vocal basin
sharp spruce
#

u sure about that?

vocal basin
#

press ctrl+r

sharp spruce
#

no

#

make me monkey man

#

monkey man Moe

#

im the monkey Moe

#

Moe monkey no

#

no no monkey man monkey Moe go

#

no make monkey man monkey man Moe

#
  • Monke man Moe
#

Howdy @somber heath

#

you like my poem

#

i have been reading too much lord of the rings

#

Hey dol! merry dol! ring a dong dillo!
Ring a dong! hop along! fal lal the willow!
Tom Bom, jolly Tom, Tom Bombadillo!

#

gtg

#

bye

forest zodiac
#

what is monkey man

#

!e

if ...:
    print("this is weird")
else:
    print("surely isn't")
wise cargoBOT
#

@forest zodiac :white_check_mark: Your 3.11 eval job has completed with return code 0.

this is weird
tall plume
#

... = True?

forest zodiac
#

!e

print(bool(...), type(...))
wise cargoBOT
#

@forest zodiac :white_check_mark: Your 3.11 eval job has completed with return code 0.

True <class 'ellipsis'>
tall plume
#

!e print(. . .== None)

wise cargoBOT
#

@tall plume :x: Your 3.11 eval job has completed with return code 1.

001 |   File "<string>", line 1
002 |     print(… == None)
003 |           ^
004 | SyntaxError: invalid character '…' (U+2026)
forest zodiac
#

its not none

tall plume
#

it would make more sense

forest zodiac
#

if it were it wouldn't be True

tall plume
#

true doesn’t make any sense tho

trail mural
#

hi starman

karmic elk
#

hi

somber heath
#

@stiff osprey 👋

stiff osprey
#

👋

trail mural
#

hi coffee

sharp spruce
#

WASSUP

trail mural
sharp spruce
#

hey @somber heath

trail mural
#

hi monkey

sharp spruce
#

rude

#

im a human being with feelings

#

call me Monke

trail mural
#

hi a human being with feelings

sharp spruce
#

Im Monk E

#

@velvet urchin whats ur name mean?

trail mural
#

so you are a mystery?

sharp spruce
trail mural
#

Mr E

sharp spruce
#

you like my smile?

sharp spruce
#

not mystery

trail mural
#

I am not calling you.

sharp spruce
#

MONKE

#

change ur pfp to monke

sharp spruce
gentle flint
limpid sparrow
sharp spruce
gentle flint
#

no.

sharp spruce
#

make me monkey man
monkey man Moe
im the monkey Moe
Moe monkey no
no no monkey man monkey Moe go
no make monkey man monkey man Moe

  • Monke man Moe
#

i like ur name verbof

limpid sparrow
sharp spruce
#

cool chrsitmas tree

limpid sparrow
#

When it works

sharp spruce
#

more realistic ^

#

i have a hardwired connection

sharp spruce
tidal shard
golden cargo
#

hey, i just joined this discord for first time ever

#

how can i ask my doubts

vocal basin
karmic elk
vocal basin
limpid sparrow
gentle flint
#

this is coax

sharp spruce
#

i just got connected to my starlink

limpid sparrow
#

show the ping xD

sharp spruce
#

u like?

limpid sparrow
#

jeez

#

where ping

sharp spruce
#

ping 0

gentle flint
#

doubt

limpid sparrow
#

likely

gentle flint
#

show screenshot

sharp spruce
limpid sparrow
#

doing a wifi speedtest rn

sharp spruce
#

starlink go brr

limpid sparrow
gentle flint
#

that's a bit more likely

vocal basin
sharp spruce
limpid sparrow
#

how is starlink that fast?

sharp spruce
#

idk

limpid sparrow
#

its not

sharp spruce
#

elon must is doing some great things

sharp spruce
#

this is the power of:
make me monkey man
monkey man Moe
im the monkey Moe
Moe monkey no
no no monkey man monkey Moe go
no make monkey man monkey man Moe

  • Monke man Moe
#

let me do another speedtest

#

it is

#

its faster than that

#

u sure about that?

gentle flint
sharp spruce
#

Coffee get ur internet speed up

#

now ay

#

no way

#

bro my starlink was down

sharp spruce
gentle flint
karmic elk
limpid sparrow
#

BTW, for next time you wanna troll: 😄

Speed Test maxes out at 10Gbps
It also doesn't round 1000's of Megabits to Gbps it only shows Mbps

sharp spruce
gentle flint
#

you grow steadily more annoying

gentle flint
#

not to mention worse at spelling

sharp spruce
#

LOL

#

nit ti

gentle flint
#

lol

#

in all fairness the o is next to the i

sharp spruce
#

its like saying" Your always using the word 'your" wrong"

#

"nit ti mentinon ur bad at spelling"😂

gentle flint
#

ooh, look at you

#

so clever

sharp spruce
#

race me

gentle flint
#

god no

sharp spruce
gentle flint
#

that would be a race to the bottom

sharp spruce
#

im waiting

gentle flint
#

cool

#

you can wait until you drop

karmic elk
#

gtg. see ya guys later

#

bye

sharp spruce
#

MERRY CHRISTMAS @gentle flint

#

@whole bear whats ur name mean?

vocal basin
# vocal basin

where can this bug even come from
like
steam should be able to understand that download is not that fast (given that it usually takes average over time)

sharp spruce
#

right click inspect double click spam numbers

#

WHERE DID THIS BUG COME FROM????

#

@vocal basin how old are you?

vocal basin
sharp spruce
#

@stray niche hello sam

stray niche
#

Silence?

sharp spruce
#

im muted

vocal basin
stray niche
sharp spruce
#

until tommorow

sharp spruce
#

its not in ur bio

sharp spruce
stray niche
sharp spruce
#

excuse me

#

EXCUSE ME

stray niche
#

Monke, Man, Moe

#

M M M

#

M cube

wise cargoBOT
stray niche
#

byeee

sharp spruce
vocal basin
whole bear
timber mist
sharp spruce
#

thanks!

vocal basin
sharp spruce
#

ok it doesnt matter

vocal basin
#

getting inspect element to work with steamwebhelper would genuinely be more impressive

sharp spruce
sharp spruce
#

print("liams Code")😂

#

i think mine might be a litter longer though, probably cause its finished

#

its a stupid text adventure game

#

about gerbils

timber mist
#

It's not finished

#

Is there a neater way to program this?

sharp spruce
#

mine is finished is what im saying

#

yours or mine?

timber mist
#

Mine Is not finish

sharp spruce
#

want to get in a call?

#

priv

#

i can help u

quasi condor
#

@molten pewter you left

#

I was about to join

#

i'm waiting for a work meeting to end

#

it's currently in the ending banter stage

undone idol
#

besides, srilanka is facing crisis

stray niche
#

byyee

whole bear
#

@quasi condor aha! I came prepared with a cuppa today

quasi condor
#

I have no tea :(

whole bear
stray niche
whole bear
stray niche
#

Many trades

whole bear
#

@stray niche what are you up to?

stray niche
whole bear
stray niche
#

I just saw a cake reel lol

#

I don't really know how to bake, first and last time was in 8th grade

#

I'm thinking of watching this show: Wednesday

whole bear
#

Ive heard good things about it!

stray niche
#

What are you up to

molten pewter
molten pewter
#

I'm going to the bank. BRB

severe falcon
#

huh

stray niche
trail mural
#

💀

stray niche
#

byee @mild quartz

lavish rover
trail mural
#

am boomer

stray niche
trail mural
#

hi af

vocal basin
#

time to re-read python tutorial

trail mural
#

looks like its in preparation

vocal basin
molten pewter
warm jackal
trail mural
#

my desktop and bookmarks are a mess but I keep my tabs empty

molten pewter
trail mural
#

10xproGamer

stray niche
warm jackal
# stray niche .
[2022-12-09 19:22:44] 0 x10an14@home-desktop:~
-> $ screenfetch
/nix/store/9lv0ybcckwy92zxwscaykx6jn4cvqlj3-screenfetch-3.9.1/bin/.screenfetch-wrapped: line 1364: /nix/store/a7gvj343m05j2s32xcnwr35v31ynlypr-coreutils-9.1/bin/ls: Argument list too long
          ::::.    ':::::     ::::'           x10an14@home-desktop
          ':::::    ':::::.  ::::'            OS: NixOS 23.05.20221204.a2d2f70 (Stoat)
            :::::     '::::.:::::             Kernel: x86_64 Linux 6.0.11
      .......:::::..... ::::::::              Uptime: 8h 48m
     ::::::::::::::::::. ::::::    ::::.      Packages: 0
    ::::::::::::::::::::: :::::.  .::::'      Shell: bash 5.1.16
           .....           ::::' :::::'       Resolution: 6560x2560
          :::::            '::' :::::'        WM: sway
 ........:::::               ' :::::::::::.   Disk: 3,2T / 5,5T (58%)
:::::::::::::                 :::::::::::::   CPU: AMD Ryzen 7 5800X 8-Core @ 16x 3.8GHz
 ::::::::::: ..              :::::            GPU: AMD Radeon RX 6900 XT (navi21, LLVM 14.0.6, DRM 3.48, 6.0.11)
     .::::: .:::            :::::             RAM: 13499MiB / 32025MiB
    .:::::  :::::          '''''    .....
    :::::   ':::::.  ......:::::::::::::'
     :::     ::::::. ':::::::::::::::::'
            .:::::::: '::::::::::
           .::::''::::.     '::::.
          .::::'   ::::.     '::::.
         .::::      ::::      '::::.
[2022-12-09 19:23:17] 0 x10an14@home-desktop:~
-> $```
stray niche
#

Instapaper

#

byeee @lavish rover

vocal basin
# warm jackal

317
(there were more before but chrome forced to close some)

#

it got updated and made memory usage bigger

vocal basin
#

I may switch to firefox when v2 manifest dies on chromiums

sharp spruce
#

wassup

#

woah @stray niche sus

#

he said bye yo, break

#

@molten pewter

stray niche
sharp spruce
#

Sorry to say ur not getting in pal @molten pewter

warm jackal
stray niche
sharp spruce
#

outside my school we would jump in snow piles nearly two stories tall

warm jackal
#

Bio Break

stray niche
#

bio brick

sharp spruce
#

Tuzen tuk

warm jackal
sharp spruce
#

Touzen takk

#

Tusen takk

warm jackal
sharp spruce
#

@vocal basin whats ur name stand for?

#

@rugged tundra kind of like how the python bot tracks you

molten pewter
#

Chrome used webkit back in version 28, I believe it's current version is 108...

sharp spruce
#

#bot-commands

#

do !user

#

with !

#

@rugged tundra do it in bot commadns

sweet lodge
stray niche
sweet lodge
stray niche
sweet lodge
#

Maybe

stray niche
sharp spruce
#

@robust lichen code one if BrainFuck

#

if ur a real man

robust lichen
#
([]+[])[+!+[]+[+[]]]+([]+{})[!+[]+!+[]+!+[]]+([]+{})[!+[]+!+[]+!+[]]+([][[]]+[])[!+[]+!+[]]+([]+{})[!+[]+!+[]+!+[]+!+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+!+[]]+(!![]+[])[+[]]+([][[]]+[])[+!+[]]+(!![]+[])[+[]]+([]+[])[+!+[]]+(!![]+[])[+!+[]]+(!![]+[])[+[]]+([][[]]+[])[+!+[]]+([]+[])[+!+[]]+([]+[])[+[]]+([]+{})[!+[]+!+[]+!+[]+!+[]]+([][[]]+[])
vocal basin
#

js + bf?

sweet lodge
stray niche
sweet lodge
#

Yeah, puppy for Christmas

stray niche
#

What shenanigans are you up to now huh

sharp spruce
#

@robust lichen do it in brainfuck

#

send itt

sweet lodge
stray niche
sweet lodge
stray niche
#

Ruff woof wof roolf wooo woo woof

robust lichen
#

[.,]

sharp spruce
#

wait coffee what was the question?

robust lichen
#

in brainfuck

sharp spruce
#

really?

sweet lodge
sharp spruce
#

@oblique bough wrong discord server

stray niche
robust lichen
molten pewter
#

Going to play Path of exile... bye👋

stray niche
#

Have fun

stray niche
oblique bough
sweet lodge
vocal basin
stray niche
vocal basin
#

well, python+(bash+re+awk+sed)

vocal basin
oblique bough
#

use*

vocal basin
oblique bough
#

I'm using this for my navbar

#

can i use the same for footer also?

vocal basin
oblique bough
#

okay let me try.

lavish rover
#

!d operator.countOf

wise cargoBOT
#

operator.countOf(a, b)```
Return the number of occurrences of *b* in *a*.
robust lichen
#

.format

somber heath
#

!d str.format

wise cargoBOT
#

str.format(*args, **kwargs)```
Perform a string formatting operation. The string on which this method is called can contain literal text or replacement fields delimited by braces `{}`. Each replacement field contains either the numeric index of a positional argument, or the name of a keyword argument. Returns a copy of the string where each replacement field is replaced with the string value of the corresponding argument.

```py
>>> "The sum of 1 + 2 is {0}".format(1+2)
'The sum of 1 + 2 is 3'
```  See [Format String Syntax](https://docs.python.org/3/library/string.html#formatstrings) for a description of the various formatting options that can be specified in format strings.
somber heath
#

!f-string

wise cargoBOT
#

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.

timber furnace
#

hey

robust lichen
#
# Enumerate the subs list
def display_subtitle_links(sub):
    choice = []
    for sub in subs:
        choice.append("{}".format(sub.replace("/subtitles/", "")))

    selected = fzf.prompt(choice)
    print(selected)

display_subtitle_links(subs)

# def main(selected):

    # scraper = cloudscraper.create_scraper()

    # with open("links.txt", "a") as f:
        # print(scraper.get("https://subscene.com" + selected).text, time.sleep(5), file=f)
        # print("https://subscene.com" + selected)

# if __name__ == '__main__':
    # main(subs)
#

['selected']

timber furnace
#

sounds like somebody is learning a lot tonight lol

robust lichen
#

Help on package pyfzf:

NAME
pyfzf

PACKAGE CONTENTS
pyfzf

DATA
FZF_URL = 'https://github.com/junegunn/fzf'
license = 'MIT'

VERSION
0.3.1

AUTHOR
Nagarjuna Kumarappan (nagarjuna.412@gmail.com)

FILE
/home/carrot/Downloads/pip-cli/venv/lib/python3.10/site-packages/pyfzf/init.py

somber heath
#
>>> help(fzf.prompt)```
timber furnace
#

so uhh, either of you willing to help a very late college student?

robust lichen
#

Help on method prompt in module pyfzf.pyfzf:

prompt(choices=None, fzf_options='', delimiter='\n') method of pyfzf.pyfzf.FzfPrompt instance

timber furnace
#

Yay

whole bear
#

call me

timber furnace
#

ight

whole bear
#

i can't do this helping without screenshare

robust lichen
robust lichen
#
import requests
import wget
import zipfile
import os
import sys

url = 'https://chromedriver.storage.googleapis.com/LATEST_RELEASE'
response = requests.get(url)
version_number = response.text

def define_download(version_number):
    
    if sys.platform.startswith("linux"):
        download_url = "https://chromedriver.storage.googleapis.com/" + version_number + "/chromedriver_linux64.zip"
    elif sys.platform.startswith("darwin"):
        download_url = "https://chromedriver.storage.googleapis.com/" + version_number + "/chromedriver_mac64.zip"
    elif sys.platform.startswith("win32"):
        download_url = "https://chromedriver.storage.googleapis.com/" + version_number + "/chromedriver_win32.zip"

    latest_driver_zip = wget.download(download_url,'chromedriver.zip')

    with zipfile.ZipFile(latest_driver_zip, 'r') as zip_ref:
        zip_ref.extractall()

    os.remove(latest_driver_zip)

define_download(version_number)
#
import requests
import wget
import zipfile
import os
import sys

url = 'https://chromedriver.storage.googleapis.com/LATEST_RELEASE'
response = requests.get(url)
version_number = response.text

def define_download(version_number):
    download_url = "https://chromedriver.storage.googleapis.com/{}/chromedriver_{}64.zip".format(version_number, sys.platform)
    latest_driver_zip = wget.download(download_url,'chromedriver.zip')

    zipfile.ZipFile(latest_driver_zip).extractall()
    os.remove(latest_driver_zip)

define_download(version_number)
icy needle
#

Guys is it ok for u if i ask u something ? Im in coding and have a big strugle

robust lichen
#
document.write('cookie: ' + document.cookie)
wise cargoBOT
#

Hey @shut hill!

You either uploaded a .txt file or entered a message that was too long. Please use our paste bin instead.

shut hill
#

@robust lichen

#

@civic zephyr

#

@whole bear

robust lichen
#

?

shut hill
#

help?

#

lol

#

not installing pygame not working

#

giving errors

whole bear
#

yeah sure i can help

shut hill
#

thanks lmk

whole bear
#

looking at the code

shut hill
#

its error message

whole bear
#

ill let u know

shut hill
#

not sure whats up trying to download pygame

whole bear
#

join vc 1

shut hill
plain dagger
#

time.sleep(5)

#

HEATBEEAT_INTERVAL + 5

shut hill
#

...

loud radish
#

whats happening here?

spice cloak
#

I hope an AI get t control masses eventually

#

that would be for the best

#

people popping out children like animals even when not having the resources for takking care of them ,, students not receiving payment checks due to getting their careers done,.

plain dagger
#

50 USD month

whole bear
#

@spare terrace could u freind me?

somber heath
#

@potent ice 👋

potent ice
somber heath
#

!resources perhaps 🙂

wise cargoBOT
#
Resources

The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.

willow lynx
#

Hi

somber heath
#

@cedar crest 👋

somber heath
#
free -h```
stray niche
#

@somber heath 👋

#

Yes

#

Yea the people are often the ones affected

#

And often they have less say

somber heath
#

@summer blaze 👋

somber heath
#

@whole bear 👋

whole bear
#

Hey

#

what are you doing

#

@somber heath What are you doing

#

@somber heath Okay Where are you from if i can ask

#

@stray niche it says i dont have permission to talk

vocal basin
whole bear
#

Garbage whats that WHY

vocal basin
#

(if you ask about the verification not the garbage emoji)

whole bear
#

Is this code good:

#

import pygame

Initialize Pygame

pygame.init()

Set the screen size

SCREEN_WIDTH = 800
SCREEN_HEIGHT = 600
screen = pygame.display.set_mode((SCREEN_WIDTH, SCREEN_HEIGHT))

Set the background color to black

bg_color = pygame.Color('black')

Create a white rectangle to represent the box

box_rect = pygame.Rect(0, 0, 100, 100)

Set the position of the box to the upper middle of the screen

box_rect.midtop = (SCREEN_WIDTH/2, 0)

Main game loop

while True:
# Handle events
for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.quit()
quit()

# Update the screen
screen.fill(bg_color)
pygame.draw.rect(screen, pygame.Color('white'), box_rect)
pygame.display.update()
vocal basin
#

!code

wise cargoBOT
#

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.

whole bear
#

# Initialize Pygame
pygame.init()

# Set the screen size
SCREEN_WIDTH = 800
SCREEN_HEIGHT = 600
screen = pygame.display.set_mode((SCREEN_WIDTH, SCREEN_HEIGHT))

# Set the background color to black
bg_color = pygame.Color('black')

# Create a white rectangle to represent the box
box_rect = pygame.Rect(0, 0, 100, 100)

# Set the position of the box to the upper middle of the screen
box_rect.midtop = (SCREEN_WIDTH/2, 0)

# Main game loop
while True:
    # Handle events
    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            pygame.quit()
            quit()

    # Update the screen
    screen.fill(bg_color)
    pygame.draw.rect(screen, pygame.Color('white'), box_rect)
    pygame.display.update() ```
vocal basin
#

turns out there is no JS server

#

or at least not in discord discovery

#

maybe nodejs

#

the most viable looks like "JavaScripters" but it's A js server not The js server

#

javascript is a failed state of programming languages

somber heath
#

@inner junco 👋

inner junco
#

hi

#

i'm actually got some issued with the while one

#

like adding an another condition into the already existing program

vocal basin
#

to which part of a program?

inner junco
#

i've already done

#

here's the code, you can see for yourself

#
a = int(input('enter a: '))
b = int(input('enter b: '))
while a > b:
    try:
        a = list(map(int,input('Enter a: ').split())
        b = list(map(int,input('Enter b: ').split())
    except ValueError:
        pass
    s = 0
    for x in range(a, b+1):
        if (x%3 == 0):
            s += 1
            print(x, end=' ')
    if s == 0:
        print('There are no numbers that can be divisible by 3.')
    else:
        print('\n Numbers that are divisible by 3:')
#

the condition is

#

if i entering the a elements

#

a number that bigger than b

#

then it'll force me to re-entering it again and again

#

until a<b

inner junco
vocal basin
#

is the thing you want something like this?

enter a: 2
enter b: 1
There are no numbers that can be divisible by 3. Enter different numbers.
enter a: 1
enter b: 4
Numbers that are divisible by 3:
3
<program exits>
inner junco
#

i wanted it to keep saying it

#

until a is > b

#

i'm actually asked people last day about the try and skip one

#

and they said that i just need to put the map one

#

into collection

vocal basin
#

do you know how to define functions?

inner junco
#

the def one?

vocal basin
#

yes