#voice-chat-text-0

1 messages ยท Page 1018 of 1

old pecan
#

a example

#

"i like you no you like me"

#

i = 1

#

like =2

rugged root
#

Right

old pecan
#

but the words that start with no

#

the code should ignore them and not count them

rugged root
#

Yeah, the code you have should do that

nocturne ridge
#

hi

cedar swallow
#

logo_panda3d random but its a cutie emoji

cedar swallow
nocturne ridge
#

my audio continuously muted ??!

somber heath
#

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

rugged root
#

Beat me to it

cedar swallow
nocturne ridge
rugged root
#

Ohhhh

#

Weird

#

Check your audio devices in the settings

cedar swallow
rugged root
#

The code you have should do it, I'd just tweak it a little

word_string = "it rains in spain no nono no spain"
list_of_words = word_string.split()
count = {}

for word in list_of_words:
    if word.lower().startswith("no"):
        continue
    if word in count:
        count[word] = 1
    else:
        count[word] += 1
    
print(count)
#

But beyond that, it's fine

old pecan
#

it tells me

#

Key error: 'it'

rugged root
#

!e

word_string = "it rains in spain no nono no spain"
list_of_words = word_string.split()
count = {}

for word in list_of_words:
    if word.lower().startswith("no"):
        continue
    if word not in count:
        count[word] = 1
    else:
        count[word] += 1
    
print(count)
wise cargoBOT
#

@rugged root :white_check_mark: Your eval job has completed with return code 0.

{'it': 1, 'rains': 1, 'in': 1, 'spain': 2}
old pecan
#

i wish i could be able to speak in the voice chat

#

xd

rugged root
#

I dumbed

#

I fixed

old pecan
#

what was the error?

rugged root
#

I had if word in rather than if word not in

#

So it was trying to add to a key that wasn't there instead of just setting a new one

#

So I just flipped the logic by accident

old pecan
#

ok nice to know

#

thank u so much

rugged root
#

Not sure how much I helped

old pecan
#

a lot

#

xd

rugged root
#

You had all the code there

#

You had the right stuff

#

Just had to tweak

#

This man is an egg in a suit

gentle flint
#

hi

rugged root
#

And then we have Jack Nicholson's joker

signal sand
#

@rugged root

rugged root
#

Eh?

#

What do you mean

signal sand
#

emoji

rugged root
#

Huh

#

I thought we did have it.

frosty star
#

Haha love it

rugged root
#

But I guess we also don't have one for Windows or Mac

signal sand
#

No... no linux emojis in the server

somber heath
#

That's why you tape a slinky to your forehead.

molten pewter
somber heath
#

If it's the best run, why don't Olympians do it?

#

I've been on a ferry.

rugged root
#

What was his name?

somber heath
#

Large enough to take several cars.

frosty star
#

Haay

somber heath
#

Ooh. That reminds me.

signal sand
somber heath
#

Olympians are the near ultimate min-maxers of physical effectiveness.

signal sand
#

still can't do shadow clone jutsu

somber heath
#

If running that way were more effective, that's how we'd see them run.

signal sand
#

nah... different times, area 51 is 2019... he is just click baiting Naruto fandom ig...

#

yeah, I'm ready @molten pewter

rugged root
modern grail
#

lol "thank you for flying python air" lemon_tongue

rugged root
#

For some reason every time I give that explanation, that's how I sound

#

!e

print(0 == None)
wise cargoBOT
#

@rugged root :white_check_mark: Your eval job has completed with return code 0.

False
plucky tree
#

what project r u doing with arduino

modern grail
#

anybody know how bash commands work with python in regards to setting a chrome driver location?

#

for example: ```bash
export CHROMEDRIVER=~/chromedriver

sweet lodge
#

It's a system level thing, not a bash thing

modern grail
sweet lodge
rugged tundra
#

after searching Filipino language, Youtube changed my captions to Filipino

sweet lodge
modern grail
sweet lodge
#

User should be fine

#

Are you using Batch or PowerShell?

modern grail
sweet lodge
#

I have to go now, but I should be back shortly if you have questions or need help

modern grail
solar flax
#

hey @rugged root can u give me some advice

#

so this is my main function... how can i adding dict outside of the function?

def main():
  title_delele = title.replace('*',' ')
  for i in soup.find_all(id='cover'):
          for j in i.a:
              x = j.get('data-src')
  a['cover'] = x
  a['title'] = title_delele
  print(a)

a = {}
main()

what i want :

{'cover': 'https://*/galleries/*/cover.jpg' ,
 'title': 'title_name'}

but the result i got "is not defined" can u give me some advice another way?

tropic lance
#

I like that when Mr Hemlock talks his avatar starts shaking

sick cloud
#

what is this?

#

video player ig

#

next to sublime

#

OhhHhHHHHhhh

#

how often do you use it?

#

k

#

hmm github desktop

sick cloud
#

lol

#

its fine

#

maybe Sublime will come with a product similar to Postman someday

plucky tree
#

what color themes do you guys use for vscode

sick cloud
#

@peak coppersame, i also use the cli

#

i usually take .gitignore etc from github

#

they provide a template for it

#

maybe there us smth wrong in your settings

novel sleet
#

hope everyone's having a good day

plucky tree
#

i use ayu dark bordered its great

rugged root
#

@sweet lodge It's functional now

woeful salmon
signal sand
#

we need it asap

gentle flint
signal sand
#

@rugged root

gentle flint
rugged root
#

SplinkTech

sweet lodge
south wing
#

๐Ÿช

#

hf

rugged root
lavish rover
#
(name, type_) = next(channel.items())
#
def payload_builder(config) -> dict[str, str | list[dict[str, str | int]]]:
    payload = {
        "name": config["name"]
        "channels": channel_parser(config["categories"])
        "roles": role_parser(config["roles"])
        "system_channel_id": 1
    }
    return payload
def payload_builder(config) -> dict[str, str | list[dict[str, str | int]]]:
    return {
        "name": config["name"]
        "channels": channel_parser(config["categories"])
        "roles": role_parser(config["roles"])
        "system_channel_id": 1
    }
gentle flint
lavish rover
#

me want za stroopwafel

rugged root
#

I do not

rugged root
lavish rover
terse needle
#

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

shut mulch
rugged root
hushed elm
#

wtfff

lavish rover
#
class Madness(Hemlock):
  def dostuff(self):
    ...
stuck furnace
#

Yikes ๐Ÿ˜„

lavish rover
#
I=input;I("".join(f'{a!=b:d}'for a,b in zip(I(),I())))
stuck furnace
#

It doesn't save a character, but it does make it easier to compare the lengths of different solutions ๐Ÿ˜„

#

That's not the worst I've seen...

#

Oh smarrrt.

rugged root
#

!e

test="ham";if test=="ham":;  print("why");
wise cargoBOT
#

@rugged root :x: Your eval job has completed with return code 1.

001 |   File "<string>", line 1
002 |     test="ham";if test=="ham":;  print("why");
003 |                ^^
004 | SyntaxError: invalid syntax
lavish rover
#
    for i, role in enumerate(["everyone"] + roles):
        payload.append(
            {
                "name": role,
                "id": i,
            }
        )
stuck furnace
#
I=input;I("".join(f'{a!=b:d}'for a,b in zip(I(),I())))
I=input;a=I();I(f'{int(a,2)^int(I(),2):0{len(a)}b}')
#

Ah yeah, I copied and pasted the wrong thing...

#

I retract my lemon_smirk

lavish rover
#
I=input;I(f'{int(a:=I(),2)^int(I(),2):0{len(a)}b}')
peak copper
rugged root
#
print(len("I=input;I(f'{int(a:=I(),2)^int(I(),2):0{len(a)}b}')"))
print(len("I=input;a=I();I(f'{int(a,2)^int(I(),2):0{len(a)}b}')"))
lavish rover
#

you can just visually compare because it's on the same line ๐Ÿ˜›

rugged root
#

Well yes I see that now

lavish rover
#

hence the ; instead of newline even though they are the same number of chars

rugged root
stuck furnace
#

I think there are a few examples on the PyGame website.

rugged root
#

Iโ€™m trying to delete files off a flashdrive and things go dark and blank and then chrome comes up and Iโ€™m not wanting to be on the internet
Shit I don't want to see in my inbox from my co-workers

stuck furnace
#

Yep

#

They have a lot of example games made with pygame.

ashen wyvern
stuck furnace
#

You can check out the source code.

stuck furnace
#

Actually, how far are you into your project already @ashen wyvern

#

As an alternative to PyGame, you might want to check out Arcade.

#

I just noticed a lot of the links on the pygame website are broken.

#

PyGame is a much older library.

#

Arcade is a bit nicer to get started with.

ashen wyvern
# stuck furnace Actually, how far are you into your project already <@250630723810099201>

Oh i would say im 60% in the progress. It's a simple multiplayer game based on socket and pygame. And just so you can understand the game layout:

You connect to the game through a client.py script which connects to my server.py script and then it executes a file called network.py which does the connection part to make the user get connected to the server. And then it executes another file called player.py there it basically manages the game itself. Each player that connects gets an square object that they move around, thats like everything i have made so far. What im currently trying to find out is how i could make it able for the players to shoot bullets on each other from their own player objects.

stuck furnace
#

Ah right I see

ashen wyvern
#

yeah

#

so it might be pretty much work to redo everything into the arcade module rn ๐Ÿ˜‚

stuck furnace
#

Ah yep

#

Are you following any guides?

ashen wyvern
#

Nah not rn, i was followed a guide before in order to make the moving blocks and the socket connection but i was trying to continue on developing the game functions to make this shooting function

stuck furnace
#

I found this, maybe it's helpful: https://www.youtube.com/watch?v=DHgj5jhMJKg

In this Python tutorial I code a Scrolling Shooter Game using the PyGame module. I'm going to cover the initial game setup and how to create the player

Code for this video: http://codingwithruss.com/pygame/shooter/player.html
Assets for the game: http://codingwithruss.com/pygame/shooter/files.rar
Alternative link: https://github.com/russs123/S...

โ–ถ Play video
#

Gotta go ๐Ÿ‘‹

ashen wyvern
#

oh going to look through that video

#

oh okay

#

thanks for the help anyway!

halcyon prawn
#

no voice

#

a man without a voice

#

what is he

mortal crystal
#

muted

cedar briar
#

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

cedar briar
#

@wintry bough

wintry bough
#

!voice

mortal crystal
#

for sure

wintry bough
#

lambda

#

ec2

#

cloud watch

#

AWS

#

Amazon Web Services

fresh pulsar
#

@tulip gyro pleasure knowing you....have to go, though don't wanna interrupt you in the conversation

#

You're super helpful and easy to talk to you.

#

Cya guys

unborn cedar
#

unsupress?

#

i need help

#

How do i memorize the unit circle

#

:{

#

@tulip gyro

lavish rover
somber heath
wise cargoBOT
#

Voice verification

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

lavish rover
rigid wedge
#

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

rigid wedge
#

Rainbowlogo_pyqtgraph

lavish rover
rigid wedge
#

Thankyou, i feel so love

frosty star
#

Hi everyone

whole bear
#

hello

#

print("Hello")

#

Hello

rugged root
#

Ninia is a genus of snakes, commonly referred to as coffee snakes, in the family Colubridae of the superfamily Colubroidea. The genus consists of 10 species that are native to Mexico, Central America, and the northern part of South America. Some species are also found on the Caribbean islands.

#

@whole bear If you're wondering why you can't talk, check out the #voice-verification channel. That'll tell you what you need to know about our voice gate system

rugged tundra
#

I thought this business was a joke https://www.knightscope.com/ it is not a joke

frosty star
#

I do it all d time

rancid temple
#

halo halo

rugged tundra
frosty star
#

I love how the star is filled :3

rugged root
#
    schema = ("id", "name")
    roles = ["everyone", *roles]
    return list(map(lambda x: dict(zip(schema, x)), enumerate(roles)))
dense ibex
#
    schema = ("id", "name")
    roles = ["everyone", *roles]
    return [dict(zip(schema, role)) for role in enumerate(roles)]
rugged root
#
    roles = ["everyone", *roles]
    return [{"id": i, "name": role} for i, role in enumerate(roles)]
sweet lodge
mystic stirrup
#

sus

#

was that a selfbot ?

#

xD

sweet lodge
#

I can neither confirm nor deny

rugged root
frosty star
#

Mmhm

dense ibex
#
postgres:
    image: postgres:14
    restart: always
    environment:
      POSTGRES_PASSWORD: postgres
      POSTGRES_USER: postgres
      POSTGRES_DB: bot
      PGDATA: /var/lib/postgresql/data/pgdata
    volumes:
      - ./pg_data:/var/lib/postgresql/data
    ports:
      - 5432:5432
rugged root
whole bear
#

kkkkk lol

#

crome its a dream to me

frosty star
#

Yeah and compile it on the command line

sweet lodge
#

Well shit, there goes my memory

whole bear
sweet lodge
whole bear
rugged root
#

Hope it ends up working for you

#

It's a good service

gentle flint
sweet lodge
frosty star
#

I giggled at dongle

dense ibex
rugged root
#
    payload = {}
    payload["name"] = config["name"]
    payload["channels"] = channel_parser(config["categories"])
    payload["roles"] = role_parser(config["roles"])
    payload["system_channel_id"] = 1
    return payload
#
    return {
        "name": config["name"],
        "channels": channel_parser(config["categories"]),
        "roles": role_parser(config["roles"]),
        "system_channel_id": 1,
    }
sweet lodge
#

PyCharm will even do that for you

#

The original is not

#

Before:

#

After:

#

Yes

frosty star
#

I like monokai

sweet lodge
#

Pretty much just variable scoping

dense ibex
#

gruvbox

sweet lodge
#

Good job, @rugged root

frosty star
#

I really like Tokyo Night

rugged root
sweet lodge
rugged root
#

@amber raptor I miss you already

sweet lodge
sweet lodge
cedar swallow
woeful salmon
#

@dense ibex where do you live? ๐Ÿ˜ฎ

dense ibex
#

amurica

woeful salmon
#

ah damn :/ 250 + ping then i can't

dense ibex
#

lol I can play on your servers

#

what servers you play on?

woeful salmon
#

how about eu

dense ibex
#

I get like 100

#

that's fine

woeful salmon
#

i usually play on middle east but eu should be around 100 for me too

#

@rugged root
my neovim now auto installs and updates lsp servers for me o-o

rugged root
#

@near niche

somber heath
#

As well as its companion server, Together CNC++.

rugged root
#

HA

#

Yeah we were looking into discreet math, but we had to be secretive about it

rugged root
#

So good

sweet lodge
#

You can play with whatever you want in your sleep

#

But keep it off the server

#

We have children here

frosty star
#

well in my country a university is pretty much the same level as your college

#

sadly

sweet lodge
#

Why do you people hate Visual Basic?

#

It's great for creating GUIs - it's literally in the name

#

"basic visuals"

somber heath
#

VB tastes awful.

#

Cascade's decent.

woeful salmon
#

@rugged rooti've never used anything i learnt from brainfuck in any other lenguage

#

๐Ÿ˜ฆ

sweet lodge
somber heath
#

Reminds me of books in Minecraft.

whole bear
stuck furnace
#

BF is actually pretty useful for teaching about execution models.

somber heath
#

So's BrainFuck.

frosty star
#

BF is an actual programming language huh

stuck furnace
#

It's quite difficult to use to write real programs, but it doesn't take long to learn.

woeful salmon
# frosty star BF is an actual programming language huh

Brainfuck is a minimal esoteric programming language. It provides a 30K 8-bit array that can be modified with 8 different characters.

#programming #compsci #100SecondsOfCode

๐Ÿ”— Resources

Brainfuck History https://www.muppetlabs.com/~breadbox/bf/
Brainfuck Basics https://gist.github.com/roachhd/dce54bec8ba55fb17d3a
Brainfuck Interpreter https:...

โ–ถ Play video
sweet lodge
#

And VBA in FedEx

#

And various other applications

#

What's the replacement for VBA?

#

Lua?

rugged root
#

C# or JavaScript

somber heath
#

Oh no. Whatever could those asterisks be replacing?

sweet lodge
#

Factorio and WireShark use Lua for scripting

woeful salmon
sweet lodge
rugged root
#

I think modern office products are Electron?

#

I can't remember off the top of my head

woeful salmon
#

i use lua for scripting, configuration, and embedding in c to get more runtime changes going and to pass time in roblox studio when i'm bored

sweet lodge
#

Office Scripts in Excel let you automate your day-to-day tasks. Inside Excel on the web, you can record your actions with the Action Recorder. This creates a TypeScript language script that can be run again any time. You can also create and edit scripts with the Code Editor. Your scripts can then be shared across your organization so your coworkers can also automate their workflows.

woeful salmon
#

bit too much empty space but its not that bad

sweet lodge
#

Don't quite understand what that means

#

(Ive never been able to say this yet)
๐Ÿ™‹Well Actually!๐Ÿ™‹

All of Office 365 is (almost finished) being completely rewritten in this little scripting language called #JavaScript.

And Skype
And Microsoft Teams
And @Code
And all of @MSEdgeDev Debug Protocol (instead of C++)

nbd https://t.co/WFahDhap6K

Likes

4880

Retweets

2249

#

And I really hate Twitter

rigid wedge
#

Why

sweet lodge
#

I don't understand how to get around

rigid wedge
#

me too

sweet lodge
#

And it just randomly stops showing replies and tries to show you different tweets

signal sand
#

@rugged root linux penguin?

somber heath
#

Tux.

#

Jar Jar Binks jynx.

woeful salmon
#

@vernal bridgehttps://theitbros.com/powershell-gui-for-scripts/#:~:text=Building%20PowerShell%20Scripts'%20GUI%20Using%20Visual%20Studio&text=WPF%20is%20a%20part%20of,user%20interfaces%20in%20Windows%20apps.&text=Use%20the%20Windows%20Forms%20element,the%20form%20(with%20drag%26drop).&text=And%20save%20the%20changes%20in%20the%20xaml%20file.

This time weโ€™ll show you how to create a simple Windows GUI form using PowerShell 3.0+ and place on it various standard dialog elements

rugged root
somber heath
#

Corpse database?

sweet lodge
somber heath
#

Ah. Corps.

#

Carps database.

#

Seems a bit suspesceious.

#

A little bit fishy.

#

La-a. Ladasha.

rugged root
#

Well done

stuck furnace
#

I actually found it really great.

#

It really seems to guess your intent very well.

#

It feels like you just spend less time typing and more time thinking about the design of your code.

#

And you can try out different designs more quickly as you don't have to spend ages typing them out.

woeful salmon
#

๐Ÿ˜ฆ

#

i don't understand copilot

#

o-O

modern juniper
#

is there anyone who can help me out in machine leaning project

#

???

rugged root
#

What's the issue you're having with it?

whole bear
#

silence speakers

#

to hear the sound of silence

somber heath
whole bear
#

moon light protector

somber heath
#

Moonscreen.

whole bear
#

1dimension printer

rugged root
west estuary
#

@rugged root
Guys, how to speak?

rugged root
#

That'll tell you what you need to know

whole bear
#

reverse toilet

#

lol just imagine

#

there uses from it

#

hahhaha

west estuary
#

On which channels can I discuss my questions to get 50 messages?

whole bear
#

100% plastic wire

#

and never get eletricuted

trail mural
#

Hi Keny
Hi Biocipher
Hi LX
Hi Chris
Hi Hemlock
Hi Noodle
๐Ÿ™‚

#

A fellow rotmg enjoyer

whole bear
trail mural
#

I played it religiously but I had to cut ties ;-;

#

the white bags

whole bear
#

but now i am just playing dofus

rugged root
#

I'll be back in a little while.

whole bear
trail mural
#

can't

whole bear
#

ok

trail mural
#

It's worse then crack

#

too addictive bro ๐Ÿ˜ฆ

whole bear
trail mural
#

New England

woeful salmon
#

@south bone i'm in New Delhi in India

#

xD

#

we were colonized by the british tho

modern juniper
#

can anyone heko me out please

trail mural
mortal crystal
#

move left from the 'p' and the 'l' and u gonna get it

trail mural
#

''p ''I

mortal crystal
#

can any admin give me share screen permission please? ๐Ÿ˜ฆ

#

<@&267628507062992896>

vivid palm
#

hi there, stream perms aren't granted by request like this

#

if a mod happens to be in vc later you can ask, but it's not guaranteed

vivid palm
#

don't ping people not in vc

hybrid linden
#

what IDE?

gloomy plinth
#

why can't I talk

hybrid linden
#

#voice-verification

#

Hello OpalMist

signal sand
hybrid linden
signal sand
hybrid linden
woeful salmon
#

@glad sandalyou're still better off than me :x i had people comming to me for 4 years straight whenever they forgot their password

#

asking me to hack their accounts to get them their password back...

signal sand
#

"can you hack this guy's facebook account please!!!!"

#

i was joking...

hybrid linden
#

oh no

celest current
#

yoo

#

whats up guys

hybrid linden
#

no

#

VScode is great if you can set it up correctly

signal sand
#

https://www.youtube.com/watch?v=wlR5gYd6um0&t=284s
@south bone ... maybe this might make it more intuitive...

Chris Toomey talks about mastering the Vim language. Vim's core is the amazing command mappings and text objects that allow for countless combinations to define precise edits. Learn how to master the built-in commands, motions, and text objects, and even how to extend the Vim language for even more power!

Slides: https://ctoomey.com/mastering-t...

โ–ถ Play video
signal sand
#

yeah

#

but video is more passive

woeful salmon
#

yeah but if you don't use it you forget it

#

like i half the time forget all the options for autocmd

#

also with neovim you don't get vimtutor separately but have to type :Tutor inside ov neovim itself

signal sand
#

video is for intuition... he talks about the structure of vim binding...

woeful salmon
#

ah true

#

its alot more detailed

#

@lavish rover ๐Ÿ‘‹

somber heath
#

Char siu

gloomy plinth
#

the help thing is weird

#

it says ... help channels are available but they're just not there

#

why? @lavish rover

somber heath
#

Expand the category

gloomy plinth
#

how

#

@signal sand

somber heath
#

Tap/click on it?

gloomy plinth
#

@lavish rover

somber heath
#

Maybe you just need some ctrl-r in your life.

gloomy plinth
#

cause it doesn't work mate

somber heath
#

F5?

gloomy plinth
somber heath
#

Show me the available channel section as you see it
Crop a screenshot or something.

gloomy plinth
#

now it's finally blue

somber heath
#

Blue...Is blue...good?

gloomy plinth
#

I mean i can click on the channel in the how to get help channel

#

I couldn't before

#

yaay @rugged root is there

signal sand
somber heath
#

There's the category in the channel list. You don't have to go through the how to get help channel.

somber heath
#

Mm.

candid panther
somber heath
#

I dud.

#

Also, I did.

candid panther
#

I can't make it pretty like you and rep, but its very fun

somber heath
#

Not a lot, but enough.

candid panther
#

Currently using np.linspace, np.sin and matplotlib.scatter.... lol

somber heath
#

Otherwise you're reduced to iteration.

#

You can plug numpy arrays into matplotlib.pyplot.imshow.

candid panther
#

Thats how the mandelbrot creator worked, and was very nice

somber heath
candid panther
somber heath
#

!e ```py
import numpy as np

arr = np.mgrid[:5, :5].T
print(arr)```

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

001 | [[[0 0]
002 |   [1 0]
003 |   [2 0]
004 |   [3 0]
005 |   [4 0]]
006 | 
007 |  [[0 1]
008 |   [1 1]
009 |   [2 1]
010 |   [3 1]
011 |   [4 1]]
... (truncated - too many lines)

Full output: https://paste.pythondiscord.com/pokimilaxi.txt?noredirect

gloomy plinth
woeful salmon
#

i have no allergies i still feel disguisted when i eat too much of anything sweet

#

might not be the right word for it but idk how else to say it

#

well people eat dogs too

rugged root
#

I wouldn't eat my pets

woeful salmon
#

o- o well i have no particular like / dislike of any animal really so

#

i would eat it if its tasty and if its not specifically being killed just for me to eat it

rugged root
#
lavish rover
candid panther
#

Is it hacky? Yes. Is it pretty? Not quite. Is it fun? I think so lol

lavish rover
#

Ooh nice

rugged root
lavish rover
#

Hippo critic: this movie was a disappointment, would not recommend watching

somber heath
#

Video is fine.

#

One of my favourite scenes in Firefly is where River gets startled by Book's hair.

lavish rover
somber heath
#

@marble canyon Your jitter is excessive.

rugged root
#

Very choppy interwubs

somber heath
#

Can't hear you for shit.

rugged root
#

@marble canyon It's impossible to understand you at this point

marble canyon
#

yaeh

#

its shit intrnet

somber heath
#

So long as the missile knows both where it is and where it is not.

marble canyon
#

idk but hyper sonic missils

#

that russia invent

#

are very dangours

somber heath
#

Schrรถdinger's flea market.

rugged root
woeful salmon
#

@rugged tundrayou don't wanna... honestly

#

what you know there is wrong

#

lol

#

mostly

#

@south boneonly online

#

that doesn't happen in actual schools

somber heath
#

Social blunderbuss.

rugged root
#

OOOO

#

Damn it! It's already in the game

#

Blunderbuss Driver

somber heath
#

Tactical Blunderbuss.

#

Too similar, I guess.

rugged tundra
#

fhttps://www.youtube.com/watch?v=HcqCWiGyDvw

Millions of tons of sugarcane waste, also known as bagasse, is produced every year. And India grows the second-most sugarcane of any country in the world. That's why Yash Pakka's brand Chuk is creating tableware out of the waste that is usually burned for fuel.

MORE BUSINESS INSIDER VIDEOS
What Army Tankers Go Through In Boot Camp | Boot Camp
h...

โ–ถ Play video
rugged root
#

I was meaning more like a bus driver

somber heath
#

No, I meant tactical blunderbuss was probably too similar to social blunderbuss.

woeful salmon
#

also @lavish rover rn if you goto any fast food place in india kfc, burger king, mcdonalds, pizzahut, dominos they all have no plastic straws

#

paper straws.....

#

which are kinda shit

lavish rover
woeful salmon
#

true

marble canyon
#

my fking internet

#

who is here can speak french?

lavish rover
#

oui oui baguette

#

omelette du fromage

whole bear
#

hello

marble canyon
lavish rover
#

omelette du fromage

marble canyon
#

j'aime le frite omelette

#

mais pas avec le fromage

rugged root
lavish rover
#

"the fuck"

smoky phoenix
#

i have no idea whats going on

#

but continue

#

i still have to send 50 or so messages

#

just so I can participate

peak copper
#

I think there is also a spam rule

smoky phoenix
#

Yeah

#

Which means I have to converse with people

#

Which is nice

#

I guess

peak copper
#

That's how I did it.

smoky phoenix
#

Whats up

#

I don't have an idea what they're talking about.

#

How can you disagree where asia is?

rugged root
whole bear
#

@peak copperWhat is that your profile picture

smoky phoenix
#

Asia starts at the great plains west of russia

whole bear
#

@smoky phoenixare you from Russia

smoky phoenix
#

Southeast Asia

whole bear
#

it is chine

#

or something

smoky phoenix
#

dont wanna doxx just yet

#

hahaha

whole bear
#

asdfasdfasdf

#

I'm just joking

smoky phoenix
whole bear
#

are a no

rugged root
#

We actually have a channel for that! I'm glad we have that

whole bear
#

but I m not 50 messegaa yet

rugged root
#

A continent is any of several large landmasses. Generally identified by convention rather than any strict criteria, up to seven geographical regions are commonly regarded as continents. Ordered from largest in area to smallest, these seven regions are: Asia, Africa, North America, South America, Antarctica, Europe, and Australia. Variations wit...

lavish rover
#

It's just a portable living quarters made of an alloy trying to fool you

#

Con-tin-tent

whole bear
#

Turkey in the Asia

#

what

smoky phoenix
rugged root
#

No no no no

#

The ! was meant to be enthusiasm

smoky phoenix
#

W h a t

rugged root
#

Not yelling

#

I'm always happy to field questions about the server

smoky phoenix
#

I'm actually trying to get back to python later this year

#

"genius"

#

Wireless charging mousepads

#

Should be

#

a thing

#

MX master masterrace

rugged root
halcyon yew
#

I don't understand trackballs. Isn't that rather slow to use?

smoky phoenix
halcyon yew
#

true I suppose

halcyon yew
#

hmm

whole bear
#

but man has a good arm D: das

halcyon yew
#

@lavish rover how do you come up with those puns lol

smoky phoenix
#

kek

#

added a thread in brain for puns

smoky phoenix
#

Large glasses

#

Plaid shirt

#

how about search

#

are there channels here specific for a particular geolocation?

#

i.e. southeast asia

#

1 squared is 1

#

lamdaemon

smoky phoenix
#

CANT UNSEE

south bone
#

I couldn't find the gif I wanted so settle for that

smoky phoenix
#

its really weird to not know who's talking

smoky phoenix
#

lol

#

@leaden comet congrats on your kid tho

leaden comet
#

thank you

smoky phoenix
#

AHAHAHAHAHAHAAHAHHA

south bone
smoky phoenix
#

AHAHAHAH

south bone
#

haha np

smoky phoenix
#

powernap

#

Whats a Code Jam?

#

Any tech/stack in python you can recommend for automation/ML?

leaden comet
celest current
#

shesh

#

just spamming to get verified

#

sryy

rugged root
smoky phoenix
rugged root
#

Just a heads up, is all

celest current
#

So Mr. Hemlock I have to chat right ?? to get voice verify

smoky phoenix
#

Deep Fake using python with @leaden comet should be a thing

halcyon yew
#

using ai to create animations....talk about impressive

rugged root
#

Yep, just participate in the conversations, maybe give or get help in the help channels, check out the topical channels, etc.

celest current
#

thx

smoky phoenix
#

I think that's bullsh*t

#

it doesn't work like that, right?

rugged root
#

It really doesn't

smoky phoenix
#

Yeah.

#

Tru rru

#

his parents are still dead

#

I dropped from my chair

rugged root
#

Although it does depend on the algorithm or whatever magic is used

#

Might be how it works eventually

#

Just not now

smoky phoenix
#

BATTLER

#

AHAHAHAH

#

Yeah.

leaden comet
rugged root
rugged root
#

Still working on documentation, error handling, etc.

#

But it's fully functional

smoky phoenix
#

If had to delete a country, it'd be ||redacted|| because i cant talk yet lmao

#

DELET

#

AHAHAHAHAHAAA

#

Good point

whole bear
#

but the territory its deleted ?

smoky phoenix
#

What is a self?

rugged root
#

self is usual in reference to the current object. Trying to think of how to explain it without a lot of extra

#

Let me crack out a quick class example to try to explain

smoky phoenix
#

@leaden comet portapotty acoustics > Grand theater acoustics

#

WHAT

#

WHAT NOW

#

entomemeology

#

Latin

#

because every time you talk, you sound like you're summoning satan

#

Especially if you add some sort tune to it.

#

Or add hums to it

rugged root
#

!e

class Student:
  def __init__(self, name, age, favorite_subject):
    self.name = name
    self.age = age
    self.favorite_subject = favorite_subject

  def introduce(self):
    print(f"Hi! I'm {self.name} and I'm {self.age} years old.")

billy = Student("Billy", 8, "Math")
sally = Student("Sally", 6, "Science")
billy.introduce()
sally.introduce()
wise cargoBOT
#

@rugged root :white_check_mark: Your eval job has completed with return code 0.

001 | Hi! I'm Billy and I'm 8 years old.
002 | Hi! I'm Sally and I'm 6 years old.
rugged root
#

SO

smoky phoenix
#

HOLY SHIT

#

There's an eval commadn here?

#

NOICE

#

HAHAHAHA

rugged root
#

Here we have a basic class called Student. Got our methods, some attributes, etc.

#

So if we look at self, we can think of it as what object is calling it.

#

We can kind of think of the function call as:

billy.introduce()

# is kind of like

Student.introduce(billy)
#

We pass the object as part of the method call. Methods require you to have self as the first parameter (except in some cases, but in general this is the case)

smoky phoenix
#

Question:
Does python have traits?

#

similar to what PHP has?

#

I see.

#

I'll take a look

leaden comet
#

!e

print("โ€ซmixins are pretty cool")โ€Š
wise cargoBOT
#

@leaden comet :white_check_mark: Your eval job has completed with return code 0.

โ€ซmixins are pretty cool
smoky phoenix
#

is it like an eval error

#

idk

#

that's weird

rugged root
#

!charinfo print("โ€ซmixins are pretty cool")

wise cargoBOT
#
Character Info

\u0070 : LATIN SMALL LETTER P - p
\u0072 : LATIN SMALL LETTER R - r
\u0069 : LATIN SMALL LETTER I - i
\u006e : LATIN SMALL LETTER N - n
\u0074 : LATIN SMALL LETTER T - t
\u0028 : LEFT PARENTHESIS - (
\u0022 : QUOTATION MARK - "
\u202b : RIGHT-TO-LEFT EMBEDDING - โ€ซ
\u006d : LATIN SMALL LETTER M - m
\u0069 : LATIN SMALL LETTER I - i

Full Raw Text

\u0070\u0072\u0069\u006e\u0074\u0028\u0022\u202b\u006d\u0069\u0078\u0069\u006e\u0073\u0020\u0061\u0072\u0065\u0020\u0070\u0072\u0065\u0074\u0074\u0079\u0020\u0063\u006f\u006f\u006c\u0022\u0029

stuck furnace
#

Yeah that one had me really confused too

smoky phoenix
#

probably starfighters

#

Lazers > birds

smoky phoenix
#

!e

\u0070\u0072\u0069\u006e\u0074\u0028\u0022\u202b\u006d\u0069\u0078\u0069\u006e\u0073\u0020\u0061\u0072\u0065\u0020\u0070\u0072\u0065\u0074\u0074\u0079\u0020\u0063\u006f\u006f\u006c\u0022\u0029
#

WHAT

#

Is dat news

#

idk

#

i think imma go and work. Ciao!

brave steppe
woeful salmon
#

๐Ÿ˜ฎ what is this discord party mode thing

#

looks fun

frosty star
#

Ah I clicked on maybe later now I regret it

#

What is it

#

experience is the best teacher

#

@woeful salmon

#

ooh this party mode is fuuuuuuun

woeful salmon
#

i already got all achievements...

frosty star
#

๐Ÿ˜„ lets see what other stuff I could do

woeful salmon
#

lol

frosty star
#

@woeful salmon mention me pls ๐Ÿ˜ฎ

woeful salmon
#

@frosty star there you go ๐Ÿ™‚

frosty star
#

yay XD

#

thanks man

woeful salmon
#

the reward is noice

woeful salmon
#

see i just don't wanna be alone in it

#

xD

#

goodluck with the math ones :x specially typing over 2000 letters without nitro (you can do it as i did too)

frosty star
#

haha i'll drop an essay somewhere

woeful salmon
#

you can't

#

you gotta type each letter to get points

coarse viper
#

eggs, bacon, spam = 'What is going on, Marty?'.partition(',')
what is bacon after the following lines are executed?

whole bear
#

good morning

coarse viper
#

import random
random.randint
random1 = random.randint(0,12)
random2 = random.randint(0,12)
examples = ('1) 3 * 2 = _____ \n2) 5 * 6 = _____ \n3) 0 * 7 = _____ ')
f = open('myMultiplicationQuiz.txt' , 'w')

f.write(examples)

print(examples)

for i in range (4,11):
random1 = random.randint(0,12)
random2 = random.randint(0,12)
print (str(i)+ ')' , str(random1) , 'x' , str(random2) , '= _____')

f.write()

f.close()

somber heath
#

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

opal lantern
#
import random
random.randint 
random1 = random.randint(0,12)
random2 = random.randint(0,12)
examples = ('1) 3 * 2 =  \n2) 5 * 6 =  \n3) 0 * 7 =  ')
f = open('myMultiplicationQuiz.txt' , 'w')

f.write(examples)

print(examples)

for i in range (4,11):
    random1 = random.randint(0,12)
    random2 = random.randint(0,12)
    print (str(i)+ ')' , str(random1) , 'x' , str(random2) , '= ')


f.write()

f.close()

Here you go lol! Only thing i know how to do in coding

#

Take care you Smart People!

lunar mulch
#

examples = ('1) 3 * 2 = \n2) 5 * 6 = \n3) 0 * 7 = ')

coarse viper
#
  1. 3 * 2 = _____
  2. 5 * 6 = _____
  3. 0 * 7 = _____
  4. 2 x 6 = _____
  5. 1 x 0 = _____
  6. 12 x 2 = _____
  7. 2 x 6 = _____
  8. 11 x 2 = _____
  9. 11 x 11 = _____
  10. 0 x 8 = _____
lunar mulch
#

aren't u supposed to use writelines()

lavish rover
#
print(..., file = f)
somber heath
#

!e py name = "Albert" print(f"Hello, {name}.")

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

Hello, Albert.
somber heath
#

!e py age = 300 name = "Methuselah" result = f"Hello, {name}. You are {age} years old." print(result)

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

Hello, Methuselah. You are 300 years old.
somber heath
#

!e py print(f"{6*6}")

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

36
somber heath
#

!e ```py
def func():
return "Hi!"

print(f"{func()}")```

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

Hi!
lunar mulch
lavish rover
#

!e

def func():
    return "Hi!"

print(f"{func()=}")
wise cargoBOT
#

@lavish rover :white_check_mark: Your eval job has completed with return code 0.

func()='Hi!'
somber heath
#

!e py a = 5 b = 6 print(f"{a = }, {b = }")

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

a = 5, b = 6
coarse viper
#

print (str(i)+ ')' , str(random1) , 'x' , str(random2) , '= _____' , )

somber heath
#

!e print(1, 2, 3)

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

1 2 3
somber heath
#

!e print("1 2 3")

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

1 2 3
coarse viper
#

print (str{i})+ ')' , str{random1} , 'x' , str{random2} , '= _____' , )

somber heath
#

!e py i = 8 random1 = 6 random2 = 2 print(f"{i}) {random1} x {random2} = {random1 * random2}")

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

8) 6 x 2 = 12
coarse viper
somber heath
#

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

coarse viper
lavish rover
#

!e

x = 5
print(f'x = {x}\n\n\noops')
wise cargoBOT
#

@lavish rover :white_check_mark: Your eval job has completed with return code 0.

001 | x = 5
002 | 
003 | 
004 | oops
somber heath
#

!e py f"{'\n'}"

wise cargoBOT
#

@somber heath :x: Your eval job has completed with return code 1.

001 |   File "<string>", line 1
002 |     f"{'\n'}"
003 |              ^
004 | SyntaxError: f-string expression part cannot include a backslash
lunar mulch
#

!e

f"{'\nhello'}"
wise cargoBOT
#

@lunar mulch :x: Your eval job has completed with return code 1.

001 |   File "<string>", line 1
002 |     f"{'\nhello'}"
003 |                   ^
004 | SyntaxError: f-string expression part cannot include a backslash
lunar mulch
#

the string cannot contain escape character

south bone
coarse viper
somber heath
#
from PIL import Image
import numpy as np

img = Image.open(...)
arr = np.array(img)
img_two = Image.fromarray(arr.astype(np.uint8))```
quasi lichen
#

Hey

#

Hello

quasi lichen
#

So it creates a multi-dimensional box to store numbers?

#

Is it similar to matrices

#

Ah

#

I see

#

Iโ€™m a bit new to python and coding in general

#

Iโ€™ve been working using the tkinter library

#

Well I was using it as well as sqlite3 to a ui that users can be more interactive with the databases

#

Im also trying to start learning c as well and maybe rust

#

Yeah I hear rust is becoming very useful now

quasi lichen
#

oh so itโ€™s like .format()?

lavish rover
#

!f-strings

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.

quasi lichen
#

is main difference between this and .format just the syntax

#
def __init__(self):
#

I am confused on what this does

somber heath
#

!e ```py
class MyClass:
def init(self):
print(f"Hello! I am {self}.")

MyClass()```

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

Hello! I am <__main__.MyClass object at 0x7f0e1d875480>.
quasi lichen
#

so to instantiate it you call the class and to instantiate it into memory you assign it to a variable?

#

so if you move on from the line python will forget about the instance, but the instance is still exists in memory?

somber heath
#

!e ```py
class MyClass:
def init(self):
print(self)

mc = MyClass()
print(mc)```

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

001 | <__main__.MyClass object at 0x7fd6928c5480>
002 | <__main__.MyClass object at 0x7fd6928c5480>
quasi lichen
#

what is an object in this context?

#

what would an example of an object be?

#

so in print()
print is an object?

somber heath
#

!e print(dir(print))

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

['__call__', '__class__', '__delattr__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__gt__', '__hash__', '__init__', '__init_subclass__', '__le__', '__lt__', '__module__', '__name__', '__ne__', '__new__', '__qualname__', '__reduce__', '__reduce_ex__', '__repr__', '__self__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__text_signature__']
quasi lichen
#

if you did like
variable = myClass()
variable is now an object?

#

so variable is the instantiation of the class?

somber heath
quasi lichen
#

So

def __init__(self):

Creates an instance of a class?

#

so when you set a variable equal to a class then the init helps with that?

somber heath
#

!e py a = [] b = [] c = a print(a == b) #True. The list instance referred to by a is equal to the list instance referred to by b. print(a is b) #False.They are not the same list. print(a is c) #True. The list instance a refers to is the same list instance that c refers to.

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

001 | True
002 | False
003 | True
quasi lichen
#

Iโ€™m a bit confused on terminology of instance

somber heath
#

Here, list is the class, the lists are the class instances.

quasi lichen
#

So an instance is a pointer to something?

#

Hmm why would first one be true then if they are different lists?

#

Ohh

#

So a, b, and c are all instances of objects

somber heath
#

Equality vs identity. == vs is

quasi lichen
#

So would [] be an instance of a class?

#

ohh

#

So [] is just how you refer to the class list?

#

Ah

somber heath
#

!e py a = [1, 2, 3] print(a)

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

[1, 2, 3]
quasi lichen
#

So [] uses the class list to create a list an the values inside of it are part of the instance..?

somber heath
#

!e py a = [1, 2, 3] b = a a.append(4) print(b)

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

[1, 2, 3, 4]
quasi lichen
#

[1, 2, 3] is an instance of a list

#

?

#

Okay so I think I understand, so an instance is something that.. acts as the original that you can act on

#

So you use the blueprint (class) to creates the houses and cars (instances)

#

So in your examples, what would you call the variables that equal the instances?

#

So they point to the instance?

somber heath
#

!e ```py
class MyClass:
def init(self, v):
self.thing = v
def method(self):
print(self.thing)

mca = MyClass("apple")
mcb = MyClass("banana")

mcb.method()
mca.method()```

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

001 | banana
002 | apple
whole bear
#

print("0-0")

#

!e

wise cargoBOT
#
Missing required argument

code

#
Command Help

!eval <code>
Can also use: e

*Run Python code and get the results.

This command supports multiple lines of code, including code wrapped inside a formatted code block. Code can be re-evaluated by editing the original message within 10 seconds and clicking the reaction that subsequently appears.

We've done our best to make this sandboxed, but do let us know if you manage to find an issue with it!*

whole bear
#

!e
print("o-o")

wise cargoBOT
#

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

o-o
quasi lichen
#

I see

whole bear
#

!e
for i in range(0,10):
print(i)

wise cargoBOT
#

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

001 | 0
002 | 1
003 | 2
004 | 3
005 | 4
006 | 5
007 | 6
008 | 7
009 | 8
010 | 9
whole bear
#

!e
for i in range(0,10):
i = "tomato"
print(i)

wise cargoBOT
#

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

001 | tomato
002 | tomato
003 | tomato
004 | tomato
005 | tomato
006 | tomato
007 | tomato
008 | tomato
009 | tomato
010 | tomato
quasi lichen
#

So you passed apple as the argument which replaces v in the class?

#

Ah

#

So itโ€™s passing an argument into a parameter

whole bear
#

password = 123456
for i in range(0,1000000):
if i == password:
print(i)

quasi lichen
#

I see I see

whole bear
#

password = 123456
for i in range(0,1000000):
if i == password:
print(i)

quasi lichen
#

So what does object oriented programming mean?

whole bear
#

!e
password = 123456
for i in range(0,1000000):
if i == password:
print(i)

wise cargoBOT
#

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

123456
quasi lichen
#

I donโ€™t think they are in the voice channel

somber heath
#

@whole bear Maybe use the #bot-commands channel.

whole bear
#

okay @somber heath

somber heath
#

Please and thank you. ๐Ÿ˜

whole bear
#

mb

quasi lichen
#

I think I need a little clarification on the terms objects am still a bit confused

#

Ah okay

#

Thank you for your help

somber heath
#

Corey Schafer Youtuber. Python Playlists. Python for beginners.

quasi lichen
#

I see okay

#

Will definitely check it out

#

What would a container class mean?

#

An object could mean like a list or tuple or any data type?

somber heath
#

!e py v = [] v.append(v) print(v)

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

[[...]]
quasi lichen
#

So itโ€™s appending itself?

#

So youโ€™re appending an instance of the same list to itself

#

Ah

#

Oh I think I get it

#

So like v would be referencing the instance of the list and so now you are appending the reference to the actually instance?

#

I see I see

#

That is slightly confusing

#

Okay have a good day!

idle moat
#

hi

#

how you doing?

#

nvm

rigid wedge
#

Hii

#

Say somethingpithink

#

I cant talklemon_sentimental

whole bear
#

@rigid wedgetomato

rigid wedge
#

Hellow

rigid wedge
whole bear
#

what is that mean

#

lovat

rigid wedge
#

Just my name

#

Why? What's wrong?

whole bear
#

ฤฑ just wonder

#

ฤฑ thought it has a mean

#

@rigid wedgehow is it going

#

?

rigid wedge
#

Really fine

#

How about u?

whole bear
#

not bad

#

@rigid wedgeOv something happend good or normaly you are every time good

rigid wedge
#

Everytime in my life, i feel so good

#

Just one, i must sent than 50 messages in this ch๐Ÿ‘ถ

whole bear
#

@rigid wedge yuppi

rigid wedge
#

U want yupii?

whole bear
#

yes

#

no

rigid wedge
whole bear
#

yes

rigid wedge
#

Yupii is good

whole bear
#

asdfasdfsd

#

this not funy

#

aลŸsdljfsdลŸlkfjasdf

rigid wedge
#

I feel so love if i eat yopii

whole bear
#

yupi is looking good

rigid wedge
#

Candy

whole bear
#

yea but eat slowly because you can finish to fast

rigid wedge
#

Why finish to fast

#

Uwiii i feel so love

whole bear
#

nooooo u feel terriable becuase if you want eat yupi you cant find and this is bad

#

if you eat every day one yuppi it is good

rigid wedge
#

I can find yupii everytimee

#

In your country don't have yupii?

rigid wedge
whole bear
rigid wedge
#

Noo i really like yupii

whole bear
#

but this is not important think about that every day just yuppi breakfast dinner everything you just have to eat yuppi

#

it's already good

rigid wedge
#

Ahahaha, i'm human yupiii

#

Have you ever tried rendang?

whole bear
#

no

#

what is that

#

looking delicios

#

do you now kebab

rigid wedge
rigid wedge
whole bear
#

@rigid wedgeI have to go we can talk later see you friend

rigid wedge
#

I often eat kebab

whole bear
rigid wedge
whole bear
#

thank you

whole bear
#

how you eat often

#

kebaba

rigid wedge
#

In my country have kebab too

somber heath
#

@whole bear You're very quiet. As a result, combined with the relative difference in our accents, I find it very difficult to understand you. Try adjusting your microphone gain settings in your operating system or move your microphone closer to your mouth when you speak.

cold bone
#

Could you help me about issue in Kiwi channel?

#

How to use mic?

somber heath
wise cargoBOT
#

Voice verification

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

cold bone
lunar mulch
#

!voice

somber heath
#

!d multiprocessing.get_logger

wise cargoBOT
#

multiprocessing.get_logger()```
Returns the logger used by [`multiprocessing`](https://docs.python.org/3/library/multiprocessing.html#module-multiprocessing "multiprocessing: Process-based parallelism."). If necessary, a new one
will be created.

When first created the logger has level `logging.NOTSET` and no
default handler. Messages sent to this logger will not by default propagate
to the root logger...
royal sequoia
#
#include <glad/glad.h>
#include <GLFW/glfw3.h>

int main(void)
{
    GLFWwindow* window;

    /* Initialize the library */
    if (!glfwInit())
        return -1;

    /* Create a windowed mode window and its OpenGL context */
    window = glfwCreateWindow(640, 480, "Hello World", NULL, NULL);
    if (!window)
    {
        glfwTerminate();
        return -1;
    }

    /* Make the window's context current */
    glfwMakeContextCurrent(window);

    /* Loop until the user closes the window */
    while (!glfwWindowShouldClose(window))
    {
        /* Render here */
        glClear(GL_COLOR_BUFFER_BIT);

        /* Swap front and back buffers */
        glfwSwapBuffers(window);

        /* Poll for and process events */
        glfwPollEvents();
    }

    glfwTerminate();
    return 0;
}
#
PFNGLACCUMPROC glad_glAccum = NULL;
PFNGLACTIVETEXTUREPROC glad_glActiveTexture = NULL;
PFNGLALPHAFUNCPROC glad_glAlphaFunc = NULL;
PFNGLARETEXTURESRESIDENTPROC glad_glAreTexturesResident = NULL;
PFNGLARRAYELEMENTPROC glad_glArrayElement = NULL;
PFNGLATTACHSHADERPROC glad_glAttachShader = NULL;
PFNGLBEGINPROC glad_glBegin = NULL;
PFNGLBEGINCONDITIONALRENDERPROC glad_glBeginConditionalRender = NULL;
PFNGLBEGINQUERYPROC glad_glBeginQuery = NULL;
PFNGLBEGINTRANSFORMFEEDBACKPROC glad_glBeginTransformFeedback = NULL;
PFNGLBINDATTRIBLOCATIONPROC glad_glBindAttribLocation = NULL;
PFNGLBINDBUFFERPROC glad_glBindBuffer = NULL;
PFNGLBINDBUFFERBASEPROC glad_glBindBufferBase = NULL;
PFNGLBINDBUFFERRANGEPROC glad_glBindBufferRange = NULL;
PFNGLBINDFRAGDATALOCATIONPROC glad_glBindFragDataLocation = NULL;
PFNGLBINDFRAGDATALOCATIONINDEXEDPROC glad_glBindFragDataLocationIndexed = NULL;
PFNGLBINDFRAMEBUFFERPROC glad_glBindFramebuffer = NULL;
PFNGLBINDRENDERBUFFERPROC glad_glBindRenderbuffer = NULL;
PFNGLBINDSAMPLERPROC glad_glBindSampler = NULL;
PFNGLBINDTEXTUREPROC glad_glBindTexture = NULL;
lavish rover
bleak knot
#

I cant see anyone's name in VC

lavish rover
bleak knot
#

Thank you, that fixed it

lavish rover
#

yeah it's an annoying discord client bug

#

cartographhy

lavish rover
#

!e print(divmod(7, 5))

wise cargoBOT
#

@lavish rover :white_check_mark: Your eval job has completed with return code 0.

(1, 2)
lyric moss
#

def inverseMod(a, m):