#voice-chat-text-0
1 messages ยท Page 807 of 1
hai
!e
print(6666666666666666666666666666666**6)
@whole bear :warning: Your eval job timed out or ran out of memory.
[No output]
oh
guess this isint gonna work eaither
about a 3
@dense ibex you ready for some coding?
Yeah I am just finishing up some chores Iโll be on in a bit
Just thought I would stop by and say hello
you guys working on something together?
ooh yeah fish cli is nice
can one of you stream when you're working on it? or you guys just gonna do it in private?
@uncut meteor alright I am ready sir
give me a momento
kinda...unlikely
wsl is being funky
Take your time ๐
something tells me steam is a little bit off...
hmm ๐ค
(its down to 7 min 45 sec now lol)
when I downloaded apex, it was like 45 gb
wait i know you said it before, but the thing you guys are working on with fisher is a discord bot?
is there a public github repository?
Yeah it's fishers bot
can you link the github here if its public?
never mind i found it
wow almost 400 commits this is a serious project
how to do that please
dont ask, dont tell
whhy
bc i say so
i am @runic forum
and...
and i am @vale cave
ok
huh...
?
nothing
exactly
:\
You do you.
my_list = ['apples', 'pears']
with open('file.txt', 'w') as file:
file.write('\n'.join(my_list)
#file initialisation
#subsequent writes
to_write = 'grapes'
with open('file.txt', 'a') as file:
file.write('\n' + to_write)```
!e py import random choices = ['apples', 'pears', 'grapes'] choice = random.choice(choices) print(f'I will eat some {choice}.')
@somber heath :white_check_mark: Your eval job has completed with return code 0.
I will eat some pears.
with open('file.txt', 'r') as file:
data = [line.strip() for line in file.readlines()]```
with open('file.text', 'r') as file:
text = file.read()
index = text.rfind('\n')
text = text[:index]
with open('file.txt', 'w') as file:
file.write(file)```
Hey can u explain me
data = [4, 5, 104, 105, 110, 120, 130, 130, 150,
160, 170, 183, 185, 187, 188, 191, 350, 360]
min_valid = 100
max_valid = 200
process the low values in the list
stop = 0
for index, value in enumerate(data):
if value >= min_valid:
stop = index
break
print(stop) # for debugging
del data[:stop]
print(data)
process the high values in the list
start = 0
for index in range(len(data) - 1, -1, -1):
if data[index] <= max_valid:
# We have the index of the last item to keep.
# Set 'start' to the position of the first
# item to delete, which is 1 after 'index'.
start = index + 1
break
print(start) # for debugging
del data[start:]
print(data)
Hey guys, Quick Question: Which IDE is best to work with: Visual Studio or Pycharm?
I need it for python
What ever is better for you. I like Pycharm, but it really doesn't matter. Both are great. So choose what every you fancy more
do you mean
Is Pycharm just simpler or friendlier to beginners?
Or are they just the same?
Cause I'm a beginner
sought of
Pycharm is a presetup version of IntelliJ IDE for Python, so pre-setup is nice.
But yeah, it's not hard to make visual studio code run. It even recommends the addons you need
data = [...] #as above
data = [*filter(lambda a: a in range(100,201), data)]```
i haven't really done the lambda function yet
i am still learning
ye it looks much more efficient
def func(a):
return a in range(100,201)```
ok
Thanks man
No dude
You explained me the above as well as gave me an efficient code
Thanks again
data = [each for each in data if each in range(100,201)]```
@whole bear
That's what I should have written.
ok
ye
@solar heron ๐คฃ
oh boi
@solar heron Say this
So 6 is scared of 7 because 7,8,9 but why does 10 has PTSD?
What is one thing 9 out of 10 people enjoy?
@graceful grail hey!
I have that washer
its nice
lol
Visualize image metadata anywhere
this picture was taken on 11/28/9999
4 votes and 3 comments so far on Reddit

Look, I'm more popular than @rugged root !!!
More people are in the chat with me than Hemlock ๐
I feel so proud.
does that embed
?????
๐
๐
@honest pier, what you up to?
spoiler for mild gore in music video ||https://www.youtube.com/watch?v=Yqy7_zUKyNQ||
Dop Dop Dop Dop Dop Dopamine.
๐ง Listen - https://fanlink.to/Dop
Video by Quicksilver Sash - https://www.youtube.com/c/QuicksilverSash_LoL
S3RL Site https://djs3rl.com/
S3RL Discord https://discord.gg/UxVwAvr
S3RL Merch https://teespring.com/stores/s3rl
Want to be on the S3RL mailing list? Sign up here! https://mailchi.mp/01be566f4cd0/s3rl
!voice
Voice verification
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
do you have to share that here batch?
@whole bear I'd appreciate it if you don't share content that consists of sampled loud moaning and has "hentai" as the title.
^

Enhanced!!!
ok
yes
๐ค
:incoming_envelope: :ok_hand: applied mute to @idle siren until 2021-04-11 20:52 (9 minutes and 59 seconds) (reason: mentions rule: sent 6 mentions in 10s).
no
!ban 771482541357531146 trolling and racism, and you made sure to tell on yourself. Goodbye
:incoming_envelope: :ok_hand: applied ban to @idle siren permanently.
tetris
you sure?
.@wise cargo i mean are you sure
well, now I'm not, haha
I am sure, I think it just got cached
neither
hello fellow programmers
NO
nthhh brooooo
@severe pulsar is PRO in CODING BRO...
https://devcenter.heroku.com/articles/deploying-python @fiery hearth
haha No bro!
heyyy don't stalk me @severe pulsar
hahaha
yep I follow you there
any idea how I found your github account??
No
you were streaming last week here
and working on any 'open source repo`
so I searched it, and I found you there
nice
@fiery hearth bro you know about Three.js?
do you?
a little bit
def dict_to_sorta_xml(tuples):
stuff = []
for k, v in tuples:
stuff.append(f"<{k}>{v}</{k}>")
stuff = '\n'.join(stuff)
return f"<item>\n{stuff}\n</item>"
print(dict_to_sorta_xml({'uuid': ['8af8ae5c8c9f2dfb5e813eac54dc9203ac352b8d','123123'], 'author': ['Darren Walton','hello'], 'published': ['2021-02-15T06:40:00.000+02:00','2022-02-15T06:40:00.000+02:00']}.items()))
['8af8ae5c8c9f2dfb5e813eac54dc9203ac352b8d','123123'],
Hey @vast blade!
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:
oof
coding is fun ๐ข
why are you sorry
what should i put as a thing where you can open from a file on your computer
Open As or Open In
Is neither an option?
no?
@mighty barn YOU WERE PINGING ME
dude, bro
be active and behave good @shut pilot
this is what 1 hour of c0d31n6 gets me
its good
great!
;-;
anyone wanna see the code for the brey box?
@whole bear Just use PyQT5 -_-
NO
??
im never gonna use another language

is that just for being unique?
my name
anyone got a list of applicable projects one can do after having gone over the official python tutorial docs and understood 60-70% of it?
by applicable you mean real-world?
amazing
yes, to an extent, I would also be happy with interesting things in general that aren't another generic dice game or something
@severe pulsar
build a website with flask and python?
too advanced, was thinking something significantly easier
python tutorial docs and understood 60-70% of it?
i feel like its doable, flask is pretty simple, may have gauged wrongly
i'm really iffy and scared of touching APIs or anything web based really, looking to git gud on local system before moving onto going full loonixhaxxor online
thanks man, much appreciated
@whole bear My man, cumbersome body is a good song by them
Spaghetti!
im guessing today is the day mr.hemlock returns from his 2 day vc hiatus(out here we dont call it a weekend), but i may be wrong
It's like what you say when you're expressing simultaneous dismissiveness and disgust. "Pagh!"
LOL
!e```
import random
flag = True
while flag == True:
user_input = input("Enter a number from 1 to 10> ")
random_number = random.randint(1, 10)
if user_input == random_number:
print("Yay you've guessed it!")
play_again = input("Do you want to try again? ")
else:
print("Sorry you guess is wrong!")
print(f"The number was {random_number}")
play_again = input("Do you want to try again? ")
print(play_again)
if play_again == 'Y' or 'y':
flag = True
else:
flag = False
empty-json
enumerate
except
exit()
environments
anyone free here?
Hello.
damn!
@reef bear here
hi sanindu
spotify has a free version, but to get all the features you need to pay
ok thanks
jakie!
Should I change my name to jakie?
please
not if you hate it lol
hmmm I will see
i think it would be funny though(my opinion lel)
on github the 404 page moves
Never knew that
...................................
283....................
do your days not expire hemlock?
me 
no separate sick days lol
35 days lmao
we get up to 5 days carried over into Q1
cries in vim ๐
4evar
huh
lul
new business idea hemlock
Ooh
๐คฎ
I like iced sweet tea with lemon but it can't have too much sugar
i'm just saying it would sell lol ยฏ_(ใ)_/ยฏ
๐ณ
a = [1,2,3]
b = [1,2,3]
a == b #True
a is b #False
c = a
a is c #Trueโ```
same laundmo
Alright gonna join back from PC
This carbonated waterbottle is $70.00 ๐ฆ
join ๐
pydis branded drinkmate when
lmao
ooh
i'm listening to a new to me playlist
okk calm
okieokie
La calma musica
!voice
Voice verification
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
hello
Hello
hello jake
@rugged root #751591688538947646
@next fox
Cool, I didn't know you could link to voice channels ๐
hello im pardhiv and i want to make money online
i dunno how
i need pay mybills tommorow
I'm not sure I believe you Batch ๐

can i spam here?
no
i know that
@next fox go get a life dude
^ lol that's awesome
@lunar pendant no need to be rude
@lunar pendant Please don't be a dick to other users
OOO
@severe pulsar arent you scared if so much persons watch you???

not really i make sure to close everything down
:)
I didn't mean that but I I apologize
cant get doxxed ๐
painkillers are amazing ๐
All good
slams desk there MUST be a better way!
could? sure why not
i wouldn't expect any one person to create something on the level of vscode or pycharm though
r u still in school?
i r
what?
because the homework at our school in germany is more harder than in amerika or england
mhm
I've been using this: https://github.com/sonph/onehalf
It looks pretty nice, and they have settings for a lot of different editors.
i still use monokai
could i be able to code a roboter that does my homework?
could? sure why not
congrats
is everything possible?
sure, coding is powerful
wow
""
!e print(hello world)
@faint ermine :x: Your eval job has completed with return code 1.
001 | File "<string>", line 1
002 | print(hello world)
003 | ^
004 | SyntaxError: invalid syntax
print("hello world")
!e print pygame
@whole bear :x: Your eval job has completed with return code 1.
001 | File "<string>", line 1
002 | print pygame
003 | ^
004 | SyntaxError: Missing parentheses in call to 'print'. Did you mean print(pygame)?
good luck man 
Not reading the instructions penalty: One Shiba Inu bonk.
words don't matter to nutterbutter
but if you have them and you need them.............
that's good
One of Israelโs most famous military inventions is the Iron Dome, a vast, high-tech shield against the rain of missiles that has threatened the nation. Hello Worldโs Ashlee Vance travels to the coastal town of Ashkelon, near Gaza, to see an Iron Dome battery up close.
#BloombergHelloWorld
Watch the full episode of 'Hello World: Israel': http:/...
Wait what did I saw lol
"alpha" < "beta"
Ohhh lol
@rugged root why is that true
strings are compared lexigraphically
!e ```
print(ord("a"))
print(ord("b"))
@faint ermine :white_check_mark: Your eval job has completed with return code 0.
001 | 97
002 | 98
it's essentially comparing them like
[ord(i) for i in string1] < [ord(i) for i in string2]
pls join
no premium 
b r b
money is blood
hemlock that's a fairly non-western thought process. you surprised me lol
exactly lol
Guys what cli output color should I use for warnings?
non-us or non-western?
i mean i think most would not agree with you
when they're honest w/ themselves
ok me being american i guess US = West LMAO
using magenta right now
Traditional red is error and yellow is warning
Yeah
yeah but it's hard to acknowledge that like on a gut-level you know
for most people
no matter how much evidence you may present
o/
iceman what did you do to your snowman :(
huh, well, it got spooked ๐
is it accurate to say that the US just overspends on military?
.spookify
like our taxes are not that much lower than other areas are they?
overspends on foreign aid ๐
Yes but jobs
no i mean like, firepower, aircrafts, those kinds of things?
idk i never actually looked at the US expenditures lol
- research and stuff
yeah but would US be manu these things?
thanks
lmao
US biggest expenses are Social Security, Medicare, Medicaid, Defense. Cuts anywhere else wonโt matter.
Which is why I think there should be adjustments to tax more
We don't need cuts, we need more money to spread
Less of these bullshit tax loopholes
Thatโs valid argument as well
does pycharm have a gui for commiting specific lines from a file?
Just pointing out that money goes to those 4 places
can you guide me good sir
For sure
watch my stream in like...idk like 3 seconds
@frigid panther see?
like for distances, it's very difficult to comprehend how long a light-year or parsec is
ooh @rugged root listening to start up ost
that MV is really good too
#์คํํธ์ OST #๋ฏธ๋ #๋ ๋๋ฒจ๋ฒณ #RedVelvet
๐ง ์ง๊ธ ๋ฐ๋ก ์ด ๋
ธ๋๋ฅผ ๋ค์ด๋ณด์ธ์! | Experience this song on your platform now!
๐ง https://lnk.to/startup-ost-1
tvN ํ ์ผ๋๋ผ๋ง โ์คํํธ์ โ์ ํ๊ตญ์ ์ค๋ฆฌ์ฝ ๋ฐธ๋ฆฌ ์๋๋ฐ์ค์์ ์ฑ๊ณต์ ๊ฟ๊พธ๋ฉฐ ์คํํธ์ ์ ๋ฐ์ด๋ ์ฒญ์ถ๋ค์ ์์(START)๊ณผ ์ฑ์ฅ(UP)์ ๊ทธ๋ฆฐ ๋๋ผ๋ง๋ก โ๋น์ ์ด ์ ๋ ์ฌ์ด์โ, โํธํ ๋ธ๋ฃจ๋โ๋ฅผ ์ฐ์ถํ๋ ์ค์ถฉํ ๊ฐ๋ ๊ณผ โํผ๋ ธํค์คโ, โ๋น์ ์ด ์ ๋ ์ฌ์ด์โ ๋ฑ ๋ค์ํ ์ํ์ผ๋ก ๋์ค๋ค์๊ฒ ์ ์๋ ค์ง ๋ฐํ๋ จ ์๊ฐ๊ฐ โ๋น์ ์ด ์ ๋ ์ฌ์ด์โ ์ดํ ๋ค์ ์ฌํํ ์ํ์ผ๋ก ๋๊ธธ์ ๋ชจ์ผ๊ณ ์๋ค.
ํ๋ฅด...
Niiice
iceman is true contemp kpop aficionado...
@vivid palm that song is so good :3
lul
lel
but i can go 80mph on the hwy lel
lul
fast
zoom zoom
3.086e16 meters in a parsec ๐
I recently got my DL but haven't gone to the highway yet
ooh
the highway is chill
https://www.youtube.com/watch?v=yjTVMXammAw&ab_channel=BenAwad
if you're a web developer who knows at least 1 javascript framework, watch this; its amazing ๐คฃ
I felt wholesome today and decided to release a video about a technology that I've taken for granted.
Checkout Nick's channel: https://www.youtube.com/c/NickWhite
#benawad #angular
Checkout my side projects:
https://dogehouse.tv/
https://github.com/benawad/dogehouse
If you're into cooking: https://www.mysaffronapp.com/
Join the D...
angular ๐
haha watch it ;)
you'll be in for a surprise
uh huh
*clubhouse
when the title is ironic but you haven't watched the video
clubhouse clone kind of
ah right
LMAO nice
hes one of the only tech youtubers that i know of that have a funny/edgy personality
gotta watch it to find out ๐ค
no thanks
cool
basically its an april fools joke lmao
so he switches it up on you
in the middle
song is fire ๐ฅ though
he doesnt actually love angular js
googles supposed to be top tier
angular.js devs are the only ones with tears
LOL
i don't really care what he thinks about angular ๐ค
just because you reactedresponded with the downvote
?
i did say that
angular isnt bad actually but yeah you can like/dislike whatever you want
but ben hates angular
yes, which would be appropriate on a video praising angular
i think its a running gag lmao
Why are we getting this heated about it?
ยฏ_(ใ)_/ยฏ
I like this conversation
oh, angular sucks right?
angular isnt bad i think
some boilerplate
some people think theres too many files
jk, I just wanted to see people's reaction
didn't think you'll be the first one Rabbit
if you dont like stuff like dependency injection
I actually don't know about Angular, React or Vue
anything about em
never learned em, never used em
lol
the best framework is the on you know the best
@rugged root Grassy gnoll.
google made kubernetes, didn't knew
so flask ๐
Yep
sure
i think Flutter is a good google open source project. Pretty sure they take good feedback?
I mean, I guess
correct me if im wrong
you should try installing flutter on windows
the only thing I knew is that default one that comes with Docker
As always my statements are broad
good luck
i have flutter on windows
what's it called, I forgot
i installed manually
ops, wrong msg reply
There is always exceptions
was a pretty ok process(installing flutter on windows)
it was a nightmare for me
aah rip
i just followed a youtube tutorial
gave up on windows
definitely
ah
I always say that, I make broad statements, there is always exceptions to the rules
Like most companies donโt mainline python
But Iโm sure some company somewhere writes everything in Python
Or python isnโt great gaming language and you could find some ok game written in Python.
for final year students in my college
only one company came and explicitly asked for python django as a requirement
interesting
python's not that famous at graduate level here in India
A-maze-mint
yeah, here, Dotnet, Java & JavaScript rules
its monday
oof
We use Dotnet core and JS here
I want to, but then don't want to
vester's gonna be hurt if he sees this
he likes perfection
the curve
there's a thing in C# called Events
I'm starting to cry now, learning it
super crazy difficult
a youtube video or an article always helps
Is it?
maybe not for you ๐
hemlock trying to justify
im hacker man
lol yeah
tf
https://paste.mod.gg/ebinoranuh.cpp
take a look
it took me hours just to understand how to structure this properly
and its just 70 lines
join it now
@somber heath C#'s EFCore is just awesome for database migrations
and you can connect to any dbms you like
but Sql Server works the best
also Transact-sql gives intellisense
it scans the database and gives awesome auto-completion
@rugged root have you join it yet?
cmon dude join it
seems like a pretty bad server tbh
does anyone uses Postgresql with code, where you need to pass a connection string in the code
?
!source
can anyone give me the connection string format for postgresql
please
yeah, its something always wrong with the connection string I get from google
yeah
stored somewhere
but still the correct format
I tried and tried and tried, but the string was always wrong
always
so I quit after some time
and just created the entire database in Sql Server Express
I thought, why is it not loading ๐
hemlock "mothering" laundmo and trying to make him eat food now is kinda hilarious
I found, or got recommended by everyone about connectionstring.com
@rugged root Camem bear.
is it against tosfor someone to ask a bot maker to create a bot that relays every message in a channel of a server that he owns to his dms
maybe? check the tos though
you know, I've transferred it all to Sql Server Express now
intellisense only works with ms stuff
red yellow = grEEn?
oh, speaking of pyweek
@honest pier I tried your game "flawless" from your git ( someone mentioned it, so I also tried it )
and I'm deeply sorry that I'm saying it
but it sucks, like really really sucks ๐ ๐
I hope not much thought went into making that
๐ค
again I'm sorry ๐
you can pin this
?
๐
yeah
I played it
not the code
the gameplay
no no, it just not fun to play
at all
omg we made it
did you make a game? @wise glade
it gave me ptsd
yeah, that's why I'm the lowest of the low, I know
didn't make sh**
oh yeah
fever
everyone I know got fever for 3 days or so
.................................................................................
look at this Hemlock, Rabbit
its off for me tomorrow ๐
_don't even know what this holiday even mean, but such a diverse culture country, it must be imp somewhere ๐ _
@amber raptor it's your fave song o/
Implosive what
What is?
Christ.
did opal just break
awoooooo
ok, lets do Event Accessors, cause why not
anyone tried game "The Pathless"?
super relaxing game
is there any advantage of having an extended mic like this on heaphones?
this one has it built in
its easier to chew on them of corse!
Partly a noise thing
oh, yeah
software could only do so much
if you live in a noisy env
yeah, I'm not one of those ocd people
sounds wrong
yeah, 15 ,military, what was that?
wat
does anyone watches physics girl on youtube?
the new video is just super duper interesting
https://youtu.be/0roQUZvU-As
Explaining the exciting new Fermilab muon result to my production team
http://physicsgirl.org/
http://twitter.com/thephysicsgirl
http://facebook.com/thephysicsgirl
http://instagram.com/thephysicsgirl
Creator/Ho...
I'm loving the new internet
used to be over 200
ohhh this looks interesting
im subscribed to her but i havent been able to watch her videos for a while now
this one's nice
what's your new internet plan?
like something actual happened in physics
I thought physics is dead
unless tech advances substantially
Airtel Xtreme Fiber
oh hemlock, i discovered a few weeks ago from rabbit that one of his data centers was in the town that i live in
@ prev company
Oh dude, that's pretty cool
he said the name and i was like WAT O_O
anyone got vaccinated?
Just had my second shot today
U already got the shots?
For us it was... I think it was either 65 to 55 up for the first batch, then medical staff, then varying levels of essential workers
Now it's open to everyone
wow that was fast for yall
the target in the US is to have 200M people vaccinated, right?
We are about to open to everyone in my state
In a few weeks people who where born in 1945 get the shots
i mean for Biden's first 100 days
anyways how yall doing
Not bad, you?
I am pretty good
oh that's great lmao
Homesholl just started for me again though
re: vasectomy lmao
It's pretty dope๐
I dont even know what that is๐
ahh... cookies
the double stuffed oreos
i go
double stuffed oreos entire packet + milk + juicer/mixer + ice = awesome cold soomthie
So for which part you gonna go first , the cream side or just the regular one
definitely try it
it tastes pretty good
@honest pier you talking, can't hear you at all?
bug
its stuck
you like things simple
in food
nice
boiled veges + mayo + some_secret_spices + stuffed in some dough + either baked or fried = just ๐
laudmo might puke
oh, yeah, protein
just don't eat bats
mix of things is always more healthy, than just eating one kind of thing
get all the nutrients, not just few
I can never think about ๐ช rabbits
I had one as a pet once
it was super cute
!otn a hemlock's-little-bit-of-cannibalism
john the baptist diet
hemlock's cannibalism cookbook
handbook
rabbits are the cutest pets
they just don't want to live in homes
but in burrows or something
they gradually become sad
couldn't find a better one ๐
imagine a cat on them
bck, whats happening
ok, I'ma go, see you guys later ๐ , have a nice day
_just listening to Hemlock's USB thing, then I'll go ๐ _
cya
GlassDuo at the "Festival di Santo Stefano" in Bologna, Italy.
GlassDuo have created an exceptional musical instrument from a set of custom made wine glasses. The result is the biggest professional #GlassHarp in the world.
This track is on the album "GLASSIFIED" available here: http://shop.glassduo.com
Some links about GlassDuo and the #Music...
!voice @nocturne quiver
Voice verification
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
That'll tell you what you need to know about our voice gate system
uh... being out of vc context is kinda...
You're welcome
:)
!e print(sum(ord(c) for c in "hello hemlock"))
@faint ermine :white_check_mark: Your eval job has completed with return code 0.
1303
!e print(sum(ord(c) for c in "hello hemlock"))
@cobalt fractal :white_check_mark: Your eval job has completed with return code 0.
1303
!e print(sum(ord(c) for c in "hello hemlock"))
@cobalt fractal :white_check_mark: Your eval job has completed with return code 0.
1303
!e print(sum(ord(c) for c in "hello hemlock"))
@cobalt fractal :white_check_mark: Your eval job has completed with return code 0.
1303
he had some carbonated tea
๐
nah tis pretty normal lol
writing code != taking break, lol
what does carbonated mean ?
.spookify
.spookify
.spookify
hemlock is only inactive/not enthusiastic when he is tired or has a headache ๐ ๐ญ
.spookify
.spookify
uh
!spokify
looks like random
.spookify @whole bear
just really paranoid
holy
.spookify
imagine it being the ussr symbol
.spookify
do you like IU songs @rugged root ?
i is in control
she is the main female lead in hotel del luna kdrama
if you endup becoming her fan, you should watch that
:(
you need premium @flat obsidian
probs licensing
ops tagged the wrong chris
there was recent drama with a lot of korean music and spotify
they were deadlocked for a while and like 80% of korean music was wiped from spotify for a few weeks
have you watched its okay not to be okay?
update spotify I guess
I wish yt music had such a feature
maybe I should remove yt premium and get spotify premium
iceman pls tell google
You may not use this command on users other than yourself.
@cobalt fractal you've not listened to my SUNMI playlist yet right?
nop
๐
Provided to YouTube by Kakao M
Another Day ยท Monday Kiz(๋จผ๋ฐ์ด ํค์ฆ), Punch(ํ์น)
Hotel Del Luna (ํธํ ๋ธ๋ฃจ๋) OST Part.1
โ YUMYUM Entertainment
Released on: 2019-07-14
Auto-generated by YouTube.
this ones gud
@cobalt fractal have you listened to wendy's new album tho ๐
Who's wendy?
๐
does he know who wendy is
have you iceman ๐
yes
:D
lmao guys, sunmi first, the rest can wait 
noooo
expected more tho ๐ฆ
yes
but I guess thats typical wendy
๐
we will cycle back to sunmi for chris :3
^ ban
i can't listen along ๐
lets get a music bot in a private server ๐
!ytdl ๐
Per PyDis' Rule 5, we are unable to assist with questions related to youtube-dl, commonly used by Discord bots to stream audio, as its use violates YouTube's Terms of Service.
For reference, this usage is covered by the following clauses in YouTube's TOS, as of 2021-03-17:
The following restrictions apply to your use of the Service. You are not allowed to:
1. access, reproduce, download, distribute, transmit, broadcast, display, sell, license, alter, modify or otherwise use any part of the Service or any Content except: (a) as specifically permitted by the Service; (b) with prior written permission from YouTube and, if applicable, the respective rights holders; or (c) as permitted by applicable law;
3. access the Service using any automated means (such as robots, botnets or scrapers) except: (a) in the case of public search engines, in accordance with YouTubeโs robots.txt file; (b) with YouTubeโs prior written permission; or (c) as permitted by applicable law;
9. use the Service to view or listen to Content other than for personal, non-commercial use (for example, you may not publicly screen videos or stream music from the Service)
rythm does not are
.latex $jo mama$
care*
well
latex lmao
discord partnered servers use music bots
woah we have that now :O
.latex $e^3 - x_2$
.latex %jo dada$
oh no, don't remind me of math
.latex $jo dada$
.latex \begin{enumerate}
\item does it do this too\
\item or just the math ones?\
\end{enumerate}
i played 2 songs and stopped
.t latex $e^3 - x_2$
if you were asking me lol
the first 2 are the good ones
ye
un natural and last dance
heard to izone?
la vie en rose :)
yee
also fiesta
secret story of the swan is da best
those are the only two songs i listen to of theirs
huh? did i miss something?
looking for feedback on the current song
https://music.youtube.com/watch?v=1-xAmlac1Lo&feature=share
this @honest pier
Provided to YouTube by Genie Music Corporation
Secret Story of the Swan ยท IZ*ONE
Oneiric Diary
โ 2020 OFF THE RECORD Entertainment, SWING Entertainment
Released on: 2020-06-15
Auto-generated by YouTube.
oh wait are you not listening anymore lol
this ones ma fav
it still showed here for me
Provided to YouTube by Genie Music
AYAYAYA ยท IZ*ONE (์์ด์ฆ์)
BLOOM*IZ
โ Genie Music Corporation, Stone Music Entertainment
Released on: 2020-02-17
Auto-generated by YouTube.
python/cpython#123
do startups usually list more requirements?
Nice
what happened to your glowing eyes laund
Yea, extended it to all channels & all repos
julvo/reloading#11
thats wrong
If an owner is omitted, it assumes pydis
bug found




?