#voice-chat-text-0

1 messages · Page 616 of 1

hushed elm
#

yooooooooo

balmy nymph
#

Haha why are you back

gentle flint
errant helm
#

(that's this channel)

candid venture
gentle flint
#

my latest work of art /s
Cat Midst Slightly Eaten Pajamas

marsh bolt
#

I just found the chat

#

sorry for :

  1. DM'ing @errant helm
  2. not being able to correct the sound issue I have
errant helm
#

it's genuinely disruptive

gentle flint
#

^

marsh bolt
#

I know

errant helm
#

you've got stereo mix or something

marsh bolt
#

I am very sorry

candid venture
gentle flint
#

lol

marsh bolt
#

I don't understand because I am having calls every day

errant helm
#

well, you can let me know when you've figured it out

marsh bolt
#

but like,

#

I still feel punished 😄

#

being server muted and all

#

I have a switch and it's on

gentle flint
#

well, otherwise we all get punished

marsh bolt
#

I mean off

gentle flint
#

by your noise

marsh bolt
#

well, otherwise we all get punished
@gentle flint haha, fair point

#

well, you can let me know when you've figured it out
@errant helm thank you

balmy nymph
errant helm
#

there is a loooot more work to do than that

#

but

candid venture
stuck furnace
#

I tried Flask and didn't like it. But I'm not a web-development person.

candid venture
#

@chilly bear

wind star
#

I tried Flask and Django

chilly bear
#

Ok

#

Thanks a lot buddy

wind star
#

I just end up decided to just use html/css + javascript

hushed elm
#

@chilly bear you need to learn how to debug python in pycharm if you're using the pycharm IDE

marsh bolt
#

oh I can hear it now

#

there is some kind of ugly echo

#

linux and audio...

stuck furnace
#

Yeah, I still debug with print statements.

gentle flint
wind star
#

Yeah, I still debug with print statements.
@stuck furnace same

stuck furnace
#

Interesting development

balmy nymph
#

RIP my wonderful classes lemon_pensive

hushed elm
#

@chilly bear you can also learn databases and use sqlite for database storage

azure kayak
#

hiii

candid venture
#
+=
hushed elm
#

x = x + 1

azure kayak
#

we do

gentle flint
#

x += 1

#

that works

hushed elm
#

=+

#

+=

azure kayak
#

lol

gentle flint
wind star
#

++x

severe elm
#

+++x

#

maybe

hushed elm
#

++++++++++++++++x

stuck furnace
#

Could you do if letter in vowels instead?

hushed elm
#

x ++++++++++++++++= 1

severe elm
#

just put more "+" in front of it, it will work

wind star
#

nice

gentle flint
#

@ember hazel how are you two years older than me

chilly bear
#

Thanks a lot guys, you really helped me a lot @hushed elm @candid venture

candid venture
#

👍

wind star
#

don't use IDLE

hushed elm
#

eyyy hope you'll learn a lot @chilly bear

wind star
#

switch to Visual Studio Code or PyCharm @chilly bear

gentle flint
#

@candid venture you sound slightly triggered

ember hazel
#

lol

candid venture
somber heath
#

I went to school with someone who was something like 6'4" at 15 years old. Someone else at the school was slightly older than him and he looked like he was 13. Far shorter and less developed.

candid venture
somber heath
#

The tall one was in my year. His name was Alex, but we all called him Terry, for some reason.

jovial meadow
#

comments are dirty

gentle flint
#

🥳

somber heath
#

Kali ma!

jovial meadow
#

get 100 ppl in here

candid venture
azure kayak
#

our goal is 100 people

#

loool

somber heath
#

Because, as a general rule, Linux doesn't delete your personal files whenever it updates.

azure kayak
#

i use linux

gentle flint
#

Because, as a general rule, Linux doesn't delete your personal files whenever it updates.
and everything else

#

like

#

bootloaders of any other system installed

somber heath
#

Facial features of the user?

gentle flint
#

aye

#

they get distorted with rage

candid venture
somber heath
#

Use Windows? Say goodbye to your face.

gentle flint
#

and your life

candid venture
mystic marlin
hushed elm
#

17 inch is a great size

#

😉

ember hazel
#

thats what she said

hushed elm
#

hhhhhh

gentle flint
mystic marlin
hushed elm
#

work on a project and figure it out, while you program you're learning programming

#

i'm programming almost all the time and it helps

gentle flint
ember hazel
#

whatss up with the symbol?

whole bear
#

(From Cay Horstmann’s Big Java)
A credit card number is a string of 16 digits. The last digit is known as the
check digit. It can be used to check the validity of a credit card number,
against transcription error for example, as described below. For simplicity, we
will describe the procedure using 8-digit number instead of the actual 16-digit
one. We will also take the number 43589795 as an example.
• Starting from the rightmost digit, form the sum of of every other digit.
For the example, the sum would be 5 + 7 + 8 + 3 = 23.
• Double each of the digits that are not included in the preceding step.
Add all the digits of the resulting numbers. For the example, we would
take the digits 9, 9, 5, 4, and double them up to get 18, 18, 10, 8, and
then add up the digits 1 + 8 + 1 + 8 + 1 + 0 + 8 = 27
• Add up the sums of the two preceding steps. If the last digit of the result
is 0, the number is valid. For the example, we get 23 + 27 = 50, and
the number is valid.
Write a program to implement this algorithm. Ask the user for an 8-digit
number. Determine, and display, if the number is valid or not.

hushed elm
#

ok nvm

slim basalt
#

Hi Everyone, I'm Shiva co-founder of GigHunt.
GigHunt crawls through 100+ verified sources and hunts for the best matching freelancing opportunities in design & engineering for you and sends them straight to your inbox.

We are an upcoming project on the product hunt - If anyone is interested in 3 months of free access - please subscribe before 31st August using the below link
https://bit.ly/2QsB84O

Product Hunt

Gig Hunt finds best remote gigs in engineering and design posted online and sends the most relevant ones straight to your inbox

whole bear
#

Note: For this question, a “word” is simply taken as a sequence of characters,
which may occur as a “stand-alone word” or part of another word.
a. Write a program that asks for a string and a search word. The program
then determines and displays how many time the search word appears in
the string.
b. The following program provides a function which takes a file name, reads
the file and returns a string containing the content of the file.
Complete the program to ask the user for a file name and a search word,
and then determine and display how many times the search word appears
in the file

#

Q: The question does not ask me to write any function, but if defining a
function can make my calculation easier to express. Should I define such a
function and use it?
A: Yes! Please go for it.
Q: In the above example, the final check sum is 50, and therefore we conclude
that the credit card number is valid. What if the last digit of the check sum
is not 0. Can we determine what the check digit should be to make the credit
card number valid?
A: Yes, we can. Let CD denote the check digit and E denote the last digit of
the check sum. The check digit we want can be calculated as
new CD = (old CD - E + 10) %10

stuck furnace
#

Alright, gtg

hushed elm
#

sqlite

#

screenshot your screen

little topaz
mystic marlin
#

ùèàòé

hushed elm
#

oueoueuoeoeuoooo

soft sinew
#

üöäß

little topaz
#

ouoeuoeuoeoue

mystic marlin
#

<?php
class Event{
private $db;
function __construct($db){
$this->db=$db;
}
function make($title,$shortDescription,$desciption,$publishDate,$startDate,$endDate,$thumbnailPhotoFilename,$attendanceRequired,$attendanceDeadlineDate,$attendancePaymentDate,$price){
/$q=$this->db->query("INSERT");
$q->execute([
":id"=>$id
]);
/

}

function load($id){

}
function save(){
    
}
function remove($id){
    $q=$this->db->query("SELECT * FROM events WHERE ((startDate < DATE('NOW') AND price = 0) OR (price>0 and publishDate > DATE('NOW')) AND id=:id");
    $q->execute([
        ":id"=>$id
    ]);
    if(count($q->fetchAll(PDO::FETCH_ASSOC))===0){
        return -1;
    }
    $q=$this->db->query("DELETE FROM events WHERE id=:id");
    $q->execute([
        ":id"=>$id
    ]);

}
function addAttachment($id,$documentId){
    $q=$this->db->query("SELECT * FROM eventDocumentsAttachmentLink WHERE  eventId=:id AND documentId=:dId");
    $q->execute([
        ":id"=>$id,
        ":dId"=>$documentId
    ]);
    if(count($q->fetchAll(PDO::FETCH_ASSOC))>0){
        return -1;
    }
    $q=$this->db->query("INSERT INTO eventDocumentsAttachmentLink(eventId,documentId) VALUES(:id,:dId)");
    $q->execute([
        ":id"=>$id,
        ":dId"=>$documentId
    ]);
}
function listAttachments($id){
    $q=$this->db->query("SELECT documentId FROM eventDocumentsAttachmentLink WHERE  eventId=:id");
    $q->execute([
        ":id"=>$id
    ]);
    return $q->fetchAll(PDO::FETCH_ASSOC);
}
function removeAttachment($id,$documentId){
    $q=$this->db->query("DELETE FROM eventDocumentsAttachmentLink WHERE eventId=:id AND documentId=:dId");
    $q->execute([
        ":id"=>$id,
        ":dId"=>$documentId
    ]);

}

}

pastel sedge
opaque wraith
#

GUYS? what would be the message when u have a choice between shutting down, restarting, sleep, and cancel

Would this be good : Please select a mode

#

@hushed elm

gentle flint
#

Please select an option:

hushed elm
#

your welcome

#

we love you, goodbye @opaque wraith

gentle flint
#

*you're

opaque wraith
#

xD

somber heath
gentle flint
#

answer: no

somber heath
#

My favourite is "Memories of Butter"

gentle flint
hushed elm
#

sheise

#

pronounce it

#

idk

gentle flint
#

scheisse

hushed elm
#

ty

gentle flint
#

np

#

I have more

ember hazel
#

like?

gentle flint
#

if you want

hushed elm
#

give us more

#

pls

gentle flint
#

💩

wind cobalt
#

my dudes

gentle flint
hushed elm
#

reddit is down

#

just fix it

#

easy

#

punjabi

#

punjabis is indian

gentle flint
#

mhm

#

it's a subset

hushed elm
#

superset

#

superman

gentle flint
#

macroscope

hushed elm
#

macroscope top kek

#

kekers

#

bro

gentle flint
#

kekw

hushed elm
#

wwwww

hushed elm
#

i do the programming

#

flask for backend

#

sqlite

#

or postgresql for a database

#

react.js + next.js for frontend

#

styled-components

#

deno

wise cargoBOT
#

Hey @hushed elm!

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

hushed elm
#

cognitive dissonance

#

Informatics

slate oracle
#

good song

#

much like

hushed elm
#

nah

still quartz
#

stop that

hushed elm
#

here's a good song

slate oracle
#

im playing tame impala

#

whats ur moms name

#

i search her

whole bear
#

import smtplib
import random

#The variables
Email = input("Enter your Email adress: ")
Password = input("Enter your Emails password: ")
Email_recipient = input("Enter your receivers Email adress: ")
Subject = input("Emails subject: ")
Message = input("Your message: ")

try:
server = smtplib.SMTP('smtp.gmail.com', 587)
server.ehlo()
server.login(Email, Password)
except:
print ('Couldnt connect to server ):')

sent_from = Email
to = Email_recipient
subject = Subject
body = Message

try:
server.sendmail(sent_from, to, body)
server.close()

print ('Email sent!')

except:
print ('email could not be sent ):')

#

Voice chat is weird ngl

nocturne scarab
#

I'm literally laughing out loud here

whole bear
#

Someone earlier said "ints() are for gangsters" lmao

#

Send the output @whole bear

#

nvm

distant trout
#

can you paste the output of the program in this chat?

nocturne scarab
#

run your program and send a screenshot

distant trout
#

@whole bear

whole bear
#

"it's working but it's also not working"
-Story Of My Life

#

me irl

#

Why is there :') in the last line?

#

C:\Users\houze\Documents\dev\EmailSpambot>spammer.py
Enter your Email adress: pyrofenrir2000@gmail.com
Enter your Emails password: PyroFenrir200
Enter your receivers Email adress: houze.dai@gmail.com
Emails subject: hello
Your message: hello
Couldnt connect to server ):
email could not be sent ):

C:\Users\houze\Documents\dev\EmailSpambot>

versed sapphire
#

!code

wise cargoBOT
#

Discord has support for Markdown, which allows you to post code with full syntax highlighting. Please use these whenever you paste code, as this helps improve the legibility and makes it easier for us to help you.

To do this, use the following method:

```python
print('Hello world!')
```

Note:
These are backticks, not quotes. Backticks can usually be found on the tilde key.
• You can also use py as the language instead of python
• The language must be on the first line next to the backticks with no space between them

This will result in the following:

print('Hello world!')
versed sapphire
#

@whole bear

#

^^^^

#

3 back tick

whole bear
#
import smtplib
import random

#The variables
Email = input("Enter your Email adress: ")
Password = input("Enter your Emails password: ")
Email_recipient = input("Enter your receivers Email adress: ")
Subject = input("Emails subject: ")
Message = input("Your message: ")

try:
    server = smtplib.SMTP('smtp.gmail.com', 587)
    server.ehlo()
    server.login(Email, Password)
except:
    print ('Couldnt connect to server ):')

sent_from = Email
to = Email_recipient
subject = Subject
body = Message

try:
    server.sendmail(sent_from, to, body)
    server.close()

    print ('Email sent!')
except:
    print ('email could not be sent ):')
distant trout
#

@whole bear if you're getting errors that you can't connect to the server, then either your server credentials are wrong (you're not providing the right server name), or the password or login are wrong

#

this article might be useful as it has more details about the different ways you can make the server connection: https://stackabuse.com/how-to-send-emails-with-gmail-using-python/

Stack Abuse

There are quite a few ways to send email with Python, whether it be through a
3rd party library like with boto and SES
[http://stackabuse.com/how-to-send-an-email-with-boto-and-ses/], or through an
email protocol like SMTP. While the subject of using Python to send emails may
...

whole bear
#

i wrote it

#

yes yes

#

Are the ' supposed to be there around the server name?

#

idk

distant trout
#

you may for instance be forbidden from making an insecure connection with the server, so you may need to use the secure connection methods.

gentle flint
#

@whole bear yes

#

It's a string

whole bear
#

i acitvatet insercure apps

versed sapphire
#

Hi serdar

hazy jackal
#

from smtlib import SMTP

versed sapphire
#

PH

#

Hi

#

come in voice

#

@gentle flint

whole bear
#
server = smtplib.SMTP()
print("Defined server")
server.connect("smtp.gmail.com",587)
print("Connected")
server.ehlo()
server.starttls()
server.ehlo()
#

is this right now?

#
import smtplib
import random

#The variables
Email = input("Enter your Email adress: ")
Password = input("Enter your Emails password: ")
Email_recipient = input("Enter your receivers Email adress: ")
Subject = input("Emails subject: ")
Message = input("Your message: ")

try:
    server = smtplib.SMTP()
    server.connect("smtp.gmail.com", 587)
    server.ehlo()
    server.starttls()
    server.ehlo()
    server.login(Email, Password)
except:
    print ('Couldnt connect to server ):')

sent_from = Email
to = Email_recipient
subject = Subject
body = Message

try:
    server.sendmail(sent_from, to, body)
    server.close()

    print ('Email sent!')
except:
    print ('email could not be sent ):')
gentle flint
#

k

#

hang on

versed sapphire
#

k

whole bear
#

k

#

my accounts should work

#

i activataet insecure apps

#

hm should work

hazy jackal
#

12....server = smtplib.SMTP() why not this: server = smtplib.SMTP_SSL()?

whole bear
#

this code works

versed sapphire
#

!code

wise cargoBOT
#

Discord has support for Markdown, which allows you to post code with full syntax highlighting. Please use these whenever you paste code, as this helps improve the legibility and makes it easier for us to help you.

To do this, use the following method:

```python
print('Hello world!')
```

Note:
These are backticks, not quotes. Backticks can usually be found on the tilde key.
• You can also use py as the language instead of python
• The language must be on the first line next to the backticks with no space between them

This will result in the following:

print('Hello world!')
versed sapphire
#

🤦‍♂️

whole bear
#
import random

#The variables
Email = input("Enter your Email adress: ")
Password = input("Enter your Emails password: ")
Email_recipient = input("Enter your receivers Email adress: ")
Subject = input("Emails subject: ")
Message = input("Your message: ")

try:
    server = smtplib.SMTP()
    server.connect("smtp.gmail.com", 587)
    server.ehlo()
    server.starttls()
    server.ehlo()
    server.login(Email, Password)
except:
    print ('Couldnt connect to server ):')

sent_from = Email
to = Email_recipient
subject = Subject
body = Message

try:
    server.sendmail(sent_from, to, body)
    server.close()

    print ('Email sent!')
except:
    print ('email could not be sent ):')```
versed sapphire
#

hazy jackal
#

you do not need random

whole bear
#

ok$

whole bear
#

?

#

server = smtplib.SMTP('smtp.gmail.com')
server.connect("smtp.gmail.com", 587)
server.ehlo()
server.starttls()
server.ehlo()
server.login(Email, Password)

gentle flint
#

SMTP.ehlo(name='')

#

give it a name

#

as per the docs

whole bear
#

try this

#

did that allready

distant trout
#

ehlo = "extended hello"

#

.starttls = upgrade the existing connection to a TLS/encrypted connection

gentle flint
#

you can just read the docs

#

like we do

whole bear
#
import smtplib
import random

#The variables
Email = input("Enter your Email adress: ")
Password = input("Enter your Emails password: ")
Email_recipient = input("Enter your receivers Email adress: ")
Subject = input("Emails subject: ")
Message = input("Your message: ")

server = smtplib.SMTP('smtp.gmail.com')
server.connect("smtp.gmail.com", 587)
server.ehlo()
server.starttls()
server.ehlo()
server.login(Email, Password)


sent_from = Email
to = Email_recipient

subject = Subject
body = Message

try:
    server.sendmail(sent_from, to, body)
    server.close()

    print ('Email sent!')
except:
    print ('email could not be sent ):')
hazy jackal
#
import smtplib

Email = input("Enter your Email adress: ")
Password = input("Enter your Emails password: ")
Email_recipient = input("Enter your receivers Email adress: ")
Subject = input("Emails subject: ")
Message = input("Your message: ")

try:
    server = smtplib.SMTP_SSL("smtp.gmail.com", 587)
    server.ehlo()
    server.starttls()
    server.login(Email, Password)
except:
    print ('Couldnt connect to server ):')

sent_from = Email
to = Email_recipient
subject = Subject
body = Message

try:
    server.sendmail(sent_from, to, body)
    server.close()

    print ('Email sent!')
except:
    print ('email could not be sent ):')
gentle flint
distant trout
#
except Exception as e:
    print ('Couldnt connect to server:', e)
#

this will give you some feedback on what's wrong

gentle flint
#

smtplib is a library, so go to library reference

#

then do a Ctrl+F for smtp

versed sapphire
#

I'm here

distant trout
#

also,learning how to read documentation is the single most powerful thing you can do for yourself as a developer

versed sapphire
whole bear
#

import smtplib
Email = input("Enter your Email adress: ")
Password = input("Enter your Emails password: ")
Email_recipient = input("Enter your receivers Email adress: ")
Subject = input("Emails subject: ")
Message = input("Your message: ")

server = smtplib.SMTP('smtp.gmail.com')
server.connect("smtp.gmail.com", 587)
server.ehlo()
server.starttls()
server.ehlo()
server.login(Email, Password)

sent_from = Email
to = Email_recipient

subject = Subject
body = Message

try:
server.sendmail(sent_from, to, body)
server.close()

print ('Email sent!')

except:
print ('email could not be sent ):')

#
import smtplib
Email = input("Enter your Email adress: ")
Password = input("Enter your Emails password: ")
Email_recipient = input("Enter your receivers Email adress: ")
Subject = input("Emails subject: ")
Message = input("Your message: ")

server = smtplib.SMTP('smtp.gmail.com')
server.connect("smtp.gmail.com", 587)
server.ehlo()
server.starttls()
server.ehlo()
server.login(Email, Password)


sent_from = Email
to = Email_recipient

subject = Subject
body = Message

try:
    server.sendmail(sent_from, to, body)
    server.close()

    print ('Email sent!')
except:
    print ('email could not be sent ):')
#
Email = input("Enter your Email adress: ")
Password = input("Enter your Emails password: ")
Email_recipient = input("Enter your receivers Email adress: ")
Subject = input("Emails subject: ")
Message = input("Your message: ")

server = smtplib.SMTP('smtp.gmail.com')
server.connect("smtp.gmail.com", 587)
server.ehlo()
server.starttls()
server.ehlo()
server.login(Email, Password)


sent_from = Email
to = Email_recipient

subject = Subject
body = Message

try:
    server.sendmail(sent_from, to, body)
    server.close()

    print ('Email sent!')
except:
    print ('email could not be sent ):') ```
versed sapphire
#

!code

wise cargoBOT
#

Discord has support for Markdown, which allows you to post code with full syntax highlighting. Please use these whenever you paste code, as this helps improve the legibility and makes it easier for us to help you.

To do this, use the following method:

```python
print('Hello world!')
```

Note:
These are backticks, not quotes. Backticks can usually be found on the tilde key.
• You can also use py as the language instead of python
• The language must be on the first line next to the backticks with no space between them

This will result in the following:

print('Hello world!')
hazy jackal
#

`

gentle flint
#

why am I the only unmuted person

whole bear
#

brb 5 mins

gentle flint
#

k

whole bear
#

talkin on phone

versed sapphire
#

what is it ?

gentle flint
#

a cat

#

on a bed

#

@whole bear
stop, don't touch me there

versed sapphire
gentle flint
#

it is the string format method

swift spade
#

does any1 here use codecademy?

gentle flint
#

I don't

versed sapphire
#

I can read PH

gentle flint
#

wonderful

versed sapphire
#

does any1 here use codecademy?
@swift spade I used to use it

swift spade
#

oh

versed sapphire
#

@gentle flint I mean I can read the string format method

gentle flint
#

lol, yeah, ik

swift spade
#

im the only beginner here LMAO

versed sapphire
#
for x in range(1, 11):
...     print('{0:2d} {1:3d} {2:4d}'.format(x, x*x, x*x*x))```
#

what does it do

swift spade
#

how'd u do that

gentle flint
#

triple backtick

versed sapphire
#

!code

wise cargoBOT
#

Discord has support for Markdown, which allows you to post code with full syntax highlighting. Please use these whenever you paste code, as this helps improve the legibility and makes it easier for us to help you.

To do this, use the following method:

```python
print('Hello world!')
```

Note:
These are backticks, not quotes. Backticks can usually be found on the tilde key.
• You can also use py as the language instead of python
• The language must be on the first line next to the backticks with no space between them

This will result in the following:

print('Hello world!')
whole bear
#

youtube doodoo simulator

versed sapphire
#

this !code is really useful

gentle flint
#

ye

swift spade
#

'''print("Hello World")'''

gentle flint
#

no

swift spade
#

like that?

#

wtf

gentle flint
#

backticks

#

`

#

not

#

'

versed sapphire
#

Back tick not quotes!

swift spade
#

'''board_games = ['Settlers of Catan', 'Carcassone', 'Power Grid', 'Agricola', 'Scrabble']

sport_games = ['football', 'football - American', 'hockey', 'baseball', 'cricket']

for game in board_games:
print(game)

for game2 in sport_games:
print(game2)

gentle flint
#

left top in your keyboard

versed sapphire
#

under the ESC button

whole bear
#
board_games = ['Settlers of Catan', 'Carcassone', 'Power Grid', 'Agricola', 'Scrabble']

sport_games = ['football', 'football - American', 'hockey', 'baseball', 'cricket']

for game in board_games:
  print(game)

for game2 in sport_games:
  print(game2)
versed sapphire
#

in front of 1

swift spade
#

oh ic

gentle flint
#

code

swift spade
#

nah im just tryna do things on discord

#

damn u guys are weebs

#

no problems

gentle flint
#

for python syntax highlighting do

#

code

swift spade
#

i have no problems currently

gentle flint
#

i have many problems

swift spade
#

but im learning loops

gentle flint
#

like my lunch

versed sapphire
#
for x in range(1, 11):
...     print('{0:2d} {1:3d} {2:4d}'.format(x, x*x, x*x*x))```
swift spade
#

i can speak hindi

versed sapphire
#

what does it do

#

Cool

swift spade
#

hindi: ni hao

versed sapphire
#

Because your hindi

gentle flint
#

@swift spade do not mix your languages

swift spade
#

is any1 from filipines?

#

i cant speak tagalog: hirenji ay gwappo

#

india vs china

#

?

versed sapphire
#

fuk both

wise rune
#

hmmmmmmmm a troll?

swift spade
#

i luv my bed

#

my bed is bette

#

r

#

fluffy like my tummy

versed sapphire
#

🤔

gentle flint
#

bruh

swift spade
#

bouncy like my a$$

gentle flint
#

bouncy bouncy

swift spade
#

smelly like you

hushed elm
swift spade
#

!p stfu

wise cargoBOT
#
Command Help

!pep <pep_number>
Can also use: get_pep, p

Fetches information about a PEP and sends it to the channel.

versed sapphire
#

Press Ctrl + R

gentle flint
swift spade
#
i luv u guys, im ded
gentle flint
#

ok

ember hazel
#

imaooo

swift spade
#

try to ctrl w

ember hazel
#

thats gayish

gentle flint
#

how about alt+f4

versed sapphire
#
Cool```
ember hazel
#

xdd

swift spade
#

i pressed ctrl r

#

damn

#

f

#

f

#

f

hushed elm
#

Ctrl + R

#

ffff

tall grail
#

F

spare vigil
#

how are you guys doin the blocks like that?

swift spade
#

ctrl w

#

ctrl w

ember hazel
#

f in chat

versed sapphire
#

what about Windows + L ?

swift spade
#

lemme try windows l

gentle flint
#
while True:
    print("you fell for it noob")
hushed elm
#

sudo shutdown now

#

hhhhhh

swift spade
#

i pressed win l

#

it just went to my lock sceen

#

im fdep up

versed sapphire
#

sudo -rf /

spare vigil
#

lXD

swift spade
#

can i lick ur toes

gentle flint
#

@versed sapphire rm might help

versed sapphire
#

😂

tall grail
#

😂

versed sapphire
#

You can if you want

whole bear
#

sex?

tall grail
#

F

#

F

versed sapphire
#

Let start with mine

gentle flint
#

name.exe extends toes

ember hazel
#

f in chat

versed sapphire
#

😂

tall grail
#

Bruh!

azure kayak
#

@versed sapphire have u stoped working?

swift spade
#

i ple fortnite and valorant and thinks that the world is like minecraft

azure kayak
#

stopped

swift spade
#

its hirenji not hendrenji dumb2

azure kayak
#

lol

swift spade
#

how to do scriptable macros?

#

i wanna do macros for a video game

tall grail
#

Why you...
Why you bully me...

swift spade
#

and btw

tall grail
#

Why you...
Why you bully me...
You stupid hitch... Why you bully me?

versed sapphire
#

BYE

swift spade
#

im bout to buy a laptop, i need suggestions below $1500

versed sapphire
#

Dakh

swift spade
#

any recommendations?

ember hazel
#

helios 300

tall grail
#

Asus gaming lappy.

#

🔅

swift spade
#

for college, gaming and i want light

#

who eat potatoes and rice?

gentle flint
#

mersan

swift spade
#

carbs and carbs?

ember hazel
#

yo

swift spade
#

i mean like dambn

#

oh

#

ur vegetarian?

#

damn

#

flute master

#

yo im pretty sure @versed sapphire is techlead from yt

#

*claps

gentle flint
#

Makro is an international brand of warehouse clubs, also called cash and carries. Ownership of the worldwide chain of stores is split between two companies: Metro AG in Europe and SHV Holdings in Latin America. SHV opened the first Makro in Amsterdam in 1968. In the following ...

versed sapphire
#

what?

hushed elm
#

ooh

#

i get it

#

i like my pink avatar very much

gentle flint
#

like the panther

swift spade
#

i like u sketcha

ember hazel
#

imaooo

gentle flint
#

I get it

ember hazel
#

pink panther

gentle flint
#

^ me in the voice chat all day

swift spade
#

holy

#

c14

#

bravo

#

sweden?

#

pls

#

shiiiiiiiiiiiiii

#

classical is relaxing

#

i luv u guys

#

y'all dope

#

imma sleeep then, u make me wanna sleep

#

cya

#

🙂

gentle flint
#

cya

ember hazel
#

tata

#

@hushed elm he is in the mood

#

lol

gentle flint
#

STAR = approach

#

SID = departure

#

Standard Terminal Arrival Route

#

and

#

Standard Instrument Departure

versed sapphire
#

@whole bear where are you from ?

hushed elm
#

HOVAH

#

CRAFFFFFTTT

whole bear
#

import colorama
from colorama import init, Fore, Style
init()

bl = Fore.LIGHTBLACK_EX
b = Fore.BLUE
r = Fore.MAGENTA
y = Fore.YELLOW
g = Fore.GREEN
c = Fore.CYAN
t = Fore.LIGHTWHITE_EX
rs = Style.RESET_ALL


Exit = "Y"

def get_inputa(Name,Num,Color):
    x = input(f"Type {Num} {Name}: ").split()[:Num]
    while len(x) < Num :
        print(f"{Fore.RED}NOT ENOUGH {Name.upper()}!!{Style.RESET_ALL}")
        x = input(f"Type {Num} {Name}: ").split()[:Num]
    for i in x :
        y = Color + i + Style.RESET_ALL
        i = y
        print( f"{Name} entered: {i}")

    return x
while Exit == "Y" or Exit == "y":

    print(f"{Fore.RED}Please Separate All Inputs With A Space!{rs}")
    print("                      ")

    person = get_inputa("Name",1,b)
    verb = get_inputa("Verbs",3,g)
    exclamation = get_inputa("Exclamations",2,y)
    noun = get_inputa("Nouns",2,c)
    place = get_inputa("Places",2,r)


    print("****************************************")

    print(f"""We live on a lake. Today {b}{person[0]}{rs} tested
    the ice. {y}{exclamation[0]}{rs} it's frozen! Now I am
    off to {g}{verb[0]}{rs} my skates. I {g}{verb[1]}{rs}
    in the {r}{place[0]}{rs},not there. I look in the
    {r}{place[1]}{rs}, nope not there.I search
    high and low for my ice {c}{noun[0]}{rs}.
    Ok so the one place I havn't,{g}{verb[2]}{rs}
    my {c}{noun[1]}{rs}. {y}{exclamation[1]}{rs} they are there!
    Let's Go skating!""")

    print("*****************************************")



    Exit = input("Would you like the continue Y/N: ")```
versed sapphire
#

Guy I must go

#

😭

gentle flint
#

o no

#

bai

#

let's say exit="y"

#

then exit.lower() is "y"

#

but if exit = "Y"

#

then exit.lower() is still "y"

#

instead of
while Exit == "Y" or Exit == "y":
you do
while Exit.lower() == "y":

whole bear
gentle flint
gentle flint
#

less stable: ubuntu

#

extremely stable: debian stable

pseudo aspen
#

Hey

#

i'll crash my windows now ( just for fun )

whole bear
#

?

pseudo aspen
#

oh, i can't stream my screen

#

fu

whole bear
#

u there @native terrace ?

#

@potent quest i think u r incognito 😂

potent quest
#

indeed

#

fuck

#

mY iP aDrEsS iS 192.168.0.1

#

@clear cradle @gentle flint

gentle flint
#

actually it's 127.0.0.1

#

nah but it starts with 77

#
OVH

OVH is a French cloud computing company that offers VPS, dedicated servers and other web services. OVH owns the world's largest data center in surface area. They are the largest hosting provider in Europe, and the third largest in the world based on physical servers. The compa...

#

it's just a company

clear cradle
#

149.202. 173.126

gentle flint
#

!code

wise cargoBOT
#

Discord has support for Markdown, which allows you to post code with full syntax highlighting. Please use these whenever you paste code, as this helps improve the legibility and makes it easier for us to help you.

To do this, use the following method:

```python
print('Hello world!')
```

Note:
These are backticks, not quotes. Backticks can usually be found on the tilde key.
• You can also use py as the language instead of python
• The language must be on the first line next to the backticks with no space between them

This will result in the following:

print('Hello world!')
summer imp
#
@commands.command(name='play')
  async def play(self, ctx, *, query):
    try:
      player = self.client.music.player_manager.get(ctx.guild.id)
      query = f'ytsearch:{query}'
      results = await player.node.get_tracks(query)
      tracks = results['tracks'][0:10]
      i = 0
      query_result = ''
      for track in tracks:
        i = i + i
        query_result = query_result + f'{i}) {track["info"]["title"]} - {track["info"]["uri"]}\n'
      embed = Embed()
      embed.description = query_result

      await ctx.channel.send(embed=embed)

      def check(m):
        return m.author.id == ctx.author.id   
         
      response = await self.client.wait_for('message', check=check)
      track = tracks[int(response.content)-1]

      player.add(requester=ctx.author.id, track=track)
      if not player.is_playing:
        await player.play()

    except Exception as error:
      print(error)
potent quest
#
    await discord.VoiceChannel.connect(await.client.fetch_channel(args),reconnect=True)
#

!d discord.VoiceChannel.connect

wise cargoBOT
#
await connect(*, timeout=60.0, reconnect=True)```
This function is a [*coroutine*](https://docs.python.org/3/library/asyncio-task.html#coroutine).

Connects to voice and creates a [`VoiceClient`](#discord.VoiceClient "discord.VoiceClient") to establish your connection to the voice server.

Parameters  • **timeout** ([`float`](https://docs.python.org/3/library/functions.html#float "(in Python v3.8)")) – The timeout in seconds to wait for the voice endpoint.

• **reconnect** ([`bool`](https://docs.python.org/3/library/functions.html#bool "(in Python v3.8)")) – Whether the bot should automatically attempt a reconnect if a part of the handshake fails or the gateway goes down.

Raises  • [`asyncio.TimeoutError`](https://docs.python.org/3/library/asyncio-exceptions.html#asyncio.TimeoutError "(in Python v3.8)") – Could not connect to the voice channel in time.

• [`ClientException`](#discord.ClientException "discord.ClientException") – You are already connected to a voice channel.
... [read more](https://discordpy.readthedocs.io/en/stable/api.html#discord.VoiceChannel.connect)
potent quest
#

@summer imp

#

!d async

wise cargoBOT
#

This appears to be a generic page not tied to a specific symbol.

gentle flint
#
voice_conn = await discord.VoiceChannel.connect(await.client.fetch_channel(args),reconnect=True)
#

then, to disconnect

#
await voice_conn.disconnect()
#

Breton (; French: [bʁətɔ̃]; brezhoneg [bʁeˈzõːnɛk] (listen) or [brəhõˈnek] in Morbihan) is a Southwestern Brittonic language of the Celtic language family, spoken in Brittany.
Breton was brought from Great Britain to Armorica (the ancient name for the coastal region that inclu...

gentle flint
#

this is a test to see how fast I can type in this channel

potent quest
#

no

#

fuck

gentle flint
#

you took way too long to type that

potent quest
#

this is a test to see how fast i can type in this channel

gentle flint
#

wow

potent quest
#

fuckoff

gentle flint
#

u fast bro

potent quest
#

fuck

#

my hovercraft is full of eels

gentle flint
#






                                                                                   hello there








potent quest
#

this is me typing this shit

#

fucvk

#

fuck

#

loli sounds

#

keyboard sounds

gentle flint
#

you can type just as fast as you want to; nobody's gonna give a fuck about what you do or don't type dude

potent quest
#

have you heard of jesus

gentle flint
#

no

#

have you

potent quest
#

how about allah

#

yes indeed

gentle flint
#

yes

potent quest
#

hes my daddy

gentle flint
#

he says beep

#

beep

#

beep

#

in voice chat

#

or did, 15 minutes ago

potent quest
#

asfd jkl; fsdaj kfs

#

aj f as;j fsdajkl ;sfda sf s slasjkl asf djlkjssfd sajfsd aklj f sda;s

gentle flint
#

stfu

potent quest
#

qwertyuiop

gentle flint
#

die

potent quest
#

no u

gentle flint
#

uno reverse card

#

asian_nerd be like

potent quest
#
user_in = input('Argument one : ')
user_in_but_2 = input('Argument two : ')
if user_in == '2':
  if user_in == '2':
    print('4')
  if user_in == '4':
    print('8')
  if user_in == '6':
    print('10')
else:
  print('fuck')
#

i love this

gentle flint
gentle flint
#

gets gif frame splitter

gentle flint
#

ik that one

gentle flint
#

I posted it yesterday

gentle flint
#

ok

gentle flint
#

Fakfak ([ˈfaʔfaʔ]) is a town in Indonesia and seat of the Fakfak Regency. It had a population of 12,566 at the 2010 Census. It is served by Fakfak Airport. It is the only town in West Papua with a Muslim Indian and Arab Indonesian presence.

potent quest
#

Fakfak ([ˈfaʔfaʔ]) is a town in Indonesia and seat of the Fakfak Regency. It had a population of 12,566 at the 2010 Census. It is served by Fakfak Airport. It is the only town in West Papua with a Muslim Indian and Arab Indonesian presence.

#

fuck i hate my internet

#

great job malaysia

whole bear
gentle flint
whole rover
visual crow
#

this is mine...

gentle flint
#

waits

whole rover
leaden comet
#

leaf, this chat is not for dumping memes.

obsidian palm
#

wdym

#

bye

leaden comet
#

okay

#

it's dumping NEOFETCHES

subtle orchid
#

So i want ideas on some real life projects

visual crow
#

umm... so in what field

subtle orchid
#

Which will help me learn phyton i am absolute begginer

visual crow
#

phyton?

gentle flint
#

python

visual crow
#

ah

gentle flint
#

snake

#

tic-tac-toe

whole bear
#

do you have a 3d printer?

gentle flint
#

uh

#

no

#

he does not

#

(I assume)

#

(I assumed right)

leaden comet
#

@subtle orchid check out this page by the very excellent Ned Batchelder

#

!kindling

visual crow
#

for game dev snake and tic-tac-toe

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.

whole bear
#

cloud services?

subtle orchid
#

I tried craiglist clone app

#

It’s very tough

visual crow
#

so that would mean web dev right?

subtle orchid
#

It included djange and web scrapping

#

Clever programmer youtube channel

gentle flint
#

that's a rather steep project to start with

#

maybe try something simpler

#

uh

leaden comet
subtle orchid
#

Like?

gentle flint
#

that's what I'm trying to think of

visual crow
gentle flint
#

a program to create a gif with pillow?

#

so you pass it pictures

#

and it makes a gif

subtle orchid
#

I didn’t knew that front end and back end was even a thing before joining this discord earlier today

gentle flint
#

oof

subtle orchid
#

But those projects require some skills

visual crow
#

clever programmer does not teach properly btw

whole rover
#

meeting time!!

subtle orchid
#

What skills are necessary for that

#

Building projects

leaden comet
#

!kindling

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.

visual crow
#

@subtle orchid once you learn the basics of python, almost any project will be do-able

leaden comet
#

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

subtle orchid
#

You guys are very helpful

#

Thank you so much

gentle flint
subtle orchid
#

Thanks lemon for the link

leaden comet
#

np dude.

subtle orchid
#

I can understand English properly but don’t have confidence to speak acent is just terrible

gentle flint
#

your accent is fine

subtle orchid
#

Thank u so much for bearing my voice

gentle flint
#

it's just your microphone

#

that's the only real problem

leaden comet
#

@subtle orchid your english sounds good, but your microphone is terrible.

gentle flint
#

^

whole bear
#

^

subtle orchid
#

^

gentle flint
#

does your phone not have a better mic
or do you not have a phone at the moment

subtle orchid
#

I am using a headphone

#

It’s old so that might be the reason

#

Fortnite or valorant anyone?

gentle flint
#

well, please try to use something else

#

anything else

subtle orchid
#

What else?

gentle flint
#

do you have a smartphone?

subtle orchid
#

Yeah

#

Pubg mobile ?

#

Pubg Mobile is really fun

gentle flint
#

if you have a smartphone

#

then install discord on it

#

and call from there

#

the microphone quality will probably be vastly better

subtle orchid
#

I am using a Mobile phone rn

#

I have a pc aswell

gentle flint
#

uh

#

what phone?

subtle orchid
#

iPhone six

gentle flint
#

then you are doing smth very strange with your mic

subtle orchid
#

I am From Pakistan/Asia

#

I am using a local low quality headset

#

Yeah i know

whole bear
#

why don't yo use the Iphone 6 mic

visual crow
#

you can use the native mic in ur phone

gentle flint
#

^

subtle orchid
#

It will be open but let me give it a go

gentle flint
#

we'll survive

subtle orchid
#

The problem with using iPhone mic

#

I can’t hear u

gentle flint
#

huh?

subtle orchid
#

Cause my phone has low sound

gentle flint
#

turn it up

subtle orchid
#

It’s full

gentle flint
#

rip

subtle orchid
#

So here is a interesting question

visual crow
#

only connect to a speaker and under discord settings set the mic to built-in

gentle flint
#

o

#

yes

#

that should work

subtle orchid
#

If i get good enough at phyton programming can i make it full time source of income?

gentle flint
#

even if you plug in the headset you should still be able to select one of the two, tho I don't know for sure

subtle orchid
#

I am 18

gentle flint
#

@subtle orchid not sure about the situation where you are
here in Amsterdam, there are easier ways of earning more money

#

but, if you get really really good, you could conceivably do that

#

but you'll really want to know several other languages if you're gonna do that

visual crow
#

@subtle orchid learning python is not only for the money, it must also be fun for you.

gentle flint
#

and have a good general understanding of computing

subtle orchid
#

I love doing phyton

gentle flint
#

and Gershom has a point

#

so far, yes

#

but will you still after 6 months

subtle orchid
#

Yeah i will I decided not to quit

#

I promised myself

whole bear
visual crow
#

@subtle orchid the basics are always fun but to get more advanced, first math is important, then you must dedicate a lot of time to learning. If you know what I mean, you cant spent time on Youtube or social media.

subtle orchid
#

I am determined

#

I am determined

#

@subtle orchid the basics are always fun but to get more advanced, first math is important, then you must dedicate a lot of time to learning. If you know what I mean, you cant spent time on Youtube or social media.
@visual crow like I will have less time for social activities and like playing games

#

I have to sacrifice that?

visual crow
#

yes, you ultimatly must

#

not all but most

#

those two will slow you down

#

BIG time

subtle orchid
#

I already spending most of time gaming but i can sacrifice for a better future

visual crow
#

@subtle orchid I personally do not game at all, first it is a waste of time, and second my parents wouldn't allow. It all works out for my good and my future

subtle orchid
#

World record for most babies from a single women is 64 btw i know a lot of such facts

gentle flint
#

games anyway

#

has a useless life

#

cares not

#

World record for most babies from a single women is 64 btw i know a lot of such facts
is there also a 32-bit version from earlier?

subtle orchid
#

I know a lot of such stuff

gentle flint
#

noice

#

what is the longest a train has ever travelled in one go without stopping, Ali?

visual crow
#

@subtle orchid well... i find such facts not nessesary, no hate but that is not me

subtle orchid
#

She had quadruplets and triplets like 4 and 3 babies a lot of time

#

Got u

#

Have such friends

#

I will reduce my gaming time to like 2 or 3 hours max

visual crow
#

Im more into scientific facts and the like. I would not say that a woman giving birth to 64 babies is important

subtle orchid
#

There was a nurse who survived three ship sinks including titanic

visual crow
#

@subtle orchid You must be consistent in ur learning or you will sink into DEEP dispair.

whole bear
#

titanic, Britannic, Olympic

visual crow
#

cataclysmic

#

pythonic

subtle orchid
#

Lmao

visual crow
#

@subtle orchid good luck with learning! wish u the best...

subtle orchid
#

Thank u so much I hope u don’t mind helping me in future

visual crow
#

@subtle orchid I dont, I usually come on here for advice myself... lol But I dont mind

subtle orchid
#

It’s 4Am i am not even slept yet

gentle flint
#

g'night

subtle orchid
#

Goodnight

visual crow
#

@gentle flint night

subtle orchid
#

Discord was more useful then I ever imagined

whole bear
#

^

subtle orchid
#

Cause of poeple like u

#

Kind and generous

stoic ore
#

I can hear u but can't respond

#

Can u get what k type on here

whole bear
#

What is happening

#

In all channels

brazen hearth
#

there locking things down.

#

Not sure why this is still open, they probably missed it by mistake.

burnt mountain
#

Mod quoted a guy who tried to ping everyone but didn't but since the mod quoted the guy he pinged everyone

#

I think they are locking down to prevent mass spam

full vapor
#

wtf why do they need to shut it down

brazen hearth
#

yap

robust merlin
#

Jbaited

brazen hearth
#

so people dont spam comoplain

#

theres 90k people in

#

soo

full vapor
#

i mean

#

imma still complain after its unmuted

burnt mountain
#

90k people who all just got pinged the "whats" alone would be massive spam

whole bear
#

I thought there was a raid or something

grand grail
#

But I wanted the ping wtf memes

finite hamlet
#

Lol

whole bear
#

oof

winter path
#

gg

whole bear
#

Nice

finite hamlet
#

How did this happen again

neat vapor
#

how

tulip blaze
#

They should add a fractal channel to this discord

tranquil bramble
#

did the entire server get pinged

whole bear
#

everything

runic willow
#

someone did an opsie and did an @ everyone

crimson crag
#

I was enjoying chatting with y'all in voice, but I must now go back into hiding

#

Take care guys

finite hamlet
#

How is that even possible

vale sapphire
#

wtf

finite hamlet
#

The server should have it disabled

whole bear
#

it is

chilly kayak
#

It was the owner that did it

whole bear
#

lol nice going lemon

vale sapphire
#

ye but why

chilly kayak
#

THey can't really disable it for one of the owners

robust ermine
#

absolutely legendary

void snow
#

so if you @ everyone the server gets muted?

whole bear
#

lmao

tranquil bramble
#

shouldn't @ everyone be disabled

rotund axle
#

i guess

whole bear
#

It happens doe

vale sapphire
#

@everyone does nothing for us

rotund axle
#

yeah

whole bear
#

why was i pinged >:(

#

shouldn't @ everyone be disabled
@tranquil bramble for an Administrator, it isn't disabled

rotund axle
#

thats true it doesn't ping anyone

jagged ocean
#

yo

#

so uh

#

what the hell happened

tranquil bramble
#

oh isee

chilly kayak
#

Doesn't it give a warning message when you're about to use it on a large server?

whole bear
#

It's a bug

somber heath
#

@whole bear Because lemon did a whoopsie.

jagged ocean
whole bear
#

lemon >:(

#

It doesn't show it when in a quote

winter path
#

Doesn't it give a warning message when you're about to use it on a large server?
@chilly kayak yes

#

I guess

vale sapphire
#

Is the token stolen ?

coarse pollen
#

The @ everyone was an accident and it brings lot of afk members that complains so there was a general mute ^^

whole bear
whole bear
#

@chilly kayak @winter path It doesn't show it when it's in a quote smh

chilly kayak
#

I think they just don't want people to spam general

whole bear
#

i don’t see how it’s a big deal tho

grand grail
#

No one really cares about the occasional ping. It’s just an excuse to raid.

whole bear
#

It isn't a big deal

#

just people spam over a little ping

#

oh

jagged ocean
#

wait

hollow eagle
#

No one really cares about the occasional ping. It’s just an excuse to raid.
tru3

tulip blaze
#

VC = Okay to spam. Nobody cares
General = Spam and you die

runic willow
#

@tulip blaze god pls when will the video end

chilly kayak
#

How do you even significantly raid a server with 90k people, a raid is gonna be a tiny dent in the numbers

jagged ocean
#

idk what a ddos caused by parrots means

tulip blaze
#

Look at the time

jagged ocean
#

lol

tulip blaze
#

It never ends.

whole bear
#

lol

ruby wind
#

lmao

whole bear
#

lemon got played lol

runic willow
#

i realized, but i must now suffer for falling for it

grand grail
#

I’m much more sad about the fact that my straw got a hole in it from the lid. No suction power now.

jagged ocean
#

"i am asking because of my curiosity no intention to harm anyone can ddos attack can be done by parrot?"
what does this mean?

#

???

tulip blaze
#

It means somebody was being dumb

grand grail
#

#makestrawsgreatagain

whole bear
#

Thorium are you a terraria mod

tulip blaze
#

Nah

whole bear
#

damn

#

element ?

#

why the fuck do i see mlp shit posted

jagged ocean
#

.__.

winter path
#

🦜

jagged ocean
#

so

whole bear
#

and who said

jagged ocean
#

we were gonna get

whole bear
#

they could ddos someone with a parrot

jagged ocean
#

ddos'ed?

whole bear
#

is this a meme

jagged ocean
#

no fucking idea

bronze minnow
#

well that was odd

jagged ocean
#

the world is weird

#

hell yeah

tulip blaze
jagged ocean
#

why is there a voice chat

#

without any

#

voice chats

coarse pollen
#

Sending parrots to eat google's servers wires 😡🤓

whole bear
#

wait if i @ someone it won’t work?

tidal nymph
#

what happened to the general and game voice channels?

jagged ocean
#

yeah

#

I think

whole bear
#

or is it when i @ everyone

coarse pollen
#

Yes you need role to @ everyone

whole bear
#

oh

bronze minnow
#

Is that the guy from The HU band? @tulip blaze ?

void snow
#

@tidal nymphits corrupt probably made in python

jagged ocean
#

if I try it rn

#

I'll get kicked

#

or banned

#

or muted

#

right?

whole bear
#

try

tulip blaze
#

No idea. I just looked up "mongolian throat singing remix" and that came up

jagged ocean
#

I don't really wanna get banned

bronze minnow
#

pretty sure it is him

void snow
#

@jagged oceandon't risk it

jagged ocean
#

kk

whole bear
#

lol

coarse pollen
#

@everyone won't get you ban

jagged ocean
#

@whole bear there are a lot of ways

whole bear
#

@everyone is gay

jagged ocean
#

I'm learning python with 240 dollars

#

on codecademy

void snow
#

@whole bearfreecodecamp

whole bear
#

you wasted 240 to learn how to code

#

Whya i don't have permission to send anything in other channels

#

bruh moment

runic willow
#

honestly this server is all u need to learn

void snow
#

@jagged oceanbruhhh why? could've gave that to a homeless man 😕

winter path
#

fcc, coursera, realpython etc. @whole bear

tidal nymph
#

@tidal nymphits corrupt probably made in python
@void snow
oh sad, tnx

jagged ocean
#

@whole bear it was 1 year for all the courses there

coarse pollen
#

Don't learn with a book have a simple project in mind and learn how to solve it using python

whole bear
#

are you gonna do all the courses within 1 year tjough

winter path
#

yep

whole bear
#

because otherwise you wasted all your money

jagged ocean
#

@void snow don't really trust a homeless man I don't know, they could be into drugs and spend it on those instead of food :\

whole bear
#

@jagged ocean you coulda payed me $100 and i could’ve taught you better lol

#

240 for a course is ridiculous

chilly kayak
#

Shawty like a melody in my head

jagged ocean
#

@whole bear I don't have any way to pay you :\

whole bear
#

@whole bear I don't have any way to pay you :
@jagged ocean i am joking

jagged ocean
#

ik u were <3

void snow
#

@jagged oceannot what I mean it would be better spent on a homeless man who could use the money than on a course someone could get for free

jagged ocean
#

@void snow codecademy not that bad tho

coarse pollen
#

They could ve at least made it 420 pfff

jagged ocean
#

it's really good pacing

#

lots of courses

void snow
#

so many courses, books and videos on python, for free, why bro, why? 😭 @jagged ocean

jagged ocean
#

I can learn a lot in a year at my own pace

#

because money can be spent

#

and I weighed the many options

void snow
#

@jagged ocean send it to me then 🤣

jagged ocean
#

the way you learn is completely up to you

winter path
#

^

jagged ocean
#

I chose to spend some money get my best experience I can possibly get while learning something I love

winter path
#

personally, I tried paid stuff only to find out that free resources works pretty well for me

void snow
#

@jagged oceanoh yeah on a side note, not all homeless are druggies but I know you didn't mean it like that so it's all good

#

@winter pathit really does but to each his own

#

maybe he'll learn python before us with the course

jagged ocean
#

I never put it that the homeless are all druggies but

#

¯_(ツ)_/¯

#

oh

winter path
#

maybe he'll learn python before us with the course
@void snow yep

whole bear
#

maybe he'll learn python before us with the course
@void snow which course are you talking about?

winter path
#

he's learning from codecademy

jagged ocean
#

I got the suggestion from someone who learned python from codecademy

whole bear
#

😎

tulip blaze
#

jupyter is a great tool too. Use it while you learn.
https://jupyter.org/

jagged ocean
#

codecademy has an interactive tool in it

#

ty for the suggestion though

#

I could use it when I'm learning from other sources

whole bear
#

kek look at the bright side, the server is well active now :p

jagged ocean
#

you'd think a server with 90k member would be a bit more active

ruby wind
#

i mean

#

it kinda went into lock down as soon as they tagged everyone lol

queen folio
#

^

#

I hopped on just to watch the chaos, but apparenlty the mods here are competent

whole bear
#

lmao

#

yeah

jagged ocean
#

the bot is really good

ruby wind
#

yea i wanted to watch pure hell

whole bear
#

lol

jagged ocean
#

lol

deep wasp
#

lol

whole bear
#

kek I believe they have geniuses here to code the bot

queen folio
#

I've seen it happen on a couple other servers. It's fun until the mods step in, but if they're incompetent it's crazy how long it lasts

deep wasp
#

he said not to ping every1

#

and he pinged every1

queen folio
#

classic

whole bear
#

Quote kinda fucks with the warning kek

deep wasp
#

big brain

whole bear
#

@everyone

queen folio
#

dude

deep wasp
#

lol

whole bear
#

hehe

#

<@&352427296948486144>

#

kek

#

it doesn’t work with me

#

haha

#

it won't work dw

queen folio
#

thank god

deep wasp
#

u can ping moderators 😊

whole bear
#

lmao don't

queen folio
#

python-general is open

whole bear
#

nono

queen folio
#

lol lets go watch

ruby wind
#

yee

jagged ocean
#

^

queen folio
#

bru

#

called it

#

2 early

jagged ocean
#

awww

ruby wind
#

nvm

#

they relocked it lmao

queen folio
#

you gotta wait at least an hour

whole bear
#

lol

queen folio
#

on a server this size you gotta wait a minute

void snow
#

bruh it's muted again smh

queen folio
#

I want them to open up vc

whole bear
#

earrape