#voice-chat-text-0
1 messages · Page 616 of 1
Haha why are you back
Subscribe for more Wednesday inspired content my dudes.
Merch: https://www.designbyhumans.com/shop/JimmyHere/
Check me out live at https://www.twitch.tv/jimmyhere
'Damn Son Where'd You Find This'
https://www.youtube.com/watch?v=HPfPFM1wNmE
pretty cool video i suggest
Python is full of amazing hidden features. Chaining comparison operators is my favorite. Support this channel by supporting our sponsor, ExpressVPN: https://expressvpn.com/lexpod
Software Engineering Stack Exchange: https://softwareengineering.stackexchange.com/q/316969
Hidde...
I just found the chat
sorry for :
- DM'ing @errant helm
- not being able to correct the sound issue I have
it's genuinely disruptive
^
I know
you've got stereo mix or something
I am very sorry
lol
I don't understand because I am having calls every day
well, you can let me know when you've figured it out
but like,
I still feel punished 😄
being server muted and all
I have a switch and it's on
well, otherwise we all get punished
I mean off
by your noise
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
He's multi-task :>
I tried Flask and didn't like it. But I'm not a web-development person.
@chilly bear
I tried Flask and Django
I just end up decided to just use html/css + javascript
@chilly bear you need to learn how to debug python in pycharm if you're using the pycharm IDE
Yeah, I still debug with print statements.
she has turned
Yeah, I still debug with print statements.
@stuck furnace same
Interesting development
RIP my wonderful classes 
@chilly bear you can also learn databases and use sqlite for database storage
hiii
x = x + 1
we do
lol
++x
++++++++++++++++x
Could you do if letter in vowels instead?
x ++++++++++++++++= 1
just put more "+" in front of it, it will work
nice
@ember hazel how are you two years older than me
Thanks a lot guys, you really helped me a lot @hushed elm @candid venture
👍
don't use IDLE
eyyy hope you'll learn a lot @chilly bear
switch to Visual Studio Code or PyCharm @chilly bear
@candid venture you sound slightly triggered
lol
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.
The tall one was in my year. His name was Alex, but we all called him Terry, for some reason.
comments are dirty
🥳
Kali ma!
get 100 ppl in here
Because, as a general rule, Linux doesn't delete your personal files whenever it updates.
i use linux
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
Facial features of the user?
Use Windows? Say goodbye to your face.
and your life
thats what she said
hhhhhh
I think it is more than enough for coding in python on a laptop
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
this is just sad
whatss up with the symbol?
(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.
ok nvm
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
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
Alright, gtg
ùèàòé
oueoueuoeoeuoooo
üöäß
ouoeuoeuoeoue
<?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
]);
}
}
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
Please select an option:
*you're
xD
to butter or not to butter https://imgur.com/gallery/YjRNx
answer: no
My favourite is "Memories of Butter"
scheisse
ty
like?
if you want
💩
my dudes
macroscope
kekw
wwwww
i do the programming
flask for backend
sqlite
or postgresql for a database
react.js + next.js for frontend
styled-components
deno
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:
cognitive dissonance
Informatics
nah
stop that
WARNING: CONTAINS FLASHING IMAGES.
Listen to ‘The Slow Rush’ now: https://TameImpala.lnk.to/TheSlowRushID
Listen to more Tame Impala: https://TameImpala.lnk.to/TameImpalaID
See Tame Impala on Tour: https://tameimpalalive.com/
Subscribe to Tame Impala’s YouTube channel: http...
here's a good song
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
I'm literally laughing out loud here
Someone earlier said "ints() are for gangsters" lmao
Send the output @whole bear
nvm
can you paste the output of the program in this chat?
run your program and send a screenshot
@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>
!code
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!')
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 ):')
@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/
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
...
you may for instance be forbidden from making an insecure connection with the server, so you may need to use the secure connection methods.
i acitvatet insercure apps
Hi serdar
from smtlib import SMTP
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 ):')
k
12....server = smtplib.SMTP() why not this: server = smtplib.SMTP_SSL()?
this code works
!code
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!')
🤦♂️
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 ):')```
✅
you do not need random
ok$
server.connect("smtp.gmail.com", 587) so this doesnt wok'
?
server = smtplib.SMTP('smtp.gmail.com')
server.connect("smtp.gmail.com", 587)
server.ehlo()
server.starttls()
server.ehlo()
server.login(Email, Password)
ehlo = "extended hello"
.starttls = upgrade the existing connection to a TLS/encrypted connection
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 ):')
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 ):')
docs are at https://docs.python.org/
except Exception as e:
print ('Couldnt connect to server:', e)
this will give you some feedback on what's wrong
I'm here
also,learning how to read documentation is the single most powerful thing you can do for yourself as a developer
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 ):') ```
!code
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!')
`
why am I the only unmuted person
brb 5 mins
k
talkin on phone
what is it ?
it is the string format method
does any1 here use codecademy?
I don't
I can read PH
wonderful
does any1 here use codecademy?
@swift spade I used to use it
oh
@gentle flint I mean I can read the string format method
lol, yeah, ik
im the only beginner here LMAO
for x in range(1, 11):
... print('{0:2d} {1:3d} {2:4d}'.format(x, x*x, x*x*x))```
what does it do
how'd u do that
!code
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!')
youtube doodoo simulator
this !code is really useful
ye
'''print("Hello World")'''
no
Back tick not quotes!
'''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)
left top in your keyboard
under the ESC button
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)
in front of 1
oh ic
i have no problems currently
i have many problems
but im learning loops
like my lunch
for x in range(1, 11):
... print('{0:2d} {1:3d} {2:4d}'.format(x, x*x, x*x*x))```
i can speak hindi
hindi: ni hao
Because your hindi
@swift spade do not mix your languages
is any1 from filipines?
i cant speak tagalog: hirenji ay gwappo
india vs china
?
fuk both
hmmmmmmmm a troll?
🤔
bruh
bouncy like my a$$
bouncy bouncy
smelly like you
Leave A Like And Subscribe To Keep Up On The Latest New Free Sound Effects
!p stfu
!pep <pep_number>
Can also use: get_pep, p
Fetches information about a PEP and sends it to the channel.
Press Ctrl + R
One of my favorites. Pull down your panties, for I can not wait til lunch time! $50.00 bucks to the first person that uploads a youtube video of them saying that to stranger. :P
i luv u guys, im ded
ok
imaooo
try to ctrl w
thats gayish
how about alt+f4
Cool```
xdd
F
how are you guys doin the blocks like that?
f in chat
what about Windows + L ?
lemme try windows l
while True:
print("you fell for it noob")
sudo -rf /
lXD
can i lick ur toes
@versed sapphire rm might help
😂
😂
You can if you want
sex?
Let start with mine
name.exe extends toes
f in chat
😂
Bruh!
@versed sapphire have u stoped working?
i ple fortnite and valorant and thinks that the world is like minecraft
stopped
its hirenji not hendrenji dumb2
lol
Why you...
Why you bully me...
and btw
Why you...
Why you bully me...
You stupid hitch... Why you bully me?
BYE
im bout to buy a laptop, i need suggestions below $1500
Dakh
any recommendations?
helios 300
mersan
carbs and carbs?
yo
i mean like dambn
oh
ur vegetarian?
damn
flute master
yo im pretty sure @versed sapphire is techlead from yt
*claps
@hushed elm https://en.wikipedia.org/wiki/Makro
what?
like the panther
i like u sketcha
imaooo
I get it
pink panther
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
🙂
cya
One of my favorites. Pull down your panties, for I can not wait til lunch time! $50.00 bucks to the first person that uploads a youtube video of them saying that to stranger. :P
Python wrapper for the flightplandatabase.com API. Contribute to PH-KDX/flightplandb-python development by creating an account on GitHub.
@wispy idol https://www.simbrief.com/forum/viewforum.php?f=6
STAR = approach
SID = departure
Standard Terminal Arrival Route
and
Standard Instrument Departure
@whole bear where are you from ?
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: ")```
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":
Hi everyone I just updated my very first mod from 1.3.2 to 1.6.2.
Updates:
New textures:Yep that's right Just re did all the textures according to ...
Java decompilers online: *JAD, *JDCore, *Procyon, *Fernflower, *CFR. ✓ A user interface to extract source code from .class and .jar ‘binary’ files.
less stable: ubuntu
extremely stable: debian stable
?
actually it's 127.0.0.1
nah but it starts with 77
it's just a company
149.202. 173.126
!code
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!')
@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)
await discord.VoiceChannel.connect(await.client.fetch_channel(args),reconnect=True)
!d discord.VoiceChannel.connect
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)
voice_conn = await discord.VoiceChannel.connect(await.client.fetch_channel(args),reconnect=True)
then, to disconnect
await voice_conn.disconnect()
you took way too long to type that
this is a test to see how fast i can type in this channel
wow
fuckoff
u fast bro
hello there
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
have you heard of jesus
yes
hes my daddy
asfd jkl; fsdaj kfs
aj f as;j fsdajkl ;sfda sf s slasjkl asf djlkjssfd sajfsd aklj f sda;s
stfu
qwertyuiop
die
no u
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
This is list of websites blocked in the United Kingdom. There are mention here.
gets gif frame splitter
ik that one
I posted it yesterday
ok
fuck i hate my internet
great job malaysia
Discover the true story of the Leonidas Squadron, Germany's version of the infamous Japanese Kamikazes.
Help support my channel:
https://www.paypal.me/markfeltonproduction
https://www.patreon.com/markfeltonproductions
Disclaimer: All opinions and comments expressed in the 'C...
Help us make our next video by supporting us on Patreon! https://www.patreon.com/survivalguide
Thanks to our Patreons: Marihen Gimenez, Alejandro Cadavid, Grahame B, Harrison Klein, Sander de Wijs, Maya Cohen & Willem Revis for helping us make this one!
Most of the year The N...
this is mine...
waits
leaf, this chat is not for dumping memes.
So i want ideas on some real life projects
umm... so in what field
Which will help me learn phyton i am absolute begginer
phyton?
python
ah
do you have a 3d printer?
for game dev snake and tic-tac-toe
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.
cloud services?
so that would mean web dev right?
Also, check out this resource: https://github.com/karan/Projects
Like?
that's what I'm trying to think of
Python tutorial - Python for beginners
🚀Learn Python programming for a career in machine learning, data science & web development.
🔥Get my Complete Python Programming Course with a BIG discount (LIMITED TIME): http://bit.ly/35BLHHP
📕Get My FREE Python Cheat Sheet:
http://bit...
a program to create a gif with pillow?
so you pass it pictures
and it makes a gif
I didn’t knew that front end and back end was even a thing before joining this discord earlier today
oof
But those projects require some skills
clever programmer does not teach properly btw
meeting time!!
!kindling
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.
@subtle orchid once you learn the basics of python, almost any project will be do-able
!resource
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
Thanks lemon for the link
np dude.
I can understand English properly but don’t have confidence to speak acent is just terrible
your accent is fine
Thank u so much for bearing my voice
@subtle orchid your english sounds good, but your microphone is terrible.
^
^
^
does your phone not have a better mic
or do you not have a phone at the moment
I am using a headphone
It’s old so that might be the reason
Fortnite or valorant anyone?
What else?
do you have a smartphone?
if you have a smartphone
then install discord on it
and call from there
the microphone quality will probably be vastly better
iPhone six
then you are doing smth very strange with your mic
why don't yo use the Iphone 6 mic
you can use the native mic in ur phone
^
It will be open but let me give it a go
we'll survive
huh?
Cause my phone has low sound
turn it up
It’s full
rip
So here is a interesting question
only connect to a speaker and under discord settings set the mic to built-in
If i get good enough at phyton programming can i make it full time source of income?
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
I am 18
@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
@subtle orchid learning python is not only for the money, it must also be fun for you.
and have a good general understanding of computing
I love doing phyton
Humans are the only Earthlings with complex language. But at what cost was that ability acquired? In this episode, I visit Tetsuro Matsuzawa to learn about his influential cognitive tradeoff hypothesis.
Available with YouTube Premium - https://www.youtube.com/premium/original...
@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.
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?
I already spending most of time gaming but i can sacrifice for a better future
@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
World record for most babies from a single women is 64 btw i know a lot of such facts
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?
I know a lot of such stuff
noice
what is the longest a train has ever travelled in one go without stopping, Ali?
@subtle orchid well... i find such facts not nessesary, no hate but that is not me
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
Im more into scientific facts and the like. I would not say that a woman giving birth to 64 babies is important
There was a nurse who survived three ship sinks including titanic
@subtle orchid You must be consistent in ur learning or you will sink into DEEP dispair.
titanic, Britannic, Olympic
Lmao
@subtle orchid good luck with learning! wish u the best...
Thank u so much I hope u don’t mind helping me in future
@subtle orchid I dont, I usually come on here for advice myself... lol But I dont mind
It’s 4Am i am not even slept yet
g'night
Goodnight
@gentle flint night
Discord was more useful then I ever imagined
^
there locking things down.
Not sure why this is still open, they probably missed it by mistake.
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
wtf why do they need to shut it down
yap
Jbaited
90k people who all just got pinged the "whats" alone would be massive spam
I thought there was a raid or something
But I wanted the ping wtf memes
Lol
oof
gg
Nice
How did this happen again
how
They should add a fractal channel to this discord
did the entire server get pinged
everything
someone did an opsie and did an @ everyone
I was enjoying chatting with y'all in voice, but I must now go back into hiding
Take care guys
How is that even possible
wtf
The server should have it disabled
it is
It was the owner that did it
lol nice going lemon
ye but why
THey can't really disable it for one of the owners
absolutely legendary
so if you @ everyone the server gets muted?
lmao
shouldn't @ everyone be disabled
i guess
It happens doe
@everyone does nothing for us
yeah
why was i pinged >:(
shouldn't @ everyone be disabled
@tranquil bramble for an Administrator, it isn't disabled
thats true it doesn't ping anyone
oh isee
Doesn't it give a warning message when you're about to use it on a large server?
It's a bug
@whole bear Because lemon did a whoopsie.
what happened in #python-discussion
Doesn't it give a warning message when you're about to use it on a large server?
@chilly kayak yes
I guess
Is the token stolen ?
The @ everyone was an accident and it brings lot of afk members that complains so there was a general mute ^^
what happened in #python-discussion
@jagged ocean something
@chilly kayak @winter path It doesn't show it when it's in a quote smh
I think they just don't want people to spam general
i don’t see how it’s a big deal tho
No one really cares about the occasional ping. It’s just an excuse to raid.
wait
No one really cares about the occasional ping. It’s just an excuse to raid.
tru3
VC = Okay to spam. Nobody cares
General = Spam and you die
@tulip blaze god pls when will the video end
How do you even significantly raid a server with 90k people, a raid is gonna be a tiny dent in the numbers
idk what a ddos caused by parrots means
Look at the time
lol
It never ends.
lol
lmao
lemon got played lol
i realized, but i must now suffer for falling for it
I’m much more sad about the fact that my straw got a hole in it from the lid. No suction power now.
"i am asking because of my curiosity no intention to harm anyone can ddos attack can be done by parrot?"
what does this mean?
???
It means somebody was being dumb
#makestrawsgreatagain
Thorium are you a terraria mod
Nah
.__.
🦜
so
and who said
we were gonna get
they could ddos someone with a parrot
ddos'ed?
is this a meme
no fucking idea
well that was odd
This is what I walk talking about in VC:
This dude deserves more love
https://youtu.be/2XlYZPfPwzc
just a little BOP I put together real quick
LINK TO ORIGINAL VIDEO:
https://youtu.be/p_5yt5IX38I
Soundcloud:
https://soundcloud.com/mikkel-scott-sorensen/batzorig-chinggis-khaanii-magtaal-trap-remix
Visuals made using https://musicvid.org and by creators:
caseif - Part...
Sending parrots to eat google's servers wires 😡🤓
wait if i @ someone it won’t work?
what happened to the general and game voice channels?
or is it when i @ everyone
Yes you need role to @ everyone
oh
Is that the guy from The HU band? @tulip blaze ?
@tidal nymphits corrupt probably made in python
try
No idea. I just looked up "mongolian throat singing remix" and that came up
I don't really wanna get banned
pretty sure it is him
@jagged oceandon't risk it
kk
lol
@everyone won't get you ban
@whole bear there are a lot of ways
@everyone is gay
@whole bearfreecodecamp
you wasted 240 to learn how to code
Whya i don't have permission to send anything in other channels
bruh moment
honestly this server is all u need to learn
@jagged oceanbruhhh why? could've gave that to a homeless man 😕
fcc, coursera, realpython etc. @whole bear
@tidal nymphits corrupt probably made in python
@void snow
oh sad, tnx
@whole bear it was 1 year for all the courses there
Don't learn with a book have a simple project in mind and learn how to solve it using python
are you gonna do all the courses within 1 year tjough
yep
because otherwise you wasted all your money
@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 :\
@jagged ocean you coulda payed me $100 and i could’ve taught you better lol
240 for a course is ridiculous
Shawty like a melody in my head
@whole bear I don't have any way to pay you :\
@whole bear I don't have any way to pay you :
@jagged ocean i am joking
ik u were <3
@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
@void snow codecademy not that bad tho
They could ve at least made it 420 pfff
so many courses, books and videos on python, for free, why bro, why? 😭 @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
@jagged ocean send it to me then 🤣
the way you learn is completely up to you
^
I chose to spend some money get my best experience I can possibly get while learning something I love
personally, I tried paid stuff only to find out that free resources works pretty well for me
@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
maybe he'll learn python before us with the course
@void snow yep
maybe he'll learn python before us with the course
@void snow which course are you talking about?
he's learning from codecademy
I got the suggestion from someone who learned python from codecademy
😎
jupyter is a great tool too. Use it while you learn.
https://jupyter.org/
codecademy has an interactive tool in it
ty for the suggestion though
I could use it when I'm learning from other sources
kek look at the bright side, the server is well active now :p
you'd think a server with 90k member would be a bit more active
the bot is really good
yea i wanted to watch pure hell
lol
lol
lol
kek I believe they have geniuses here to code the bot
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
classic
Quote kinda fucks with the warning kek
big brain
@everyone
dude
lol
hehe
<@&352427296948486144>
kek
it doesn’t work with me
haha
it won't work dw
thank god
u can ping moderators 😊
lmao don't
python-general is open
nono
lol lets go watch
yee
^
awww
you gotta wait at least an hour
lol
on a server this size you gotta wait a minute
bruh it's muted again smh
I want them to open up vc
earrape
