#voice-chat-text-0
1 messages ยท Page 637 of 1

@swift valley are u always sitting here?
UwU?
Ive been on this for like at least 8hrs now
๐
whatchu up to?
I meant; what are you doing rn
Going for eating my lunch
Oh thats cool, what time is it on your place
1:45pm
@graceful grail im sleeping
๐
Not really
Is everything up to date?
Any windows updates recently?
Those fuck me up everytime
format it 

Whats your motherboard are u sure you can run those with XMP?
Weird
Im like super used to having software problems, I literally format like every week or so
I keep downloading random stuff

Jajaja okay
Bye
I don't know y whenever my computer boots up chromium browser get opened with 5 new tab is it virus?
Bcz I have uninstalled chromium from my computer 3 days ago
But still chromium is opening when window loads
- Click on the Start menu.
Type โcmdโ. Right click on Command Prompt and select Run as administrator.
In Command Prompt, type โsfc /scannowโ and press Enter.
But still chromium is opening when window loads
@gilded minnow clean up the registry properly after uninstalling
It will detect the errors/viruses in your computer
It will detect the errors/viruses in your computer
@latent monolith exclude viruses
Hey
Hey i am watching your live stream
@quaint lagoon I afk'd
Was supposed to do some irl stuff
Gonna hop off for a bit, just doing a bit more irl
@balmy nymph so whats the occasion?
Doing some lemojis
thats alot of commits
sure is haha
I've returned
๐
Might do a coding stream later
Now I guess we make everything symetrical
Sounds cool pure
Also,
If you want to listen to the same music
Full experienceโข๏ธ
@upper oasis Could you keep that down?
Hey @upper oasis can you mute yourself please?
@zinc sun sup
F
No one wants to talk yet
Opal was here earlier actually
gotcha
What is going on, with that GIMP?
this is the most chilling version of this voice chat I've even seen
Inkscape 
They're complementary
Nope, both are different things
hmm so what is inkscape?
Typically used for SVGs
^
who?
we can hear you george
but we cannot answer
he left
Typically used for SVGs
@swift valley hey pure, didn't recognize you without the F
why are You silent?
speak anything
you left
Looks good to me
I'm thinking about what was the next thing to do
Ah yes, time for some coding
Thanks whoever that was.
This one is PyCharm
ok
ok
I need to contribute to @wise cargo some time
thats the python bot right?
Yup
Hmm okay
Haha, that would be fun
Maybe we should also update this description since the season part of things is well, gone
How would you call in english one thing that is being ignored?
iirc @viscid lagoon would be rebranded wouldn't it?
blacklist?
Also, why is str.split not typehinted? that makes me so sad
no
agreed
Well I mean, it should be typed at CPython level
That's a bit sad
Having the IDE autocompletion is still a cool thing though
I'll go have a bite, cya guys
I've used map. Good for running a list of arguments against one function efficiently and avoids for loops. I'm not clear on reduce and filter, but I've seen one video talk about how either one or both, I don't remember which, is kind of redundant.
@pine iron
Oh ok
filter is typically used when you want to clean up a sequence
But both map and reduce is taking user defined function and an iterable I guess
For example, taking the even numbers from a with filter would look like
!e
xs = [1, 2, 3, 4, 5]
print(*filter(lambda x: x % 2 != 0, xs))
@swift valley :white_check_mark: Your eval job has completed with return code 0.
1 3 5
map essentially changes the contents, for example, adding 1 to each item in the sequence
!e
xs = [1, 2, 3, 4, 5]
print(*map(lambda x: x + 1, xs))
@swift valley :white_check_mark: Your eval job has completed with return code 0.
2 3 4 5 6
reduce is a bit more mathematical and I haven't really found an appropriate explanation for it that isn't too verbose
!doc functools.reduce
functools.reduce(function, iterable[, initializer])```
Apply *function* of two arguments cumulatively to the items of *iterable*, from left to right, so as to reduce the iterable to a single value. For example, `reduce(lambda x, y: x+y, [1, 2, 3, 4, 5])` calculates `((((1+2)+3)+4)+5)`. The left argument, *x*, is the accumulated value and the right argument, *y*, is the update value from the *iterable*. If the optional *initializer* is present, it is placed before the items of the iterable in the calculation, and serves as a default when the iterable is empty. If *initializer* is not given and *iterable* contains only one item, the first item is returned.
Roughly equivalent to:... [read more](https://docs.python.org/3/library/functools.html#functools.reduce)
how about no
how bout you unmute me
How about you don't burp into your mic immediately after joining a voice chat?
So all these functions map,reduce and filter are used to avoid for loops then?
They run faster than them, I believe.
Ok
a whole channel of muted people :/
unmute me
If you want to talk im down! Was listening to the press conference about the COVID-19 measures.
@pine iron Those three functions still use loops internally but yeah, they're typically used if you want to avoid using loops and want to utilize the laziness of generators instead
Ok
sorry i was just setting my input sensitivity
why the fuck was it doing things
unmute me or ill succ toe
Wifi's back, great
OBS seems to work fine on my potato
@fossil palm, are you using Ubuntu? I am on Ubuntu, and I want to know if it's stable on there.
Hey guys...
hello guys
im guessing im here with python experts
just took Comp Sci as a subject for my 11th and 12th grade
Hi
im fine, im just wandering
your microphone is glitching
@pastel heath ooh hi you cute creature
Dunno I listen to lots of smart people and I'm ape so
omg you replied
he shouldbe a voice actor
thats smart
the only good thing about hitler was that he killed hitler
You've still 9 days to learn.. I mean, in 9 days you can learn.. Just grind..
string manipulations
flow of control and all
Wann voice someone?
what?
Isn't health insurance usually provided by employers?
Then some get health insurance from the government... over 65s I think?
Also I think hospitals tend to do lots of unnecessary tests, out of fear of malpractice lawsuits.
Erm @somber heath I think your mic is half-in the socket or something?
Erm, it was making that noise that you get when you plug in a guitar ๐
yah
These earphones might be near to needing replacement
But I was fiddling with the jack.
I'm also charging. So that might have involvement.
Introducing the โ Librem 5 by Purism
Also the official python tutorial is actually pretty good
There's definitely a benefit that comes from learning in a structured way, rather than sporadically.
And a text-book is a good way to do that.
!resources @drowsy robin We've also got a big ol' batch of resources on our site
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
I'm long overdue re-reading the tutorial from start to finish ๐
!source
High cohesion; low coupling ๐
There's also a __main__.py file.
If you run the package, that is the file that gets run, although the __init__.py gets run first.
Vim user here ๐
Erm, 6 years?
Still learning ๐
Eventually the shortcuts become second-nature.
But there are so many hidden features it's crazy.
It has its own programming language called vimscript ๐
The nice thing is that once you learn how to use it it's much simpler and lighter-weight than other editors like VS Code
to be honest, it's been a massive distraction ๐
MacOS
Nope, just like the laptops
It's pretty similar to linux
System76 computers empower the world's curious and capable makers of tomorrow
libreboot
Yep, MacOS is based on BSD Unix
okey
I am having difficulty understanding your voice. Sorry. ๐
As you are mine, presumably.
okey ๐
Can anyone suggest me a web to master text,binary and csv files?
https://www.datacamp.org is ok for you
@acoustic ingot is elon gonna clone me one of those
Don't know
when a person should know or realize that he is ready for free lancing as a phyton programmer?
@acoustic ingot
๐คฆโโ๏ธ
Upwork
no
so?
Pakistan
Nice to meet you :D
:)
What is your name?
Lost Root :D
-_-
@ember hazel
and
i take this from him
where did you get that death like image?
ahmmm
?
Date of stream 27 May 2018 and 28 May 2018.
Instead of scopie Sunday, George is livestreaming programming a toy SLAM implementation.
Stream title: Livecoding SLAM twitchslam
Source files:
- https://github.com/geohot/twitchslam
Follow for notifications: - https://twitch.tv/geo...
@ember hazel
@versed sapphire yes bro?
ahmmm
@craggy zephyr bro change the pic lol everyone is thinking it is me
@versed sapphire yes bro?
@ember hazel hey! how you doin' ?
I'm good and you?
Nothing I just wanted to show you to this guy
I'm good and you?
@ember hazel I'm good
Thank you for asking
Any news?
LOL @craggy zephyr your profile has got a character from ff which is from a series on Netflix
critical thinking exercise:
@pliant atlas
As Mark Twain once said โIf itโs your job to eat a frog, itโs best to do it first thing in the morning. And if itโs your job to eat two frogs, itโs best to eat the biggest one first.โ
(next(ic.intCode(0)) for i in range(3))
!rule 6
6. No spamming or unapproved advertising, including requests for paid work. Open-source projects can be shared with others in #python-general and code reviews can be asked for in a help channel.
For recruitment and jobs, see https://www.python.org/jobs/ and https://www.pythonjobshq.com/
oh, hem's here
@twilit lagoon
local str = [[Hello
World]]
huh
@gleaming burrow #tools-and-devops
!rule 6
!rule 6
6. No spamming or unapproved advertising, including requests for paid work. Open-source projects can be shared with others in #python-general and code reviews can be asked for in a help channel.
6. No spamming or unapproved advertising, including requests for paid work. Open-source projects can be shared with others in #python-general and code reviews can be asked for in a help channel.
!resources @zenith fern
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
!tools
The Tools page on our website contains a couple of the most popular tools for programming in Python.
Learn the most important language for data science.
@zenith fern https://repl.it/languages/python3
Repl.it is the world-leading online coding platform where you can collaborate, compile, run, share, and deploy Python online. Code in 50+ programming languages and frameworks!
@zenith fern https://pythontutor.com is good too
@twilit lagoon how to get repl.it/languages/python3 added to https://pythondiscord.com/pages/resources/interactive/ ? no hurry
Yo i have no idea
@hallow warren BETA!
never dealt with that
@twilit lagoon sorry, I was trying to ping @rugged root -- thank you for your help.
Hemlock, how can I ask that https://repl.it/languages/python3 be added to pythondiscord.com/pages/resources/interactive/ please?
Repl.it is the world-leading online coding platform where you can collaborate, compile, run, share, and deploy Python online. Code in 50+ programming languages and frameworks!
i'm not affiliated with Replco except as a free customer for about the past year
The World State is the primary setting of Aldous Huxley's 1932 novel Brave New World. In the novel, the World State is a unified government which administers the entire planet, with a few isolated exceptions. The motto of the World State is "Community, Identity, Stability".
@hallow warren ty
1932, way earlier than I thought!
i thought it was even older lol
l-plane
yeah, from os import system("...")
basefile="input_path"; start=start_secs; dur="duration_secs"; outfile="output_path"
system("PATH=/usr/local/bin:$PATH sox -m -t wav "
+ "'|sox -V1 " + basefile + " -t wav - fade t 0 "
+ str(start + 0.03) + "' -t wav '|sox -V1 " + basefile
+ " -t wav - trim " + str(start - 0.03) + " fade t 0.06 "
+ str(dur + 0.06) + " 0.06 gain 6 pad "
+ str(start / 2.0 - 0.03) + " tempo -s 0.5'"
+ " -t wav '|sox -V1 " + basefile + " -t wav - trim "
+ str(start + dur - 0.03) + " fade t 0.06 0 0 pad "
+ str(start + (dur * 2.0) - 0.03) + "' " + outfile
+ " gain 3")
Romania
@whole bear
What's happening in staff?
๐คฃ
my request to add repl.it to pythondiscord.com/pages/resources/interactive has brought them to virtual blows. If I had known it would be so controversial I would have never proposed it.
/s
@whole bear
@hushed elm http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.458.581&rep=rep1&type=pdf (Bugental 2000) is that testosterone paper
ty @hallow warren
โPlaying with GPT-3 feels like seeing the future,โ Arram Sabeti, a San Franciscoโbased developer and artist, tweeted last week. That pretty much sums up the response on social media in the last few days to OpenAIโs latest language-generating AI. ย OpenAI first described GPT-3 ...
@hushed elm he has a youtube link at the end of that article
oh lol i didn't even see that, nice @frank falcon
"Language Models as Knowledge Bases?" (yes btw) https://arxiv.org/abs/1909.01066
Recent progress in pretraining language models on large textual corpora led
to a surge of improvements for downstream NLP tasks. Whilst learning linguistic
knowledge, these models may also be...
The General Language Understanding Evaluation (GLUE) benchmark is a collection of resources for training, evaluating, and analyzing natural language understanding systems
@rugged root also, in addition to repl.it, how do you feel about https://colab.research.google.com/ ?
We're a large, friendly community focused around the Python programming language. Our community is open to those who wish to learn the language, as well as those looking to help others.
@hushed elm https://x.company/projects/foghorn
@hushed elm Boucif N., Roizard D., Favre E. (2020) The Carbonic Anhydrase Promoted Carbon Dioxide Capture. In: Zhang Z., Zhang W., Lichtfouse E. (eds) Membranes for Environmental Applications. Environmental Chemistry for a Sustainable World, vol 42. Springer, Cham. https://doi.org/10.1007/978-3-030-33978-4_1
math.sqrt(sum((b-a)**2 for a,b in zip(p,q))) Distance from p to q, p and q being two coordinate tuples with an equal number of dimensions,len.
If I haven't fucked it up.
public:
public: // Establishes the permissions to the class
double rTriL;
double rTriH;
};```
def two_d_distance(xy1, xy2):
a = xy2[0] - xy1[0]
b = xy2[1] - xy1[1]
c = (a**2) + (b**2)
d = math.sqrt(c)
return d```
So in n dimensions, you'd have n indices in xy1 and xy2 to go through and add like in c=
[0] being index 0
def three_d_distance(xyz1, xyz2):
a = xyz2[0] - xyz1[0]
b = xyz2[1] - xyz1[1]
c = xyz2[2] - xyz1[2]
d = (a**2) + (b**2) + (c**2)
e = math.sqrt(d)
return e```
def check_key_press():
"""detects key presses and sets variables depending on what key is pressed."""
music_mute()
if not v.game_over and not l.level_won:
if keys[key.LEFT]:
if m.snk_dx == 0:
m.snk_dy = 0
m.snk_dx = -1 * c.cell_size()
if keys[key.RIGHT]:
if m.snk_dx == 0:
m.snk_dy = 0
m.snk_dx = c.cell_size()
if keys[key.UP]:
if m.snk_dy == 0:
m.snk_dx = 0
m.snk_dy = c.cell_size()
if keys[key.DOWN]:
if m.snk_dy == 0:
m.snk_dx = 0
m.snk_dy = -1 * c.cell_size()
else:
if keys[key.SPACE]:
new_game()
I need a little help here, is anyone ready to do so?
My script is not responding to me
import webbrowser
import os
import datetime
import speech_recognition as sr
import time
import pyttsx3
import smtplib
import wikipedia
os.system("title J.A.R.V.I.S")
engine = pyttsx3.init('sapi5')
voices = engine.getProperty('voices')
engine.setProperty('voice', voices[0].id)
# Sector: Applications/Softwares
pyPath = "D:\\PyCharm Community Edition 2020.2.1\\bin\\pycharm64.exe"
codePath = "D:\\Programming\\Microsoft VS Code\\Code.exe"
operaPath = "C:\\Users\\Dell\\AppData\\Local\\Programs\\Opera GX\\launcher.exe"
Discord = "C:\\Users\\Dell\\AppData\\Local\\Discord\\Update.exe --processStart Discord.exe"
sublimePath = "D:\\Installations\\Sublime Text 3\\sublime_text.exe"
Mail = "C:\\Users\\Dell\\Desktop\\Mail"
opera = webbrowser.Opera(operaPath)
# Sector: WebPage
YouTube = "https://www.youtube.com"
Google = "https://www.google.com"
StackOverFlow = "https://www.stackover.com"
Wikipedia = "https://www.wikipedia.org"
WikiHow = "https://www.wikihow.com"
Facebook = "https://www.facebook.com"
Gmail = "https://www.gmail.com"
ModuleInstaller = "https://www.pypi.org"
Amazon = "https://www.amazon.com"
# Sector: Time
localtime = time.asctime(time.localtime(time.time()))
# The speak function will pronounce the string which is passed to it
def speak(text):
engine.say(text)
engine.runAndWait()
# This function will wish the user according to the user's pc's time it is running on
def wishMe():
hour = int(datetime.datetime.now().hour)
if hour >=0 and hour <12:
print("Good Morning!")
speak("Good Morning!")
elif hour >=12 and hour <16:
print("Good Afternoon!")
speak("Good Afternoon!")
else:
print("Good Evening!")
speak("Good Evening!")
print("I'm JARVIS, how may I help you?")
speak("I'm JARVIS, how may I help you?")
# This function will take input from the user's mic
def takeCommand():
r = sr.Recognizer()
with sr.Microphone() as source:
print("LISTENING")
r.pause_threshold = 1.5
audio = r.listen(source)
try:
print("RECOGNISING")
query = r.recognize_google(audio, language='en-us')
print(f"USER_SAID> {query}\n")
except Exception as e:
print("I_COULDN'T_GET_THAT, WOULD_MIND_REPHRASING?")
speak("Sorry, I couldn't get that, would you mind rephrasing?")
return "None"
return query
def sendEmail(to, content):
server = smtplib.SMTP('smtp.gmail.com', 587)
server.ehlo()
server.starttls()
server.login(me, password)
server.sendmail(me, to, content)
server.close()
# The main program starts from here!
if __name__ == '__main__':
print("INITIALIZING_J.A.R.V.I.S")
speak("Initializing JARVIS")
wishMe()
while True:
query = takeCommand().lower()
if 'wikipedia' in query:
speak("Searching Wikipedia")
print("SEARCHING_WIKIPEDIA")
query = query.replace("wikipedia", "")
results = wikipedia.summary(sentences=20)
print(results)
speak(results)
elif 'open YouTube' in query:
opera.open(YouTube)
pip install pipwin
pip install wikipedia
pip install pyttsx3
pip install SpeechRecognition
pip install smtplib
pipwin install PyAudio
@balmy nymph sir, I need little help, can you please join the Code/Help voice cahnnel?
.help
No sorry, I canโt atm
@stiff shard sir, can you?
Hello, please don't ping the individual helpers for help. They will help out when they can.
user = user.replace("meme", "")
results = wikipedia.summary(sentences=20)
print(results)
@tall grail are you a member of !edureka
!close
umalis ka
@earnest crag umalis ka
import os
os.listdir("pathname")
glob.glob("pathname")
import os
start_path = '.' # current directory
for path,dirs,files in os.walk(start_path):
for filename in files:
print os.path.join(path,filename)
@uneven yarrow Don't want to talk rn, what is your problem?
@uneven yarrow yep, can you send your code?
@uneven yarrow brb in 30s
#Author = EagleFighter
import turtle
import sys
import math
#
class grid(turtle):
def __init__(self, xcoord, ycoord):
self.xcoord = xcoord
self.ycoord = ycoord
def makeboard(self, xcoord, ycoord):
self.turtle = turtle.Turtle()
class Block:
def __init__(self, block_x, block_y, block_xy):
self.block_x = block_x
self.block_y = block_y
self.block_xy = [block_x, block_y]
def isoccupied(self, block_x, block_y):
return True
class WhitePieces(Block):
pass
class Pawn(WhitePieces):
def __init__(self, x, y):
self.x = x
self.y = y
def movepawn(self, x, y, click_x, click_y):
if (click_y - y == 1) and ((click_x - x == 1) or (click_x - x == -1)): #add isoccupied
return True
elif (y == 2) and (click_y == 4):
return True
elif click_y - y == 1:
return True
else:
return False
Anyone here?
@whole bear are you even there?
import os
import time
import pyttsx3
os.system("title J.A.R.V.I.S")
engine = pyttsx3.init('sapi5')
voices = engine.getProperty('voices')
engine.setProperty('voice', voices[0].id)
def speak(text):
engine.say(text)
engine.runAndWait()
if __name__ == '__main__':
query = input(">>> ")
if 'reminder' in query:
speak("You need to provide the data in the form of seconds")
print("YOU_NEED_TO_PROVIDE_THE_DATA_IN_THE_FORM_OF_SECONDS")
timer = int(input("What is the total time left in seconds> "))
place = input(str("WHAT_SHOULD_I_SAY_YOU_TO_REMIND> "))
try:
for i in range(timer):
time.sleep(1)
time_left = timer - 1
if time_left == int(5):
speak(f"{place}, you got 5 seconds left!")
print(f"{place}_YOU_GOT_5_SECONDS_LEFT!")
except Exception as e:
print(e)
take out all your text-to-speech
make it print to console instead
then debug it
then put back in your tts
so what do you have now?
@gentle flint Django Unchained
Spago BI / now. Knowage
how did i automatically join afk?
maybe because you were afk?
lo nuestro era solo para divertirse (divertirse)
Paulo Londra "Tal Vez"
(Spotify)
โถ https://open.spotify.com/track/46lvmzK8wxAy66tjzXXSh0?si=UwCvYdvTRnS71f298Kaa8Q
(Apple)
โถ https://itunes.apple.com/nz/album/tal-vez/1456827698?i=1456827970
(YT Music)
โถhttps://music.youtube.com/watch?v=NPpELzyP4rw&feature=share
Visit Paulo...
Fall = Cair
Brazil
should be hyper, not hiper
Quando crianรงa, a mรฃe de Manoel lhe perguntava como foi o dia sempre que chegava da escola. Ele contava com emoรงรฃo, mas sem muitosโฆ
@olive plover I literally left because you started earraping the whole place
do not follow me
wt
that is just stupid
What language is that?
swedish
"Ha ha, you can't catch me, horrifying lizard monster"
Look at the smug look on her face
"then they met a crocodile; the cat turned tail and ran like an arrow"
Magical
she does indeed look peculiarly unconcerned
Join the challenge or watch the game here.
now he's sad 'cuz he wanted to eat her
"
he wanted to eat the little one up
but the cat saved the little one's (neck, body?) body
because the cat ran so fast, so that
nobody could (catch her?)
"
certainly an unusual cat
bit odd for a children's book though
I supposed it would have been too gory if the crocodile had eaten them
` <- backticks
\ <- backslash
@hybrid mirage guess where he is from
"{ย } โ braces (UK and US), curly brackets, definite brackets, swirly brackets, curly braces, birdie brackets, French brackets, Scottish brackets, squirrelly brackets, gullwings, seagulls, squiggly brackets, twirly brackets, Tuborg brackets (DK), accolades (NL), pointy brackets, second brackets, fancy brackets, M Brace, moustache brackets."
who on earth calls them Scottish brackets
s c o t t i s h brackets
vous-รชtes une baguette
In phonology and linguistics, a phoneme is a unit of sound that distinguishes one word from another in a particular language.
For example, in most dialects of English, with the notable exception of the west midlands and the north-west of England, the sound patterns (sin) and...
Two farmers in county Kerry, Mikey Joe O'Shea and Richie Griffin, have lost over 45 sheep, worth potentially thousands of euro. They have the thickest Kerry accent imaginable. See if you can decipher what they are saying.
I understood smatterings.
ah, makes sense
funny scene in spider man 2
very USA
q.put(indata[::args.downsample, mapping])
@rugged root just curious - are you now in voice chat semi-often because that's the new approach to moderation of voice (i.e have people in voice) - or is it more because you just decided to start using voice?
The latter
@zenith radish C# isn't a bad language
I mean...
Inheritance
Well I agree with that, LP. Not everything as to be, and classes are certainly overused. But I don't think that's a strong argument against using them all together
@zenith radish poke
@solid atlas Mute if you're messing with that bag
Jesus ow
@zenith radish "Good luck with their Indians" Well that was... weirdly racey
@whole bear Yeah please don't with the random fart noises
@zenith radish I feel ignored
im glad me aswell
guys pls dont leaVE TIL i get back
these guys at aws just have everything now don't they, but where's the docs
I'm practically just listening to a conversation with the president of my company and some reps at aws
I really have to take a shit
i just fucked the rep up, he was talking all these big words
How do you even type on this?
Hello
hello
the fun police is here
Har dee har
Earthquake?
do I need my phd to work in research
@whole bear Please stop interrupting people who are trying to talk
pls another voice channel
I'll discuss it with folks
two general voice channels would be great
@zenith radish In fairness, anything can hurt you if it tries hard enough
@hushed elm noooo my music
@somber heath Or if you leave them with the tab after a long night of drinking
oh noes
Oh yes
Canadian geese are assholes
@rugged root can I give out a custom ovh?
A custom what now?
It's a vpn
I don't feel comfortable with that being shared here, no
I can't verify that it's safe and I really don't want to lead our users onto a random link
Again, no
Ok
@solid atlas Authentication error as in some sort of SSL error?
B4uh
@solid atlas Ask in #web-development. They should be able to help you out
@silver cliff Was that a cat purring?
Stop
"Alblum"?
omg
come to the my table
Music Video for "Come to Australia" by Scared Wired Little Guys an Australian Comedy Music Duo, also referred as SWLG or The Scaredies.
Visit their website: www.swlg.com.au
@whole bear Like... I can still hear you regardless
Hey Rab
@somber heath I do too but not when it's like.... right in my ears at high volume
Fair.
Ugh
Hmm?
Those who donโt use PTT are the worst
german
german
English
Norwegian
@whole bear Whaaaaat
English
Bengali
I lost my sanity a few years ago B)
Aaah
You're here to moderate us >:(
Scary, we're being watched
Everyone, play nice!
I'm here to listen. Moderating is secondary
:P
lol
@whole bear Jesus christ, if you're going to yell at your Alexa, mute yourself
.
French
@tough panther You promise not to play loud ass music again?
even swearing sounds so nice in french ๐
!tempmute 757075356376367244 2d For fuck's sake. I've muted you before for not keeping it clean. Just because you're on a new account doesn't mean that you suddenly get to do stupid shit. Keep it clean, keep it civil, mute your damn mic when you're doing loud stuff, and behave.
:incoming_envelope: :ok_hand: applied mute to @whole bear until 2020-09-23 18:30 (1 day and 23 hours).
!warn 603610743811604513 Do not play loud music into the voice channel. If it happens again, it's going to result in a mute or more
:incoming_envelope: :ok_hand: applied warning to @tough panther.
!tempban 757075356376367244 3d Saying to an admin "u bitch" after you got muted isn't exactly a good way to stay around. If your behavior doesn't improve by the time your ban expires, you're out for good. No hesitation, no second chances beyond this one.
:incoming_envelope: :ok_hand: applied ban to @agile scaffold until 2020-09-24 18:32 (2 days and 23 hours).

NO SHIT
Hi
!warn 82578210453192704 I really don't know why you thought "sex toys" was a great topic for discussion. It's not
:incoming_envelope: :ok_hand: applied warning to @zenith radish.
vc getting spicy
No no
I don't care
Just don't
Code of Conduct
Pretty pointless for our bot
Since it exists literally only here
@hollow haven Yo
Rosin is used for the bow on a violin or other string instruments
Lick it
!warn Mr. Hemlock#2740 Giving dangerous advice :S
(This is joke please do not hurt me)
I mean... I've given worse advice
And I'm not some iron fisted dictator
I just want to make sure things are how it should be
Feeling rusty
Is 2 out? Or is still in their like... early access?
@amber raptor ^
Yes
Yep
Yes, 2 is Stable
docker is starting to push WSL2 instead of HyperV
Huh, that's interesting
I'm on Pro so I just have to get it up and going
I mean, to get Docker running on Win 10 Pro, it's matter of running installer
I'm surprised that no one uploaded the song from The Graveyard yet, since it's pretty much everything the game has to offer.
Original lyrics:
Van 't jaar acht tot het jaar veertig
Ja die Irma was nog jong
't Was een Duitser met de tering
Te groot hart, te zwakke long
Van 't ...
Provided to YouTube by Universal Music Group
J.S. Bach: Sonata for Violin Solo No. 1 in G Minor, BWV 1001 - 2. Fuga. Allegro ยท Hilary Hahn
Hilary Hahn plays Bach: Violin Sonatas Nos. 1 & 2; Partita No. 1
โ 2018 Hilary Hahn, under exclusive licence to Decca Music Group Limit...
@vestal glade Not sure if you knew if your mic was sending that noise through or not, but please make sure you double check your mic before you try to play loud stuff
download that, congrats, you have docker
I mean I have docker up and running
We use it for our repos here on the server
@frank falcon Can you type out what the library is here
Who's paying for the hosting for all of the server stuff?
for pydis?
they have a sponsor who provides pydis VPS for bot and site
@vestal glade I can't remove your mute if you don't stay in here
ok thanq
Yep yep. Sorry, server mute can't be removed if people aren't connected to VC
!play
It's stupid
play not implemented
Pasting large amounts of code
If your code is too long to fit in a codeblock in discord, you can paste your code here:
https://paste.pydis.com/
After pasting your code, save it by clicking the floppy disk icon in the top right, or by typing ctrl + S. After doing that, the URL should change. Copy the URL and post it here so others can see it.
Might be in the build tools?
Yeah I just realized that the entire output was just what you have there
Collecting libxml2-python3
Using cached https://files.pythonhosted.org/packages/41/97/a2ecf6c5b291799dbd40b3d041d89b0ecdb1b43c8c2503e27991325851cd/libxml2-python3-2.9.5.tar.gz
Complete output from command python setup.py egg_info:
failed to find headers for libxml2: update includes_dir
----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in C:\Users\OptionsOnDeck\AppData\Local\Temp\pycharm-packaging\libxml2-python3\
sudo pip3 install libxml2-python3
py -m pip install pipwin
Waith
That one
I mistyped
py -m pipwin install libxml2-python3
Might take a little bit to get going, though
As it has to cache what all is on that
sudo apt install libxml2-dev
python-lxml2
I'm looking at the binaries the site has it only seems to have Python 2 versions
Sooooo
@tough panther Yep
It'll go through character by character
[]char
@frank falcon Yeah, looks like the libxml2 is for Python 2
So that'll likely fail
So instead, we'll do.... py -m pipwin install lxml
@zenith radish I mean you can but it'd be wrong
Because pip is a word
Pips are the dots on dice
Just another useless Hemlock fact
@hollow haven Or a your mom joke
it's a random choice for which you get
horray, lockout, not working for another 5 minutes!
Like a 1% chance
nice, I'm currently waiting for a call from my team lead before I can proceed on a project. So I'm just... sitting here
I think Beautiful Soup has it as a dependency?
import requests
result = requests.get('http://www.example.com')
print(type(requests))
print(result.text) #this will give you the entire html of the page
import bs4 #bs4 will orginize the entire html from the previous code
soup = bs4.BeautifulSoup(result.text,'lxml')
#now when the code is executed it will make it html like as if its a realy script
soup.select('title')[0].getText()#this looks through the code and finds the title tags
site_paragraphs = soup.select('p')
type(site_paragraphs) #this is a bs4 object now not a string
from bs4 import BeautifulSoup
soup = BeautifulSoup(page.content, 'html.parser')
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
hey hem hem
Sup
๐
Check out Displate's metal posters at https://lmg.gg/displateltt
Check out the NEW Antlion Audio ModMic Wireless at https://lmg.gg/wirelessmodmic
Hackintoshes are such a pain โ You need the right hardware, and you need to invest a huge amount of time and effort EVERY TIME yo...
Back in a sec
๐
Did I miss something?
Security through obscurity or obsolescence is a security blanket
Not something you should rely on
Was going to say
That was a weird setup yeah
Sort of
Eh
@zenith radish That's so petty and dumb
Keybase is for keeping everyone's chats and files safe, from families to communities to companies. MacOS, Windows, Linux, iPhone, and Android.
hello guys
i want to know if we can use front end frameworks with python as the backend?
That's common to couple front end frameworks with some type of python backend
i'm new to programming so don't know much. I learnt a little bit of flask
it's stupid that you need to worry about a company using windows
flask framework or django framework is similar to angular?
angular is JS based, so it's a different programming language entirely. There will be commonalities, but it'll be different
I am kind of learning python
react supports flask though
and flask/django framework
but what I don't understand is what to do next
can we integrate react/angular/vue with django/flask?
react can be integrated with flask
dont know anything about django though
integrate React with FastAPI
yes
@unreal oar your mic is glitching, could you mute??
HEMLOCK COME BACK
thanks!
and if I need to build a mobile app, then django + reat will work as well?
which companies should one approach to like how to know this is a good company for newcomers and to work with amazing projects?
every country has bad things and bad work environments
@amber raptor Sorry, had to take a phone call
C++ or Golang or Python, which is faster execution?
C++, most likely
C++ is faster 9 times out of 10
Golang is garbage collected
I hear some people trying to research on AI with go
can it be said as the successor of c++
?\
pypi is for speed i guess
Haskell is incredibly efficient
functional
purely
monads i guess the difficult part
most of the financial companies, israelis use it a lot
employement is zero
most of the new age langs have functional aspects i guess
I too hate JS
I don't mind it
!paste
Pasting large amounts of code
If your code is too long to fit in a codeblock in discord, you can paste your code here:
https://paste.pydis.com/
After pasting your code, save it by clicking the floppy disk icon in the top right, or by typing ctrl + S. After doing that, the URL should change. Copy the URL and post it here so others can see it.
does lamdas have anything to do with the function as a service?
print("Sum of w,x,y is: " + โw+x+yโ) #LINE 16
!fstrings
In Python, there are several ways to do string interpolation, including using %s's and by using the + operator to concatenate strings together. However, because some of these methods offer poor readability and require typecasting to prevent errors, you should for the most part be using a feature called format strings.
In Python 3.6 or later, we can use f-strings like this:
snake = "Pythons"
print(f"{snake} are some of the largest snakes in the world")
In earlier versions of Python or in projects where backwards compatibility is very important, use str.format() like this:
snake = "Pythons"
# With str.format() you can either use indexes
print("{0} are some of the largest snakes in the world".format(snake))
# Or keyword arguments
print("{family} are some of the largest snakes in the world".format(family=snake))
Hello
print("Sum of w,x,y is: " + โw+x+yโ) #LINE 16
can someone help me quick with matplotlib
How do I JOIN voice chat?
I am struggling to use it on an ide
@solar scaffold Just have to click on the General bar
and I keep getting an error
The code is correct its just on the ide it doesn't allow me to run it
version problem?
@rugged root its locked for me
on atom is just gives me the plot but nothing on it
ide settings check it
@solar scaffold It has the lock icon, but that just means that you have the developer role to see it
You should still be able to access it
Would I have to check the settings and allow matplot lib on it
print("Sum of w,x,y is: " + "w+x+y") or print("Sum of w,x,y is: " + (w+x+y))
print(f"Sum of w,x,y is: {w + x + y}")
or just do the math earlier
print(f"Sum of w,x,y is: {w + x + y}")
@rugged root good one with formatted strings
Love me some f-strings
print("Sum of w,x,y is: " + โw+x+yโ) #LINE 16
a = w + x + y
print(f"Sum on blah: {a}")
^
use formatted strings people, awesome feature
The problem is that you're using angled quotes, not single quotes '. You can test this by doing !charinfo and copy pasting from your code
No Charlie!
what you're using โ what you should be using '
oh punjabi bros
among us : Kzotwq
paste the code
Kzotwq
no way can anyone tell without seeing the code
check the ide settings
@shut relic @manic delta Just for future reference, we try to keep Code Help questions in the Code/Help Voice channel or use our help system using #โ๏ฝhow-to-get-help
what you're using
โwhat you should be using'
@quasi condor โ bruh i dont even have that on my keyboard lmao
General voice channel is for hanging out not really for code help
now, i miss like why did not i learn engineering
What is the topic in the voice chat?I dont follow
get chinese 5G for savings
"hanging out"
Just hangin' out, bro
same, but it sounds cool so I am listening
most of it is #bitchaboutwork
@rugged root could u talk about how to start in competitive programming? Google kickstart sort of
gotta learn the dsa
I'm not really a a competitive programming person, @solar scaffold
I find competitive programming kind of programming
Dedicated server from โฌ8.00 excl. VAT/month. Intel processor - 100 Mbps bandwidth - 500 GB to 1 TB hard disk - 2 to 16 GB RAM
*boring
what is competitive programming?
after the apple's arm move everyone is going to be mobile
!warn 152515077512232960 I can understand that it can be frustrating when you feel that someone is talking over someone else. But there are less rude ways to address it. Being rude to someone who you think is being rude doesn't really fix anything.
:incoming_envelope: :ok_hand: applied warning to @quasi condor.
@rugged root can u say LEBRON JAMES IS THE GOAT so I can know which voice you are. Or just say Im Mr. Hemlock
I mean, people are talking so I'm not going to at the moment
and after nvidia's acquisition of arm is its performance will be good
what?
Is Charlie from UK?
Nvidia is acquiring ARM Technologies which is IP
are you guys from CSE or Electronics?
mobile cpus
latte panda has nvidia
gpu
and has awesome memory but not worth it
latte panda is for amd
cooling issue
raspbery pie with 8GB
yeah socs
but a mordern day soc
arch light weight good one
jetson nano for AI
has anybody worked with unmanned underwater vehicles?
The NVIDIAยฎ Jetson Nanoโข Developer Kit is a small AI computer for makers, learners, and developers. After following along with this brief guide, youโll be ready to start building practical AI applications, cool AI robots, and more.
anyone know from where I can buy Raspberry PI in India?
I am working on a small project and I need a Raspberry Pi for it
go to the official site
It shows it's not shipping in India, I guess
right now may not idk
how many CSE guys would understand these stuff
create a artificial nose then
antony4352: from chennai?
hehehe no aliexpress to India
raspbery pies box covering is a good one
french and a little bit russian mixed and made it an onion
Join the challenge or watch the game here.
y=-x+1
y = (-x)+1
!play
#include <iostream>
int main() {
std::cout << "Hello World!";
return 0;
}
``` what is this bullshit
@zenith radish
my model suck
#include <iostream>
int main() {
std::cout << "Hello World!";
return 0;
}
Console.WriteLine("Hello World!");
#include <iostream>
int main() {
std::cout << "Hello World!";
return 0;
}
Console.WriteLine("Hello World!");
my model suck
@odd remnant My chrome lags with 5 tabs open, you have like more than 20
damn
you can try turn off hardware acceleration in chrome settings
@odd remnant you made him leave
what do you mean ?
@earnest crag
I brought a mic
you can join the general voice channel if u want
Hey guys, do I log the time that my models are training as my work hours? or do I just not get paid when my models are training
'\t'
'\n' being a newline
Corey Scahfer
'''A
B''' == 'A\nB'````'\n'` newline

