#voice-chat-text-0
1 messages ยท Page 727 of 1
I guess
so you know you got to work the messages
????
I need to go to class soon but I want to play minecraft
LOL
physics is so much fun ๐
I bet
yea
i just always say yes when my teacher ask me do you understand
cuz if he will try to explain again my brain will not handle it
im confused tho, I send 75 messages and still can't vc
oh, do I need to send the 50 messages in 30m?
@somber heath hello
sorry wrong server
@somber heath bro my mic aint working
Noted.
lol
why cant I hear anythin
mysql.connector.errors.ProgrammingError: 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
I would expect it's on your end.
You are better positioned to diagnose the cause.
yup im sure it is
try running select host, user, password from mysql.user;
py -m pip install discord.py
requirements.txt
discord.py
requests
pip install -r requirements.txt
applications build by tkinter doesnt look good
Much is possible.
hi
In fairness they don't always have to look good. Sometimes if it's just a small program used internally it just needs to work, and it's usually better to not have to add yet another dependency if you can help it
I don't think they look that bad. Maybe not very trendy... ๐
And they can feel reassuringly solid in comparison to an Electron app.
Most things feel more solid than that
what is WITHIN GROUP() function used for?
SELECT sum(p0010001) AS "County Sum",
round(avg(p0010001), 0) AS "County Average",
percentile_cont(0.5)
WITHIN GROUP (ORDER BY p0010001) AS "County Median"
FROM us_counties_2010;
data
i need help in my linear regression model pls
this is my workspace ๐
ValueError: Found input variables with inconsistent numbers of samples: [1974, 17761]
Heya
Hey
hey
$ CREATE TABLE t AS SELECT generate_series(1,20) AS val;
$ WITH subset AS (
SELECT val,
ntile(4) OVER (ORDER BY val) AS tile
FROM t
)
SELECT max(val)
FROM subset GROUP BY tile ORDER BY tile;
$ CREATE TABLE t AS SELECT generate_series(1,20) AS val;
$ SELECT unnest(percentile_disc(array[0.25,0.5,0.75,1])
WITHIN GROUP (ORDER BY val))
FROM t;
Both have the same output of:
max
------
5
10
15
20
(4 rows)```
X = np.array(data.drop([predict], 1))
Y = np.array([data[predict]])
Y = Y.reshape(Y.shape[1:])
Y = Y.transpose()
best = 0
for _ in range(10000):
X_train, X_test, Y_train, Y_test = sklearn.model_selection.train_test_split(X, Y, test_size=0.1)
linear = linear_model.LinearRegression()
linear.fit(X_train, Y_train)
acc = linear.score(X_train, Y_test)
print(acc)
ValueError: Found input variables with inconsistent numbers of samples: [1974, 17761]
hi
SELECT
percentile_cont(0.5)
WITHIN GROUP (ORDER BY p0010001) AS "County Median"
FROM us_counties_2010;
Hey could someone explain what's going on here, and why it says Database as no attribute
In [5]: @dataclass
...: class Database:
...: user:str='DB_USER'
...: name:str="DB_NAME"
...: password:str="DB_PASSWORD"
...: host:int="DB_HOST"
...: config: dict = field(default_factory=lambda:
...: {
...: "user": user,
...: "password": password,
...: "database": name,
...: "host": host
...: })
...:
In [6]: print(Database.config)
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
<ipython-input-6-66b2834dcfd3> in <module>
----> 1 print(Database.config)
AttributeError: type object 'Database' has no attribute 'config'
i think so leme try
yes i am
because it has default values
factory takes one function which takes no arguments
ye the problem aint with lambda syntax
i checked it out
hemlock sorry there
battery finished
that's why pc shutdown
I was wondering where the field() function was coming from
ye so field comes from
from dataclasses import field
I don't recogni- got it
Hello
hello
yeah a little bit
btw what's the problem
ok
Ye as i thought
it wont' work
#bot-commands message
i remember doing this a few weeks ago i forgot
how i did it though
it must be a zero-argument callable that will be called when a default value is needed for this field
this is what the docs says
I have a button which have to put 'x' in the entry, but I don't how to make it put 'x' in the cursor position
but it raises attribute error at the same time
hemlock got it
right
ye
well thx
how is it not working?
ye ipython is so much better than normal command line
really?
when i do ipython it works fine
hi everyone
aren't all pip isntall pacakges added to path?
I sleep.
can u paste huge blocks of code without getting syntax error?
ohh u making it sound so cool
what's the package?
o
In [1]: %timeit range(1000)
100000 loops, best of 3: 7.76 us per loop
In [2]: %%timeit x = range(10000)
...: max(x)
...:
1000 loops, best of 3: 223 us per loop
javascript:thing=document.URL.match(/github.com\/([A-z][\w\-]*\/[A-z][\w\-]*)/);if (thing){var newPage = 'https://techgaun.github.io/active-forks/index.html#'+thing[1];open(newPage%20,'targetname')%20}%20else%20{window.alert("Not%20a%20valid%20GitHub%20page");}
awesome
Good morning
@whole bear what major?
can someone please help me with flask?
jinga
in flask
i don't understand it
High performance with just in time compilation to Python bytecode
jinga is fast
nice
@normal hinge why do you ask in #voice-chat-text-0 if you are not in the VC?
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<h1>THIS IS RENDERED HTML PAGE bob</h1>
{% extends 'base.html' %}
<p>I FUCKED BASE </p>
{% block body %}
{%endblock %}
</head>
<body>
</body>
</html>```
the above is index.html
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<h1>THIS IS INDRAS DADDA</h1>
{% block head %}
<title>THIS indra base </title>
{%endblock %}
</head>
<body>
</body>
</html>```
base.html
base.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
{% block body %}
<h1>Main Page</h1>
{%endblock %}
</body>
</html>
index.html
{% extends 'base.html' %}
{% block body %}
<title>Document</title>
{{ super() }}
<h1>THIS IS RENDERED HTML PAGE bob</h1>
<p>I FUCKED BASE </p>
{% endblock %}
i remade this one companies technologies today because their api broke
RIP their business
The name of the macro. {{ input.name }} will print input.
{{ input("name of the input field") }}
{% macro input(indramacro, value='', type='text', size=20) -%}
<input type="{{ type }}" name="{{ name }}" value="{{
value|e }}" size="{{ size }}">
{%- endmacro %}
{{ input("indramacro") }}
{{ input("name") }}
[10:48 AM]
{% macro input(name, value='', type='text', size=20) -%}
<input type="{{ type }}" name="{{ name }}" value="{{
value|e }}" size="{{ size }}">
{%- endmacro %}
Huh... Discord's formatting actually has something for Jinja
macros.jinja2
{% macro show_list(my_list) -%}
{% for element in my_list %}
<p>{{element}}</p>
{% endfor %}
{%- endmacro %}
index.html
{% import 'macros.jinja2' as macros %}
<div>
{{ macros.show_list([1, 2]) }}
</div>
@faint ermine
ur doing html rn
do u do flask? i need a small favor
<div class="bg" style="background-image: {{url_for('static', filename='bg.png')}};">
jinja
sandboxed execution
powerful automatic HTML escaping system for XSS prevention
template inheritance
compiles down to the optimal python code just in time
optional ahead-of-time template compilation
easy to debug. Line numbers of exceptions directly point to the correct line in the template.
configurable syntax
Uninstall reinstall
read this
okay
wait i figured it out it is secretly running
ij tried to delete
but it isnโt
i donโt see the process anywhere
Restart your rig?
ij rm -rโd it
my servers running rn and i donโt feel like re setting up everything i need to do work
ok this is a message from pc it worked
guys they are making me do punch cards and not letting me just make up random hours guessing how much work i put in
this is outrageous how will i commit fraud anymore
shit why does it look like it's snowing inside i am losing it
main {
text-align: center;
}
body {
background-image: url(bg.png);
}
.blur {
/* Add the blur effect */
filter: blur(8px);
-webkit-filter: blur(8px);
/* Full height */
height: 100%;
/* Center and scale the image nicely */
background-position: center;
background-repeat: no-repeat;
background-size: cover;
z-index: 0;
}
.content {
z-index: 2;
}
{% block body %}
<div class="content">
<h1>SyncChat</h1>
<p>Syncing with all of your's favorite platforms!</p>
<button class="button button-outline" style="border-color:aqua; color:aqua" onclick="window.location.href='/login'">Get Started With Discord</button><br><small>Secured with Discord OAuth2</small>
</div>
{% endblock %}
yo someone needs to make something that rates code
bc i am insecure af abt my abilities but so are the people i look up to
nothing, society is corrupt
iโm not talking in general terms im talking in software development
ik
also what is the best method of concurrency
everyone got his special skills
main {
text-align: center;
}
body {
}
.bg {
background-image: url(bg.png);
filter: blur(8px);
-webkit-filter: blur(8px);
height: 100%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
z-index: 0;
}
.content {
z-index: 2;
}
bc rn im using concurrent.features.ThreadPoolExecutor and it is working pretty well j the function isnโt logging like itโs supposed to
<div style="background-image: url('img_girl.jpg');">
<div class="bg"></div>
<div class="content">
<h1>SyncChat</h1>
<p>Syncing with all of your's favorite platforms!</p>
<button class="button button-outline" style="border-color:aqua; color:aqua" onclick="window.location.href='/login'">Get Started With Discord</button><br><small>Secured with Discord OAuth2</small>
</div>
create a super class
for all ur page
i mean
put a div
for entire then and name it
and then put image
and use this blur code
try backdrop-filter: blur(10px);
repeat-y
amyone?
hi
@rugged root I need to disappear for bout 2 hrs
@tiny seal Fair enough. Take care
what are the careers some one can do after master's?
#career-advice would likely know better. I'm not a programmer by profession
thank you sir.
but you are a programmer in my heart
โค๏ธ
we cant talk
yes
but we are banned
i have talked before
now im banned
are you sure
ok let me check
@vivid palm I'm going to murder QuickBooks
lol
imagine working in the accounting dept for a company and not even having access to the quickbooks 
lighthouse op
my employer asked me to do something illegal
or at least i am pretty sure it is illegal
What's the thing?
huh
making a bunch of vms on different ip's and pretending to be a human clicking a companies add, going through with their form and then not submitting
so that it lowers there place on google
yeahhhhh
it's because his competitors are doing it to him

๐ฅ
then ur company is in trouble ๐
yeah i offered to just write an anomaly detection algorithm that detects these fake clicks and reports them to google
!paste
so that i don't have to be involved in illegal stuff
hmm that's professional really
because i'm 19 not trying to get tried as an adult
especially for something i don't benefit from except getting a bonus
well i would do what my boss did asked
@noble copper You're mic is still really quiet. I know I've said it before, it's just a really huge contrast
well he asked how i'd do it and i explained how we would get away with it and now he wants to do it
i just talked to him about writing the anomaly detection
Just tell him that you're not comfortable writing code like that
but i'm not sure how well most anomaly detection algo's would work on this, it'd probably be more pattern recognition
yeah that's something i could do
i do already have a huge project on my hands
ohh dude if anything comes up then itaon him
Set your moral line
yeah
That makes a huge difference, or at least it can
yeah i need to figure out my stance morally
but the question is if they are doing it then am i really that bad if we are only targetting the people doing it to us
we have suspicions as to who it is but obviously no solid evidence or we would sue them
srry, what happened?
are you the real @ivory basalt
nah
fake batman? ๐ฆ
is my voice audible?
can't say ๐
lol ๐
LOL
kinda tough to think through this problem
anomaly detection works on new clusters
but this is more pattern based
i'm a machine learning engineer/software dev
i manage all the ML projects we do here
yeah it is really fun, but i didn't go to college so it was hard at the beginning to get my first few jobs
really?
my first job i was being paid literally minimum wage to make NLP chatbots
u didn't go for a college?
no in person
how did you do that?
i applied
they do summer programs for a bunch of different fields with the professors
i am not from USA so idk how it's there
that's what i did
that's really cool
yeah i had a good gpa then lol, my last year of highschool i was struggling with mental health and fucked up
i am sorry to that
thank you
i am really into starting ML man i just did started coding like 4 months ago
yeah i had a 4.6 freshman, 4.7 sophomore, and then 2.8 junior and tested out of HS for it
ohh that's LOW
yeah
i just couldn't do my work, everything felt dark and meaningless, i would just sit in bed and cry typically
i feel that dude kind of in that position
and my mistake was never talking to anyone about my mental health, i kept it inside which just hurt me more
same
then i got into illegal substances thinking it made me feel better, when at the end of the day it just pushed me further into the hole
yeah so my gpa got destroyed and i never bothered applying to colleges because i assumed that they would just look at my junior year and say next
the only problem with not going to college is the notion of you don't know what you don't know
dude college is like a scam
i know everyone told me it is, which makes me feel better about myself
idk but i felt like that
@versed island Well that's weird
my teachers just forced me to learn something in syllabus
yeah
Close and reopen the client?
they were sucked at the job
my neighbor mentors me in machine learning, graduated top of the class at hopkins and said it was the biggest waste of 4 years and that it's only worth it if you go for your phd
he don't have any role
How often do you format
I found this whilst flicking through my Jonathan Coulton albums.
Its quite funny actually, its Baby Got Back as sung by Jonathan Coulton.
If you don't know what song that is, its "I like big butts and I can not lie."
I threw a few random pictures of JC into the mix just so you've got something other than a black screen to look at. There are abou...
Cool
https://www.jobscan.co/ @gentle merlin
lol
No thanks
he's just tryin to help people from getting manipulated
@rugged root I NEED SCREENSHAREEEEE
REEEEE
MY WEBSITE
IS THE HOTEST SHIT
EVER
Screenshot it
orange or yellow color on that glowing button has higher conversion rate
just normal UX stuff
we in
emulator?
ssh into my phone
OH FUCK
ikr
Are you actually David Lynch?
Hey hey
He famously smokes a lot ๐
You kind of do actually ๐
That should be scotched
@rugged root
can u explain about whats going on in Washington
Any using pytesseract?
All I know is that it's disheartening and frustrating
I know how to pronounce it
It's Arabic letter
Because US is biased toward Israel in the Israel-Palestine conflict
You will be hit with a lot of legal restrictions
in USA
Importance
rather than fame
I'm currently writing a book
about human psychology
I pointed out 5 principles are stronger than human mind
@whole bear Check out the #voice-verification channel
That should tell you what you need to know
Like Google pay
or Apple pay
Once I couldn't fix errors on python I had a whim to change to web development
Once NFC was released people wigged out
I wonder why USA don't want China defeat it economically
yike
Really?
Sure
In this world, the strong evil is respected
Survival of the fittest
This is the rule of international politics
I mean... you pretty much answered your question in the statement you just made, Pac
Is anyone from South Holland Rotterdam
?
Or it's the server site ?
Max
John
Tom
how does this look?
how to get permission for use microphone in voice chat?
JUST IN - #Georgia and #Kansas capitol buildings have been stormed by protesters.
4471
8407
@signal thicket Check out the #voice-verification channel
That'll tell you what you need to know
do a rain dance. see #764802555427029012 chat
oh, i realized, i dont have many message on this server
No worries!
aw I still can't talk
what is this a tv show or...
i'm answering stack overflow questions regarding what i'm doing so that i finally understand it ๐ฆ
because i am hating this; i wish i could just help them remake it
"we need to have law and order, stop rioting ;)"
Damn, he can't except a defeat
"we have to have piece, I know they stole the election"
peace
what was that
what was that tweet supposed to do
Hey
ืืฆื ืฉืืืืช ืืชื ืืืืื ืืืืฆืืงืืช ืขื ืืฉืคืืช ืืืืืื ืกื ืืง, ืืชื ื ืืื ืืฉืืืข ืืจืืฉ ืืืืฉืื ืืืืฉืจ ืืืืืืื ืืคื ืื ืืชืืืืกืืช ืื ืืกืืื ืืคืืืจืื ืืื ืืืจืื ืืจืืฉืืื? https://t.co/FrsA81U9My
1774
hey guys be peaceful look at all this inaccurate information i am telling you to get you rivaled up!
Just watching what's going on in America on the BBC...
yep it is absurd
and the police are doing next to nothing
these people should be in handcuffs
This is kind of crazy.... but also entirely predictable ๐
yep
Why did they do that?
Driving on Shabat
these trumpers are literally conspiracy theories leaving everyone else with no cognitive dissonance as they have acquired all of it
One of them is holding a phone and recorded, on Shabat
logic
no thats prob a bystander, those people in black dont have cellphones
people around my house are putting up more trump signs it is absurd
Oh yeah, how could I forget, they only have Kosher phones
yup lmao
because it doesn't seem to be working
you don't need experience with ssml just someone take a look
what is the best channel for NLP? @rugged root
data science maybe
Erm, I'd say #data-science-and-ml
yeah i'm just gonna hop in that
this video is kinda long, pretty concise breakdown on US's current situation: https://youtu.be/8zqNDHBtl8U
Get your free trial of MagellanTV here: https://try.magellantv.com/whatifalthist. It's an exclusive offer for our viewers: an extended, month-long trial, FREE. MagellanTV is a new kind of streaming service run by filmmakers with 2,000+ documentaries! Check out our personal recommendation and MagellanTVโs exclusive playlists: https://www.magellan...
Pretty much articulating my thoughts Hemlock ๐
one sec brb
Yep ๐
I've been watching LegalEagles videos on events
Again, sorry I'm not saying much
Hard to be happy go lucky when I'm this angry and broken at the same time
No worries. If you need something to calm your anxiety, Fleet Foxes' latest album is pretty good...
Not sure what he was on about
*authoritarians
define terrorism Terrorism is the unlawful use of force or violence against persons or property to intimidate or coerce a government or its citizens to further certain political or social objectives.
straight from TX Police
Good for you
Sorry, that was shitty
I support people not actively trying to hurt others
Sure @left birch, what's your issue?
Is this really the right time to go on a I hate politics rant rather than worry about the potential for loss of life or harm to others?
I really couldn't give two shits where your alliance lies, I just care that people are in danger
Okay? Okay
Yo @digital jackal
Just taking in the crazy events of the day...
Freudian slip ๐
Hey @lapis linden
!projects
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.
Short-term or long-term project?
If you're looking for something to fill an hour or two and learn SQL, you could check this out @digital jackal https://www.khanacademy.org/computing/hour-of-code/hour-of-code-lessons/hour-of-sql/v/welcome-to-sql
ty
Np ๐
I'm heading home
Flask API tutorial
https://www.youtube.com/watch?v=4T5Gnrmzjak
Learn how to think like a Computer Scientist at https://brilliant.org/jakewright
In this video I build the device registry service as a Flask app in Python.
Code
https://github.com/jakewright/tutorials/tree/master/home-automation/02-device-registry
My actual home automation repository
https://github.com/jakewright/home-automation/
Part 1 Int...
what about heroku?
you can make alexa skills with python?
Hey whats the difference between vs and vs code?
i posted the question on stack overflow
what do you think the odds are of someone answering
it is barely getting views people just don't want to click it ๐ฆ
whats the question?
it's regarding changing the pitch of individual words using SSML
yea that's not something i know sorry
yeahh neither do i
well lets hope some one finds your question @limber blaze
yup that is what i am hoping
i sent a ticket to google
hopefully i get on call with one of their devs
d:
because that would be a crime
they are committing a crime atm
You can't fight crime with crime
this counts as a terror attack
they are raiding
it counts as a violent riot
they have shot people
this just went from 0 to 100 real fast
py -m pip install numpy
yeah, running cv on windows is kinda bad
i think you have to do a pip install in windows terminal
also color 0a on cmd is not cool anymore
Isn't Anaconda supposed to be good for this sort of thing on Windows?
idk, i dont use any of these on windows, usually python's cv is being run on a linux distro
trumps tweet telling them to stop was a joke as well, saying yeah the reason you guys are doing this is right, but you should stop
You just become a manager @uncut meteor
you are limited by the number of your monitors
yeah i have hella monitors
I have 2
that's why i'm good
Can I give you a few commands to run?
@gentle flint
what do u say about my new pfp?
py -m pip list
What's the Windows equivalent of which?
I'm allergic to Visual Studio and Visual Studio code
I'm highly allergic to Windows
Hey i don't know i this is the same for vs code but in pycharm you can create a project specific python interpreter so the packages are only installed for the specific project. and windows uses a difference python interpreter (if i understand it right) i am guessing he has to do a pip install in cmd for the needed packages
oh ok well then i got it wrong
@rugged root
@gentle flint
do u think lemon and joe and the rest of the streamers will use my SyncChat for streams?
doubtful
I think they'll stick to youtube
Google's servers are better able to handle 4-5k viewers
I doubt they'll want to switch
YouTube works
and is well integrated with many streaming programs such as OBS
virtualenv venv
source venv/Scripts/activate
py -m venv venv
it's python not py on windows I believe
The arguments to the venv module shouldn't depend on OS
source venv/Scripts/activate
If you install python with the installer on Windows, it will install the py launcher.
huh

interesting
You need to activate it. Didn't hear if someone already said that.
its py if u use the official installer
its python if u install thru the store
prob old version
It's 3.9
or windows didnt take your pc yet
old version my ass
idk lad
py allows you to select your version if you have multiple installed on Windows.
Like py -3.6 ...
Erm, yeah exactly ๐
You're in a funny mood all of a sudden ๐
someone just posted this
Hereโs the scary moment when protesters initially got into the building from the first floor and made their way outside Senate chamber. https://t.co/CfVIBsgywK
35395
65765
dont want to get political
then dont
but the moment the person started running towards the officer
he should have shot him in the leg
would have been right, the people were acting aggressively
if there are more people with guns than he has bullets
that's not exactly going to work, is it
then just headshots
are you advocating murder?
try to pierce as many heads as possible
i cannot deny or (the opposite of deny, i forgot lmao) that fact
(confirm)
Generally they should de-escalate
@candid venture join call
Oh nice @gentle flint
I'm using Amethyst, which is similar but for mac
Yep, she was event lead before
aight bois
bai boi
gam leha
my friend made me download that
haver yakar
Accidentally hit enter
ye suuuuure
Enter
Like attention deficit...
is there a github source on how to get a discord bot to google something?
yeah yeah yeah
top 3
link and description
Probably, but that's probably also against Google ToS
it works on the gibson bot
there's a bot called gibson that does it, but the code for that is in js
which means i have no desire to understand it
and then something else i saw had to import some google thing
but i can't remember what it was
no no no
there was an example in python
and at the top it said import something
but i can't remember what it was, but i know it had google in it
all i need to do is type 50 messages haha
no no no
i was just saying if i can get to that then it'll be easier
because i won't have to type it out
oh my
i started coding like a week ago
all i need to do is find the right stack overflow link
What do you need it for?
i'm an idiot
Would Wolfram Alpha search do instead?
i think it's called google bot...
the other server i'm in really screwed me
dang still less than 50
:1
@uncut meteor https://www.youtube.com/watch?v=CN0JWmONPIk
TikTok made by: Soggy_Nugget - Please follow him๐
subscribe or the policeman will come to your house
if you have any video requests then tell me in the comments, must not be inappropriate
:|**
You should not ๐
No Griff ๐
maybe this isn't my cup of tea
well, it does eat people
seems like a pain just to get something that's cool
google is one of the hardest things
almost anything will be easier
i'm gotten it to do dumb stuff like commands
except the program is kinda useless
async def get_roles(roles_list, message):
if message.content.lower().startswith("$iamnot"):
for word in roles_list:
if word.lower() in message.content.lower():
member = message.author
var = discord.utils.get(message.guild.roles, name = word)
await member.remove_roles(var)
await message.channel.send(f"I took away the '{word}' role from you.")
elif message.content.lower().startswith("$iam"):
for word in roles_list:
if word.lower() in message.content.lower():
member = message.author
var = discord.utils.get(message.guild.roles, name = word)
await member.add_roles(var)
await message.channel.send(f"I gave you the '{word}' role.")
apparently this function can be cut in half because my computer science friends almost killed me when they saw this
then turn him up
@mossy kelp https://contextualweb.io/ has an easier API for web searches
Useful when you're working on a large code-base.
!e
print("LOL")
@uncut meteor :white_check_mark: Your eval job has completed with return code 0.
LOL
sue se ayy
not suse
no not that
eh
well i have the correct chinese name but i don't think that'll help y'all
Integrate the Web Search API with your Python 3.x applications. Robust documentation. Start totally free.
You use mypy to check them
dude there's no way i haven't sent 50 messages left
S1mple
Python is open-source
Yes it is really
The free and open exchange of information to enrich the body of knowledge common to all people for the betterment of humanity. Oh no. How terrible.
I said Python
Here you are
Python's source code
what makes you think that?
lol you troll
nice try
how would you recommend making it faster
All things being equal, it is slower than some other languages.
how would you recommend making it (Python) faster
Well-written Python can be faster than poorly-written C, for example.
lmao
how dare you support communism @obtuse nexus
free stuff
how dare you
you should pay for all your software
all
apple ew
from googlesearch import search
search("Google")
also you are literally this guy @obtuse nexus https://www.youtube.com/watch?v=t2c-X8HiBng
The king receives a lesson in government from Dennis...
Alternative Link from ThePirateBay: https://thepiratebay.org/torrent/9066073/Monty.Python.and.the.Holy.Grail.1975.1080p.BluRay.x264.anoXmous
Original Link (Dead, for archival purposes only): http://kickass.to/monty-python-and-the-holy-grail-720p-best-quality-murdoc47-t6439813.html
https:/...
Ahem
Spamming to meet any criteria will get you temporarily or permanently banned from voice, and potentially the community
but that's Confucianism, do you hate that too?
honest question
because you said you hate communism
@obtuse nexus do you find this funny?
@pastel mesa It's a bit of an inconvenience but it's actually really cleaned up the voice channel.
and you don't think that chinese people like people with free speach
welcome to "The World According to imposter"
My current state of mind doesn't support typeracer
My experience with typing lessons in school was all of the other kids telling on me to the teacher for working at a more advanced level than them which involved using the numpad.
and then proceeded to attempt to troll everyone in the voice chat
I'm anti-trolls
Seven cubes, whose volumes are 1, 8, 27, 64, 125, 216, and 343 cubic units, are stacked vertically to form a tower in which the volumes of the cubes decrease from bottom to top. Except for the bottom cube, the bottom face of each cube lies completely on top of the cube below it. What is the total surface area of the tower (including the bottom) in square units?
A: 644
B: 658
C: 664
D: 720
E: 749
Try reconsidering your life goals, if this is where you get your joy from.
Why should I?
It's publicly available information. ๐
5/6ths of the sum of the first 7 squares
Message history in public rooms is available as a native feature of Discord.
plus a bit more for the bottom.
@stuck furnace nope
I'm not sure why you think this is stalking.
4/6th plus the top and bottom
Ah
I could make all sorts of inappropriate remarks about that, but that might not be appreciated

@mossy kelp can you not do it online?
he's mute with horror
both
all
n(n+1)(2n+1)/6
n(*2n) -=- (n2 to the twentysixth) == n
@obtuse nexus :warning: Your eval job has completed with return code 0.
[No output]
@uncut meteor :x: Your eval job has completed with return code 1.
001 | File "<string>", line 1
002 | print(all(41) and one(4 all())
003 | ^
004 | SyntaxError: invalid syntax
1
11
111
1111
11111
111111
1111111
@obtuse nexus :white_check_mark: Your eval job has completed with return code 0.
True
(77 - 66) + (66 - 55) + .... (22 - 11)
!e
def one(*args):print('all for 1 and 1 for all')
all([4, 1]) and one(4, all)
@uncut meteor :white_check_mark: Your eval job has completed with return code 0.
all for 1 and 1 for all
Want a programming puzzle @mossy kelp?
@stuck furnace sure
sike
@uncut meteor I like it, but the print string is a bit of a cheat.
!e
all([4, 1]) and one(4, all)
@uncut meteor :x: Your eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 1, in <module>
003 | NameError: name 'one' is not defined
Alright. Can you make an infinite recursion in python using only lambda functions and no variable assignments?
Little puzzle ๐
Yep
Then Python gets grumpy.
@stuck furnace you want a problem?
||(lambda x: x(x))(lambda x: x(x))||
Erm, similar
Yep, if you try to evaluate it by hand, you get the same expression again.
@stuck furnace write a code that models the reimann zeta function
Erm, need to revise my maths ๐
!e def alpha(): try: alpha() except RecursionError: alpha() alpha()
@somber heath :x: Your eval job has completed with return code 139 (SIGSEGV).
001 | Fatal Python error: _Py_CheckRecursiveCall: Cannot recover from stack overflow.
002 | Python runtime state: initialized
003 |
004 | Current thread 0x00007f34dc40a740 (most recent call first):
005 | File "<string>", line 3 in alpha
006 | File "<string>", line 3 in alpha
007 | File "<string>", line 3 in alpha
008 | File "<string>", line 3 in alpha
009 | File "<string>", line 3 in alpha
010 | File "<string>", line 3 in alpha
011 | File "<string>", line 3 in alpha
... (truncated - too many lines)
Full output: https://paste.pythondiscord.com/rojawepire.txt
That's about the closest you're going to get.
Python has the gamma function, which I think is related.
math.gamma
Anyway gtg sorry
Bye everyone ๐
Jason rolls three fair standard six-sided dice. Then he looks at the rolls and chooses a subset of the dice (possibly empty, possibly all three dice) to reroll. After rerolling, he wins if and only if the sum of the numbers face up on the three dice is exactly $7$. Jason always plays to optimize his chances of winning. What is the probability that he chooses to reroll exactly two of the dice?
!e
for i in range(40):
for _ in range(i):
print(1, end ="" )
print("")
@signal raven :white_check_mark: Your eval job has completed with return code 0.
001 |
002 | 1
003 | 11
004 | 111
005 | 1111
006 | 11111
007 | 111111
008 | 1111111
009 | 11111111
010 | 111111111
011 | 1111111111
... (truncated - too many lines)
Full output: https://paste.pythondiscord.com/cedahanobu.txt
@wooden hornet ๐
Oh, hello
Yes, my apologies, new to the server + Discord.
Familiarizing myself
Quite a fun community
Indeed to the Discord interface comment.
Until your Mac's fan is blowing bc of all of the electron apps running...
hey can someone help on my problem, pls
my problem:
can you tell how to get users name, Birthday, gender using his google account ??
is it possible to get all those, from google accounts? I mean, is it an option?
by default are all those values available to public?
no cause in react js you can do that
can you show me how?
ok
ping me when you've posted the code
ok
you can do is us firebases googlepopuplogin system and from that you can get users profile photo username uid and all the stuff example
auth.signInWithPopup(provider).catch((error)=>alert(error.message));
and
useEffect(() => {
auth.onAuthStateChanged((authUser) => {
console.log("User:", authUser)
if (authUser) {
dispatch(login({
uid: authUser.uid,
photo: authUser.photoURL,
email: authUser.email,
displayName: authUser.displayName,
}))
} else {
dispatch(logout());
}
})
}, [dispatch])
@gentle flint
just make firebase project and in auth enable google
hey guys
i need some help
actually i was trying to develop a kind of python program that
can fetch your exact location
i tried to integrate it with my ip address but i think my ip is protected and i shows a completely different place...
so
please help if you can
i shows a completely different place
as in, it shows a different part of the city, or a different country?
IP geolocation is inherently imprecise
different part i meant
so?
and as state in maharastra
but it shows my location as madhya pradesh
those two are completely different states
and very afar from each other
yeah, they're next to each other
Apparently that's where your internet is going through
What does it show on mylocation.org btw
it is blank there
is that in maharasta?
it is in maharashtra i think
but thats that
yeah, just googled it
ok?
rithad is in maharastra
mm - hmm
so idk why it shows madhya pradesh
yes
i understood the prob
maybe it is just
protected
but
again
my real question was
what do you mean with protected?
can we find location
go on
without ip
Oh
uh
are you using a sim card?
otherwise unless your computer has a GPS built in, no, I don't think so
ok
no i am using wifi
yeah, then you're kinda stuck with IP
and no... no gps that i no of
oh well
thanks
i ll try something out
gl
Hey @rugged root I am 100% positive I've been in the discord for 3 days but it still says I'm not, what should I do?
No, your all good. Take your time!
7-11 coffee is actually pretty good
lmao
actually
ok
@wise cargo
pythondiscord.com - A Django and Bulma web application. - python-discord/site
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.
yayy i eivl is telling me how to delete the builtins list
whats the command to establish SSH session with github
Hey i am unable to speak in vs
I looked up in Pro Git, it only shows for linux
you need to get voice verified
i need to sent 50 chat to activate
so i am doing it
i just joined
i am very new in python
ok
https://www.youtube.com/watch?v=74WQgNa3OsQ, How fast Vaccine can be made
i wana learn python tinker gui recomend any video lag=eng
theres a tkinter tutorial video from freecodecamp
is that youtube channel
yeah just search it
Same
Learn Tkinter in this full course for beginners. Tkinter is the fastest and easiest way to create the Graphic User Interfaces (GUI applications) with Python. Tkinter comes with Python already, so there's nothing to install!
๐ปCode: https://github.com/flatplanet/Intro-To-TKinter-Youtube-Course
๐ฅCourse created by Codemy.com. Check out their You...
if some kid wants career in politics, they might have to study political events their whole lives
I like how it says NO ADS
the only solution to me seems, you just stop listening to those people, who don't know the stuff,
cause they're not gonna stop shouting bullsh**
I have a double layer controlled adblocker 
lol
so a cop shot a woman protestor? I just glanced at my local news
why the heck people are allowed to keep guns in USA, anyway?
I'm not speaking, cause getting poor internet today, even you guys are breaking for me
I cant even hear anything.
LTE should at least allow you to hear em
well for 5 seconds I can , then i cant hear anything.
i have to leave and rejoin
ok, this is new
its funny why the headline was about the flag
๐ who's gonna segregate indians in an uproar
I saw one photo of a guy in tacticool gear...and sandals. Another guy, also cooled up, had a text patch thing on his jacket "My mom thinks I'm special."
That's.... actually amazing
This address took place on 16 May 2020.
You can see the full address at their Facebook page
https://m.facebook.com/story.php?story_fbid=683610532435347&id=177638979650105
The Shaggs. A band which may be a candidate for an objectively negative classification.
That's amazing ๐
Oh it's so great
Yeah, it's so well done
It gets me to a T






