#voice-chat-text-0

1 messages ยท Page 727 of 1

whole bear
#

The help channel in this discord is helpful aswell

sweet talon
#

me when making a python project : 50 youtube tutorials

#

yea

#

but vc is the best

whole bear
#

I guess

sweet talon
#

so you know you got to work the messages

whole bear
#

????

sweet talon
#

I need to go to class soon but I want to play minecraft

whole bear
#

LOL

sweet talon
#

physics is so much fun ๐Ÿ˜†

whole bear
#

I bet

sweet talon
#

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?

sick cloud
#

@somber heath hello

vapid hearth
#

sorry wrong server

whole bear
#

@somber heath bro my mic aint working

somber heath
weary zephyr
#

lol

quasi mesa
#

why cant I hear anythin

hard wyvern
#

mysql.connector.errors.ProgrammingError: 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)

somber heath
#

You are better positioned to diagnose the cause.

quasi mesa
#

yup im sure it is

faint ermine
whole bear
#

py -m pip install discord.py

faint ermine
#

requirements.txt

discord.py
requests

pip install -r requirements.txt

hard wyvern
#

applications build by tkinter doesnt look good

somber heath
#

Much is possible.

dusty crow
modest widget
#

hi

rugged root
stuck furnace
#

I don't think they look that bad. Maybe not very trendy... ๐Ÿ˜„

#

And they can feel reassuringly solid in comparison to an Electron app.

rugged root
#

Most things feel more solid than that

wise glade
#

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;
somber heath
wise glade
sage trail
#

i need help in my linear regression model pls

wise glade
sage trail
#

ValueError: Found input variables with inconsistent numbers of samples: [1974, 17761]

pure path
#

Heya

scenic geyser
sage trail
#

hey

rugged root
#
$ 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)```
sage trail
#
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]

scenic geyser
#

Yeah? How're you all?

#

Good :)

pure path
#

hi

whole bear
#

hello

#

Hi guys

#

Hi opalMist

wise glade
#
SELECT
    percentile_cont(0.5)
    WITHIN GROUP (ORDER BY p0010001) AS "County Median"
FROM us_counties_2010;
pure path
#

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

rugged root
#

I was wondering where the field() function was coming from

pure path
#

ye so field comes from

from dataclasses import field
rugged root
#

I don't recogni- got it

verbal ibex
#

Hello

hard wyvern
#

hello

verbal ibex
#

Friend, could u help me plz?

#

Anybody knows Tkinter?

hard wyvern
#

yeah a little bit

pure path
#

default makes it a function

#

i tried

#

#bot-commands message

hard wyvern
pure path
#

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

verbal ibex
#

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

pure path
#

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

whole bear
#

hi everyone

pure path
#

aren't all pip isntall pacakges added to path?

rugged root
somber heath
#

I sleep.

pure path
#

can u paste huge blocks of code without getting syntax error?

#

ohh u making it sound so cool

#

what's the package?

#

o

rugged root
#
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
pure path
#

ye that is cool

#

u can do clear and cls as well

faint ermine
#
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");}
pure path
#

Python is coool

#

@rugged root do !user

severe pulsar
#

awesome

swift valley
#

Good morning

hushed elm
#

great morning

#

๐Ÿ˜„

pure path
#

@whole bear what major?

normal hinge
#

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

faint ermine
normal hinge
#
<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

faint ermine
#

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 %}
limber blaze
#

i remade this one companies technologies today because their api broke

#

RIP their business

normal hinge
#

The name of the macro. {{ input.name }} will print input.

faint ermine
#

{{ input("name of the input field") }}

normal hinge
#

{% macro input(indramacro, value='', type='text', size=20) -%}
<input type="{{ type }}" name="{{ name }}" value="{{
value|e }}" size="{{ size }}">
{%- endmacro %}

#

{{ input("indramacro") }}

rugged root
#
{{ 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

faint ermine
#

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>
candid venture
#

@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')}};">
faint ermine
#

jinja

candid venture
normal hinge
#

@candid venture it is also fast

#

bro

limber blaze
#

hey discord friends

#

why wonโ€™t my discord open on pc

normal hinge
#

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

rugged root
normal hinge
#

read this

limber blaze
#

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

rugged root
#

Restart your rig?

limber blaze
#

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

candid venture
normal hinge
#

what do u want to do?

#

can u explain in simple words

candid venture
#
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 %}
limber blaze
#

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

candid venture
limber blaze
#

wtf makes someone good

#

i donโ€™t feel sane today

candid venture
limber blaze
#

iโ€™m not talking in general terms im talking in software development

candid venture
#

ik

limber blaze
#

also what is the best method of concurrency

candid venture
#

everyone got his special skills

normal hinge
#

put a div

#

outside ur image tag

candid venture
#
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;
  }
limber blaze
#

bc rn im using concurrent.features.ThreadPoolExecutor and it is working pretty well j the function isnโ€™t logging like itโ€™s supposed to

normal hinge
#

<div style="background-image: url('img_girl.jpg');">

candid venture
#

<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>
normal hinge
#

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

candid venture
noble copper
#

try backdrop-filter: blur(10px);

candid venture
#

127.0.0.1 - - [06/Jan/2021 19:31:34] "GET /static/bg.png HTTP/1.1" 200 -

normal hinge
#

repeat-y

ivory basalt
#

amyone?

warm axle
#

hi

tiny seal
#

@rugged root I need to disappear for bout 2 hrs

rugged root
#

@tiny seal Fair enough. Take care

ivory basalt
#

what are the careers some one can do after master's?

rugged root
#

#career-advice would likely know better. I'm not a programmer by profession

ivory basalt
#

thank you sir.

balmy nymph
rugged root
#

โค๏ธ

whole bear
#

we cant talk

#

yes

#

but we are banned

#

i have talked before

#

now im banned

#

are you sure

#

ok let me check

normal hinge
#

send me that damn image @candid venture

#

i will do

#

it

candid venture
rugged root
#

@vivid palm I'm going to murder QuickBooks

vivid palm
#

lol

#

imagine working in the accounting dept for a company and not even having access to the quickbooks blobupsidedown

rugged root
#

Thankfully I don't have to know how to use it

#

Just make sure it works for our folks

uncut meteor
candid venture
#

lighthouse ranking

uncut meteor
#

lighthouse op

limber blaze
#

my employer asked me to do something illegal

#

or at least i am pretty sure it is illegal

rugged root
#

What's the thing?

faint ermine
#

huh

limber blaze
#

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

faint ermine
#

yeahhhhh

limber blaze
#

it's because his competitors are doing it to him

uncut meteor
ivory basalt
#

๐Ÿ”ฅ

ivory basalt
faint ermine
limber blaze
#

yeah i offered to just write an anomaly detection algorithm that detects these fake clicks and reports them to google

faint ermine
#

!paste

limber blaze
#

so that i don't have to be involved in illegal stuff

ivory basalt
#

hmm that's professional really

faint ermine
limber blaze
#

because i'm 19 not trying to get tried as an adult

#

especially for something i don't benefit from except getting a bonus

ivory basalt
#

well i would do what my boss did asked

rugged root
#

@noble copper You're mic is still really quiet. I know I've said it before, it's just a really huge contrast

limber blaze
#

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

rugged root
#

Just tell him that you're not comfortable writing code like that

limber blaze
#

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

ivory basalt
#

ohh dude if anything comes up then itaon him

rugged root
#

Set your moral line

ivory basalt
#

yeah

rugged root
#

That makes a huge difference, or at least it can

limber blaze
#

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

vivid palm
#

are you the real @ivory basalt

ivory basalt
#

nah

vivid palm
#

fake batman? ๐Ÿ˜ฆ

ivory basalt
#

is my voice audible?

ivory basalt
rugged root
ivory basalt
#

lol ๐Ÿ˜„

vivid palm
#

LOL

ivory basalt
#

@rugged root can you hear my voice?

#

i dont

#

have push to talk on

limber blaze
#

kinda tough to think through this problem

#

anomaly detection works on new clusters

#

but this is more pattern based

ivory basalt
#

what kind of job u are in?

#

like? software dev or?

limber blaze
#

i'm a machine learning engineer/software dev

ivory basalt
#

WOW

#

really WOW

limber blaze
#

i manage all the ML projects we do here

ivory basalt
#

i didn't notify that

#

dude i wanna have a career in ml

#

idk what to do for that

limber blaze
#

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

ivory basalt
#

really?

limber blaze
#

my first job i was being paid literally minimum wage to make NLP chatbots

ivory basalt
#

u didn't go for a college?

limber blaze
#

no i didn't, i'm 19

#

i took courses at stanford when i was in HS

ivory basalt
#

what...!

#

really?

#

online courses?

limber blaze
#

no in person

ivory basalt
#

how did you do that?

limber blaze
#

i applied

#

they do summer programs for a bunch of different fields with the professors

ivory basalt
#

i am not from USA so idk how it's there

limber blaze
#

that's what i did

ivory basalt
#

that's really cool

limber blaze
#

yeah i had a good gpa then lol, my last year of highschool i was struggling with mental health and fucked up

ivory basalt
#

i am sorry to that

limber blaze
#

thank you

ivory basalt
#

i am really into starting ML man i just did started coding like 4 months ago

limber blaze
#

yeah i had a 4.6 freshman, 4.7 sophomore, and then 2.8 junior and tested out of HS for it

ivory basalt
#

ohh that's LOW

limber blaze
#

yeah

#

i just couldn't do my work, everything felt dark and meaningless, i would just sit in bed and cry typically

ivory basalt
#

i feel that dude kind of in that position

limber blaze
#

and my mistake was never talking to anyone about my mental health, i kept it inside which just hurt me more

ivory basalt
#

same

limber blaze
#

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

ivory basalt
#

dude college is like a scam

limber blaze
#

i know everyone told me it is, which makes me feel better about myself

ivory basalt
#

idk but i felt like that

rugged root
#

@versed island Well that's weird

ivory basalt
#

my teachers just forced me to learn something in syllabus

versed island
#

yeah

rugged root
#

Close and reopen the client?

ivory basalt
#

they were sucked at the job

limber blaze
#

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

versed island
#

i am just gonna format my macbook

#

has been several days

rugged root
#

Wait

#

Several days since you've formatted it?

warm axle
#

he don't have any role

rugged root
#

How often do you format

oak dew
eternal bough
versed island
#

lol

rugged root
#

No thanks

versed island
#

he's just tryin to help people from getting manipulated

candid venture
#

@rugged root I NEED SCREENSHAREEEEE

#

REEEEE

#

MY WEBSITE

#

IS THE HOTEST SHIT

#

EVER

rugged root
#

Screenshot it

rugged root
#

Swanky

#

Looks cool

candid venture
#

LOOK AT THIS

#

glows on hover

#

fucking awesome

versed island
#

orange or yellow color on that glowing button has higher conversion rate

#

just normal UX stuff

candid venture
#

what

#

@rugged root reminds me of need for speed Carbon

uncut meteor
candid venture
uncut meteor
#

ssh into my phone

candid venture
#

OH FUCK

uncut meteor
#

ikr

candid venture
#

thats dope af

#

but

uncut meteor
#

running python on it

#

to scrape sensor data

#

1 sec

#

this is the data i can pull

candid venture
#

i use nethunter

#

it got built in ssh

stuck furnace
#

Are you actually David Lynch?

#

Hey hey

#

He famously smokes a lot ๐Ÿ˜„

#

You kind of do actually ๐Ÿ˜„

uncut meteor
stuck furnace
#

Too much information dude ๐Ÿ˜„

#

erm

uncut meteor
lethal ingot
#

That should be scotched

candid venture
#

@rugged root
can u explain about whats going on in Washington

rugged root
lethal ingot
feral willow
#

Any using pytesseract?

lethal ingot
#

Noam Chomsky was right

#

about anarcho-syndicalism that fits to USA

rugged root
#

All I know is that it's disheartening and frustrating

lethal ingot
#

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

tiny seal
lethal ingot
#

Importance

#

rather than fame

#

I'm currently writing a book

#

about human psychology

#

I pointed out 5 principles are stronger than human mind

rugged root
#

That should tell you what you need to know

lethal ingot
#

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

limber blaze
#

mmmm got that speech goin nice

#

encoding those audios

#

mmm

#

making it sound sexy

uncut meteor
#

yike

lethal ingot
#

Calm down Vlad

#

Don't spew your letters

lethal ingot
#

Sure

#

In this world, the strong evil is respected

#

Survival of the fittest

#

This is the rule of international politics

rugged root
#

I mean... you pretty much answered your question in the statement you just made, Pac

lethal ingot
#

Is anyone from South Holland Rotterdam

#

?

#

Or it's the server site ?

#

Max

#

John

#

Tom

limber blaze
#

ssml sucks

#

i am going to make my own

#

where to start

hushed elm
signal thicket
#

how to get permission for use microphone in voice chat?

rugged root
#

That'll tell you what you need to know

tiny seal
uncut meteor
signal thicket
rugged root
#

No worries!

uncut meteor
#

Worry not

hushed elm
candid venture
hushed elm
signal thicket
whole bear
#

aw I still can't talk

hardy cape
#

what is this a tv show or...

whole bear
candid venture
limber blaze
#

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

uncut meteor
#

is a real tweet

#

yike

limber blaze
#

lmao "it was a landslide election"

#

"they stole the election"

candid venture
limber blaze
#

"we need to have law and order, stop rioting ;)"

fiery juniper
#

Damn, he can't except a defeat

limber blaze
#

"we have to have piece, I know they stole the election"

#

peace

#

what was that

#

what was that tweet supposed to do

stuck furnace
#

Hey

candid venture
#

ืœืฆื“ ืฉื™ื—ื•ืช ื”ืชื ื—ื•ืžื™ื ื”ืžื•ืฆื“ืงื•ืช ืขื ืžืฉืคื—ืช ืื”ื•ื‘ื™ื” ืกื ื“ืง, ืžืชื™ ื ื–ื›ื” ืœืฉืžื•ืข ืžืจืืฉ ื”ืžืžืฉืœื” ื•ืžื”ืฉืจ ืœื‘ื™ื˜ื—ื•ืŸ ื”ืคื ื™ื ื”ืชื™ื™ื—ืกื•ืช ืœื ื™ืกื™ื•ืŸ ื”ืคื•ื’ืจื•ื ื”ื–ื” ื‘ืžืจื›ื– ื™ืจื•ืฉืœื™ื? https://t.co/FrsA81U9My

Likes

1774

โ–ถ Play video
limber blaze
#

hey guys be peaceful look at all this inaccurate information i am telling you to get you rivaled up!

stuck furnace
#

Just watching what's going on in America on the BBC...

limber blaze
#

yep it is absurd

#

and the police are doing next to nothing

#

these people should be in handcuffs

stuck furnace
#

This is kind of crazy.... but also entirely predictable ๐Ÿ˜‘

limber blaze
#

yep

fiery juniper
candid venture
limber blaze
#

these trumpers are literally conspiracy theories leaving everyone else with no cognitive dissonance as they have acquired all of it

fiery juniper
#

logic

candid venture
limber blaze
#

people around my house are putting up more trump signs it is absurd

fiery juniper
limber blaze
#

can someone help me better understand the pitcch contour

limber blaze
#

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

stuck furnace
#

Well it certainly changes for some

#

Whoever gets scapegoated...

limber blaze
#

yeah i'm just gonna hop in that

noble copper
#

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

โ–ถ Play video
stuck furnace
#

Pretty much articulating my thoughts Hemlock ๐Ÿ˜„

#

one sec brb

#

Yep ๐Ÿ˜„

#

I've been watching LegalEagles videos on events

rugged root
#

Again, sorry I'm not saying much

#

Hard to be happy go lucky when I'm this angry and broken at the same time

uncut meteor
#

what size are you?

#

โ‚ฌ5

stuck furnace
#

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

amber raptor
#

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

rugged root
#

Good for you

#

Sorry, that was shitty

#

I support people not actively trying to hurt others

stuck furnace
#

Sure @left birch, what's your issue?

left birch
rugged root
#

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

stuck furnace
#

Yo @digital jackal

#

Just taking in the crazy events of the day...

#

Freudian slip ๐Ÿ˜„

#

Hey @lapis linden

rugged root
#

!projects

wise cargoBOT
#

Kindling Projects

The Kindling projects page on Ned Batchelder's website contains a list of projects and ideas programmers can tackle to build their skills and knowledge.

stuck furnace
#

Short-term or long-term project?

stuck furnace
#

Np ๐Ÿ™‚

rugged root
#

I'm heading home

eternal bough
#

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

โ–ถ Play video
stuck furnace
#

Ah Jake is cool

#

When he does tutorials it's really clear and succinct.

winter bough
#

what about heroku?

eternal bough
winter bough
#

you can make alexa skills with python?

#

Hey whats the difference between vs and vs code?

limber blaze
#

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 ๐Ÿ˜ฆ

winter bough
#

whats the question?

limber blaze
#

it's regarding changing the pitch of individual words using SSML

winter bough
#

yea that's not something i know sorry

limber blaze
#

yeahh neither do i

digital jackal
winter bough
#

well lets hope some one finds your question @limber blaze

digital jackal
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

gentle flint
#

d:

limber blaze
#

why aren't the police shooting these trump supporters...

#

this is absurd

gentle flint
#

because that would be a crime

limber blaze
#

they are committing a crime atm

gentle flint
#

You can't fight crime with crime

limber blaze
#

this counts as a terror attack

gentle flint
#

that's called police brutality

#

No, it doesn't

limber blaze
#

they are raiding

gentle flint
#

it counts as a violent riot

limber blaze
#

they have shot people

winter bough
#

this just went from 0 to 100 real fast

limber blaze
gentle flint
#

it counts as a violent riot

#

I know, I've seen it

digital jackal
limber blaze
#

py -m pip install numpy

candid venture
winter bough
#

i think you have to do a pip install in windows terminal

candid venture
gentle flint
#

He's using a venv, guys

#

relax

stuck furnace
#

Isn't Anaconda supposed to be good for this sort of thing on Windows?

candid venture
limber blaze
#

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

stuck furnace
#

You just become a manager @uncut meteor

winter bough
#

you are limited by the number of your monitors

limber blaze
#

yeah i have hella monitors

gentle flint
#

I have 2

limber blaze
#

that's why i'm good

stuck furnace
#

Can I give you a few commands to run?

candid venture
#

@gentle flint
what do u say about my new pfp?

stuck furnace
#

py -m pip list

gentle flint
#

@candid venture very good

#

tho I'd have expected a joint sticking out of the mouth

stuck furnace
#

What's the Windows equivalent of which?

digital jackal
gentle flint
#

I'm allergic to Visual Studio and Visual Studio code

#

I'm highly allergic to Windows

digital jackal
winter bough
#

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

candid venture
#

@rugged root
@gentle flint
do u think lemon and joe and the rest of the streamers will use my SyncChat for streams?

gentle flint
#

doubtful

#

I think they'll stick to youtube

#

Google's servers are better able to handle 4-5k viewers

candid venture
#

hmmm

#

what if we enable youtube relay too then

gentle flint
#

I doubt they'll want to switch

#

YouTube works

#

and is well integrated with many streaming programs such as OBS

eternal bough
#

virtualenv venv
source venv/Scripts/activate

stuck furnace
#

py -m venv venv

gentle flint
#

it's python not py on windows I believe

stuck furnace
#

The arguments to the venv module shouldn't depend on OS

eternal bough
#

source venv/Scripts/activate

stuck furnace
#

If you install python with the installer on Windows, it will install the py launcher.

gentle flint
#

huh

uncut meteor
gentle flint
#

interesting

stuck furnace
#

You need to activate it. Didn't hear if someone already said that.

gentle flint
candid venture
gentle flint
#

I installed with the installer

#

I use python

#

works fine

candid venture
#

prob old version

gentle flint
#

It's 3.9

candid venture
#

or windows didnt take your pc yet

gentle flint
#

old version my ass

candid venture
#

idk lad

stuck furnace
#

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 ๐Ÿ˜„

gentle flint
#

someone just posted this

candid venture
uncut meteor
#

then dont

candid venture
#

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

gentle flint
#

if there are more people with guns than he has bullets

#

that's not exactly going to work, is it

candid venture
#

then just headshots

gentle flint
#

are you advocating murder?

candid venture
#

try to pierce as many heads as possible

candid venture
gentle flint
#

(confirm)

stuck furnace
#

Generally they should de-escalate

gentle flint
#

@candid venture join call

stuck furnace
#

Oh nice @gentle flint

#

I'm using Amethyst, which is similar but for mac

#

Yep, she was event lead before

candid venture
#

aight bois

gentle flint
#

bai boi

candid venture
#

gn @uncut meteor @gentle flint

#

and the rest !

gentle flint
#

layla tov

#

lehitraot

candid venture
mossy kelp
#

my friend made me download that

candid venture
#

haver yakar

stuck furnace
#

Accidentally hit enter

gentle flint
#

ye suuuuure

uncut meteor
#

rooFightEnter

stuck furnace
#

Like attention deficit...

gentle flint
#

hmmm

#

should I get cashews or pistachios

#

or a glass of milk

mossy kelp
#

is there a github source on how to get a discord bot to google something?

#

yeah yeah yeah

#

top 3

#

link and description

stuck furnace
#

Probably, but that's probably also against Google ToS

mossy kelp
#

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

gentle flint
#

post the gibson bot github link

#

Thank you.

mossy kelp
#

maybe it has a different name in the server it's in

#

gimme a min

uncut meteor
#

1

#

2

#

06

mossy kelp
#

oh my

#

i started coding like a week ago

#

all i need to do is find the right stack overflow link

stuck furnace
#

What do you need it for?

mossy kelp
#

i'm an idiot

stuck furnace
#

Would Wolfram Alpha search do instead?

mossy kelp
#

i think it's called google bot...

#

the other server i'm in really screwed me

#

dang still less than 50

#

:1

gentle flint
mossy kelp
#

:|**

gentle flint
#

no

#

do not

#

spam

stuck furnace
#

You should not ๐Ÿ˜„

gentle flint
#

or you will get muted

#

by the bot

#

just warning you

stuck furnace
#

No Griff ๐Ÿ˜„

gentle flint
#

I have watched many travel this path before you

#

is it alef+1

#

Correct.

mossy kelp
#

maybe this isn't my cup of tea

gentle flint
#

well, it does eat people

mossy kelp
#

seems like a pain just to get something that's cool

stuck furnace
gentle flint
#

almost anything will be easier

mossy kelp
#

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

gentle flint
#

then turn him up

stuck furnace
#

Useful when you're working on a large code-base.

uncut meteor
#

!e
print("LOL")

wise cargoBOT
#

@uncut meteor :white_check_mark: Your eval job has completed with return code 0.

LOL
mossy kelp
#

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

gentle flint
stuck furnace
#

You use mypy to check them

mossy kelp
#

dude there's no way i haven't sent 50 messages left

uncut meteor
#

S1mple

gentle flint
#

Python is open-source

mossy kelp
gentle flint
#

Yes it is really

somber heath
#

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.

gentle flint
#

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

somber heath
#

All things being equal, it is slower than some other languages.

gentle flint
#

how would you recommend making it (Python) faster

somber heath
#

Well-written Python can be faster than poorly-written C, for example.

gentle flint
#

hmmm

#

would it be faster?

mossy kelp
#

lmao

gentle flint
#

it's an oppressive question @uncut meteor

#

"Look, he's oppressing me!"

gentle flint
#

how dare you support communism @obtuse nexus

#

free stuff

#

how dare you

#

you should pay for all your software

#

all

#

apple ew

mossy kelp
#
from googlesearch import search
search("Google")
gentle flint
#

also you are literally this guy @obtuse nexus https://www.youtube.com/watch?v=t2c-X8HiBng

mossy kelp
#

@obtuse nexus that's a useless laptop

#

lmao that's gonna get you banned bro

stuck furnace
#

Ahem

Spamming to meet any criteria will get you temporarily or permanently banned from voice, and potentially the community

mossy kelp
#

but that's Confucianism, do you hate that too?

#

honest question

#

because you said you hate communism

gentle flint
#

@obtuse nexus do you find this funny?

stuck furnace
#

@pastel mesa It's a bit of an inconvenience but it's actually really cleaned up the voice channel.

mossy kelp
#

and you don't think that chinese people like people with free speach

gentle flint
#

welcome to "The World According to imposter"

stuck furnace
gentle flint
#

My current state of mind doesn't support typeracer

somber heath
#

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.

mossy kelp
#

mhm

#

in college?

#

i'm a freshman in calc

#

but i learned it 3 years ago

gentle flint
#

you literally joined a server you knew nothing about

uncut meteor
#

not yet

gentle flint
#

and then proceeded to attempt to troll everyone in the voice chat

uncut meteor
#

I meant the chick thing

#

but it works

gentle flint
#

I'm anti-trolls

mossy kelp
#

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

gentle flint
#

Try reconsidering your life goals, if this is where you get your joy from.

#

Why should I?

somber heath
#

It's publicly available information. ๐Ÿ™‚

uncut meteor
#

just block each other

#

๐Ÿฅฑ yawn

stuck furnace
#

5/6ths of the sum of the first 7 squares

somber heath
#

Message history in public rooms is available as a native feature of Discord.

stuck furnace
#

plus a bit more for the bottom.

mossy kelp
#

@stuck furnace nope

gentle flint
#

I'm not sure why you think this is stalking.

mossy kelp
#

4/6th plus the top and bottom

stuck furnace
gentle flint
#

I could make all sorts of inappropriate remarks about that, but that might not be appreciated

uncut meteor
stuck furnace
#

@mossy kelp can you not do it online?

uncut meteor
#

we can't hear you?

#

no

#

you sound mute

gentle flint
#

he's mute with horror

uncut meteor
#

Terror*

gentle flint
#

both

uncut meteor
#

all

gentle flint
#

for one

#

one

#

for all

mossy kelp
#

n(n+1)(2n+1)/6

uncut meteor
somber heath
#

all for 1 and 1 for all. It almost works as Python.

#

List comprehension.

uncut meteor
#

!e

print(all(41) and one(4 all())
#

gg

wise cargoBOT
#

@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
mossy kelp
#

1
11
111
1111
11111
111111
1111111

wise cargoBOT
#

@obtuse nexus :white_check_mark: Your eval job has completed with return code 0.

True
pastel mesa
#

(77 - 66) + (66 - 55) + .... (22 - 11)

uncut meteor
wise cargoBOT
#

@uncut meteor :white_check_mark: Your eval job has completed with return code 0.

all for 1 and 1 for all
stuck furnace
#

Want a programming puzzle @mossy kelp?

uncut meteor
#

if imposter leaves, i leave

mossy kelp
#

@stuck furnace sure

uncut meteor
#

sike

somber heath
#

@uncut meteor I like it, but the print string is a bit of a cheat.

uncut meteor
#

!e
all([4, 1]) and one(4, all)

wise cargoBOT
#

@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
stuck furnace
#

Little puzzle ๐Ÿ˜„

somber heath
#

RecursionError

#

Exception type.

#

You can only go so deep.

stuck furnace
#

Yep

somber heath
#

Then Python gets grumpy.

mossy kelp
#

@stuck furnace you want a problem?

stuck furnace
#

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

mossy kelp
#

@stuck furnace write a code that models the reimann zeta function

stuck furnace
somber heath
#

!e def alpha(): try: alpha() except RecursionError: alpha() alpha()

wise cargoBOT
#

@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

somber heath
#

That's about the closest you're going to get.

stuck furnace
#

Python has the gamma function, which I think is related.

#

math.gamma

#

Anyway gtg sorry

#

Bye everyone ๐Ÿ‘‹

mossy kelp
#

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?

signal raven
#

!e

for i in range(40):
  for _ in range(i):
    print(1, end ="" )
  print("")
  
wise cargoBOT
#

@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

somber heath
#

@wooden hornet ๐Ÿ‘‹

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

high ingot
whole bear
#

hey can someone help on my problem, pls

my problem:
can you tell how to get users name, Birthday, gender using his google account ??

wise glade
#

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?

gentle flint
#

dunno if google accounts has an api

#

and it would probably be authenticated

whole bear
#

no cause in react js you can do that

gentle flint
#

can you show me how?

whole bear
#

ok

gentle flint
#

ping me when you've posted the code

whole bear
#

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

gentle flint
#

ah, let me see

#

firebases googlepopuplogin system

#

could you post a link to that?

whole bear
#

just make firebase project and in auth enable google

gentle flint
#

ah

#

does firebase only do it for the authenticated user?

#

or also for other users?

hearty wave
#

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

gentle flint
#

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

gentle flint
#

yeah, you'll keep that with IP location

#

it's city-precise

#

not street-precise

hearty wave
#

but

#

i live in india

gentle flint
#

so?

hearty wave
#

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

gentle flint
#

yeah, they're next to each other

#

Apparently that's where your internet is going through

hearty wave
#

oh alright

#

thanks

#

but my real question was

gentle flint
hearty wave
gentle flint
#

is that in maharasta?

hearty wave
#

the region and city

#

there blank

hearty wave
gentle flint
#

hmmmm

#

interesting

hearty wave
#

but thats that

gentle flint
#

yeah, just googled it

hearty wave
#

ok?

gentle flint
#

rithad is in maharastra

hearty wave
#

mm - hmm

gentle flint
#

so idk why it shows madhya pradesh

hearty wave
#

yes

#

i understood the prob

#

maybe it is just

#

protected

#

but

#

again

#

my real question was

gentle flint
#

what do you mean with protected?

hearty wave
#

can we find location

gentle flint
hearty wave
#

without ip

gentle flint
#

Oh

#

uh

#

are you using a sim card?

#

otherwise unless your computer has a GPS built in, no, I don't think so

hearty wave
#

ok

hearty wave
gentle flint
#

yeah, then you're kinda stuck with IP

hearty wave
hearty wave
#

thanks

#

i ll try something out

gentle flint
#

gl

dense ibex
#

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?

rugged root
#

Let me double check

#

Sorry, just sat back down

dense ibex
#

No, your all good. Take your time!

#

7-11 coffee is actually pretty good

#

lmao

#

actually

#

ok

rugged root
#

@wise cargo

pure path
#

yayy i eivl is telling me how to delete the builtins list

rugged root
versed island
#

whats the command to establish SSH session with github

wise glade
golden orbit
#

Hey i am unable to speak in vs

wise glade
#

I looked up in Pro Git, it only shows for linux

quasi mesa
#

you need to get voice verified

golden orbit
#

i need to sent 50 chat to activate

#

so i am doing it

#

i just joined

#

i am very new in python

rugged root
#

Like just just joined the server?

#

There's also a 3 days on the server requirement

golden orbit
#

ok

wise glade
golden orbit
#

i wana learn python tinker gui recomend any video lag=eng

quasi mesa
golden orbit
quasi mesa
#

yeah just search it

wise glade
#

if you can vote, you should know little bit about politics

#

I can vote ๐Ÿ˜„

rugged root
#

Same

quasi mesa
# golden orbit is that youtube channel

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

โ–ถ Play video
wise glade
#

if some kid wants career in politics, they might have to study political events their whole lives

fiery juniper
wise glade
#

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**

fiery juniper
quasi mesa
wise glade
#

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

quasi mesa
#

I cant even hear anything.

wise glade
quasi mesa
#

well for 5 seconds I can , then i cant hear anything.
i have to leave and rejoin

wise glade
quasi mesa
wise glade
#

๐Ÿ˜‚ who's gonna segregate indians in an uproar

somber heath
#

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

rugged root
#

That's.... actually amazing

somber heath
#

The Shaggs. A band which may be a candidate for an objectively negative classification.

rugged root
#

Hey Al

stuck furnace
rugged root
#

Oh it's so great

stuck furnace
#

Yeah, it's so well done

rugged root
#

It gets me to a T