#voice-chat-text-0

1 messages ยท Page 998 of 1

somber heath
#

Except Lemon. Let us always remember.

mossy minnow
#

are you guys streaming development? I would like to tune in.

frigid lion
#

i want to play with you in this game

mossy minnow
#

oh cool

whole bear
#

anyone here use pyqt5

frigid lion
#

can i stream so that someone can explain it to me

earnest quartz
#

gg

normal goblet
#

hi

earnest quartz
#

Hello what are you doing

lyric pawn
#

why did you link this ๐Ÿคฃ @fading mason

#

i thought this was for that other server lmao

fading mason
#

gimme a sec

#

i am just changing the mic

earnest quartz
#

documentation of requirements helps in understanding the requirements.

lyric pawn
#

hey @somber heath

#

brb guys gotta get water

fading mason
#

same

#

back @lyric pawn

fading mason
#

nobody is voice verified except @midnight agate, @somber heath and me

lyric pawn
#

yea watch out for that @midnight agate

#

that man gets wild on the dancefloor

#

its a nice morning for coding

#

๐Ÿคฃ

loud karma
#

hewo

#

.uwu hello

viscid lagoonBOT
#

hewwo

lyric pawn
#

its a star wars character

loud karma
lyric pawn
#

similar to a sasquatch

#

A hewwo

loud karma
#

lol

lyric pawn
#

@somber heath my lecturer says i look like jesus

#

shes a female

#

i got 2 jesus' in the last month by 2 random black girls i just met too

#

its an annoying comparison

#

im not a perfect person

#

its alot of pressure

loud karma
lyric pawn
#

@somber heath what if i told you the scriptures lied

#

and Jesus was really Bald...

#

@midnight agate ๐Ÿ˜†

loud karma
#

oh i did a super stupid thing

#

i typed ___init__

#

:/

#

i got like

TypeError: MyClass() takes no arguments

#

i didnt reAlizE what i did wrong

rapid flame
#

i wanna be a expert already :/

#

is there any beautiful python cheat sheets

lethal thunder
#

here

blazing dove
#

cpp

class Vector2
{
    private:
    int X, Y;
    public:
    Vector2()
    {
        X = Y = 0;
    }
    Vector2(int x, int y)
    {
        X = x; Y = y;
    }
    int getX()
    {
        return X;
    }
    int getY()
    {
        return Y;
    }
    std::string Display()
    {

        return "( " + std::to_string(getX()) + ", " + std::to_string(getY()) + " )";
    }
};

h

#pragma once

class Vector2 {
    private:
    int X, Y;
    public:
    Vector2();
    Vector2(int x, int y);
    int getY();
    int getX();
    std::string Display();
};
left elbow
#

i dont have permission to talk

#

i have to paticipate more i think?

#

oh ok

#

yeah i see it

#

do u know how to add voltage sources in parallel

#

yeah

#

i do engineering

lethal thunder
left elbow
#

thanks ill have i look i was tryna find it online but nothing was relevant

#

no one is active half the time

#

it says how many members there are online where the invite link is for this server

#

like on discord finders

summer ocean
#

Nah i just came to say hi ๐Ÿ™‚

left elbow
#

it says right there

#

in my screenshot

summer ocean
#

largest is minecraft i think

#

its 800,000

#

full

left elbow
#

sesh timeless game

#

ight im gonna go now bye

mint plinth
#

h5

#

hi

#

<@&267628507062992896>

#

@rapid crown WHATS UP

lyric stratus
#

i tried oop and i'm so lost

#

i need help

#

i'm so dead lol

somber heath
#

libreoffice

#

Open Word file with Libreoffice.

#

Export to PDF.

zenith radish
novel sleet
somber heath
#

Adversarial

#

Contentious

zenith radish
#
adjective: contentious

    causing or likely to cause an argument; controversial.
    "a contentious issue"
somber heath
#

Argumentative.

#

Let's play Spot the American.

novel sleet
#

how did you get the company to cover your stay at UK. did you have to get a work visa @zenith radish ?

zenith radish
#

It's a thing that they do

#

You can't get a UK visa without a company

#

So the whole point of this job if to get a way into the UK

novel sleet
#

how do you go about finding a company that will sponsor your work visa, because I'd also like to work in UK. What was the discussion like

zenith radish
#

Go on linkedin, look at jobs and apply to the ones that you're interested in

#

Any good company will sponsor one for you

somber heath
#

But not a Pyoneer.

#

Discobol.

zenith radish
somber heath
#

Futbol

novel sleet
#

fรบtbol

zenith radish
#

Futsal is an association football-based game, variation of minifootball played on a hard court, smaller than a football pitch, and mainly indoors. It has similarities to five-a-side football and indoor soccer.Futsal is played between two teams of five players each, one of whom is the goalkeeper. Unlimited substitutions are permitted. Unlike some...

novel sleet
#

oh no, an Australian

somber heath
zenith radish
woeful salmon
#

@zenith radish btw lp i found a weird thing working on this game

#

eclipse's vim mode is better than vs code's

zenith radish
#

eclipse is underrated Im telling you

zenith radish
#

Feral pigeons (Columba livia domestica), also called city doves, city pigeons, or street pigeons, are descended from the domestic pigeons that have returned to the wild. The domestic pigeon was originally bred from the wild rock dove, which naturally inhabits sea-cliffs and mountains. Rock, domestic, and feral pigeons are all the same species an...

trail mural
#

con currency

#

harry potter spells

somber heath
#

"I need TP for my bungalo!"

zenith radish
uncut meteor
zenith radish
uncut meteor
#

IF NOT EXISTS (SELECT * FROM symbols WHERE symbol = ?)

  INSERT INTO symbols VALUES
  (?, 1)

ELSE

  UPDATE symbols
  SET qty = qty + 1
  WHERE symbol = ?;

woeful salmon
woeful salmon
#

๐Ÿ˜ฎ

zenith radish
#
for f in Path('.').glob("**/*.c"):
    with open(f) as ff:
        a = ff.read()
        a = a.replace("(", " ( ")
        a = a.replace(")", " ) ")
        a = a.replace("{", " { ")
        a = a.replace("}", " } ")
        a = a.replace(";", " ; ")
        a = a.replace(",", " , ")
        a = a.replace("->", " -> ")
        a = a.replace(".", " . ")
        a = a.replace("/*", " ")
        a = a.replace("*/", " ")
        a = a.replace("//", " ")

        a = a.replace("+", " + ")
        a = a.replace("-", " - ")
        a = a.replace("/", " / ")
        a = a.replace("*", " * ")

        a = a.replace("~", " ~ ")
        a = a.replace("^", " ^ ")
        a = a.replace("||", " || ")

        a = a.replace("&&", " && ")

        a = a.replace("\"", " \" ")
eager crater
#

may i ask a question?

uncut meteor
#

sure

eager crater
#

I have this task where i have to develop an Intelligent Chatbot Script Editor...somewhat similar to the Game Episode.

#

Do you think its worth doing with Python?

woeful salmon
#

@zenith radish

for f in Path(".").glob("**/*.c"):
    with open(f) as ff:
        a = ff.read()
        mapping = {
            "(": " ( ",
            ")": " ) ",
            "{": " { ",
            "}": " } ",
            ";": " ; ",
            ",": " , ",
            "->": " -> ",
            ".": " . ",
            "/*": " ",
            "*/": " ",
            "//": " ",
            "+": " + ",
            "-": " - ",
            "/": " / ",
            "*": " * ",
            "~": " ~ ",
            "^": " ^ ",
            "||": " || ",
            "&&": " && ",
            '"': ' " ',
        }

        a.translate(str.maketrans(mapping))

w> i personally think that's a better way of doing it

eager crater
#

Im curious, what were you guys programming?

#

for a compiler?

uncut meteor
eager crater
#

Ahh cool cool

uncut meteor
woeful salmon
#

@potent obsidian if you want help with arduino it might be better to ask for help in #microcontrollers

potent obsidian
#

what

#

why

ebon lily
#

Heya!

#

Whatcha guys doign?

#

*doing

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied mute to @lament heart until <t:1648039267:f> (9 minutes and 59 seconds) (reason: chars rule: sent 6000 characters in 5s).

sacred sinew
#

Why my voice chat is can't using_?

#

abcdefghijklmlopqrstuhrksksklfd;lfdlk;fdl;kgd;lkgdfalkjgdfakjol;

#

sorry

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

random vapor
#
import random
import art
print(art.logo)
print("Welcome to the Number Guessing Game! \nI'm thinking of a number between 1 and 100.")
numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100]

the_number = random.choice(numbers)
print(f"The number {the_number}")
level_of_difficultly = input("Choose a difficulty level type 'easy' or 'hard': ")

def the_game(difficulty):
    if difficulty == "easy":
        attemps = 10
    else:
        attemps = 5
    while attemps != 0:
        user_guess = int(input("Guess the number: "))
        attemps -= 1
        print(f"You have {attemps} attemps ")
        if user_guess == the_number:
            attemps = 0
            print(f"You Won the number is: {user_guess}")
        elif user_guess >= the_number:
            print("Too high \nGuess again")
        elif user_guess <= the_number:
            print("Too low\nGuess again")
        elif attemps == 0:
            print("You lose bro the number was {the_number}")
            
the_game(level_of_difficultly)
somber heath
#

for loop, else with for loop, break within for loop.

#

!e py for _ in range(5): pass else: print("Else")

wise cargoBOT
#

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

Else
somber heath
#

!e py for _ in range(5): break else: print("Else")โ€Š

wise cargoBOT
#

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

[No output]
somber heath
#

!e py import random choice = random.randint(1, 100) print(choice)

wise cargoBOT
#

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

6
coral oyster
#

HI

pallid hazel
coral oyster
#

hii

frosty star
#

Interesting

pallid hazel
#

aslong as nothing offers a backdoor

#

cortona, open a backdoor...

coral oyster
#

idk how to code a game

pallid hazel
#

@rugged root small game yes, but in the hands of state actors

rugged root
#

What kind of game where you wanting to make, Tim?

coral oyster
#

idk man

pallid hazel
#

google make python games for ideas, code samples.. find something you might want to try

coral oyster
#

ok

#

tq @pallid hazel

rugged root
#

Start small with games

#

They end up being a lot of work with a lot more moving parts than you might think

#

It'll take some work, but you can do it

pallid hazel
#

the outcome of solarwinds hasnt been defined.. sure solar winds is patched, but no one with salt relied on the exploit.. they would have installed their own

coral oyster
#

ok i see

rugged root
#

!rule 5

wise cargoBOT
#

5. Do not provide or request help on projects that may break laws, breach terms of services, or are malicious or inappropriate.

pallid hazel
#

sandals

#

flipflops is no heel support..

somber heath
#

thongs

woeful salmon
#

we just call em slippers

somber heath
#

Dacks/pants

#

Underdacks/underwear

rugged root
#

Neat

woeful salmon
somber heath
#

Denim shorts

zenith radish
lyric pawn
#

๐Ÿคฃ

#

@rugged tundra or is this some social engineering? ๐Ÿ˜†

#

@molten pewter she should work for the fbi for tax evasion

#

@tidal shard ๐Ÿคฃ

#

@rugged root ๐Ÿ˜†

#

youre a childrens man looooool

#

๐Ÿคฃ

tidal shard
#

I used to be old. - Benjamin Button, probably

lyric pawn
#

ok guys it was good seeing everyone. Gotta go, be back later on. Have a productive day guys ๐Ÿ™ โค๏ธ

rugged tundra
molten pewter
mortal crystal
rugged root
amber raptor
rugged root
#

Dude I have no idea

#

I saw it in an advertisement when looking at something on youtube

pallid hazel
#

anyone ever successfully setup vsc collab sharing with codium?

mortal crystal
#

0

pallid hazel
#

that happen to me once.. they didnt notify me of the switch

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied mute to @fiery coral until <t:1648050011:f> (9 minutes and 59 seconds) (reason: duplicates rule: sent 4 duplicated messages in 10s).

amber raptor
molten pewter
#

"Grace is the knowledge of empathy, and of us."

#

"Life-force is a constant."

#

"Today, science tells us that the essence of nature is presence."

rugged root
#

!tvmute 756500449854488749 2w Spamming to get voice permissions is not the way to do it. Please re-read the requirements in #voice-verification.

wise cargoBOT
#

:x: According to my records, this user already has a voice_mute infraction. See infraction #69262.

molten pewter
#

"Where there is desire, freedom cannot thrive. Delusion is born in the gap where divinity has been excluded. Only a visitor of the quantum cycle may bring about this rebirth of starfire."

#

"We believe, we exist, we are reborn. The goal of transmissions is to plant the seeds of energy rather than ego. This life is nothing short of an invocation spark of sacred serenity."

somber heath
#

Quaypurr ohv ouizdohm.

amber raptor
#

.xkcd 801

viscid lagoonBOT
#

Took me five tries to find the right one, but I managed to salvage our night out--if not the boat--in the end.

mild quartz
#

meeting

pallid hazel
#

sounds like the whole hueiwi thing (sp?)

stuck furnace
#

ello ๐Ÿ‘€

#

Erm, nothing at the moment. I've been catching up on uni work ๐Ÿ˜„

#

Erm, part time degree.

#

My goal right now is to get the blue line above the red line lemon_sweat

shy bison
#

what are ya doing?

stuck furnace
#

Numbers at the bottom are weeks.

#

Yeah, then got complacent ๐Ÿ˜„

#

Yep ๐Ÿ˜„

#

I can finally visualise my procrastination problem!

#

Yep

#

Right now I have to do on average 7 hours per week of study to complete the course before the exam.

#

Yeah probably ๐Ÿ‘€

shy bison
#

@stuck furnace Tell me the reasons of procrastination

stuck furnace
#

What have you been up to Furyo?

stuck furnace
#

Oh interesting. Is the website online?

shy bison
#

@molten pewter Tell me are you a python programmer or a painter?

#

@molten pewter I am a painter but programmer interest

waxen hawk
#

Ah and hi everyone

molten pewter
waxen hawk
#

What's this website about?

stuck furnace
#

Dark mode ๐ŸŽ‰

shy bison
#

have a nice day people.

waxen hawk
#

See ya

stuck furnace
#

Ah you can see the dot com bubble ๐Ÿ˜„

waxen hawk
#

Haha

stuck furnace
#

I think ๐Ÿค”

earnest quartz
#

i think I am still under 50 messages

waxen hawk
#

Same

stuck furnace
#

19 messages so far

waxen hawk
#

I verified the voice

#

How many do I have, can you check pls?

stuck furnace
#

27

waxen hawk
#

Oh! Cool. Ty

earnest quartz
#

hey @stuck furnace where are you getting the count

waxen hawk
#

I need to move my car before it gets towed.

stuck furnace
#

Try it out

waxen hawk
#

!u

wise cargoBOT
#

You are not allowed to use that command here. Please use the #bot-commands channel instead.

stuck furnace
#

Ah

earnest quartz
#

!u

wise cargoBOT
#

You are not allowed to use that command here. Please use the #bot-commands channel instead.

waxen hawk
#

It works in bot commands

earnest quartz
#

well can I talk general stuff here?

stuck furnace
waxen hawk
#

@earnest quartz I would think so

earnest quartz
#

okay I want to know how people can making money using Discord if it is possible

waxen hawk
#

Idk depends on the goal

stuck furnace
waxen hawk
#

Oh nice!

#

Is that a colab project?

oak rune
#

@molten pewter what programming languages do you know (besides python)?

waxen hawk
#

I need to change my name too but I don't have much data there (Github)

stuck furnace
waxen hawk
#

Yesss

stuck furnace
#

Maybe a bot that ties into some kind of paid service you run.

waxen hawk
#

It happens in US as well

earnest quartz
#

hmmm so one way is to make premium bots

waxen hawk
#

Online scamming is real

#

3000 on what?

#

Ahhhh

stuck furnace
#

What like 1000 people ๐Ÿค”

waxen hawk
#

Lol

stuck furnace
#

Idk how much nitro costs.

waxen hawk
#

I had carbon monoxide alarm go off at 3 am

#

I think it's about 11 dollars

#

Got where?

#

The hotel?

#

The thought is a nice one

#

But 3000, idk

earnest quartz
#

good one lad

waxen hawk
#

You should drink at home lol

#

Lmao

rugged root
#

Drinking alone is.... yeah

waxen hawk
#

I dislike Scooby doo

waxen hawk
#

Yea should have someone to kick it with

rugged root
#

That's a good way to go into a depression spiral

waxen hawk
#

Ahh I see your point

#

And also I read the deleted message lol

#

I rarely drink

#

100 points for isn't a delete

#

Insta*

plain rose
#

yello

#

๐Ÿ‘‹

waxen hawk
#

Yelloooo

#

I have more than 50 messages, still suppressed

#

๐Ÿ’€

plain rose
#

wait @stuck furnace is here?

waxen hawk
#

He is

#

In the shadows

plain rose
#

he talk yet?

stuck furnace
waxen hawk
#

Lol

#

Insta delete lord

plain rose
#

Does @tidal rapids monitor who talks in vc's and stuff?

waxen hawk
#

So whats the next step

#

I have more than 50 messages now

stuck furnace
molten pewter
plain rose
#

i now have a purpose in life

trail mural
#

HI LX

stuck furnace
#

Just run at a bank.

#

They'll hire you!

waxen hawk
#

Do you guys know about Quants?

plain rose
waxen hawk
#

Lx, can you please unmute me

plain rose
stuck furnace
#

Erm, did you try verifying again?

rugged root
#

You meet the criteria

waxen hawk
#

I can, let me

plain rose
stuck furnace
#

But the message didn't make sense any more ๐Ÿ˜„

plain rose
#

sus formatting

waxen hawk
#

Okay, it's good now. Ty so much

#

I'll drive home now and join you guys in few hours.

stuck furnace
#

Should be called "adminless"

earnest quartz
#

I am about to study Bioinformatics' tomorrow is my quiz

buoyant oar
#
Amazon Web Services

In this post, we explain how using open source software, GnuCOBOL, combined with AWS Lambda functions, can extend the life of legacy code into a serverless context. We also examine additional benefits of open source software when legacy features are deployed in such a modern environment. The COBOL code described in this postโ€”CI/CD scriptsโ€”are av...

rugged root
#

Oh dear god

buoyant oar
#

i just read the title

whole bear
#

I am not able to speak. Why?

rugged root
#

You got server muted because of lots of background noise at one point

whole bear
#

Thanks. I don't remember doing anything nasty. Came back after almost 2 months

rugged root
#

Like even right now you still kind of have some like.... rubbing or wind noise. If you can turn on Krisp please make sure that you do

earnest quartz
#

cool

molten pewter
undone idol
#

Nice helicopter

molten pewter
#

Ingenuity, nicknamed Ginny, is a small robotic helicopter operating on Mars as part of NASA's Mars 2020 mission along with the Perseverance rover, which landed on February 18, 2021. Two months later, on April 19, Ingenuity successfully completed the first powered controlled extraterrestrial flight by an aircraftโ€”taking off vertically, hovering, ...

stuck furnace
#

Like 100 hospitals

#

Jk ๐Ÿ˜„

#

Like, 1 hospital.

undone idol
#

LX, do you know how many times you have used 'Er' as prefix of your sentence?

stuck furnace
undone idol
#

Yep quite a lot

molten pewter
#

"NASA has invested approximately $2.4 billion to build and launch the Mars 2020 Perseverance mission.
The estimate to land and operate the rover during tis prime mission is approximately $300 million.
NASA has invested about $80 million to build the Ingenuity Mars Helicopter and about $5 million to
operate the helicopter."

stuck furnace
#

For science!

#

.wa short 80,000,000 / 2,400,000,000

viscid lagoonBOT
stuck furnace
#

Weird format to present it in pithink

#

!e ```py
print(1/30)

wise cargoBOT
#

@stuck furnace :white_check_mark: Your eval job has completed with return code 0.

0.03333333333333333
stuck furnace
#

Oh yeah. I've never thought of it that way pithink

#

SLS just got rolled out ๐Ÿ‘€

#

I think space exploration is more than worth it tbh.

shy bison
#

I dont give a damn about politics

#

!e

#

!eval print(22/7)

wise cargoBOT
#

@shy bison :white_check_mark: Your eval job has completed with return code 0.

3.142857142857143
shy bison
#

!e print(355/113)

wise cargoBOT
#

@shy bison :white_check_mark: Your eval job has completed with return code 0.

3.1415929203539825
shy bison
#

!e print(math.e)

rugged tundra
molten pewter
shy bison
#

@rugged root But you need to realize that we need socialism in order to heal the economy and public services

molten pewter
#

"This systematic review did not support previous views that private sector delivery of health care in low- and middle-income settings is more efficient, accountable, or effective than public sector delivery. Each system has its strengths and weaknesses, but importantly, in both sectors, there were financial barriers to care, and each had poor accountability and transparency. This systematic review highlights a limited and poor-quality evidence base regarding the comparative performance of the two systems."

shy bison
#
if(socialism != suitable practice):
  ussr.collapse()
#

@copper shard And patients needs to pay no money because this is human right

shy bison
#

agreed

carmine juniper
#

hello!

#

what are yall up to

molten pewter
#

Taiwan spent a little over 6 percent in GDP and less than US$900 per person.

#

"$12,530 per person
U.S. health care spending grew 9.7 percent in 2020, reaching $4.1 trillion or $12,530 per person. As a share of the nation's Gross Domestic Product, health spending accounted for 19.7 percent" https://www.cms.gov/Research-Statistics-Data-and-Systems/Statistics-Trends-and-Reports/NationalHealthExpendData/NationalHealthAccountsHistorical#:~:text=U.S. health care spending grew,spending accounted for 19.7 percent.

#

Looks like the median time is 6 minutes

#

Rural is 13

#

31,133 USD (2019)

peak copper
whole bear
#

shemovdgi fexi gwyalobdet gmerti

#

hello guys

rugged root
#

@molten pewter Were you the one who was talking about mastic gum?

#

A while ago

#

I'm going to guess by your confused tone it wasn't you

molten pewter
#

I don't know what mastic gum is.

molten pewter
#

There has been a bunch of evidence that xylitol gums are some of the best for dental health: https://pubmed.ncbi.nlm.nih.gov/32638045/

rugged root
#

Yeah but I also have stomach issues, so I wonder if mastic would be a good option

#

I suppose I could alternate

plain rose
#

i fucking the hate the school system now

rugged root
#

What happened?

plain rose
#

:|

#

just came to complain

rugged root
#

Nothing wrong with that

plain rose
#

I like complaining

#

hmmm

#

lemme check the doc

peak copper
#

@molten pewter dance

#

hand dance

plain rose
rugged root
#

So wait, is it still broken or has it healed?

plain rose
#

i have a cast

#

:\

rugged root
#

See if you can get a note or something from your doctor saying that f"If you force {name} to do these exercises, it will cause lasting damage." or something

plain rose
#

i can't peel oranges or follow my workout routine either

molten pewter
gleaming folio
#

Stream ?;-;

rugged root
#

Sorry?

sweet lodge
#

I don't want to get my order from someone that's sneering at me the whole time...

earnest quartz
#

.color hs1

viscid lagoonBOT
#
Command Help

**```
.colour [colour_input]

**Can also use:** `color`

*Create an embed that displays colour information.

If no subcommand is called, a randomly selected colour will be shown.*

**Subcommands:**
**`cmyk <cyan> <magenta> <yellow> <key>`**
*Create an embed from a CMYK input.*
**`hex <hex_code>`**
*Create an embed from a HEX input.*
**`hsl <hue> <saturation> <lightness>`**
*Create an embed from an HSL input.*
**`hsv <hue> <saturation> <value>`**
*Create an embed from an HSV input.*
**`name <user_colour_name>`**
*Create an embed from a name input.*
**`random `**
*Create an embed from a randomly chosen colour.*
**`rgb <red> <green> <blue>`**
*Create an embed from an RGB input.*
earnest quartz
#

!colr hs1

#

!color hs1

#

.colour hs1

viscid lagoonBOT
#
Command Help

**```
.colour [colour_input]

**Can also use:** `color`

*Create an embed that displays colour information.

If no subcommand is called, a randomly selected colour will be shown.*

**Subcommands:**
**`cmyk <cyan> <magenta> <yellow> <key>`**
*Create an embed from a CMYK input.*
**`hex <hex_code>`**
*Create an embed from a HEX input.*
**`hsl <hue> <saturation> <lightness>`**
*Create an embed from an HSL input.*
**`hsv <hue> <saturation> <value>`**
*Create an embed from an HSV input.*
**`name <user_colour_name>`**
*Create an embed from a name input.*
**`random `**
*Create an embed from a randomly chosen colour.*
**`rgb <red> <green> <blue>`**
*Create an embed from an RGB input.*
earnest quartz
#

goodnight

sweet lodge
#

HS1 is multiple colors

#

.color hex 986343

viscid lagoonBOT
#
986343

Color information for Hex 986343.

RGB

(152, 99, 67)

HSV

(23, 56, 60)

HSL

(23, 39, 43)

CMYK

(0, 35, 56, 40)

Hex

#986343

Name

No match found

sweet lodge
#

You'll have to give the bot individual colors to lookup

broken harbor
#

.help

viscid lagoonBOT
#
Command Help

AdventOfCode
.adventofcode
All of the Advent of Code commands.

Anagram
.anagram
Given shuffled letters, rearrange them into anagrams.

AprilFoolVideos
.fool
Get a random April Fools' video from Youtube.

AvatarModify
.8bitify
Pixelates your avatar and changes the palette to an 8bit one.
.avatar_modify
Groups all of the pfp modifying commands to allow a single concurrency limit.
.avatareasterify [colours...]
This "Easterifies" the user's avatar.

broken harbor
#

.anagram banana

viscid lagoonBOT
#
Find anagrams from these letters: 'ENOW'

You have 60 seconds to find correct words.

broken harbor
#

OWEN

#

owen

#

.avatareasterify blue

#

.adventofcode

viscid lagoonBOT
#
Command Help

**```
.adventofcode

**Can also use:** `aoc`

*All of the Advent of Code commands.*

**Subcommands:**
**`about `**
*Learn about Advent of Code*
**`countdown `**
*Return time left until next day*
**`join `**
*Learn how to join the leaderboard (via DM)*
**`stats `**
*Get daily statistics for the Python Discord leaderboard*
**`subscribe `**
*NOTE: This command has been moved to !subscribe*
broken harbor
#

.8bitify

viscid lagoonBOT
#
Your 8-bit avatar

Here is your avatar. I think it looks all cool and 'retro'.

broken harbor
#

.hel

#

.help 2

viscid lagoonBOT
#
Query "2" not found.
broken harbor
#

.help

viscid lagoonBOT
#
Command Help

BotSource
.source [source_item]
Display information and a GitHub link to the source code of a command, tag, or cog.

BunnyNameGenerator
.bunnifyme
Gets your Discord username and bunnifies it.
.bunnyname
Picks a random bunny name from a JSON file.

Catify
.catify <text>
Convert the provided text into a cat themed sentence by interspercing cats throughout text.

Challenges
.challenge [language=python] [query]
The challenge command pulls a random kata (challenge) from codewars.com.

broken harbor
#

.challenge

viscid lagoonBOT
#

Ask a small girl - "How old are you?". She always says strange things... Lets help her!

For correct answer program should return int from 0 to 9.

Assume test input string always valid and may look like
"1 year old" or "5 years old", etc.. The first char is number only.

Difficulty

8 kyu

sweet lodge
#

Is that just int(my_str[0])?

broken harbor
#

ye lol

rugged root
#

I genuinely forgot we had a challenge option

wise cargoBOT
#

src/main.rs lines 41 to 54

    let mut interaction_response = build_ack_ping_response();
    let data: Value = serde_json::from_str(body.as_str()).unwrap();
    if data["type"].as_i64().unwrap() != 1 {
        let interaction: Interaction = serde_json::from_str(body.as_str()).unwrap();
        println!("{:#?}", interaction);
        interaction_response = handle_interaction(interaction);
    }

    if result.is_ok() {
        Ok(web::Json(interaction_response))
    } else {
        Err(error::ErrorUnauthorized(result.unwrap_err()))
    }
}```
wise cargoBOT
#

src/interaction.rs lines 21 to 22

#[serde(default)]
pub(crate) guild_id: String,```
drifting mirage
#

!voiceverify

rugged root
tidal shard
sweet lodge
#

So -
Use from_str to deserialize into a generic Value first, check if the type is not 1, and if it isn't, then parse into the actual Interaction struct.
And then I have to have the "default" macro in case the guild is not there

sweet lodge
#

@rugged root - Can you help me? I have an error in my code.

^XA^JJ0,2,p^FO142,231^BY4^BUN,161,Y,N,Y^FDnewval^FS^FT272,496^CI0^A0N,68,49^FDcprice^FS^FT30,162^A0N,38,51^FDdept^FS^FT494,114^A0N,38,51^FDccolor^FS^FT30,55^A0N,38,51^FB600,1,0,C,0^FDwteam^FS^FT30,114^A0N,38,51^FDsize^FS^FT30,215^A0N,38,51^FDtseason^FS^FT338,162^A0N,38,51^FDcstyle^FS^FO30,335^XGR:zzz.GRF,1,1^FS^PQ1^XZ
#

ZPL

#

Zebra... printer language?

#

Creates labels

trail mural
sweet lodge
# rugged root https://support.zebra.com/cpws/docs/zpl/1994_46469lr1.pdf

Tech support is saying we need to keep in in pulse mode to keep it pulsing correctly
My operators are demanding we set it to level mode
My boss is throwing a tantrum about us not being able to get our labels done

Our client sent us the printer, and they custom built the configuration with their vendor.
They're both asking me what I need it set to, and I have no idea what they did
All the while my entire company is complaining about the printer not working?

#

So... are y'all hiring?

#

@molten pewter, you can have my job

#

Do y'all take Java 8 experience?

novel sleet
#

I'm a fullstack developer! what is the company name? hire me @rugged tundra

sturdy panther
#

Is Malo still around on the server?

rugged root
#

Maro? He is from time to time

sturdy panther
#

Ah, typod. Okay.

#

Feels like our free times just do not coincide.

#

Hiring is expensive for both sides too!

rugged root
sturdy panther
#

When I had applied to my current job, I copied their requirements. In my cover letter, I addressed each of them with one sentence in bullet points.

#

Works pretty well for people skimming them to spot what they want.

#

Like, cheating?

#

My company still does not trust employees working remote S:

rapid flame
#

Does anyone know good python cheat sheets

sturdy panther
#

One of application feedback literally said I was too risky to hire. So "risk" probably is very important.

amber raptor
sturdy panther
#

Makes sense. To try to minimise cost.

#

I can barely fill one page in my CV ๐Ÿ˜…

#

The chicken and egg of work experience.

#

Probably less frustrating and less demoralising than direct applications.

#

ยฃ1000 for referrals in my company!

uncut meteor
#

k thx

molten pewter
#

A flying car or roadable aircraft is a type of vehicle which can function as both a personal car and an aircraft. As used here, this includes vehicles which drive as motorcycles when on the road. The term "flying car" is also sometimes used to include hovercars.
Many prototypes have been built since the early 20th century, using a variety of fli...

uncut meteor
sturdy panther
molten pewter
uncut meteor
#

izi ยฃ1000

#

congrats

#

what you spending it on?

uncut meteor
#

woah

#

thats a cool hoodie

terse needle
whole bear
#

hey guys what you think about Cybersecurity field .. if any one know plz guid me

#

@terse needle drop me if you find good desktop wallpaper i love to see

terse needle
#

this is my current one

whole bear
#

look good

terse needle
uncut meteor
whole bear
#

this is my rn

#

xmonad

#

dm

#

in openBSD unix

terse needle
whole bear
#

ok

tidal shard
terse needle
#

is that korean on the right

#

Japanese on the left

trail mural
#

it opens doors to opportunities

terse needle
#

@whole bear

whole bear
terse needle
#

It's founded by on old BSD maintainer

whole bear
#

how to bypass these step without flowing

flat sentinel
#

and is it mian

terse needle
#

what

flat sentinel
#

static void main

terse needle
whole bear
#

sorry ?

flat sentinel
terse needle
#

I am C now

flat sentinel
#

ok close

#

lol

terse needle
whole bear
#

i m not able to voiceverify

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.

whole bear
terse needle
#

you need at least 50 undeleted messages

#

you have 16

frosty star
#

Just talk about something youโ€™ll get there in no time

whole bear
#

@half silo wth i open you portfolio site my pc amost about to fry up it

#

there a channed where i can spam 30 messages

#

@half silo Linux is basically a simple operating system, but you have to be a genius to understand the simplicity

terse needle
#

sudo make install

whole bear
#

Fuck microsoft windows

terse needle
#

doom emacs

molten pewter
#

Doom Emac

whole bear
#

that was she said wwooow

#

true

#

even unity move to linux

#

@molten pewter did you try any linux

#

in desktop

molten pewter
#

sure

whole bear
#

true

terse needle
#

clang src/boids.c src/main.c -lraylib -ldl -lGL -lm -o boids -g3 -pthread

whole bear
#

@rugged tundra that movies not worth it

#

okhe not mee

rugged tundra
whole bear
#

any one watch big brother from 2018 yr

uncut meteor
#

@wintry pier, your mic is echoing. can you let me know when it is fixed?

terse needle
#
swap <-|
  $0 $1 > -> $1 $0
  $0 $1

check <-|
  $..0 len 2 < -> 1
  $0 $1 < -> 0
  $..1 check

pass_through <-|
  $..0 len 1 eq -> $0
  $..0 len 2 eq -> $..0 swap
  $1 $0 > -> $..2 $0 $1
  $..1 pass_through $0

sort <-|
  $..0 check 0 eq -> $..0 pass_through sort
  $..0
#
1 123 98 2 0 -234 432 9 234 1 32445 sort OUTPUT
-234 0 1 1 2 9 98 123 234 432 32445
#
factorial <-|
  $0 2 < -> 1
  $0 ($0 1 sub factorial) mul

5 factorial OUTPUT
uncut meteor
#

@wintry pier are you there?

terse needle
#

the biggest number in my language is around 7257415615307994000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

whole bear
#

off i don't want to mirage

raw glen
#

hi

formal meteor
formal meteor
stuck furnace
terse needle
#

;(

molten pewter
rustic mantle
#

Hi

#

Yeah

#

I can see.

wintry pier
#

1810

rustic mantle
#

Life expectancy vs Income

rustic mantle
#

@molten pewter How did you get video role?

formal meteor
rustic mantle
#

That's really good.

loud karma
#

hi

lyric pawn
#

@formal meteor in here

#

why did they say you annoyed people wiggin?

#

@loud karma what you working on?

loud karma
#

need a better sleeping schedule

lyric pawn
#

hows it been

#

take me through a typical day

loud karma
#

:)

lyric pawn
#

๐Ÿคฃ

#

you need atleast 6 hours sleep man

#

and why are you getting up at 6am

#

nobodys up at that time anyway in the 21st century

#

this is not 1942

loud karma
lyric pawn
#

me personally i need 7

loud karma
lyric pawn
#

atleast

loud karma
#

i just wake lmao

lyric pawn
#

naturally?

loud karma
loud karma
lyric pawn
#

are you stressed about getting up early everyday?/getting stuff done (and tell yourself before you go to sleep, i need to get up early)

loud karma
#

most likely

lyric pawn
#

yes if youre telling yourself i need to get up early

#

thats only what your brain thinks

#

but i wouldnt call that Naturally all the way

loud karma
#

hmm true

lyric pawn
#

because your body does what your brain tells it to do, even indirectly or subconsiously

#

aslong as its important to you

#

it will do it /find a way

#

how many off days do you have per week?

loud karma
#

7

#

spring break

#

:)

lyric pawn
#

๐Ÿคฃ

#

i mean usually when youre working

#

and trying to get stuff done...

#

do you incorporate off days?

loud karma
#

ye

#

cuz im a studen

#

:)

lyric pawn
#

ok @loud karma

wise cargoBOT
#

Hey @gusty birch!

It looks like you tried to attach file type(s) that we do not allow (.pdf). We currently allow the following file types: .gif, .jpg, .jpeg, .mov, .mp4, .mpg, .png, .mp3, .wav, .ogg, .webm, .webp, .flac, .m4a, .csv, .json.

Feel free to ask in #community-meta if you think this is a mistake.

somber heath
#
with open("file.txt", "r") as file:
    data = file.read()```
stable axle
#

hey @somber heath I had a problem with some of my code if you could help me when your done with him
#help-candy message

somber heath
#

!e py import numpy as np mods = np.array([(y,x) for y in (-1,0,1) for x in (-1,0,1) if (y,x) != (0,0)]) pos = 5,5 result = pos+mods print(result)

wise cargoBOT
#

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

001 | [[4 4]
002 |  [4 5]
003 |  [4 6]
004 |  [5 4]
005 |  [5 6]
006 |  [6 4]
007 |  [6 5]
008 |  [6 6]]
somber heath
#

!e py import numpy as np mods = np.array([(y,x) for y in (-1,0,1) for x in (-1,0,1) if (y,x) != (0,0)]) print(mods)

wise cargoBOT
#

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

001 | [[-1 -1]
002 |  [-1  0]
003 |  [-1  1]
004 |  [ 0 -1]
005 |  [ 0  1]
006 |  [ 1 -1]
007 |  [ 1  0]
008 |  [ 1  1]]
somber heath
#

!e py import numpy as np arr = np.array([1,2,3]) arr **= 2 print(arr)

wise cargoBOT
#

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

[1 4 9]
stable axle
#

oh

#

I see

#

ima try it out

#

@somber heath ```py
def place(self):
row = 0
collumn = 0
while row < self.size:
while collumn < self.size:
SubChunk(self.x + (collumn * wall_spacing), 0, self.z + (row * wall_spacing)).place()

#
def place(self):
    if self.has_item == True:
      self.item = random.randint(1, 1)
      if self.item == 1:
        self.item = items.AlmondWater(self.x, self.y, self.z).spawn()
      else:
        self.item = Entity(position=(self.x, self.y, self.z))
    else:
      self.items = Entity(position=(self.x, self.y, self.z))
    
    if self.has_pillar == True:
      self.place_pillar(self.x, self.y, self.z)
    
        
    light_level = random.randint(0, 1)
    if light_level == 0:
      self.light_object = Entity(model="cube", 
                                scale=(2.2,1.2,4),
                                position=(self.x * 2 - wall_spacing, 5.8, self.z * 2 - wall_spacing),
                                texture=Texture("resources/levels/level 0/lightoff.png"))
    else:
      self.light_object = Entity(model="cube", 
                                scale=(2.2,1.2,4),
                                position=(self.x * 2 - wall_spacing, 5.8, self.z * 2 - wall_spacing),
                                texture=Texture("resources/levels/level 0/light.png"))
      
    left_rand = random.randint(0, 2)
    if left_rand == 1:
        self.place_door(self.x, self.y, self.z - wall_spacing, True)
    elif left_rand == 2:
      self.place_wall(self.x, self.y, self.z - wall_spacing, True)
    else:
      pass
    
    top_rand = random.randint(0, 2)
    if top_rand == 1:
      self.place_door(self.x + wall_spacing, self.y, self.z, False)
    elif top_rand == 2:
      self.place_wall(self.x + wall_spacing, self.y, self.z, False)
    else:
      pass
#

that is subchunk place()

#

yes

#

here

#

let me record a video

#

oh really

#

dm

#

ok

#

oh

#

I can just explain what it is then

#

its a console

#

you type in a command

#

so like

#

generate

#

then everything after is parameter

#

so like

#

generate 0 normal (0,0,0) 20 10

#

generate is only called when I put it through the console

#

do you think it could be this?

def handle(self, i):
    self.commands = {
      'spawn':self.spawn,
      'clear':self.clear,
      'list':self.list_objects,
      'generate':self.generate,
      'help':self.command_help
    }
    
    
    args = i.split()
    try:
      try:
        p, params, = args[0], args[1:]
        self.commands[p](*params)
      except:
        self.commands[p]()
    except Exception as poop:
      self.out(f"error in: {i}\n {poop}")
#

when I do the try: except:?

#

yeah its never called anywhere

#

never

#

when its put through the command line

#

"generate 0 normal (0,0,0) 20 10"

#

I type that in

#

and it runs

#

generate

#

with those parameters

#

the handle method

#

yeah its fine lol

#

well

#

my program froze

#

that's good

#

becase then I know its generate

#

because

#

I could

#

but

#

that's fair

somber heath
#

Look up "bare except".

#

So what I reckon is happening. You call your generate method with parameters. It prints them. At some point during the execution of that method, an exception is raised. Any will do. You then immediately call that method again with no given parameters. Thus all the Nones the second time around.

stable axle
#

lol

#

cya

#

yeah

#

its a game

#

but not for pyweek

#

ok

#

!e

    row = 0
    collumn = 0
    while row < 20:
      while collumn < 20:
        print(f"generating normalchunks {row}:{collumn}")
        collumn += 1
      row += 1```
wise cargoBOT
#

@stable axle :white_check_mark: Your eval job has completed with return code 0.

001 | generating normalchunks 0:0
002 | generating normalchunks 0:1
003 | generating normalchunks 0:2
004 | generating normalchunks 0:3
005 | generating normalchunks 0:4
006 | generating normalchunks 0:5
007 | generating normalchunks 0:6
008 | generating normalchunks 0:7
009 | generating normalchunks 0:8
010 | generating normalchunks 0:9
011 | generating normalchunks 0:10
... (truncated - too many lines)

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

stable axle
#

!e

    row = 0
    collumn = 0
    while row < 20:
      while collumn < 20:
        
        collumn += 1
      print(f"generating normalchunks {row}:{collumn}")
      row += 1```
wise cargoBOT
#

@stable axle :white_check_mark: Your eval job has completed with return code 0.

001 | generating normalchunks 0:20
002 | generating normalchunks 1:20
003 | generating normalchunks 2:20
004 | generating normalchunks 3:20
005 | generating normalchunks 4:20
006 | generating normalchunks 5:20
007 | generating normalchunks 6:20
008 | generating normalchunks 7:20
009 | generating normalchunks 8:20
010 | generating normalchunks 9:20
011 | generating normalchunks 10:20
... (truncated - too many lines)

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

stable axle
#

no

#

its a game with chunkks

#

uhm

#

im remaking the backroom

#

s

#

im like very early stage

#

started couple months ag

#

had to redo a bunch of stuff

#

yeah

#

not for a while though

#

lol

#

hmmm,

generating normalchunks 0:0
generating normalchunks 0:1
generating normalchunks 0:2
generating normalchunks 0:3
generating normalchunks 0:4
generating normalchunks 0:5
generating normalchunks 0:6
generating normalchunks 0:7
generating normalchunks 0:8
generating normalchunks 0:9
generating normalchunks 0:10
generating normalchunks 0:11
generating normalchunks 0:12
generating normalchunks 0:13
generating normalchunks 0:14
generating normalchunks 0:15
generating normalchunks 0:16
generating normalchunks 0:17
generating normalchunks 0:18
generating normalchunks 0:19

why does that result like that!?

  def place(self):
    row = 0
    collumn = 0
    while row < self.size:
      while collumn < self.size:
        print(f"generating normalchunks {row}:{collumn}")
        SubChunk(self.x + (collumn * wall_spacing), 0, self.z + (row * wall_spacing)).place()
        collumn += 1
      row += 1
#

it should add the row too

#
generating normalchunks 0:0
generating normalchunks 1:1
generating normalchunks 2:2
generating normalchunks 3:3
generating normalchunks 4:4
generating normalchunks 5:5
generating normalchunks 6:6
generating normalchunks 7:7
generating normalchunks 8:8
generating normalchunks 9:9
generating normalchunks 10:10
generating normalchunks 11:11
generating normalchunks 12:12
generating normalchunks 13:13
generating normalchunks 14:14
generating normalchunks 15:15
generating normalchunks 16:16
generating normalchunks 17:17
generating normalchunks 18:18
generating normalchunks 19:19
#

im so confused

#

xD

#

should I open a help channel lol?

#

I want it to go:

1:1, 1:2, 1:3, etc
etc```
#

!e

row = 0
collumn = 0
while row <= 20:
    while collumn <= 20:
        print(f"generating normalchunks {row}:{collumn}")
        collumn += 1
    row += 1
#

right

#

how?

#

at the end it adds 1 to row

#

what?

stable axle
#

I got it

#

lol

lament heart
#

11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied mute to @lament heart until <t:1648106954:f> (9 minutes and 59 seconds) (reason: chars rule: sent 6000 characters in 5s).

distant mesa
#

hi @willow lynx

willow lynx
#

Hey Samir

#

@distant mesa

loud karma
#

sup

#

wow, math, scary

#

split screen cool

#

sup griff, opal

#

sup reaper

woeful salmon
#

i'm... tired ig :x been busy all day

uncut meteor
#

CONSTRAINT COMPOSITE_KEY_NAME PRIMARY KEY (COL1, COL2, COL3)

somber heath
#

Triple 8 rule. 8 hours work, 8 hours recreation, 8 hours rest.

#

Fuzziness around the edges.

cunning lake
#

Very interesting podcast

woeful salmon
#

i'mma go back to finishing my work then so i can just sit here and watch xD

#

cya in like 1 hour

ebon lily
#

lp

#

What'cha guys doing?

uncut meteor
ebon lily
sweet lodge
#

๐Ÿ‘‹

#

Who needs those e (s) anyways?

#

The GPO:

#

It's been around for... a month and a half now

#

And it still hasn't even tried to install on 5 computers?

#

"No user has cancelled the installation"

amber raptor
#

I hope your boss gets trapped in building thatโ€™s on fire

sweet lodge
#

๐Ÿ‘‹

somber heath
#

Jazzercise doesn't matter.

#

It's not insider trading if you do it while you're outside.

plain rose
#

just helped a poor sod create a text-based pokemon game, waiting for nintendo to file a lawsuit

#

๐Ÿ˜”

somber heath
#

If you use the same sorts of material used in business suits to carpet a floor, is that a floorsuit?

#

Crap tailor? Flawsuit.

rugged root
#

Oooo

#

Flawsuit

#

Oh huh

#

Somehow that wasn't already in Godville

somber heath
#

Suit with stories written on it. Loresuit.

#

Buyological impulses.

rugged root
#

I'll be back later

willow ruin
#

hi

trail mural
#

hi ๐Ÿ™‚

willow ruin
#

@amber raptor @sour imp are you guys saying to me ?

#

:0

#

ok

plain rose
#

definitely

hardy shoal
#

hey

plain rose
#

ofc you can maybe recreate googles dino game

#

๐Ÿค”

#

maybe a text based game that utilizes ascii chars to make images on the console

#

you would need a BIG screen tho

#

to fit the whole console

#

simple design, no need for instructions, blocks with letters, hangman based

#

does russian roulette count as hard core gaming?

stuck furnace
#

I have never used while else ๐Ÿค”

#

Although I do use for else.

plain rose
#

!e py while else: print('b')

wise cargoBOT
#

@plain rose :x: Your eval job has completed with return code 1.

001 |   File "<string>", line 1
002 |     while else:
003 |           ^^^^
004 | SyntaxError: invalid syntax
plain rose
#

that exists?

stuck furnace
#

Tbh, I'm not even certain how while else works.

stuck furnace
plain rose
#

eh

stuck furnace
#

!eval ```py
x = 0
while x < 2:
x += 1
else:
print('else block ran')

wise cargoBOT
#

@stuck furnace :white_check_mark: Your eval job has completed with return code 0.

else block ran
plain rose
#

well python hates me

stuck furnace
#

!eval ```py
x = 0
while x < 2:
x += 1
if x == 1:
break
else:
print('else block ran')

wise cargoBOT
#

@stuck furnace :warning: Your eval job has completed with return code 0.

[No output]
stuck furnace
#

Oh, this was the wrong text channel ;-;

plain rose
#

@gritty garnet lx sent commands in the wrong channel again

#

who needs mods when you have aboo

#

microsoft bought minecraft to infect it with EA

wind raptor
#

Brb

plain rose
#

optifine gang

#

sodium sucks

#

cya

whole bear
#

i was muted for 7 days

#

if i could eat one food for the rest of my life, then probably chicken breast

#

that will keep me alive the longest

#

black bean patties look like poo, ngl

#

im addicted to saturated fats
i tried to quit for a week and literally started getting cold sweats, shaking, and horrible cravings

#

both

#

unsaturated fat is good

#

ask GPT-3

earnest quartz
#

helo everyone

#

still I can't verfy for talk

#

I know

cobalt anvil
#

hello

rugged root
#

@amber raptor Your mic was open

trail mural
#

hi ๐Ÿ™‚

rugged root
sweet lodge
#

Just get MS Office

#

Comes with email and Teams and everything

rugged root
#

Office Works

#

"My nostalgia glasses will give me nostalgia strength" -Charlie 2022

rugged root
#

!otn a nostalgia strength

wise cargoBOT
#

:ok_hand: Added nostalgia-strength to the names list.

rugged root
#

Huh

#

I hadn't heard of Power Automate before

#

@sweet lodge Your mic was open

quasi condor
rugged root
#

@solar heron

solar heron
#

oral resuscitation mark kostabi

grave folio
#

Welp I can't unsee that

sweet lodge
rugged root
#

Nothing company related

#

You're fine

sweet lodge
#

๐Ÿ‘

#

What's wrong with that?

#

Azure is beautiful

grave folio
sweet lodge
#

Threat scan all the things!

solar heron
quasi condor
solar heron
amber raptor
zenith radish
amber raptor
zenith radish
amber raptor
#

how much did you hear?

zenith radish
#

Nothing important

#

Something about azure

#

Then Hem moved you out

amber raptor
#

It was Kubernetes vs Azure discussion I've been having

#

I'll be back soon

rugged root
#

Yeah it was mainly you talking about Azure then I scooted you

#

Nothing company sensitive

zenith radish
#

Kubernetes... vs azure?

#

Those are

#

Different things

amber raptor
#

they want to move to Kubernetes

sweet lodge
zenith radish
#

Good, move to k8s

amber raptor
#

Kubernetes unfortunately

amber raptor
sweet lodge
#

I was just getting used to Kubernetes

#

But Azure Functions looks eaiser

#

And cheaper

amber raptor
#

esp for those who deal with Azzure stuff

oak rune
#

anyone know a function that gets a windows dimension?

amber raptor
#

Like you can configure Azure Function to get notification when a file hits folder in blob storage

zenith radish
#

Why do the extra vendor lock in

#

Also azure functions are lambas are they not?

#

Scaling them will work differently

rugged root
#

I know how to in AutoHotKey but I can't think of how in Python, Spiffy

amber raptor
summer ocean
#

U can do data-science without calculus and algebra ๐Ÿ˜ณ ?

sweet lodge
amber raptor
rugged root
#

Yeah sorry about that. Might open a help channel for it

zenith radish
#

So that's literally not the same as k8s

rugged root
sweet lodge
#

Which is nice

amber raptor
sweet lodge
#

Because you don't have to pay for constant compute

#

Good

rugged root
#

LP

zenith radish
rugged root
#

You're obviously not if you keep doing this shit

amber raptor
#

stick with AWS for all I care, Kubernetes is problem disguised as solution

zenith radish
#

It literally works for scaling worldwide loads

amber raptor
#

but not using Cloud Native solutions makes your development much longer

glass forge
#

If starting Discord shortly after Alt-F4-ing / etc. while in a call, it reconnects you

sweet lodge
#

Script kiddy is an insult now?

amber raptor
#

My point is, at my company, we have picked Azure, if AWS works great, go for it

terse needle
amber raptor
#

but Kubernetes means horray, you are cloud agnostic assuming you don't use ANYTHING else that cloud provider has to offer

#

ping me when topic moves on

#

so no DynamoDB or CosmosDB or FireBase or whatever Load Balancer they offer, or CDN they offer

#

no, Azure DNS

#

or Route 53

glass forge
#

currently is "kid who uses code that they don't learn from, often for personal gain like cheating in video games"

quasi condor
#

k8s is for building out platforms moreso than directly hosting applications

glass forge
#

lemme grab a bstfer desc though in a moment

quasi condor
#

at least that's the argument i heard for it

sweet lodge
#

@amber raptor - emacs vs vim

terse needle
#

"Get rabbit in here I want to have an argument about kubernetes"
Rabbit joins the VC

glass forge
primal yacht
#

joining then restarting Discord

amber raptor
#

$0.000016/GB-s

primal yacht
#

I responded to an old message about importing ZIP archives in the Termux Discord server.

On context of importing zip archives, that is some days old, yes.

It is likely slower than raw Python source / compiled byte-code files due to having to unpack the archive first, although it is in the sys.path at least on ... *checks*

For my Windows system, since I installed Python 3.10 in a custom location, I'll plop this to show the install directory as well:

>>> import sys, os.path
>>> [path for path in sys.path if os.path.splitext(path)[1].lower() == '.zip']
['D:\\MorePrograms\\Python\\Python310\\python310.zip']
>>> sys.executable
'D:\\MorePrograms\\Python\\Python310\\pythonw.exe'
sweet lodge
#

About processing .zip files - unarchiving nested zips in memory -

pub(crate) fn process_zipfile(design_path: &str, zipfile_bytes: &[u8]) {
    let reader = std::io::Cursor::new(zipfile_bytes);
    let mut zip = zip::ZipArchive::new(reader).unwrap();

    for i in 0..zip.len() {
        let mut file = zip.by_index(i).unwrap();
        if file.name().contains(".zip") {
            let mut buffer = Vec::new();
            file.read_to_end(&mut buffer).unwrap();
            process_zipfile(design_path, buffer.as_slice());
        } else if !file.name().contains("__MACOSX") {
            if file.is_dir() {
                create_dir_all(format!(
                    "{file_path}/{file_name}",
                    file_path = design_path,
                    file_name = file.name()
                ))
                .unwrap();
            } else {
                let path = format!(
                    "{file_path}/{file_name}",
                    file_path = design_path,
                    file_name = file.name()
                );
                let mut buffer = File::create(path).unwrap();
                std::io::copy(&mut file, &mut buffer).unwrap();
            }
        }
    }
}
primal yacht
#

Looks like it fails to check files with an explicit substring of __MACOSX.

#

And I love how it is decompression bomb-prone. #Sarcasm

dire folio
#

ill have to leave, my thing is going on ๐Ÿ˜„

strong arch
sweet lodge
#

No Rust?

#

๐Ÿ‘

#

Death to VLang! Long live Rust!

#

Death to NixOS! Long live Arch Linux!

#

๐Ÿ˜ข

strong arch
vivid palm
#

@unique pivot ?

#

don't spam join please

quasi condor
cunning lake
#

not looking good

trail mural
#

brb

molten pewter
glass forge
#
let Windows_11 = new Windows_10({ reskinned: true, bloat_increase: true });
primal yacht
#

Desktop js

glass forge
#

Android js

molten pewter
#

"publicly criticize or express contempt for someone.'

normal goblet
#

hi

#

html

#

i'm sure there is some kind of api for that

molten pewter
#

any ones that you know of?

normal goblet
#

don't know if that is open for any kind of search or not