#voice-chat-text-1

1 messages Β· Page 88 of 1

ancient whale
stuck bluff
#
collections.Counter```
misty sinew
stuck bluff
#

!e py import string print(string.ascii_letters)

coarse hearthBOT
#

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

abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
misty sinew
#

il be right back

grave reef
#
 File "<pyshell#1>", line 1, in <module>
    Sequence.count(self, 'MHSSIVLATVLFVAIASASKTRELCMKSLEHAKVGTSKEAKQDGIDLYKHMFEHYPAMKKYFKHRENYTPADVQKDPFFIKQGQNILLACHVLCATYDDRETFDAYVGELMARHERDHVKVPNDVWNHFWEHFIEFLGSKTTLDEPTKHAWQEIGKEFSHEISHHGRHSVRDHCMNSLEYIAIGDKEHQKQNGIDLYKHMFEHYPHMRKAFKGRENFTKEDVQKDAFFVNKDTRFCWPFVCCDSSYDDEPTFDYFVDALMDRHIKDDIHLPQEQWHEFWKLFAEYLNEKSHQHLTEAEKHAWSTIGEDFAHEADKHAKAEKDHHEGEHKEEHH')
NameError: name 'self' is not defined```
stuck bluff
#

!e py import collections print(collections.Counter('Apple and rhubarb.'))

coarse hearthBOT
#

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

Counter({'p': 2, ' ': 2, 'a': 2, 'r': 2, 'b': 2, 'A': 1, 'l': 1, 'e': 1, 'n': 1, 'd': 1, 'h': 1, 'u': 1, '.': 1})
stuck bluff
#

@grave reef

grave reef
#

@stuck bluff

stuck bluff
#

!paste

coarse hearthBOT
#

Pasting large amounts of code

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

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

grave reef
south onyx
#

Hello! Recently just got into Game Development, C# and Python, and figured this would be the best place for advice! Call me Red, Ben, I don't mind!

craggy heart
#

I got into that DevOps project I was talking about.

#

They said I will mostly be working with GCE and Kubernetes

stuck bluff
#

@grave reef

#

!e py from collections import Counter from string import ascii_uppercase dictionary = {key:0 for key in ascii_uppercase} dictionary.update(Counter('Applesandoranges'.upper())) #dict.update operates on the lefthand dict in-place. print(dictionary)β€Š

coarse hearthBOT
#

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

{'A': 3, 'B': 0, 'C': 0, 'D': 1, 'E': 2, 'F': 0, 'G': 1, 'H': 0, 'I': 0, 'J': 0, 'K': 0, 'L': 1, 'M': 0, 'N': 2, 'O': 1, 'P': 2, 'Q': 0, 'R': 1, 'S': 2, 'T': 0, 'U': 0, 'V': 0, 'W': 0, 'X': 0, 'Y': 0, 'Z': 0}
lofty hound
#

whats good

quaint nova
#

my laptop boooom

while True:
  print("101001001")
#

πŸ˜‚

#

rip my laptop

stuck bluff
#

!e py class MyClass: def __init__(self): self.v = 5 print(len(dir(MyClass))) print(len(dir(MyClass())))β€Š

coarse hearthBOT
#

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

001 | 26
002 | 27
stuck bluff
#

!e

from collections import Counter
a = Counter('ABABABAHGAL')
print(a)
print(dict(a))```
coarse hearthBOT
#

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

001 | Counter({'A': 5, 'B': 3, 'H': 1, 'G': 1, 'L': 1})
002 | {'A': 5, 'B': 3, 'H': 1, 'G': 1, 'L': 1}
stuck bluff
#
from string import ascii_uppercase as alphabet```
#

!zen

coarse hearthBOT
#
The Zen of Python, by Tim Peters

Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than right now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!

stuck bluff
#

!e py class MyClass: def __len__(self): return 7 my_instance = MyClass() print(len(my_instance)) print(my_instance.__len__())

coarse hearthBOT
#

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

001 | 7
002 | 7
stuck bluff
#

!e py print(len('abc')) print('abc'.__len__())

coarse hearthBOT
#

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

001 | 3
002 | 3
grave reef
#

'AAGGCCTT'

#

'TTCCGGAA'

#

'AGTCAATGC'

#

'TCAGTTACG'

narrow sleet
#

what u guys discussing??

stuck bluff
#

!e py trans = str.maketrans('ACGT', 'TGCA') print('GATTAGA'.translate(trans))

coarse hearthBOT
#

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

CTAATCT
grave reef
#
 newSequence = ''
        for symbol in sequence[::-1]:
            newSequence += symbol
            if symbol == 
        ```
stuck bluff
#

!e py compliment = {'A': 'T', 'C': 'G', 'G': 'C', 'T': 'A'} print(compliment['A'] == 'T')

coarse hearthBOT
#

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

True
stoic bluff
#

morning

misty sinew
#

!e

coarse hearthBOT
#
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!*

misty sinew
#

so i did this weird symbol:
</>

#

wait wait-

#

i struggle 5099900 times.

#

like this

#

AH HECK

#

yea

#

Β―_(ツ)_/Β―

#

i start getting weird

#

ah

#

yea too much paragraphs.

novel parcel
#

Β―_(ツ)_/Β―

misty sinew
#

@raw wren search their name with "bot discord"

raw wren
#

I will

#

thx!

hearty heath
#

Hey

#

Yeah, try with my nickname πŸ˜„

warm tendon
#

πŸ˜”

hearty heath
#

How about now? πŸ˜„

#

Oh yeah πŸ˜„

#

Check out my office set up today:

#

Getting some vitamin D πŸ˜„

warm tendon
#

bruh you're outside

#

tf?

#

the sun is out there

#

the glare D:

hearty heath
tiny pumice
#

'ello

hearty heath
#

It's strange getting used to this 'sun' thing ngl.

warm tendon
#

it's a scam tbh πŸ˜”

hearty heath
#

It probably is used in some traditional medicines πŸ˜„

hearty heath
#

Am I even a programmer?

#

This is true

warm tendon
#

gruvbox πŸ‘Ž

#

solarized is ok actually

hearty heath
#

Yep, slightly paranoid πŸ‘€

#

This comes from listening to Rabbit πŸ˜„

warm tendon
#

πŸ‘€

hearty heath
warm tendon
#

oh?

hearty heath
warm tendon
hearty heath
#

Oh yeah. I think the company is Evergreen, and the Ever Given is one of its ships?

warm tendon
#

hey...actually? this looks pretty good lol

#

the dark theme is very nice and cute

hearty heath
warm tendon
#

but you use the light one πŸ˜”

hearty heath
#

Well, right now I am...

#

I've always kind of wanted to use a fax machine, but have never had a reason to. They seem kind of fun tbh

warm tendon
#

wack

hearty heath
#

Did you see the people vs OJ tv show?

#

I'm thinking of that scene where the lawyer faxes a hand-written note to the court room πŸ˜„

#

Erm, it was a dramatisation a couple of years ago. On Netflix.

#

Ah right πŸ˜„

warm tendon
#

they couldn't even put a glove on a 2d piece of paper

peak frigate
hearty heath
#

Fax machines are surprisingly old

mild flume
raw wren
#

Hey mina

mild flume
#

A method of sending documents over a phone line

hearty heath
#

Apparently Japanese companies are like the largest market for fax machines today

#

Because they all insist on using paper.

#

Film πŸ˜„

#

Have you seen inglorious bastards?

tawdry charm
#

i think i have heard of it

peak frigate
#

thermal receipts!

tawdry charm
#

never watched it though

hearty heath
#

brb

warm tendon
#

but what about the chemistry behind it 😭

#

AgBr go Brrrrrrr

stuck bluff
#

If an incense censor's sensor data is censored why is my foot covered in mayonaise?

hearty heath
#

Is anyone else having connection issues?

tawdry charm
#

no

hearty heath
#

Or do I need to move closer to my router?

tawdry charm
#

get a ethernet cable

hearty heath
tiny pumice
#

So we hanging out in vc-1 now lol

tawdry charm
#

well get closer to the router then

#

or change its antennas

mild flume
narrow sleet
#

hi guys

tawdry charm
#

hello

#

good sir

#

lol

narrow sleet
#

whats the topic??

stoic bluff
#

we don't have a topic right now

golden marsh
#

note the miliseconds

tawdry charm
#

yeah its kind of all over the place

narrow sleet
tawdry charm
#

ahahah

stoic bluff
#

@tawdry charm what are you doing rn?

tawdry charm
#

this

#

lol

stoic bluff
#

posting gifs?

tawdry charm
#

i guess

#

lol

peak frigate
#

we could do with less gifs here please & thank you :)

stoic bluff
#

delete it MED

tawdry charm
#

there

stoic bluff
#

thank you

lavish plume
#

ty

peak frigate
#

hahaha hi groovy

raw wren
narrow sleet
dull dew
#

bot

#

nvm

stoic bluff
mild flume
#

Because people want to join the server?

#

Odd question to ask

narrow sleet
#

lol

stoic bluff
#

it was meant to be a joke cause robot

mild flume
#

Riiiiight

#

Got it

raw wren
#

beep boop

narrow sleet
mild flume
#

I'm derping badly today

narrow sleet
#

oh so bc= because??

mild flume
#

Yep

golden marsh
native vapor
mild flume
rapid ocean
#

osu's better change my mind

#

exactly

#

one doesn't take arm strength

#

ive got strong ass fingers now tho

#

sdsdsdsds

#

see that was super fast

#

ya

#

I started with qe cause leaning in fps's but ive got a super small desk and its hard to use anything else

misty sinew
#

a

rapid ocean
#

what about millennium?

native vapor
#

You know, it's great developing for a business unit outside the development shop...

rapid ocean
#

yes.

native vapor
#

I feel like a coding cowboy

#

Nobody tells me what to do nor understands it...so nice

rapid ocean
#

Đ for decades?

#

lots of comments get bulky too

hearty heath
#

Also, vimtutor

warm tendon
haughty urchin
#

my heroku app does not recognize my local timezone, it shows local timezone as UTC, how to configure my heroku app to recognize user's timezone??

stoic bluff
haughty urchin
hearty heath
#

Yeah, I also wouldn't like if if the community was too split into staff and non-staff.

warm tendon
stoic bluff
#

okey jeez....

simple musk
#

@golden marsh I will reeeeeeeee

mild flume
#
if cog := self.bot.get_cog("ThisCog"):
   # Do stuff with it
simple musk
#

@wintry sinew πŸ‘‹

wintry sinew
#

h

simple musk
#

h

warm tendon
#
while chunk := f.read(8):
  ...
simple musk
#

I tend to read docs on a case-by-case usage scenario

wintry sinew
long gust
#

one last thing @mild flume , for each loop that the walrus operator runs, will it be reset to the initial value or can it be altered in the loop and keep its new value

mild flume
#

It resets at the top of the loop. So it re-evaluates it each time

warm tendon
#

!e

I = iter([1, 5, 2, 6, 7])
while element := next(I):
  print(element)
coarse hearthBOT
#

@warm tendon :x: Your eval job has completed with return code 1.

001 | 1
002 | 5
003 | 2
004 | 6
005 | 7
006 | Traceback (most recent call last):
007 |   File "<string>", line 2, in <module>
008 | StopIteration
simple musk
#

e

wintry sinew
simple musk
#

tbh crisp worked terribly for me, but then again it was also unnecessary

#

laundmo what did you do

#

different langs have different uses

wintry sinew
#

are you telling me i shouldnt make an operating system in js??!!

golden marsh
simple musk
wintry sinew
#

computercraft

simple musk
#

okay fair

#

though in my defense

#

cp lua > lua > gmod lua

#

gmod lua is just... pe

wintry sinew
#

pretty sure there's a plugin for computercraft that lets you run micropython

simple musk
#

aye, I think sals modded server had it but I could be wrong

hearty heath
#

That's a good point @golden marsh

tiny pumice
#

Did some setup for viewing Markdown documents on my Emacs

#

Pretty clean

wintry sinew
#

tar -zxvf thing.tar.gz

short isle
golden marsh
#

@misty sinew please reduce the amount of rubbing/rustling noise coming from your mic

hearty heath
#

@misty sinew can you stop joining and leaving?

golden marsh
#

!voice @misty sinew

coarse hearthBOT
#

Voice verification

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

hearty heath
#

If you're wondering why you're muted this

misty sinew
#

@misty sinew please send 50 non-deleted messages to verify.

#

who wants play rocket

#

league

tiny pumice
#

I'll be right back

misty sinew
#

what's mean send 50 non-deleted messages

raw wren
#

just look in here for how to verify @misty sinew

#

!verify

misty sinew
#

!verify

raw wren
#

!voice verify

coarse hearthBOT
#

Voice verification

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

misty sinew
#

can i spamm 50 messages for complete the quest

#

:D.

coarse hearthBOT
#

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

#

:incoming_envelope: :ok_hand: applied mute to @misty sinew until 2021-03-30 15:09 (9 minutes and 59 seconds) (reason: burst rule: sent 9 messages in 10s).

mild flume
#

@misty sinew No, you can't actually

misty sinew
mild flume
#

In fact spamming will have me extend the amount of time it'll take for you to get verified by 2 weeks

#

From now

#

So I'm going to unmute you, but behave yourself

#

!unmute @misty sinew

coarse hearthBOT
#

:incoming_envelope: :ok_hand: pardoned infraction mute for @misty sinew.

misty sinew
#

❀️

misty sinew
#

(1) the pen is on the table

golden marsh
#

@misty sinew if you ever wanna do comamndline programs in python: https://pypi.org/project/blessed/

misty sinew
#

(2) i'm trying to speak on the channel

#

i'm not spamming

#

(3) it's so hard complete this quest

#

(4) i'm sure i'm not spamming

#

(5) i've completed 1/10 of the quest

#

(6) I-CAN-DO IT

#

(7) I'M DOING IT

#

(8) this is the 8th message i've sent

mild flume
#

!tvban 481965351559757844 2w We've told you multiple times the correct way of getting verified. You do not seem to be listening or understanding. If you attempt to spam your way to voice verification again, you will be denied the privilege indefinitely

coarse hearthBOT
#

:incoming_envelope: :ok_hand: applied voice ban to @misty sinew until 2021-04-13 15:04 (13 days and 23 hours).

proven shale
#

lol

misty sinew
#

._.

#

i give up

#

this is a dictatorship

mild flume
#

Only if you're unwilling or unable to follow the rules

sleek parrot
#

@golden marsh check this one

misty sinew
#

you're admitting it is a dictatorship :/

mild flume
#

I think technically it's an oligarchy? But yes. Yes I am

misty sinew
#

i'm amazed

mild flume
#

Why? It's simple, you follow the rules or you accept the consequences for not doing so

misty sinew
#

i'm following the rules

#

!voice verification

coarse hearthBOT
#

Voice verification

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

jaunty shadow
#

Spamming is not allowed by the rules.

mild flume
misty sinew
#

...

#

':D

#

ok i'm dumb

mild flume
#

So to clarify, no, you weren't following the rules. And I even told you and warned you about it multiple times before I temp voice banned you

misty sinew
#

i'll wait 2 weeks, rightly so

#

just to say it, it's the 20th message :).

#

I NEVER GIVE UP

golden marsh
misty sinew
#

i didn't get it

#

every person who give up is a loser

#

i think i'm not a loser

#

(i think)

#

who can explain me variables?

#

i can't get them

mild flume
#

I mean at this point give me one good reason not to just make it permanent

misty sinew
#

i want learn

short isle
misty sinew
misty sinew
#

❀️

proven shale
#

Variables hold values and objects

#

alias for memory location, where your thing is stored

sleek parrot
#

hackers πŸ™‚

short isle
#

πŸ˜†

misty sinew
# proven shale Variables hold values and objects

i learned they are like drawers can hold, as you say, values and objects, but what is their meaning, i mean i can literally write every single value, OOOOOOOOOOHHHHHHHHHHHHHHH I GET THEM, I GET THEM BY MYSELF I'M A MISUNDERSTOOD GENIUS, IT'S MORE SIMPLE USE VARIABLES THAN WRITE EVERY SINGLE VALUE, thanks demm

proven shale
#

They indeed act as drawers which can hold values and objects, by values, I mean, datatypes, like integers, floats, characters, strings, etc. By objects I mean complex data types (they are also called user defined datatype), they are instances of classes.

misty sinew
#

my question was what's the meaning of variables but i get it, what they are for I know

hearty heath
proven shale
#

variables literal meaning is something that can vary

hearty heath
#

For example, what do you expect the output of this code to be? ```py
xs = [1, 2, 3]
ys = xs
ys.append(4)
print(xs)

proven shale
#

meaning you can change them, but you can make them constant which might confuse you?

steep fiber
#

!names

#

Well, that’s huge, but worth a read

#

Especially Ned’s talk linked on the bottom

misty sinew
#

are they that important?

steep fiber
#

Variables?

hearty heath
#

Pretty essential yeah.

misty sinew
#

!variables

hearty heath
#

Btw, hey Vester πŸ‘‹

steep fiber
#

Heyo πŸ‘‹

misty sinew
#

@hushed spire chat 1 minecraft isn't a game, it's a life choice

#

my first mode was stoneblock 2

proven shale
last parcel
#

@prime phoenix any reason why you are spamming here?

misty sinew
#

(i'm joking)

#

i think he/she spamming because is foreign, so it doesn't matter of ban

#

another time like me

crystal halo
#

!mute 821321017838010418 1d I'm not sure why you're spamming the moment you join, but.. don't.

coarse hearthBOT
#
Bad argument

Member "821321017838010418" not found.

crystal halo
#

Well they left

misty sinew
#

!tempmute DEATH 1y

#

has someone a free guide to learn informatics languages?

#

maybe with exercises

#

!voice verification

coarse hearthBOT
#

Voice verification

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

misty sinew
#

Have been active for over 3 ten-minute blocks. This means you need to have sent your messages over a span of at least 30 minutes. DUDE IS IT REAL?

#

IT'S AN AGONY

unique raptor
#

you need to active for 10 mins x 3

misty sinew
#

?

#

what's mean

peak frigate
#

it's also a minimum of 3 days
but if you received a voice ban earlier, it will be even longer than that. i think you're at 2 weeks

#

what this means, is that you can chill, relax, listen, ask questions, don't complain

misty sinew
#

it says i have to sent messages over a span of 30 minutes, it's means (50 messages)*(30 minutes waiting each one) = A LOT OF TIME TO WAIT

#

so i must wait to speak

unique raptor
#

yes

misty sinew
#

2 weeks because there's a ban..... . _ .

golden marsh
#

the 30 minutes is only the time range

#

in total you need 50 messages spread over a span of 30 minutes

misty sinew
#

I'VE COMPLETED THE QUEST OF 50 MESSAGES IN A CONVERSATION, I'M PROUD OF MYSELF

#

Mr. Hemlock i'm coming

unique raptor
#

chill

#

m8 if you yell at the staff it wont fix it

#

just chill

misty sinew
#

i won't chill i'll plan my plan to conquer this server

unique raptor
#

good luck

#

you will need it

misty sinew
#

a dictatorship can be won only from a dictatorship

proven shale
#

this server ain't a kingdom or something?

misty sinew
#

sorry ✨ oligarchy✨

misty sinew
peak frigate
#

hi jake

#

i saw your hi earlier

#

hi x2

misty sinew
#

Hemlock is my friendly enemy

#

i'll beat him with knowledge

#

WHY WAITING IS SO STRESSFUL

#

2-WEEKS

#

IT'S A LOT OF TIME

#

┬─┬ γƒŽ( γ‚œ-γ‚œγƒŽ)

#

what did the baby corn say to the mama corn?

#

Where's my popcorn

#

i-want-talking-with-you-all-❀️

#

how much time is 2 weeks

#

i don't want calculate it

#

BUT IT'S A LOT DUDES

#

i mean, try u to wait 2 weeks and tell me if it isn't an agony

unique raptor
misty sinew
#

yep

unique raptor
#

well you have to wait

misty sinew
#

it's too much time...

unique raptor
#

and why did you get ban

unique raptor
misty sinew
#

i tried to evade the law

#

but i failed

unique raptor
#

well have you learned your lesson

misty sinew
#

yeah

#

mr. hemlock is racist towards cats

unique raptor
misty sinew
#

tos?

#

what's mean

unique raptor
#

Terms of service

misty sinew
#

WHO READS TERMS OF SERVICE OF ANY APP?

warm tendon
unique raptor
#

many people

misty sinew
#

did u really read it

unique raptor
#

yes

mild flume
#

I have

misty sinew
#

congratulation

#

BAN HIM, HE SAID F WORD

warm tendon
#

πŸ€”

misty sinew
#

fu...

#

he can't say it

true valley
misty sinew
#

mr. sherlock why I can't tag everyone in a message

unique raptor
#

well think about it for a sec

mild flume
#

Because it's a server of 169k

#

And that would be irritating

misty sinew
#

there's an option?

mild flume
#

In the server settings, yeah

misty sinew
#

is there a spokesman from here to voice chat :3

#

i've to send a message

#

" I state, I am Italian, and here say a swear-word with "god" it's a big sin, my question is, why you all say "Oh my fuc*** god"? "

#

this is the message

maiden wolf
#

hi all

old prawn
stoic bluff
#

hello bro

#

how are you

#

nothing much

#

im doing some homework

#

i have a lot of bg noises from my end

#

why wont you talk in chat?

#

i mean in text-chat

#

fine then

#

nothing actually

#

whacha doing rn?

#

in which language you're developing your app?

#

not sure whats that but ok πŸ˜‚

#

what app is it?

#

which country do yo live in?

#

Finland

#

no idea

#

look, now some ppl went to vc0

ionic crater
#

hah DIKtionary

misty sinew
#

hi guys I just woke up

fluid pumice
#
def find_legendary(data):
    line_list = [i.split(',') for i in data]
    legendary_data = []

    for item in line_list:
        if 'TRUE' in item:
            pokemon_name = item[1]
            pokemon_number = item[0]
            pokemon_generation = item[10]
                for i in range(len(name):
                    print(f'{number[i]:<9}{name[i]:<25}{generation[i]:>11}')
            legendary_data.extend([[pokemon_number, pokemon_name, pokemon_generation]])
    return legendary_data```
#

          Legendary Pokemon              

Number Name Generation

144 Articuno 1
145 Zapdos 1
146 Moltres 1
150 Mewtwo 1
150 Mega Mewtwo X 1
150 Mega Mewtwo Y 1
243 Raikou 2
244 Entei 2
245 Suicune 2

#

          Legendary Pokemon

Number Name Generation

ancient whale
#
multi lines
"""```
misty sinew
#

here is my colony coding </>

#

there is 1 Easter egg

ancient whale
misty sinew
#

Ohhhh

misty sinew
#

@brittle valley don’t repeat to unmute

stoic bluff
#

@final folio is voice spamming

misty sinew
#

should I ping admins?

final folio
#

Sorry my iPad is being weird

stoic bluff
#

yeah right

final folio
#

I’m just gonna delete discord and re download it

misty sinew
#

should I ping?

stoic bluff
#

to who?

misty sinew
#

admins

#

That @final folio s voice spams

stoic bluff
#

okey

misty sinew
#

<@&267628507062992896>

stoic bluff
#

its kinda annoying

#

whenever i join a VC

misty sinew
#

@final folio is voice spamming

ancient whale
#

I kept saying earlier to that guy to "just make a decision" but if its discord screwing up, I'm not suprised either

#

it randomly closed earlier today

mild flume
#

Or send a DM to the @crisp hazel bot

misty sinew
#

Thank You, @mild flume !

#

<@&267629731250176001> @final folio is voice spamming

narrow needle
#

Sorry--I misread

#

However I don't see them in a voice channel at the moment.

misty sinew
#

0h

narrow needle
#

Can you explain what you mean by voice spamming?

stoic bluff
#

whenever im in one of the vc's, he keeps leaving and joining back

narrow needle
ancient whale
#

ahh shit just had a nose bleed

stoic bluff
#

damn bro

ancient whale
#

even now they freak me out

misty sinew
#

Guys I woke up

ancient whale
#

nice

#

I'm still here

misty sinew
#

guys how do i get voice verified

#

cause its hard

#

it says u need to send minimum 50 msgs

#

i already sent i think, cause its been more than 5 days that i have been here

verbal fjord
misty sinew
#

So I will not talk

verbal fjord
#

I can't speak even if i wanted to

misty sinew
#

then stop

#

use the symbol in the front of my name

#

so we can revive michigun

exotic iron
#

Hello, i need some help with some arrays and getting some coordinates

verbal fjord
#

@misty sinew do u play ches?

misty sinew
#

No

verbal fjord
#

Ξ”

misty sinew
#

I do m i c h i g u n

exotic iron
#

i tried to google before but i found nothing
I have a text file, and i read x coordonates and y coordonates, and i want to create the points for that
i have the coordonates stored as x and y
and i want to have Xi[xi,yi]

misty sinew
#

I have a doubt.

#

on what do you want to create it

#

?

exotic iron
#

i want to create it , instead of make.blobs function
for an AI and ML exercise

misty sinew
#

can i ask something

exotic iron
#

to have datasets for perceptron

misty sinew
#

so on a GUI screen

exotic iron
#

anything

misty sinew
#

if you use tkinter you can use i think you can use grid function on a canvas screen

exotic iron
#

not on a GUI screen

misty sinew
#

so i have a project done like that

#

i used a list and tuples to do that

exotic iron
#

so in a tuple i can store X[x,y]

#

?

misty sinew
#

i mean

#

can you give me 3 cordis

exotic iron
#

can i call you to show you

misty sinew
#

Yes

misty sinew
ancient whale
misty sinew
true valley
knotty solar
#

ok, its 7pm here, and if I don't go for a walk, my legs are gonna stop working

#

see you guys later πŸ‘‹

mild flume
hearty heath
#

Yo πŸ‘‹

#

Double plus un-good

#

Yeah, we were talking about linguistic determinism

#

Same for William πŸ‘€

#

I mean as a term for anatomy πŸ˜„

#

Like, how did that happen?

#

I really want to use the word "y'all" because it seems kind of useful.

#

But I would sound ridiculous saying it as a Brit πŸ˜„

elder wraith
#

Needs southern accent

peak frigate
mild flume
#

!voice @abstract hatch If you're wondering why you can't talk, check out this channel. That should tell you what you need to know

coarse hearthBOT
#

Voice verification

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

abstract hatch
mild flume
#

No problem!

last parcel
#

Oh hey, that's a bisk

mild flume
#

And he's hiccuping

#

And it's far funnier than it should be

#

@fair heart Every time bisk hiccups

raven orbit
#

All the golden oldies in one vc

#

Perhaps I shall join

open osprey
#

have a python question - not to interrupt the breathing conversation

peak frigate
#

lol pls interrupt

open osprey
#

does anyone else have problems with pip3 install psycopg2

hearty heath
raven orbit
#

Were you there when I said it?

open osprey
#

i usually resort to psycopg2-binary but I want to download the package for an aws lambda package

hearty heath
#

Ah, that's not a good sign.

#

I'm looking up persistent hiccups on WebMD and the prognosis isn't good...

#

Basically, you have cancer

peak frigate
#

omg lol

hearty heath
#

hahaha Opal

#

The Netherlands is a testament to human stubbornness.

#

πŸ‘€

sleek parrot
#

Flood control is an important issue for the Netherlands, as due to its low elevation, approximately two thirds of its area is vulnerable to flooding, while the country is densely populated. Natural sand dunes and constructed dikes, dams, and floodgates provide defense against storm surges from the sea. River dikes prevent flooding from water flo...

raven orbit
#

Schokland (Dutch pronunciation: [ˈsxΙ”klΙ‘nt]) is a former island in the Dutch Zuiderzee, in the municipality of Noordoostpolder. Schokland was an elongated strip of peat land which ceased to be an island when the Noordoostpolder was reclaimed from the sea in 1942. It is now just a slightly elevated part of the polder, with a still partly intact r...

#

this is the place we went yesterday

#

which used to be an island

mild flume
#

Bone conduction is the conduction of sound to the inner ear primarily through the bones of the skull, allowing the hearer to perceive audio content without blocking the ear canal. Bone conduction transmission occurs constantly as sound waves vibrate bone, specifically the bones in the skull, although it is hard for the average individual to dist...

open osprey
#

anyone have any bot scripts for ps5?

#

want to buy one

#

I keep getting beat - lol just want to buy myself one

#

resellers

fair heart
open osprey
#

lol

#

what's the advantage with the bot? add to cart?

fair heart
#

look at the video

knotty solar
#

so sad

#

@mild flume I ctrl + c something in excel, it gets ctrl + v only one time
any way to paste it multiple times?

stuck bluff
#

"So, everyone, this is Mrs. Hemlock."
"Hey, Mrs. Hemlock, it's lovely to meet you. Mr. Hemlock has told us so much about you. All good things. All good things..."

mild flume
knotty solar
mild flume
knotty solar
mild flume
open osprey
#

hemlock do you have any experience with aws and python? specifically deploying lambda packages?

#

πŸ‘

mild flume
stuck bluff
#

Russian ovine affirmatives.

raven orbit
#

Caprine may refer to:

A goat-antelope
Caprine, norleucine, aminoacid
Ovicaprids, goats and sheep taken together in archaeology and paleontology
Caprine, an adjective that means "pertaining to or belonging to the subfamily Caprinae" (see goat-antelope, caprine arthritis encephalitis virus)

open osprey
#

building refined ps5 bots

#

joking of course

mild flume
#

!rule 5

coarse hearthBOT
#

5. Do not provide or request help on projects that may break laws, breach terms of services, be considered malicious or inappropriate. Do not help with ongoing exams. Do not provide or request solutions for graded assignments, although general guidance is okay.

open osprey
#

figuring out my aws problems

#

should i get a switch while i wait

#

heard its awesome

native vapor
solar wharf
#

someone knows flask and can help me <?

mild flume
#

@solar wharf I personally don't but you might ask in #web-development. They'd be the folks to ask

native vapor
native vapor
mild flume
#

@unkempt rock Thank you

native vapor
#

Yeah, eventually I will have rights

#

I love Django

#

It's harder than flask

#

@olive sable Yeah, are you collecting bots that are online with Django?

#

their status and then sending messages

#

Yeah

#

not that complicated

#

haha

#

@olive sable sounds like a nice thing to build as an event driven architecture, good use case of queuing and priorities

#

@olive sable yeah, send your messages to Kafka and then handle things from there...

#

I wish I could talk lol

native vapor
#

It's not a hard thing to do

#

it's a messaging system to handle the flow of diff informational messages

olive sable
native vapor
#

I can wait

#

yesterday

#

flask

#

@elder wraith so what would u use to harvest webhooks?

#

FastAPI?

#

that's interesting

native vapor
#

um...

#

So a webhook essentially is tripped by an event then hits an API

#

no, collection point

#

that's what I asked

#

I aggree

#

it's bloated af

#

Flask isn't as bad, but what you said is worth looking into for me

#

yeah...I'm dockerizing that now

#

It's a savage beast

#
from flask import Flask, jsonify, request
from flask_restful import Api, Resource

app = Flask(__name__)
api = Api(app)

class HelloWorld(Resource):
    def get(self):
        return {'data': 'Hello World'}

api.add_resource(HelloWorld, '/helloworld')

if __name__ == "__main__":
    app.run(debug=True)
#

flask...easy mode

pearl torrent
#

whats being streamed?

mild flume
#

Oh it was us trying to help him figure out a pathing issue

native vapor
#

Pycharm

#

Pycharm is sooooo goood

#

JetBrains 100%

#

I love the debugger

vivid acorn
#

Just dont google, at least use Duck jeje

true valley
#

So Ruffle project.

vivid acorn
#

aww

true valley
olive sable
#

if anyone has any experience with Django and wants to come help me out jump into Code/Help0

native vapor
#

Well that's good...

ancient whale
#

#voice-verification

stone flume
#

i wait for PytonLaTeX

#

because there is only LuaLaTeX

ancient whale
ancient whale
stone flume
#

my got

#

let's take a look

#

thanks !

shrewd star
#

NOW I AM BECOME DEV, HELLOER OF WORLDS!

ancient whale
#

dictionary = { "input" : "output"}

#

dictionary["input"] would return "output"

gleaming crow
#

ehre

hearty heath
#

Er @shrewd star you've got some background noise coming through.

#

Yep πŸ˜„

gleaming crow
#

so am i allowed to post the code here?

hearty heath
#

Yep!

gleaming crow
#

with '''

ancient whale
#

use three `

hearty heath
#

!code

coarse hearthBOT
#

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.

gleaming crow
#
    num1 = int(input("Enter a number: "))
    counter = 0
    for i in range(1,num1+1):
        print(i)
        counter += 1
    return counter 
main()```
shrewd star
#

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

gleaming crow
#

so i was wondering how i can just get counter without the main

shrewd star
#

code block no worky :/

gleaming crow
#

like what does the return do in this case

shrewd star
#

i did exactly that

gleaming crow
#

i know you can save a value with return

#

wait

#

what

#

can u explain it a little

#

like waht if i same the main function as a x variable

hearty heath
#

@gleaming crow I think you may have just met the requirements for voice-verification. Try it out in the #voice-verification channel.

gleaming crow
#

really

ancient whale
#
  return 1
var = a()
# var now holds a 1
a()
#but calling a() without putting it into a variable, just gets ignored```
hearty heath
gleaming crow
#

its still supressed

hearty heath
#

Try leaving and joining.

gleaming crow
#

lol

hearty heath
#

Too much information lemon_pensive

#

@shrewd star can you turn on PTT please.

ancient whale
#

var = main()

#
    num1 = int(input("Enter a number: "))
    counter = 0
    for i in range(1,num1+1):
        print(i)
        counter += 1
    return counter 
counter = main()
#so its in var "counter"```
hearty heath
#

Wow, what causes them?

#

Ohh right ok.

#

Yep

gleaming crow
hearty heath
#

As long as it's not obscene or spammy.

shrewd star
#

code:

class struct(object):
 def __init__(self,**k):[setattr(self,this,that)for this,that in k.items()]
 def __getattr__(self,item):
  if not hasattr(self,item):setattr(self,item,self.__class__())
  return object.__getattr__(self,item)
 def __call__(self,f):setattr(self,f.__name__,f);return f
 def __lshift__(s,o):print(0)
cout = struct()
cout.__lshift__=print
print(cout.__lshift__)
cout << 1

expected output:
<builtin function print> 1

actual output:
<builtin function print> 0

hearty heath
#

Oh, you're trying to emulate C++'s cout?

boreal timber
shrewd star
#

!e ```py
@lambda c:c()
class cout:lshift=print

cout << "Hello World!"

coarse hearthBOT
#

@shrewd star :white_check_mark: Your eval job has completed with return code 0.

Hello World!
ancient whale
#
def a():
  global var
  var = var +1
a()
print(var) # var is now 11```
shrewd star
#

I legit need help with this struct class tho.
I want the dunders to work after the class statement not within it.
i.e. actual __setattr__ not this weird fake __setattr__ it's doing

hearty heath
#

Oh yeah, it's nice.

shrewd star
#

!e ```py
#this code is supposed to do what it looks like it should do but it doesn't
class struct(object):
def init(self,**k):[setattr(self,this,that)for this,that in k.items()]
def getattr(self,item):
if not hasattr(self,item):setattr(self,item,self.class())
return object.getattr(self,item)
def call(self,f):setattr(self,f.name,f);return f

cout = struct()
cout.lshift=print
print(cout.lshift) # confirm
cout << 1 # error here

coarse hearthBOT
#

@shrewd star :x: Your eval job has completed with return code 1.

001 | <built-in function print>
002 | Traceback (most recent call last):
003 |   File "<string>", line 12, in <module>
004 | TypeError: unsupported operand type(s) for <<: 'struct' and 'int'
ancient whale
shrewd star
#

!e ```py
class f:pass
f.add=print
f+"Hello World!"

coarse hearthBOT
#

@shrewd star :x: Your eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 3, in <module>
003 | TypeError: unsupported operand type(s) for +: 'type' and 'str'
shrewd star
#

That's the problem in a nutshell

ancient whale
#

pip install pygame

gleaming crow
hearty heath
#

They're java build tools

ancient whale
shrewd star
#

im dum

misty sinew
#

can anyone tell me where i can get help?

#

for some python things?

hearty heath
#

Electron?

shrewd star
#

!e ```py
import ctypes # noooooooooooooooooooo
class struct:
def init(self,**k):[setattr(self,this,that)for this,that in k.items()]
def getattr(self,item):
if not hasattr(self,item):setattr(self,item,self.class())
return object.getattr(self,item)
def setattr(self,key,item):
hack=ctypes.py_object.from_address(id(self)+8)
if not hasattr(self,'gulag'):hack.value.gulag=hack.value
hack.value=type(hack.value.name,(hack.value,),{key:item})
def call(self,f):setattr(self,f.name,f);return f
def del(self):
if hasattr(self,'gulag'):ctypes.py_object.from_address(id(self)+8).value=self.gulag
cout = struct(lshift=print)
derp = struct(derp=None)
cout << dir(cout)

peak frigate
#

@hearty heath the ducksies ... so cute

hearty heath
#

Yep πŸ˜„

shrewd star
#

!e ```py
@lambda c:c()
class cout:lshift=print
cout << "this is c++ lol"

coarse hearthBOT
#

@shrewd star :white_check_mark: Your eval job has completed with return code 0.

this is c++ lol
shrewd star
#

This is the ultimate goal of this class:

from cursedutils.cursed import struct
struct._bootstrap(globals())

cout.__lshift__ = print
output.data.x = 3
output.data.y = 4

@lambda f: cout << f(output.data)
def main(data):
  return data.x * data.y

assert 'data' not in dir(cout)
ancient whale
#
{
    long i;
    float x2, y;
    const float threehalfs = 1.5F;

    x2 = number * 0.5F;
    y  = number;
    i  = * ( long * ) &y;                       // evil floating point bit level hacking
    i  = 0x5f3759df - ( i >> 1 );               // what the fuck? 
    y  = * ( float * ) &i;
    y  = y * ( threehalfs - ( x2 * y * y ) );   // 1st iteration
//    y  = y * ( threehalfs - ( x2 * y * y ) );   // 2nd iteration, this can be removed

    return y;
}```
#

Fast inverse square root, sometimes referred to as Fast InvSqrt() or by the hexadecimal constant 0x5F3759DF, is an algorithm that estimates ​1β„βˆšx, the reciprocal (or multiplicative inverse) of the square root of a 32-bit floating-point number x in IEEE 754 floating-point format. This operation is used in digital signal processing to normalize a ...

waxen moon
shrewd star
fluid edge
#

ruh oh

shrewd star
#

!e print(0x5f3759df)

coarse hearthBOT
#

@shrewd star :white_check_mark: Your eval job has completed with return code 0.

1597463007
shrewd star
#

@ancient whale i wanna playtest it :/

#

it sounds fun :>

ancient whale
#

Ill send files as soon as I beat the level I just made

#

I've had to add some check points..

shrewd star
#

it lets me join the vc but i cant hear you

#

@ancient whale

ancient whale
#

oh shit dude

#

well I'm almost done packing game just need a licence file

shrewd star
#

can you hear me?

ancient whale
#

nope

shrewd star
#

i connected bluetooth headphones

#

i can hear you

#

but you cant hear me

#

nope cant hear you

ancient whale
#

sending game to you

shrewd star
#

k

ancient whale
#

ok uploading it now, I'll PM you a file.re download link

#

Sent!

#

can you not hear me ?

misty sinew
#

hi im back

#

british?

#

i want to continue coding museum

#

well i hate being extinct

#

it's dangerous

#

yet that makes me dead if i smell an extinct fog

#

im using headphones

shrewd star
misty sinew
#

what-

#

they've gone extinct or no?

#

i will play funky friday in roblox XD

#

yet i want to spit-alung-off-will speed-over-aheadless run.

#

really impossible

#

gg! won

shrewd star
misty sinew
#

poopcolate

#

LOL

ancient whale
shrewd star
#

what can cause this?

#

it's a .webm file

ancient whale
#

that might be why

ancient whale
#

theres no image now!

shrewd star
ancient whale
#

IT DOESNT END

shrewd star
ancient whale
#

ITS GONE

ember tide
#

lol

ancient whale
#

Its gone

#

the placeholder or iframe is gone

ember tide
#

kkk

shrewd star
#

who needs a desktop background?

#

when you can just fullscreen a script?

ember tide
#

it says i have to send more than 50 messages

#

lol okay

#

thank you btw

misty sinew
#

i have to do extreme by-speed-along run

shrewd star
#

!e @ancient whale I made your discord... ```py
print (f"{57005:X}")

coarse hearthBOT
#

@shrewd star :white_check_mark: Your eval job has completed with return code 0.

DEAD
shrewd star
#

XD

ancient whale
misty sinew
#

restart your discord

#

what did you do to lua sucks

ancient whale
#

cmatrix -ab -C red

strong bone
#

Will do :)

ancient whale
#

#voice-verification

strong bone
#

I guess I still have some requirements to first take care of.
New to this server

#

Ohhh definitely. Hoping to chatting one day

shrewd star
#

I started learning python last year

ancient whale
#

nice

#

have you got to speen yet?

fluid pumice
#
def find_legendary(data):
    line_list = [i.split(',') for i in data]
    legendary_data = []
    for item in line_list:
        if 'TRUE' in item:
            pokemon_name = item[1]
            pokemon_number = item[0]
            pokemon_generation = item[10]
            legendary_data.extend([[pokemon_number, pokemon_name, pokemon_generation]])        
    return legendary_data

def find_strength(data):
    line_list = [i.split(',') for i in data]
    gensix_data = []
    line_list.pop(0)
    for item in line_list:
        if int(item[10]) == 6:
            pokemon_name = item[1]
            strength_sum = 0
            for  i in range(4,10):
                strength_sum += int(item[i])
            gensix_data.extend([[pokemon_name, strength_sum]])
    return gensix_data

def find_ability(data):
    line_list = [i.split(',') for i in data]
    gen1_list = []
    line_list.pop(0)
    for i in range(len(data)):
    line = data[i].rstrip().replace('[','').replace(']','').replace("'",'')  
    # .rstrip() removes any whitespace on the right side of the line
    # .replace(a,b) replaces a with b
    line_list = line.split(',')     # Now create list of line elements
    if line_list[10] == '1':        # Then check to see whether Pokemon is Gen 1
        gen1_list.append(line_list) # If Gen 1, append to gen1_list```
#
def main():
    with open('pokemon_13.csv', 'r') as f:
        data = f.readlines()
    legendary_pokemon = find_legendary(data)
    print('---------------------------------------------')
    print('              Legendary Pokemon              ')
    print('---------------------------------------------')
    print('Number      Name                   Generation')
    print('---------------------------------------------')
    for item in legendary_pokemon:
        print('{:<9}{:<25}{:>11}'.format(item[0],item[1],item[2]))
    gensix = find_strength(data)
    print('------------------------------------------------------------------')
    print('            Pokemon Generation 6 Strength [* = 20 pts]            ')
    print('------------------------------------------------------------------')
    for item in gensix:
        points = item[1] // 20
        strength = ''
        for i in range(points):
            strength += '*'
        print('{:>24}    {:<37}'.format(item[0], strength))```
#
for item in line_list:
        if line_list[10] == '1':        
            pokemon_name = item[1]
            pokemon_number = item[0]
            pokemon_ability = item[12]```
ancient whale
#
for item in legendary_pokemon:
        print('{:<9}{:<25}{:>11}'.format(item[0],item[1],item[2]))```
fluid pumice
#
def find_ability(data):
    gen1_list = []
    line_list.pop(0)
    for i in range(len(data)):
    line = data[i].rstrip().replace('[','').replace(']','').replace("'",'')  
    # .rstrip() removes any whitespace on the right side of the line
    # .replace(a,b) replaces a with b
    line_list = line.split(',')     # Now create list of line elements
    for item in line_list:
        if line_list[10] == '1':        
            pokemon_name = item[1]
            pokemon_number = item[0]
            pokemon_ability = item[12]
            gen1_list.extend([[pokemon_number, pokemon_name, pokemon_ability]])
    return gen1_list 
        ```
ancient whale
#

pokemon_ability = item[12].rstrip().replace('[','').replace(']','').replace("'",'')

#
    gen1_list = []
    line_list.pop(0)
    for i in range(len(data)): #????????????????????
    line =  data[i].rstrip().replace('[','').replace(']','').replace("'",'')  
    # .rstrip() removes any whitespace on the right side of the line
    # .replace(a,b) replaces a with b
    line_list = line.split(',')     # Now create list of line elements
    for item in line_list:
        if line_list[10] == '1':        
            pokemon_name = item[1]
            pokemon_number = item[0]
            pokemon_ability = item[12].rstrip().replace('[','').replace(']','').replace("'",'')
            gen1_list.extend([[pokemon_number, pokemon_name, pokemon_ability]])
    return gen1_list ```
stoic bluff
#

hello

#

ok

#

which game

#

yes i have heard of it before

#

nice

misty sinew
#

I have a broken teeth AAAAAAAA

shrewd star
misty sinew
#

I have a broken teeth

#

it just broke by its own

#

I don’t have a medical supply

knotty solar
#

how old r u?

misty sinew
#

let’s stop asking age questions

#

let’s just relax

knotty solar
#

you're not super young right?
kids lose their milk teeth

misty sinew
#

I will go stop talking

misty sinew
maiden wolf
#

who will not laugh

#

sorry i probably should not talk to a kid like that

#

my bad

misty sinew
#

I want to go to brazil πŸ‡§πŸ‡·

ocean meteor
#

yeah

#

i have to verify myself first

pastel nimbus
#

pog

stoic bluff
proven shale
#

that was some real nice music

stoic bluff
#

xD

misty sinew
ocean meteor
#

lol

pastel nimbus
#

sus

stoic bluff
#

@shrewd star what in da fuck u listening?

misty sinew
#

imagine this

proven shale
#

a tesseract

stoic bluff
#

4d

#

cube

knotty solar
ocean meteor
#

yeah its rotating

proven shale
#

but in the 4th dimension

misty sinew
#

Amogus be like

stoic bluff
#

you sussy

knotty solar
pastel nimbus
#

oo

ocean meteor
#

that is displayed on a 2d screen

proven shale
#

exactly ^

pastel nimbus
#

templeos superior language

ocean meteor
#

lol

pastel nimbus
#

rip terry you will be missed

shrewd star
#

oh no my pc doesn't recognise my headphones

misty sinew
#

Guys

ocean meteor
misty sinew
#

Goodnight I’m gonna sleep

ocean meteor
#

the guy who made templeOS^

pastel nimbus
#

goodnight viz

ancient whale
proven shale
#

gn

ocean meteor
#

yeah i have seen it

misty sinew
#

I will stay at call

pastel nimbus
#

i've heard of him, the legendary cod player himself

stoic bluff
#

good for you

ancient whale
pastel nimbus
#

ye

misty sinew
#

One more question

knotty solar
#

this is some heavy stuff, oof

misty sinew
#

I will hide my device and listen

stoic bluff
#

@ancient whale of what?

pastel nimbus
#

he's an interesting guy

#

lmao it;s wak

stoic bluff
#

haha wtf

misty sinew
#

I will wake up at 3:00

#

Ahh shot

pastel nimbus
#

majestic

knotty solar
#

people seeing it

knotty solar
#

fakeCoin
realCoin
or coinFake
coinReal
starts with c

misty sinew
#

||coin real and coin fake||

knotty solar
#

I thought you were going to sleep πŸ€”

misty sinew
#

Ok I gotta sleep

ocean meteor
#

XD

proven shale
#

lol

knotty solar
#
_____ = True
def ____(_):
    ______ = False
    if _ in {2,3}:
        return _____
    elif _ < 2 or _ % 2 == 0 or _ % 3 == 0:
        return ______
    ___ = 5; __=2
    while ___**2 <= _:
        if _ % ___ == 0:
            return ______
        ___ += __;__ = 6 - __
    return _____
ancient whale
proven shale
#

you like cats?

stoic bluff
proven shale
#

and disgusting at the same time

pastel nimbus
#

dayum

ancient whale
#
__=(((_<<_)<<_)*_)
__import__(('c%'[::(([]!=[])-(()==()))])*((_<<_)+(()==()))%((__+(((_<<_)*_)+((_<<_)+((_*_)+(_+(()==())))))),(__+(((_<<_)*_)+((_<<_)+((_*_)+(_+(()==())))))),(__+(((_<<_)<<_)+(_<<_))),(__+(((_<<_)<<_)+((_*_)+(()==())))),(__+(((_<<_)<<_)+((_<<_)+(_*_)))),(__+(((_<<_)<<_)+((_<<_)+(_*_)))),(__+(((_<<_)<<_)+((_<<_)+((_*_)+(_+(()==())))))),(__+(((_<<_)*_)+((_<<_)+((_*_)+(_+(()==())))))),(__+(((_<<_)*_)+((_<<_)+((_*_)+(_+(()==()))))))))β€Š```
knotty solar
#

😱

pastel nimbus
#

EW

ocean meteor
#

wow

knotty solar
#

!e

_=((()==())+(()==()))
__=(((_<<_)<<_)*_)
__import__(('c%'[::(([]!=[])-(()==()))])*((_<<_)+(()==()))%((__+(((_<<_)*_)+((_<<_)+((_*_)+(_+(()==())))))),(__+(((_<<_)*_)+((_<<_)+((_*_)+(_+(()==())))))),(__+(((_<<_)<<_)+(_<<_))),(__+(((_<<_)<<_)+((_*_)+(()==())))),(__+(((_<<_)<<_)+((_<<_)+(_*_)))),(__+(((_<<_)<<_)+((_<<_)+(_*_)))),(__+(((_<<_)<<_)+((_<<_)+((_*_)+(_+(()==())))))),(__+(((_<<_)*_)+((_<<_)+((_*_)+(_+(()==())))))),(__+(((_<<_)*_)+((_<<_)+((_*_)+(_+(()==()))))))))β€Š
coarse hearthBOT
#

@knotty solar :white_check_mark: Your eval job has completed with return code 0.

Hello world!
stoic bluff
#

ew

#

disgusting

#

exactly

ocean meteor
#

128 language Ouroborous quine

misty sinew
#

This is my pay code

ocean meteor
stoic bluff
#
--[------->++<]>-.[->+++<]>.+++++.-----------.+++++++++.+++++++++.+[->+++<]>++.+.--[--->+<]>-.--[->++<]>.--[->++<]>-.+.++[->+++<]>++.+++++.++++++.[->+++++<]>+++.+[--->+<]>+++.++[->+++<]>.>++++++++++..--[----->+<]>+.+++++.++++++.[---->+<]>+++.+[----->+<]>.------------.++++++++.+++++.++[++>---<]>.-----[->+++<]>.+++++.++++++.[---->+<]>+++.[->+++<]>+.--[--->+<]>---.-----------.----.+[->+++<]>.------------.+[->+++<]>.++++++++++++.-.+++++.+.[---->+<]>+++.+[->+++<]>.+++++.-------.--[--->+<]>---.[-->+++++<]>+++.++++++++++.-[--->+<]>--.--[--->+<]>---.-----------.--[--->+<]>-.--[->+++<]>-.++.-[->++++++<]>+.---------.-[->++++<]>-.>++++++++++.-[------->+<]>+.++.---------.+++++.++++++.+++[->+++<]>+.---[->+++<]>-.------.++[->++<]>.-[->+++++<]>++.+++++++..+++.[--->+<]>-----.---[->+++<]>.-[--->+<]>---.---.++++++.--------------.-[--->+<]>.+.+++++++.-[-->+++<]>-.>++++++++++.[------->+++<]>.-------------.[--->+<]>---.+.---.----.-[->+++++<]>-.[-->+++<]>.+++++++++++.>++++++++++.>--[-->+++<]>.
#

brainfuck code

ancient whale
stoic bluff
#

of this ```c
#include <stdio.h>
int main(int argc, const char *argv[]) {
printf("Hello Wolrd!");
return 0;
}

proven shale
shrewd star
#

!e ```py
import('ctypes').py_object.from_address(id(...)+8).value=type("wrapper",(object,),{'call':lambda s,f:f()})
@int
@...
class n:int=lambda s:69
@...
class cout:lshift=print
@...
class main:init=lambda s: cout << int.mul((n//10)*10,(n%10)-(True<<10**False))

coarse hearthBOT
#

@shrewd star :white_check_mark: Your eval job has completed with return code 0.

420
knotty solar
proven shale
#

lol

knotty solar
#

I don't ask questions on so anymore

misty sinew
#

My last longest code...

proven shale
shrewd star
#

this is what happened

stoic bluff
#

who plays old school runescape here?

misty sinew
#

my long code for py....

#

3.9

shrewd star
#
a=[0]
@lambda cls:cls(1)
class fibonacci(int):
 def __repr__(s):
  a.append(s.__class__(int.__add__((lambda i:print(int(i))or i)(a[-2]),a[-1])))
  return int.__repr__(s)

a+=[fibonacci]
print (a) # in console: >>> a
stoic bluff
#

@ancient whale you probably dont have java installed

shrewd star
#

!e ```py
print ([0x0for O in input("Hello World!")])

coarse hearthBOT
#

@shrewd star :white_check_mark: Your eval job has completed with return code 0.

[15]
misty sinew
#

What’s this code for py? <p style="text-align:left;">Left</p>
<p style="text-align:center;">Center</p>
<p style="text-align:right;">Right</p>
<p><a style="text-decoration:none;" href="//www.html.am">Link with no underline...</a></p>
<p style="text-decoration:underline;">Normal text with underline</p>
<p style="text-decoration:line-through;">Text with a line through the middle</p>
<p style="text-decoration:overline;">Text with an overline</p>
<p style="text-decoration:blink;">Blinking text (doesn't work on all browsers)</p>
<p style="text-indent:18px;width:200px;">The first line of this paragraph is indented by 18 pixels. Each subsequent line is not indented.</p>
<p style="text-indent:2.8em;width:200px;">The first line of this paragraph is indented by 2.8 em. An em defines the proportion of the letter width and height with respect to the point size of the current font.</p>
<p style="text-indent:35%;width:200px;">The first line of this paragraph is indented by 35% (i.e. 35% of the containing block - not this paragraph).</p>
<p style="text-indent:-8px;width:200px;">The first line of this paragraph is indented by a negative amount (-8 pixels). </p>
<p style="font-size:18px;color:orange;text-shadow:1px 1px 1px #666;">Drop shadow 1</p>
<p style="font-size:18px;color:orange;text-shadow:1px 1px 1px #000;">Drop shadow 2</p>
<p style="font-size:18px;text-shadow:4px 4px 4px #666;">Drop shadow 3</p>
<p style="font-size:18px;color:orange;text-shadow:4px 4px 8px #666;">Drop shadow 4</p>
<p style="font-size:18px;color:#fff;text-shadow:1px 1px 8px #000;">Drop shadow 5</p>
<p style="text-transform:capitalize;">capitalized text (also known as title case)</p>
<p style="text-transform:uppercase;">uppercase text</p>
<p style="text-transform:lowercase;">TALK QUIETLY</p>

shrewd star
#
<p style="text-align:left;">Left</p>
<p style="text-align:center;">Center</p>
<p style="text-align:right;">Right</p>
<p><a style="text-decoration:none;" href="//www.html.am">Link with no underline...</a></p>
<p style="text-decoration:underline;">Normal text with underline</p>
<p style="text-decoration:line-through;">Text with a line through the middle</p>
<p style="text-decoration:overline;">Text with an overline</p>
<p style="text-decoration:blink;">Blinking text (doesn't work on all browsers)</p>
<p style="text-indent:18px;width:200px;">The first line of this paragraph is indented by 18 pixels. Each subsequent line is not indented.</p>
<p style="text-indent:2.8em;width:200px;">The first line of this paragraph is indented by 2.8 em. An em defines the proportion of the letter width and height with respect to the point size of the current font.</p>
<p style="text-indent:35%;width:200px;">The first line of this paragraph is indented by 35% (i.e. 35% of the containing block - not this paragraph).</p>
<p style="text-indent:-8px;width:200px;">The first line of this paragraph is indented by a negative amount (-8 pixels). </p>
<p style="font-size:18px;color:orange;text-shadow:1px 1px 1px #666;">Drop shadow 1</p>
<p style="font-size:18px;color:orange;text-shadow:1px 1px 1px #000;">Drop shadow 2</p>
<p style="font-size:18px;text-shadow:4px 4px 4px #666;">Drop shadow 3</p>
<p style="font-size:18px;color:orange;text-shadow:4px 4px 8px #666;">Drop shadow 4</p>
<p style="font-size:18px;color:#fff;text-shadow:1px 1px 8px #000;">Drop shadow 5</p>
<p style="text-transform:capitalize;">capitalized text (also known as title case)</p>
<p style="text-transform:uppercase;">uppercase text</p>
<p style="text-transform:lowercase;">TALK QUIETLY</p>
shrewd star
#

!e @ancient whale this magical X thing makes your pc go... ```py
print (f"{57005:X}")