#voice-chat-text-0

1 messages ยท Page 657 of 1

lusty marsh
#

@somber heath

#

you left

whole bear
#

I cant talk

#

python wont let me talk

#

oj

#

can i spamm

#

no

#

ok

#

i want 50 meesages

lusty marsh
#
import tootle
ray = tootle.Vec3(-2, -3, 1)
nrm = tootle.Vec3(0,1, 0)

reflection = ray - (2 * (tootle.dotproduct(ray, nrm))* nrm)
whole bear
#

bruuuu

#

lol

#

hahha\

#

hahah

#

hhahah

#

hahha

#

huh

#

?

lusty marsh
#

โ€ผ๏ธ ๐Ÿ”จ

whole bear
#

bru

#

i cant talk

#

that sucks

#

i hate typing

lusty marsh
#

โŒจ๏ธ

whole bear
#

haah

#

i put a aio cooler on my pc

#

no

#

a water cooling

#

block

#

for your cpu

#

huh

#

i have a i5 9400

#

intel is better

#

9400

craggy zephyr
#

@severe elm i checked some documentations on css and scss

whole bear
#

there the same

#

the f is for non built in graphics

#

i have 4.1

#

for max speed

#

no mine can go up to 4.1

#

but i can over clock to 5

pure path
#

!e

a = []
del(a)
print(a)
wise cargoBOT
#

@pure path :x: Your eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 3, in <module>
003 | NameError: name 'a' is not defined
whole bear
#

!e

craggy zephyr
#

!e

wise cargoBOT
#
Command Help

!eval [code]
Can also use: e

*Run Python code and get the results.

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

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

whole bear
#

the python bots trasshhshshs

#

!ping

wise cargoBOT
#

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

whole bear
#

wth

craggy zephyr
#

!e
a=5
b=5
print(sum)

whole bear
#

!e
a=5
b=5
print(sum)

#

lol

craggy zephyr
#

xD

whole bear
#

@whole bear

#

!e @whole bear

wise cargoBOT
#

@whole bear :x: Your eval job has completed with return code 1.

001 |   File "<string>", line 1
002 |     <@โ€‹!427841299920453634>
003 |     ^
004 | SyntaxError: invalid syntax
lusty marsh
#

!e

import sys
print(sys.platform())
wise cargoBOT
#

@lusty marsh :x: Your eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 2, in <module>
003 | TypeError: 'str' object is not callable
craggy zephyr
#

!e
import tensorflow as tf

lusty marsh
#

!e

import asyncio

async def run():
  print("hello world")


asyncio.run(run())
wise cargoBOT
#

@lusty marsh :white_check_mark: Your eval job has completed with return code 0.

hello world
whole bear
#

hey guhys

#

can anyone hear me

craggy zephyr
#

hi

somber heath
#

!resource

wise cargoBOT
#
Resources

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

craggy zephyr
#

Nope

whole bear
#

why cnat i talk

#

i wanna talk

craggy zephyr
#

you have to verify first

whole bear
#

miau

#

miau

#

miau

#

almost there

gentle flint
#

shut

#

I am a dog and I will eat you if you meow

craggy zephyr
#

haha

lusty marsh
#
LOG_PATTERN = re.compile(
    r"\[(?P<level>(I)|[DWEF])\]\[.+?\](?(2)|(?P<func>\[\d+\] .+?:\d+ )) ?(?P<msg>.+)"
)
whole bear
#

so

#

i sent more than 50 messages

craggy zephyr
#

so
@whole bear verify there

whole bear
#

this wont let me talk

craggy zephyr
#

i sent more than 50 messages
@whole bear yeah

#

keep messaging but don't spam plz

whole bear
#

u said

#

this says

#

i only need

gentle flint
whole bear
#

50 messages

green bone
#

!tvban @whole bear 14d Trying to circumvent voice-gate by spamming messages all over the server. Did you really think this would work?

gentle flint
#

fixing up a terrible glue job

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied voice ban to @whole bear until 2020-11-08 13:52 (13 days and 23 hours).

whole bear
#

what

#

why

wind cobalt
#

how to get verified?

whole bear
#

i just need help to a problem

wind cobalt
#

i've been on this server ages ago

gentle flint
#

@whole bear it says why

Trying to circumvent voice-gate by spamming messages all over the server. Did you really think this would work?

craggy zephyr
#

check the voice verification channel

i've been on this server ages ago
@wind cobalt

wind star
whole bear
#

i just want help

pure path
#

they were spamming to gain 50 messages

#

i think

sullen harness
#

<@&267629731250176001> help pls

lusty marsh
#
    def python3(self, code: str) -> CompletedProcess:
        """Execute Python 3 code in an isolated environment and return the completed process."""
        with NamedTemporaryFile() as nsj_log:
            args = (
                self.nsjail_binary,
                "--config", NSJAIL_CFG,
                "--log", nsj_log.name,
                f"--cgroup_mem_max={MEM_MAX}",
                "--cgroup_mem_mount", str(CGROUP_MEMORY_PARENT.parent),
                "--cgroup_mem_parent", CGROUP_MEMORY_PARENT.name,
                "--cgroup_pids_max=1",
                "--cgroup_pids_mount", str(CGROUP_PIDS_PARENT.parent),
                "--cgroup_pids_parent", CGROUP_PIDS_PARENT.name,
                "--",
                self.python_binary, "-Iqu", "-c", code
            )

            msg = "Executing code..."
            if DEBUG:
                msg = f"{msg[:-3]}:\n{textwrap.indent(code, '    ')}"
            log.info(msg)

            try:
                result = subprocess.run(
                    args,
                    stdout=subprocess.PIPE,
                    stderr=subprocess.STDOUT,
                    text=True
                )
            except ValueError:
                return CompletedProcess(args, None, "ValueError: embedded null byte", None)

            log_lines = nsj_log.read().decode("utf-8").splitlines()
            if not log_lines and result.returncode == 255:
                # NsJail probably failed to parse arguments so log output will still be in stdout
                log_lines = result.stdout.splitlines()

            self._parse_log(log_lines)

        return result
gentle flint
#

O_O

lusty marsh
#

O_O

pure path
gentle flint
green bone
#

@sullen harness What's wrong?

somber heath
#

@whole bear With what do you require assistance?

sullen harness
#

@pure path oh no, sorry, that was easy to misunderstand ๐Ÿ™‚ - I wanted to have the mods take a look at Esquito for spamming.

pure path
#

oh i see i thought that u needed help

sullen harness
#

Yeah, no worries, will do ๐Ÿ™‚

olive sentinel
#

Thank you, @sullen harness, we're looking into it.

#

For the future, you could also consider using @rapid crown (just send a DM to it to use it). That will also alert the moderation team, but avoids you having to name someone in public. That can get a bit ugly at times.

wind cobalt
#

this is peak English literature

severe elm
#

@severe elm i checked some documentations on css and scss
@craggy zephyr bro sry i was working on my homepage

#

yeah how is it?

gentle flint
#
A story that the Jedi would not tell you.
'Did you ever hear the Tragedy of Darth Plagueis the wise? I thought not. It's not a story the Jedi would tell you. It's a Sith legend. Darth Plagueis was a Dark Lord of the Sith, so powerful and so wise he could use the Force to influence the midichlorians to create life... He had such a knowledge of the dark side that he could even keep the ones he cared about from dying. The dark side of the Force is a pathway to many abilities some consider to be unnatural. He became so powerful... the only thing he was afraid of was losing his power, which eventually, of course, he did. Unfortunately, he taught his apprentice everything he knew, then his apprentice killed him in his sleep. It's ironic he could save others from death, but not himself.'
#

this is not spam

#

in case anyone was wondering

#

it does actually have a bearing on what we were discussing in the vc

wind cobalt
#

this is art

sullen harness
#

For the future, you could also consider using @rapid crown (just send a DM to it to use it). That will also alert the moderation team, but avoids you having to name someone in public. That can get a bit ugly at times.
@olive sentinel Ah, I wasn't sure wethert this is a real thing that will be forwarded to you or just a user/bot spoofing that name. Sorry ๐Ÿ™‚

gentle flint
#

verschillen = differences

#

verschillende/verschillend = different

whole bear
#

no one reply me sed

wind cobalt
gentle flint
wind cobalt
#

king
@gentle flint he said sorry for greece

#

i'll give king willem a score of gekoloniseerd/gekoloniseerd

wind cobalt
#

King Willem of The Netherlands:
1.cost money
2.can only fly
3. doesn't have an army
Sauron, The Dark Lord of Mordor:

  1. benevolent king of Mordor
  2. can see everything
  3. has an army
gentle flint
#

shut up

somber heath
#

@radiant marten Do you really think that wise?

#

@radiant marten This will not work out the way you hope.

wind cobalt
#

stahp

gentle flint
#

you're just gonna get voice banned

#

but have fun

#

someone got voice banned for precisely this 15 minutes ago

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied mute to @radiant marten until 2020-10-25 14:46 (9 minutes and 58 seconds) (reason: burst rule: sent 8 messages in 10s).

whole rover
#

!ban @radiant marten Spamming for no reason whatsoever. Goodbye.

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied ban to @radiant marten permanently.

whole rover
#

actually

#

!unban 757923719824801853

wise cargoBOT
#

:ok_hand: pardoned infraction ban for @radiant marten.

gentle flint
#

voice verification, I think

green bone
#

tempvoicepurgeban

whole rover
#

!pban @radiant marten Spamming for no reason whatsoever. Goodbye.

wise cargoBOT
#

failmail :ok_hand: applied ban to @radiant marten permanently.

gentle flint
#

what's the difference between those two bans?

whole rover
#

pban purges message history

gentle flint
#

ah

#

I see

whole rover
#
metricity=@ DELETE FROM messages WHERE author_id = '757923719824801853';
DELETE 209

๐Ÿ™‚

wind cobalt
#

acknowledged

#

SQLite?

whole rover
#

no

#

PostgreSQL

wind cobalt
#

:= is animal abuse

empty sedge
#

Sexual freelancer is just an escort with extra steps

gentle flint
#

jou = you
jouw = your

#

burg = old word for city
burger = citizen
burgemeester = master of the burg = mayor

somber heath
#

Burger patty. Tastes like civic pride.

gentle flint
#

I live = Ik leef
He lives = Hij leeft
They live = Zij leven

wind cobalt
#

borough

gentle flint
#

eeuwige = eternal

#

uiรฏge = onionlike

whole bear
#

Hello gamers

gentle flint
#

our onionlike mountain ranges

#

kreun = groan

wind cobalt
#

met de kreun van ossewagen

gentle flint
#

met het gekreun van ossenwagens

wind cobalt
#

the depressed ox-wagon

#

@somber heath

gentle flint
#

It only says groaning

#

he might be wounded instead

wind cobalt
#

pijn in mijn hart

#

en mijn ossenwagen

gentle flint
#

this is very heavy flemish

#

note for instance "begost" instead of "begonnen"

#

and literally every other word

wind cobalt
#

dat is te gek

#

Ewe

#

that's disgusting

gentle flint
#

yew

sinful pawn
#

Typing with one hand is hard

#

@rugged root Opinion on .NET 5?

wind cobalt
#

kinda cool

#

looking forward to it

#

heard Bill Gates ran the company

#

dotNot

sinful pawn
#

How long will it take courses on C#/-.NET to update to C# 9.0 syntax?

wind cobalt
#

as long as it takes maybe

sinful pawn
#

knaifu

potent thicket
#

nice

wind cobalt
#

knaifu wif my waifu

sinful pawn
#

inb4 "raifu"

amber raptor
#

I'ts not like C# learning courses won't work with .Net 5

sinful pawn
#

switch statement got changed I think

#

in C# 8.0 iirc?

#

I don't remember solidly, only took a glance at C# 8.0's changelog

gentle flint
#

perhaps we need some sandpaper

#

or python

sinful pawn
#

"Kids these days and there fancy objects, back in my day I had to make do with raw x86 no compiler"

wind cobalt
#

too much rust
@gentle flint rofl

#

back in my day, 1011 that variable

gentle flint
#

@sinful pawn But do kids from those days know the difference between their and there?

wind cobalt
#

lol

sinful pawn
#

Good grief don't bring me back to there/their

#

I hate it

gentle flint
#

lol

sinful pawn
#

And "who's" instead of "whose"

wind cobalt
#

-rm rf

gentle flint
#
killall python
wind cobalt
#

3 min's more

sinful pawn
#

Guido et al.?

wind cobalt
#

1 min left

#

oof

sinful pawn
#

Isn't JIT-ed Py => Pypy?

wind cobalt
#

aaaaaand i'm gone

gentle flint
#

bai

wind cobalt
#

tot later

sinful pawn
swift valley
#

Still waiting for patmat

sinful pawn
#

patmat?

swift valley
#

Pattern matching

sinful pawn
#

regex-related?

swift valley
#

Not necessarily

#

!pep 634

wise cargoBOT
sinful pawn
#

ooh

#

The DOJ --> The Doge?

#

Well they care about money

#

We need topic...hmmm....

#

Bad tech joke with Hemlock?

stuck furnace
#

It would be cool if social media worked using protocols, like email. So there would be like a standard facebook-style social media protocol, and you could choose your provided. Not sure if it would actually work in practice.

swift valley
#

quantum ai blockchain

sinful pawn
#

good fucking god

swift valley
#

all the buzzwords

sinful pawn
#

Speaking of buzzword

#

Some brand over here advertised their cooking oil as "made using nanotech"

somber heath
#

Pretty sure I've seen engine oil advertising similar.

sinful pawn
#

engine oil with nanotech I can partly understand

#

but cooking oil with nanotech?? the hell you trying to coat your stomach with nanoparticles or sth

swift valley
#

Nanomachines, son

sinful pawn
#

If romantic sweetness is not found, food sweetness can do

#

I'm living by that from now

#

That was ~Jan 2019 was it?

sinful pawn
#

The fuck was going on in their head?

#

"Hurr durr fake internet points do stupid shits?"

vestal mason
#

exactly

sinful pawn
#

they just figure out after 4 or 5 that this is a shitty idea
Say that to anti maskers in US

#

There's also "meat glue" iirc @rugged root

amber raptor
#

Lunch time

sinful pawn
#

I'm gonna go load the washing machine and sleep

potent thicket
#

hello

#

I am muted

#

I am old but not very active

#

not enough massages

#

๐Ÿ‘

fervent moon
#

man I'm hella having storage problems

mystic spoke
#

yeah

#

storage problems suck

fervent moon
#

okay so I have gallium right? and it's on a chromebook, but the chromebook has 10 gbs of memory

mystic spoke
#

woah

#

good luck with that.

fervent moon
#

exactly, and you can't write programs to external storage devices easily on linux, so stupid

#

so now I have to either use my 10 mbps sd card or wipe chrome os completely

mystic spoke
#

i mean i dont see why would you keep chrome os

fervent moon
#

I guess that is a fair point

#

even then I only have 10 gbs, but maybe I can squeeze through with that

mystic spoke
#

Living life in hard mode

fervent moon
#

poor problems I guess, stupid chromebook, I can't believe the asking price was $100, I can't even run fallout 2 with proton!!

#

it caps at like 5 fps

mystic spoke
#

What do you usually use it for

fervent moon
#

so far just visual studio, but I'd like to possibly use retroarch and old steam games through wine, if at all possible

wraith ridge
gentle flint
jovial meadow
amber raptor
#

it seem weird many dynamic languages end up with typing bolted on

#

like Typescript for Javascript and MyPy for Python

wraith ridge
amber raptor
#
(if (> a 20)
   (format t "~% a is less than 20"))```
#

that's confusing as well

#
(defmacro setTo10(num)
(setq num 10)(print num))
(setq x 25)
(print x)
(setTo10 x)```
wraith ridge
amber raptor
#
if(x == 10){
print("Hello")
}```
wraith ridge
#
(defmacro setTo10(num)
  (setq num 10)
  (print num))

(setq x 25)

(print x)

(setTo10 x)
amber raptor
#
if (x -eq 10){
Write-Host "Hello"
}```
wraith ridge
#

[1,2 3]

amber raptor
#
  //  block of code to be executed if the condition is true
}``` What language is that?
whole bear
#

Java

quartz lynx
#

why am I suppressed in this chat?

#

who is hiring for lisp

amber raptor
#

I'm sure there is ancient code somewhere that needs maintaining

quartz lynx
#

well it seems like i have to type 50 messages now

amber raptor
#

don't spam for that

quartz lynx
#

weird because just a couple weeks ago i was chillin

quasi condor
#

Not in vc. But new lisp is still fairly popular in some industries. Fexco and a bunch of other finance places have a fair chunk of it

amber raptor
#

Sure, but you would agree it's niche

quasi condor
#

Yeah definitely

#

Just a few weird places that it pops up

quartz lynx
#

is learning react worth it?

whole bear
#

I want know that too

amber raptor
#

yes

whole bear
#

It seems easy tho

wraith ridge
#

learn Elm

eager hound
#

I want to code something but I don't know what to code fuck

amber raptor
#

No, React first

eager hound
#

what's the reason for the arnold schwarzenegger language?

amber raptor
#

People just get bored

eager hound
#

aoidsjfaoisdf

#

it's AWESOME

steep garden
#

Lol

eager hound
#

I worked for IBM

#

get out.

#

it's shit

#

IBM it's great for fist job I've guess

#

yeah

#

hahaha

#

It's not innovate in the areas where google does and AWS does

#

I've guess they're cool with their things quantum and shit

#

last time what's the lead last time

#

sry im dislexyc

#

damn

#

quamtum fucking your privacy

#

-china

#

hahahaha

#

dunno shit about cryptography but I've heard that quantum's gonna get RSA obsolete?

quasi condor
eager hound
#

whaaaaa

#

NOOOO

#

ooooof

#

all this so y'all mf can say you have friends

whole bear
#

yea

#

mmmmmmmmmmm i seee thx

whole bear
#

@haughty pebble can you try and use my program?

#

i made it in the programming language Batch

#

cmd.exe

#

can you guys add me so i can add you guys to a group

#

its like 1000 lines long

#

a group dm

#

can you guys add me so i can add you guys to a group dm?

#

@zenith radish @haughty pebble can you please accept my friend request?

zenith radish
#

no

#

I won't be able to run your shady batch script on linux lmao

whole bear
#

i know

#

i just want you to be in the group too so you guys can still talk

#

@zenith radish

#

@haughty pebble please? batch is writen in plaint text and it can be edited in notepad

teal dome
#

@zenith radish is podcast goin in #off-topic channel?

somber heath
#

@whole bear How big is it?

#

Could the contents be posted to here?

dark seal
#

I am server muted

#

oh ok thanks man

whole bear
#

@somber heath can you test my program?

somber heath
#

@whole bear Will you answer my questions?

whole bear
#

yes

somber heath
#

Proceed to do so.

whole bear
#

@whole bear How big is it?
@somber heath it is 9211 lines long, no

somber heath
#

!paste

wise cargoBOT
#

Pasting large amounts of code

If your code is too long to fit in a codeblock in discord, you can paste your code here:
https://paste.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.

whole bear
#

Document exceeds maximum length.

somber heath
#

Pastebin. Github.

pliant atlas
#

@whole bear nice name u wont be demonitized

whole bear
#

because its a video encoded into a batch script

somber heath
#

Not happening.

whole bear
#

me?

somber heath
#

Besides, I'm on Linux.

whole bear
#

You have exceeded the maximum paste size of 512 kilobytes per paste. PRO users don't have this limit!

dark seal
#

lmao

#

@whole bear why do you want people to test your code?

whole bear
#

because i wanna see how fast it extracts

dark seal
#

test it yourself

whole bear
#

i have bad pc

dark seal
#

buy a better one

whole bear
#

what is a friend?

#

i literly have no friends

dark seal
#

yup he is a troll

pliant atlas
#

then fine one

#

find*

dark seal
#

I have to send 50 messages

somber heath
dark seal
#

nice song, a bit cringy tho

somber heath
#

We are all entitled to our own opinions, of course. Even if they are wrong. ๐Ÿ˜

dark seal
#

we went on lockdown at the first wave and then we opened again for summer because of tourism, and now everything is open and masks are mandatory even when walking on the street alone

#

yeah in my country the politicians meet every week too

#

and add or remove a measure

#

and the prime minister gets on tv and announces

#

who voted for that haircut guy? lmao

#

also, in my country everything must shutdown after 00:30 untill 5:00

#

like the virus only spreads at night?

#

thats a giant shitshow

#

Greece

#

kinda

whole bear
#
๏ผœ๏ฟฃ๏ฝ€ใƒฝใ€ใ€€ใ€€ใ€€ใ€€ใ€€ใ€€ใ€€๏ผ๏ฟฃ๏ผž
ใ€€ใ‚ใ€ใ€€ใ€€๏ผผใ€€๏ผโŒ’ใƒฝ,ใƒŽ ใ€€/ยด
ใ€€ใ€€ใ€€ใ‚ใ€ใ€€`๏ผˆ ( อกยฐ อœส– อกยฐ) ๏ผ
ใ€€ใ€€ ใ€€ใ€€>ใ€€ ใ€€ ใ€€,ใƒŽ
ใ€€ใ€€ใ€€ใ€€ใ€€โˆ _,,,/ยดโ€
ashen talon
#

umm

#

yea i cant really talk rn

#

@haughty pebble i didnt mean to be creepy

rugged root
#

@warm vapor You'll probably want to look in the #unit-testing channel

#

They'll be able to help you out the most

somber heath
whole bear
#

json?\

#

yes

#

no it is what

#

how

#

yeah

#

json is faster

#

Json vs XML
Json is faster
json is more custom
It less secure though

hollow haven
whole bear
#

tell that pussy i am 8 inch

#

chad

rugged root
#

@whole bear I'm sorry, what?

trim night
#

@rugged root Could i have voice perms please? 50 discord messages is crazy, i am not interesting enough to post 50 things lol. ๐Ÿ™‚

somber heath
#

@trim night Conversation goes by quickly when you're having conversation with a friend. ๐Ÿ˜Š

trim night
#

fair enough

#

48 lines left

latent moss
#

whos got the best pfp

#

or username

hollow haven
#

me =3c

latent moss
#

no me >:(

stuck furnace
#

@trim night if you hang around on the server I'm sure you'll have 50 messages before long

latent moss
#

queue ? idk why i think like i am not able to spell it now

#

oh i got it right

tiny seal
haughty idol
#

thats really great!!

dark seal
#

nice

haughty idol
#

how much time did it take ?

#

ohh

stuck furnace
#

Hello ๐Ÿ˜„

#

I'm the same... I just go to bed later and later, then skip a nights sleep to get back to normal.

#

Probably not very healthy.

#

What about a RAID array?

#

Turn them into the percussion section of a floppy-disk orchestra

#

Another option this

#

Isn't there a website that catalogs all the websites that store passwords in plaintext?

whole bear
#

@pale dew i'm focusing on my code

stuck furnace
whole bear
#

Hi

stuck furnace
#

Hey

pale dew
#

hi lol

whole bear
#

lol

pale dew
#

so am i

#

look at our names

whole bear
#

yeah we are beginners

#

legendary beginners

rugged root
whole bear
#

wait we can't screen share

#

๐Ÿ˜ฆ

quasi condor
stuck furnace
#

Greggs got me through university

#

Actually, it didn't, I dropped out.

hollow haven
verbal oasis
#

I'm sorry I didn't noticed my mic was on

#

So sorry

somber heath
#

I find it an interesting quirk of English that for one to be suspicious could mean either that person holds a suspicion about something else, or that they, themselves, are suspect.

#

@hollow haven sus

hollow haven
#

opal sus

somber heath
#

Do the whole thing with lambdas.

#

"Cat, what did you do with my glasses case?" Knocked it onto the floor?

whole bear
#

i can't talk fml

#

Guess I'll spam some messages whatever

hollow haven
#

Or just have a conversation with us and don't spam....

whole bear
#

ahh yes ofc, let's talk about minecraft

#

i like minecraft, do you like minecraft?

bold bear
#

everyone does

whole bear
#

kinda?

hollow haven
#

#voice-verification

bold bear
#

ohkk

whole bear
#

ok might as well ask you guys something serious, I have some HDDs lying around and I am also learning python, the goal here is to download tons and tons of nsfw images on them

#

I want to build pc for storing these files and only for this purpose

#

well thing is it's overcomplicated

rugged root
#

Yeah that's not something that we're going to help with

whole bear
#

I just want to drag files to pc and boop, it's stored there, like the thing the drives are of varying sizes and they're taken from old pcs that have been through hell

#

but it's art!

#

?

somber heath
#

@thick barn You sound like your internet is shit.

thick barn
#

m on a potato pc man ๐Ÿ˜ฆ

whole bear
#

feelsbadman

rugged root
whole bear
#

hmmmm, cesspit

#

I see

#

what is a partner server-wise?

#

so, regarding that nas

#

any ideas?

#

like something an idiot can understand.

#

it is for archival purposes

#

ahh yes, I see the issue, I accidentally added an N to the original message so it came off as if I want to download the naughty stuff

#

this was an accident

amber raptor
#

For combining Hard Drives, look at ZFS

whole bear
#

ok

#

so regarding that nas @rugged root

rugged root
#

!tempmute 627228427312824350 1d When being asked to drop it, you seem to want to continue. You can continue to try to spin it however you want, but when your original question was "how do I download nsfw", it's hard to have any faith that you're going to be wanting serious help. So again, drop it.

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied mute to @whole bear until 2020-10-27 16:10 (23 hours and 59 minutes).

quasi condor
#
Target: 601
100 75 9 5 3 4
warm herald
#

Hi all !

amber raptor
#

!source

wise cargoBOT
somber heath
#

100 + 9 = 109, 75 - 4 = 71, 109 - 3 = 106, 5 * 106 = 530, 71 + 530 = 601

dull seal
#

Is JavaScript a versatile language?

#

I thought so, my server co owner uses it for everything.

#

I do prefer the .py library though

rugged root
quasi condor
rugged root
quasi condor
honest pier
#

hi

amber raptor
quasi condor
rugged root
quasi condor
#
yourList.map(func).filter(func).filterNull()
winter flint
#

@rugged root ok sir

eager hound
#

found a way to automatize whatsapp

#

send 100 messages to family group

#

aoisdjofiasdf

quasi condor
#

that breaks rule 5, can't talk about it here

eager hound
#

i know

#

I just say I did it

#

not how

#

yes they have $$$$

rugged root
#

@winter flint What project are you wanting to present

south cosmos
quasi condor
cyan oriole
#

how do i connect to voice channel?

#

wait i can connect but i cant talk what

amber raptor
#

look at voice verification

#

I'd link it but I can't see any anymore

cyan oriole
#

it wont verify me

amber raptor
#

well, read the rules

#

it says the requirements

cyan oriole
#

i prob havent sent enough messages dang

#

well someone wanna help me with my phyton homework lol

amber raptor
#

!rule 5

wise cargoBOT
#

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.

amber raptor
quasi condor
rugged root
cyan oriole
#

oh my b i didnt know.

amber raptor
#

people will help with general stuff

honest pier
#

you have aids

rugged root
cyan oriole
#

do yall get a lot of students?

rugged root
#

A fair bit, yeah

#

It's probably the majority, honestly

cyan oriole
#

yeah thats why i joined๐Ÿคทโ€โ™‚๏ธ

rugged root
#

Nothing wrong with that. Happy to have anyone willing to learn!

brisk current
rugged root
#

!projects

wise cargoBOT
#

Kindling Projects

The Kindling projects page on Ned Batchelder's website contains a list of projects and ideas programmers can tackle to build their skills and knowledge.

kind crescent
quasi condor
amber raptor
#
CNBC

Narcissism involves an unrealistic sense of grandiosity and superiority, manifested in the form of vanity, self-admiration and delusions of talent. This is commonly found in bosses, according to psychology professor Tomas Chamorro-Premuzic. But it doesn't always have to be a b...

tropic ice
#

wtf

amber raptor
honest pier
#

oof

quasi condor
lusty marsh
#

!e

import tkinter as tk
wise cargoBOT
#

@lusty marsh :x: Your eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 1, in <module>
003 |   File "/usr/local/lib/python3.8/tkinter/__init__.py", line 36, in <module>
004 |     import _tkinter # If this fails your Python may not be configured for Tk
005 | ImportError: libtk8.6.so: cannot open shared object file: No such file or directory
lusty marsh
#

!e

print(0b0101)
wise cargoBOT
#

@lusty marsh :white_check_mark: Your eval job has completed with return code 0.

5
candid venture
#

!e
%f = 'ff'
print(%f)

wise cargoBOT
#

@candid venture :x: Your eval job has completed with return code 1.

001 |   File "<string>", line 1
002 |     %f = 'ff'
003 |     ^
004 | SyntaxError: invalid syntax
lusty marsh
#

!e

world = "world"

print("Hello, %f" % world)
wise cargoBOT
#

@lusty marsh :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: must be real number, not str
lusty marsh
#

hmmm

#

!e

world = "world"

print("Hello, %s" % world)
wise cargoBOT
#

@lusty marsh :white_check_mark: Your eval job has completed with return code 0.

Hello, world
cyan oriole
#

ah yes overly long code

graceful grail
#

.pyw

zinc sun
#
answer = input()

while not answer:
  answer = input()

graceful grail
#

We need to clone Mr. Hemlock!!!!

#

more Mr. Hemlocks there are the more mods there are ๐Ÿ˜›

#

or admins ๐Ÿ˜›

#

48% on the update!!!

#

reboot number 3.

#

now 57%

#

dang it is flying now. 66%

#

make that 71%

#

yeah

#

nvme

#

reboot number 4

#

lol

#

jeez windows updates are funny. On linux you don't even have to reboot and if/when you do it is only one reboot.

#

88% btw

rugged root
#

You totally have to

#

Or should

#

If you have kernel update you for sure want to restart

graceful grail
#

only for kernel updates and there is something that you can do to mitigate that too

amber raptor
#

Apparently Microsoft has had update free rebooting, a bunch of stuff crashed so they gave up

graceful grail
#

lol

#

opensource wins again

amber raptor
#

meh, nature of most software is shit

graceful grail
#

Hey it finished!

#

windows is saying HI

#

and telling me that there are more updates

amber raptor
#

how out of date were you?

graceful grail
#

and that it might take several minutes

#

I was 100% up to date except for 2009

amber raptor
#

I feel like you were massively out of date

graceful grail
#

it is a major update not those weekly updates

#

you can't even get the major updates without being 100% up to date.

amber raptor
#

because I just did 2009 on test machine and it took like 15 minutes

#

with single reboot

graceful grail
#

it took 4 reboots and about 10 minutes total

amber raptor
#

๐Ÿคท

graceful grail
#

windows is weird

stoic ore
#

see u

whole bear
#

~guyss

#

i cant talk

#

can someone helppp me

#

plss

amber raptor
#

look at voice-verification

rugged root
whole bear
#

i already have 50 messages

rugged root
#

Do you meet the time criteria?

whole bear
#

ahh

#

idk

#

ye

#

รฃh

#

whyy???

terse vigil
#

lol

#

hi

whole bear
#

i have never talked

#

so

#

when can i talk?

amber raptor
#

because you spammed for 50 message limit

whole bear
#

oh

#

make sense

terse vigil
#

you gotta hit the limiet

whole bear
#

WHAT

#

12 DAYS

terse vigil
#

RIP

whole bear
#

i realy neded help

terse vigil
#

I got like what 30 or 40?

whole bear
#

thats why i spammed

terse vigil
#

yup

rugged root
terse vigil
#

I have no mouth but i must scream

#

how is everyone?

cyan oriole
#

good

whole bear
#

thx

#

hi @whole bear

#

im voice vanned

#

banned*

terse vigil
#

alfonso sent a friend request to me as well

whole bear
#

oh sad

terse vigil
#

yup

#

they look back to auguast

quasi condor
#

!source

wise cargoBOT
terse vigil
#

it's a doo dad whatchamacallit

#

is glad i have Linux as my main OS

quasi condor
terse vigil
#

Even though I'm currently gated, I'm glad you have a gate bot for VC now

#

O was on last week and things got weird...

#

HISS

whole bear
#

@whole bear

#

sai daqui yeddy

#

no

#

so

#

ยดwhere are u guys from

#

bye

#

the earth

terse vigil
#

lol

whole bear
#

lol

terse vigil
#

non of us can speak

whole bear
#

i can

terse vigil
#

WAT

whole bear
#

because ur not verifieds

cyan oriole
#

wisper you gotta verify

whole bear
terse vigil
#

@cyan oriole I haven't hit the message quota yet, but I'm close

#

lol I'm teaching my data how to use Youtube

#

his mind is blown

rugged root
#

threading

gentle flint
#

my code rn

from statistics import mean
import ast

f = open("sunhours.txt", "r")
# because eval() is extremely unsafe!!!!!!
# whoever decided to use this SHITTY data format to put the sun hours in, fuck you too!!!!
# Just use a CSV for Christ's sake!

source = ast.literal_eval(f.read())

averages_total = []

for month in range(len(source[0])):
    temps_month = []
    for year in range(len(source)):
        temps_month.append(source[year][month])
    averages_total.append(mean(temps_month))
quasi condor
#

Not in vc, but are you sure that format isn't json?

wise cargoBOT
#

Hey @gentle flint!

Uh-oh! It looks like your message got zapped by our spam filter. We currently don't allow .txt attachments, so here are some tips to help you travel safely:

โ€ข If you attempted to send a message longer than 2000 characters, try shortening your message to fit within the character limit or use a pasting service (see below)

โ€ข If you tried to show someone your code, you can use codeblocks
(run !code-blocks in #bot-commands for more information) or use a pasting service like:

https://paste.pythondiscord.com

gentle flint
#

I was gonna post the file

#

time to open a pastebin

#

ha

#

it autosaved as JSON

#

perchance it is

quasi condor
#

Yeah. That looks like vslud json to me

#

Json doesn't have to be key value pairs

gentle flint
#

ha

#

that is much better

#

thanks

whole bear
gentle flint
#

@quasi condor tried reading it as JSON, got this

#
Traceback (most recent call last):
  File "assignment_2.py", line 10, in <module>
    source = json.load(f)
  File "/home/eli/anaconda3/lib/python3.8/json/__init__.py", line 293, in load
    return loads(fp.read(),
  File "/home/eli/anaconda3/lib/python3.8/json/__init__.py", line 357, in loads
    return _default_decoder.decode(s)
  File "/home/eli/anaconda3/lib/python3.8/json/decoder.py", line 337, in decode
    obj, end = self.raw_decode(s, idx=_w(s, 0).end())
  File "/home/eli/anaconda3/lib/python3.8/json/decoder.py", line 355, in raw_decode
    raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 83 column 1 (char 6590)
quasi condor
#

!e import json;json.loads("100.0")

wise cargoBOT
#

@quasi condor :warning: Your eval job has completed with return code 0.

[No output]
quasi condor
gentle flint
#

drat

wise cargoBOT
#

Hey @gentle flint!

It looks like you tried to attach file type(s) that we do not allow (.pdf). We currently allow the following file types: .3gp, .3g2, .avi, .bmp, .gif, .h264, .jpg, .jpeg, .mkv, .mov, .mp4, .mpeg, .mpg, .png, .tiff, .wmv, .svg, .psd, .ai, .aep, .xcf, .mp3, .wav, .ogg, .webm, .webp, .flac, .afdesign, .m4a, .csv.

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

gentle flint
#

OK, here's a link

#

it'll stop working in 120 minutes

amber raptor
gentle flint
quasi condor
#

!e ```py
import ast
print(ast.literal_eval('1+22*5-66/3'))

wise cargoBOT
#

@quasi condor :x: Your eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 2, in <module>
003 |   File "/usr/local/lib/python3.8/ast.py", line 96, in literal_eval
004 |     return _convert(node_or_string)
005 |   File "/usr/local/lib/python3.8/ast.py", line 88, in _convert
006 |     left = _convert_signed_num(node.left)
007 |   File "/usr/local/lib/python3.8/ast.py", line 74, in _convert_signed_num
008 |     return _convert_num(node)
009 |   File "/usr/local/lib/python3.8/ast.py", line 66, in _convert_num
010 |     raise ValueError('malformed node or string: ' + repr(node))
011 | ValueError: malformed node or string: <_ast.BinOp object at 0x7f080632d100>
quasi condor
#

!e ```py
print(eval('1+22*5-66/3'))

wise cargoBOT
#

@quasi condor :white_check_mark: Your eval job has completed with return code 0.

89.0
gentle flint
#

!e

print(1+22*5-66/3)
wise cargoBOT
#

@gentle flint :white_check_mark: Your eval job has completed with return code 0.

89.0
quasi condor
#

!e print({0,0,0,0})

wise cargoBOT
#

@quasi condor :white_check_mark: Your eval job has completed with return code 0.

{0}
rugged root
#

I don't get pissed often, but that's something I draw a hard line on

quasi condor
#

Discussing ethics?

rugged root
#

-eye twitch-

atomic edge
#

hi

quasi condor
#

!e print(4+4j)

wise cargoBOT
#

@quasi condor :white_check_mark: Your eval job has completed with return code 0.

(4+4j)
quasi condor
#
1i1j111
atomic edge
#

Cool

#

111111111111111111111111111111111111111111111111i111111111111111

rugged root
#

1l

quasi condor
#

lIlIllI

atomic edge
#

Illlll

#

I can see the I

#

Well Is

atomic edge
#

LOL

#

I see it

#

it's the left leg not right

#

Ahh yea

#

lol

quasi condor
atomic edge
#

Amazing

#

pro picture

quasi condor
honest pier
#

๐Ÿค”

quasi condor
rugged root
gentle flint
#
Kea

The kea (; Mฤori: [kษ›.a]; Nestor notabilis) is a species of large parrot in the family Nestoridae found in the forested and alpine regions of the South Island of New Zealand. About 48 cm (19 in) long, it is mostly olive-green with a brilliant orange under its wings and has a l...

foggy tulip
#

I'm too lazy to unmute myself

gentle flint
somber heath
eager hound
#

WANNA SEE MY TINDER AUTOMATIZATION BITCHESSS

honest pier
#

no

eager hound
#

ok ๐Ÿ˜ฆ gonna go

quasi condor
#

illegally hunt or catch (game or fish) on land that is not one's own or in contravention of official protection.

agile sun
#

Love this little gem from the 1920's

agile sun
#

xray your feet to get your shoe fit

rugged root
#

Nothing like some good ol' foot cancer

#

Probably a good way to get rid of foot fungus

foggy tulip
#

@rugged root You should look up the Atomic Boy scout story

#

They made a nuclear reactor in their Mom's basement

rugged root
#

Oh yeah, we were just talking about that

#

So crazy

foggy tulip
#

Hang on, I'll connect with you guys in a second

gentle flint
#

@foggy tulip from americium smoke detectors, right?

atomic edge
#

Hemlock

foggy tulip
#

Americium was extracted from smoke detectors, yes!

rugged root
#

Yo

amber raptor
honest pier
#

^

rugged root
#

!tempmute 152515077512232960 3d You've been warned previously about aggressive behavior towards other users. Regardless of whether or not someone was talking over others, its not your place to then berate someone. Telling them to shut up and then acting like you didn't just fly off the handle sort of proves the fact that you just aren't understanding why your behavior isn't appropriate. The warning you had previously was your last one. From here on out there's no more kid gloves.

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied mute to @quasi condor until 2020-10-30 00:15 (2 days and 23 hours).

gentle flint
#

public health responses to spanish flu according to wp

While systems for alerting public health authorities of infectious spread did exist in 1918, they did not generally include influenza, leading to a delayed response. Nevertheless, actions were taken. Maritime quarantines were declared on islands such as Iceland, Australia, and American Samoa, saving many lives. Social distancing measures were introduced, for example closing schools, theatres, and places of worship, limiting public transportation, and banning mass gatherings. Wearing face masks became common in some places, such as Japan, though there were debates over their efficacy. There was also some resistance to their use, as exemplified by the Anti-Mask League of San Francisco. Vaccines were also developed, but as these were based on bacteria and not the actual virus, they could only help with secondary infections. The actual enforcement of various restrictions varied.

A later study found that measures such as banning mass gatherings and requiring the wearing of face masks could cut the death rate up to 50 percent, but this was dependent on them being imposed early in the outbreak and not being lifted prematurely.

autumn sinew
#

8

wise cargoBOT
#

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

#

:incoming_envelope: :ok_hand: applied mute to @autumn sinew until 2020-10-27 01:01 (9 minutes and 59 seconds) (reason: burst rule: sent 9 messages in 10s).

whole rover
#

lol

#

!tvban @autumn sinew 2w Spamming to gain 50 messages is not a good use of the voice gating feature.

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied voice ban to @autumn sinew until 2020-11-10 00:52 (13 days and 23 hours).

agile sun
frozen oasis
#

hey

#

hi

#

yeah ikr

#

idk

#

ik ik

#

hmm

#

is there a counter?

#

idk how many messages i have sent yet

agile sun
#

!user @yourusername

wise cargoBOT
#
Bad argument

Could not convert "user" into Member or FetchedUser.
The provided argument can't be turned into integer: @yourusername

frozen oasis
#

yeah ik the channel

#

oh alright

wise cargoBOT
#
Bad argument

Could not convert "user" into Member or FetchedUser.
The provided argument can't be turned into integer: bradb

frozen oasis
#

does this mean anything?

#

ya

#

it doesnt

#

wow what was that

#

idt hes presenting anything

fervent dawn
#

hello i need help

frozen oasis
#

ya ig i have to be very active like in a short while?

#

cos like aim active only on vc

#

i dotn type much

#

unless im sharing smg from the vc

#

so yeah

somber heath
#

@fervent dawn Hello. What sort of assistance do you require?

fervent dawn
#

so i

#

never coded with py before

#

its the firs

#

t

#

and i dont know what to do lmao

frozen oasis
#

so within like what period do have to type 50 messages?

fervent dawn
somber heath
#

@fervent dawn Are you taking a class, or teaching yourself?

fervent dawn
#

teaching myself but i dont understand this error not sure whats wrong

frozen oasis
#

oh its "as e"

fervent dawn
#

oh okay ty

frozen oasis
#

except exception as e

#

hmm

fervent dawn
#

im shit at py man

frozen oasis
#

ya

#

tell him to do a version check

somber heath
#

@fervent dawn If you're running that code with python 3 when it might be python 2 code, that may be a problem.

fervent dawn
#

ohh

#

i watched a video from like 3 yrs ago LMAO

somber heath
#

Python 2 used print statements which looked like print 'Hello, world.', whereas Python 3 uses the print function. print('Hello, world.')

fervent dawn
#

ahh

somber heath
#

You should not be using Python 2.

fervent dawn
#

im not

frozen oasis
#

yes go to cmd and type python

fervent dawn
frozen oasis
#

and check the version

fervent dawn
frozen oasis
#

right then ig its python 3

#

mhm

fervent dawn
#

i watched a video from 3 yrs ago tho

#

acc i tell a lie

#

wayy

frozen oasis
#

ya it is better and easier than js and c++ and some of the others ive seen

fervent dawn
#

over 3 yrs LMAO

#

i use js but i wanna use py cause its easier lmao

somber heath
#

The syntax error is that str(e) is not enclosed in parentheses belonging to the print.

austere sorrel
#

py also can do way more than js

fervent dawn
#

hm

frozen oasis
#

yup

fervent dawn
#

u got a point tbh

austere sorrel
#

cause its not stuck in a browser and stuff liek that

frozen oasis
#

mhm

fervent dawn
#

i made discord bots when i did js

#

aha

austere sorrel
#

I have written a lot in python

frozen oasis
#

ok i think i have enough messages by now

fervent dawn
#

im just trynna make a calculator lmao

frozen oasis
#

mhm

somber heath
#

urllib urllib2 requests

fervent dawn
#

yo

#

how to fix

#

@somber heath do u know

#

?

foggy tulip
#

print(str(e))

fervent dawn
#

tysm

somber heath
#

This room is really an adjunct to the voice chat, @fervent dawn. Come join us.

#

Or don't.

fervent dawn
#

lmao

#

LMAO

foggy tulip
#

?

fervent dawn
#

hows this guy talking

#

ohh

#

voice verified

#

uo

#

yo

#

i installed it but no work

#

oof

#

@foggy tulip helpp

foggy tulip
#

Yes?

fervent dawn
#

why wont it let me thingy

#

i did

#

pip install reloadEx

foggy tulip
#

And it won't install?

fervent dawn
#

it does

#

but then i do

#

๐Ÿ˜ฆ

foggy tulip
#

Try to restart the IDE or editor that you're using

fervent dawn
#

okayy

#

btw

#

is atom a good thing to be using?

agile sun
agile sun
#
import urllib, json, time
from urllib import request
import os
clear = lambda: os.system('cls')
while True:
    try:
        url = "http://api.open-notify.org/iss-now.json"
        response = urllib.request.urlopen(url)

        data = eval(response.read())
        clear()
        print(f"ISS Positional data acquired....\nCurrent time stamp is: {data['timestamp']}\nLatitude:{data['iss_position']['latitude']}\nLongitude:{data['iss_position']['longitude']}")
        print(f"Searchable: {data['iss_position']['latitude']} {data['iss_position']['longitude']}")
        time.sleep(1)
    except urllib.error.HTTPError:
        print("Link Lost")
brisk current
#

exec

uneven urchin
#

o/

#

in between

#

F-ae-la

#

or Feyla

#

Is the url live somewhere?

hidden cove
uneven urchin
#

oh nice

#

thats pretty great

#

.replace()

#

!e ```py
a = "1234"
b = a.replace("2", "6")
print(a, b)

wise cargoBOT
#

@uneven urchin :white_check_mark: Your eval job has completed with return code 0.

1234 1634
uneven urchin
#

!e ```py
a = "1" + "my_String"[1:]
print(a)

wise cargoBOT
#

@uneven urchin :white_check_mark: Your eval job has completed with return code 0.

1y_String
hidden cove
#

string1 = 'n' + string1[1:]

#

n is the new character

restive hill
#

string[1:]

uneven urchin
#

yep

#

ugh

#

toss it at me

#

@hidden cove show what you're tryign to do

restive hill
#

@hidden cove

(function() {
    
    function Slideshow( element ) {
        this.el = document.querySelector( element );
        this.init();
    }
    
    Slideshow.prototype = {
        init: function() {
            this.wrapper = this.el.querySelector( ".slider-wrapper" );
            this.slides = this.el.querySelectorAll( ".slide" );
            this.previous = this.el.querySelector( ".slider-previous" );
            this.next = this.el.querySelector( ".slider-next" );
            this.index = 0;
            this.total = this.slides.length;
            this.timer = null;
            
            this.action();
            this.stopStart();    
        },
        _slideTo: function( slide ) {
            var currentSlide = this.slides[slide];
            currentSlide.style.opacity = 1;
            
            for( var i = 0; i < this.slides.length; i++ ) {
                var slide = this.slides[i];
                if( slide !== currentSlide ) {
                    slide.style.opacity = 0;
                }
            }
        },
        action: function() {
            var self = this;
            self.timer = setInterval(function() {
                self.index++;
                if( self.index == self.slides.length ) {
                    self.index = 0;
                }
                self._slideTo( self.index );
                
            }, 2000);
        },
        
    };
    
    document.addEventListener( "DOMContentLoaded", function() {
        
        var slider = new Slideshow( "#main-slider" );
        
    });
    
    
})();
#

@hidden cove


.slider {
    width: 100%;
    height:100%;
}

.slider-wrapper {
    width: 100%;
    height:100%;
}

.slide {
    position: absolute;
    width: 90%;
    max-width:600px;
    min-width:300px;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    opacity: 0;
    transition: opacity 2s linear;
}

.slider-wrapper > .slide:first-child {
    opacity: 1;
}
#

string1 = 'n' + string1[1:]
@hidden cove it's done bruh

restive hill
#

@hidden cove

$("#id").hide()
hidden cove
#
document.querySelector('#id').style.display = 'none';
restive hill
#
document.getelementbyId("id").style.display="none"
torpid scroll
#

sa

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied mute to @brazen garden until 2020-10-27 08:31 (9 minutes and 59 seconds) (reason: duplicates rule: sent 4 duplicated messages in 10s).

candid venture
#

#bot-commands

hushed elm
#

bisnis

#

get the moni

#

foarte fain, bravo

severe elm
#

now the problem is just where to put the template dir for this staic homepage

#

it's not going to be part of any app, so i believe that it has to be in the root-dir

candid venture
#

ืงื•ืจืื™ื

severe elm
#

what is that olivia

candid venture
hushed elm
#

brb bad internet

severe elm
#

jo i'll be back jsut have to read something in silence

candid venture
#

46.101.169.108:5000

gentle flint
#

@candid venture I have to go for classes

#

cya

#

welp, teacher is late

#

w/e

#

I'll sit in vc meanwhile

candid venture
#

@gentle flint my source stopped working

gentle flint
#

rip

candid venture
#

thats some nice scisors u kno

whole bear
#

hi i need help with this code

#

word1 = "How" word2 = "do" word3 = "you" word4 = "like" word5 = "Python" word6 = "so" word7 = "far?" words = "" for i in range (1,7): words = words + word{i}

#

i don't know the syntax to add i in word such to make it "word{i}" word1, word2 ,word3 extra

rugged root
#

There isn't really a way to do that. Variable names are purely for the benefit of the programmer, and there really isn't a way to dynamically name them or call them. Usually in that situation, you'd be using a list to hold all of those strings

#

Any time you find yourself doing word1, word2, word3 etc., then it's likely a job for a list

whole bear
#

okay @rugged root thx it was just like an assignment in a course and I didn't wana type from word1 to word7 cause It felt kinda repetitive

rugged root
#

Understandable.

gentle flint
#
wordlist = ["How", "do", "you", "like", "Python", "so", "far?"]
words = " ".join(wordlist)
#

@whole bear