#voice-chat-text-0

1 messages Β· Page 185 of 1

unique axle
#

hello guys

#

xd

#

idk how to speak in here and my english speaking isn't very good as well but

somber heath
#

!voice

wise cargoBOT
#
Voice verification

Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

cerulean ridge
#

The towering monument encapsulates the philosophy of Lingga and Yoni. Lingga resembles an alu rice pestle and Yoni resembles a lesung rice mortar, two important traditional Indonesian tools. Lingga and Yoni also symbolize harmony, balance, fertility and eternal life with the lingga phallic symbol, representing masculinity, positive elements, and daytime
https://en.wikipedia.org/wiki/National_Monument_(Indonesia)
@dry jasper @unique axle

The National Monument (Indonesian: Monumen Nasional, abbreviated Monas) is a 132 m (433 ft) obelisk in the centre of Merdeka Square, Central Jakarta. It is the national monument of the Republic of Indonesia, built to commemorate the struggle for Indonesian independence.
Construction began in 1961 under the direction of President Sukarno. Monas w...

dry jasper
fervent grail
#

dude i fixed my microphone

gentle flint
#

@fervent grail divide it by 100

fervent grail
#
import time

def percent (val:int=0, maxval:int=100) :
    x = 0
    recm = maxval
    
    while recm > 100 :
        recm -= 1
        x -= 1
    while recm < 100 :
        recm += 1
        x += 1
    
    return val + x

def getPrecision (text:str, text2:str) -> int :
    cs = 0
    incs = 0
    d = 0
    
    for i in text :
        try :
            if i == text2[d] :
                cs += 1
            else :
                incs += 1
        except IndexError :
            if len (text) > len (text2) :
                incs += len (text[d:])
            else :
                incs += len (text2[d:])
    
    return percent (cs - incs, cs + incs) if percent (cs - incs, cs + incs) > -1 else 0

def wpm () :
    con = input ("Add Target Text : ")
    
    if con == "" :
        start_time = time.time ()
    
        x = input ("> ")
    
        end_time = time.time ()
        result = (len (x) / 5) / ((end_time - start_time) / 60)
    
        print (f"Your typing speed is {int (result)}")
    else :
        start_time = time.time ()
    
        x = input ("> ")
    
        end_time = time.time ()
        result = (len (x) / 5) / ((end_time - start_time) / 60)
    
        print (f"Your typing speed is {int (result)}")
        print (f"Percent of correct letters is {getPrecision (x, con)}")
        
wpm ()
#

this is my program

gentle flint
#

if you have 10 correct words out of 50

#

your ratio of correct words is 10/50

#

which is 0.2

#

to convert from a decimal ratio to a percentage number you multiply by 100

#

so 0.2 x 100 is 20%

#

do you listen to what I say in vc at all?

#

for incorrect words subtract correct words from total words

fervent grail
#

dude thanks, But i use weird way
@gentle flint

import time

def percent(val: int = 0, maxval: int = 100):
    return int (((maxval / maxval) - (val / maxval) * 100) - ((maxval / maxval) - (val / maxval) * 100)- ((maxval / maxval) - (val / maxval) * 100) + 1)

def getPrecision(text: str, text2: str) -> int:
    cs = 0
    incs = 0
    d = 0

    for i in text:
        try:
            if i == text2[d]:
                cs += 1
            else:
                incs += 1
        except IndexError:
            if len(text) > len(text2):
                incs += len(text[d:])
            else:
                incs += len(text2[d:])

    return percent(len (text), len(text2))


def wpm():
    con = input("Add Target Text : ")

    if con == "":
        start_time = time.time()

        x = input("> ")

        end_time = time.time()
        result = (len(x) / 5) / ((end_time - start_time) / 60)

        print(f"Your typing speed is {int (result)}")
    else:
        start_time = time.time()

        x = input("> ")

        end_time = time.time()
        result = (len(x) / 5) / ((end_time - start_time) / 60)

        print(f"Your typing speed is {int (result)}")
        print(f"Percent of correct letters is {getPrecision (x, con)}")

wpm()
#

πŸ™‚

#

But i have new problem now 😭

fervent grail
#

dude i fixed, No problems

#

!user Bogmil

wise cargoBOT
#

You may not use this command on users other than yourself.

fervent grail
#

Everyone need to run this program to test it !!! Its cool

import time
import colorama

colorama.just_fix_windows_console ()

def percent(val: int = 0, maxval: int = 100):
    return int (((maxval / maxval) - (val / maxval) * 100) - ((maxval / maxval) - (val / maxval) * 100)- ((maxval / maxval) - (val / maxval) * 100) + 1)

def getPrecision(text: str, text2: str) -> int:
    cs = 0
    incs = 0
    d = 0

    if len (text) > len (text2) or len (text2) == len (text) :
        for i in text:
            try:
                if i == text2[d]:
                    cs += 1
                else:
                    incs += 1
            except IndexError:
                incs += 1
            d += 1
    else :
        for i in text2:
            try:
                if i == text[d]:
                    cs += 1
                else:
                    incs += 1
            except IndexError:
                incs += 1
            d += 1
    
    if cs > incs or cs == incs :
        return percent(cs - incs, cs + incs)
    elif cs < incs :
        return percent(cs - cs, cs + incs)

def wpm():
    con = input("Add Target Text : ")

    if con == "":
        start_time = time.time()

        x = input(f"{colorama.Fore.BLUE}>{colorama.Fore.RESET} ")

        end_time = time.time()
        result = (len(x) / 5) / ((end_time - start_time) / 60)

        print(f"Your typing speed is {int (result)}")
    else:
        start_time = time.time()

        x = input(f"{colorama.Fore.BLUE}>{colorama.Fore.RESET} ")

        end_time = time.time()
        result = (len(x) / 5) / ((end_time - start_time) / 60)

        print(f"Your typing speed is {int (result)}")
        print(f"Percent of correct letters is {getPrecision (x, con)}%")

wpm()
#

This program checks your correct words percent and returns your typing speed as wpm

#

if program has any problems say it to me

#

before running this, Install colorama package from pypi

whole bear
#

hey can somone give me the pastebin for the server?

fervent grail
#

for what ?

whole bear
#

where we paste code for people to view on the server

fervent grail
#

use this
to start use multiply by 3 and type python to close use multiply by 3

#

*`

#

i mean this symbol -> `

#

example python "python
print ("Hello, World")```"

#

Hey

#

Why this output

#

i can say its just like markdown files

wise cargoBOT
#
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.pythondiscord.com/

After pasting your code, save it by clicking the Paste! button in the bottom left, or by pressing CTRL + S. After doing that, you will be navigated to the new paste's page. Copy the URL and post it here so others can see it.

fervent grail
vocal basin
rotund coyote
#

hi

wise loom
#

@whole bear how many medium have you done on leetcode?

rugged tundra
#

I am also on LeetCode grind...

#

What language does he use?

#

For technicals?

#

I reverted to Python for technicals.

wise loom
#

@wind raptor can you ask him how many medium he's done on leetcode?

#

@whole bear ask them to reschedule. 2 weeks is not enough.

#

being brutally honest

rugged tundra
#

Yeah, wish I could grind out more problems.

#

I would be willing to do a LeetCode-Marathon lol

#

Should be separate yeah

#

Need competition or something

#

Someone who solves a problem for eveytime you solve a problem

#

@whole bear There will be a list of problems for that company, just make sure to focus on that list, work through the list as many times as possible

whole bear
#

Yea

#

Apparently Google is very graph focused

rugged tundra
whole bear
#

Y

rugged tundra
#

what was the question?

#

Not yet

#

I went from a startup in a non-technical role to a developer internship

#

Then they gave me a full-time role

#

I look at it as throwing many fishing lines

#

Resume has a success rate out of 100

#

Then out of success rate from there, what is Technical Interview success rate out of 100

#

When is the interview?

#

There is less than 20 applicants?

#

True

#

Resumes only get picked up if they have enough keywords

#

Yeah, probably would try to do a mock interview every couple of days, then between the mock interviews grind problems

#

Yeah, he would be ideal

#

Basically want to make sure you are verbally describing the solution before writing the code.

And a mock interview will help to identify that.

#

Yeah, would try to get as many problems under the belt.

#

Probably filter for LeetCode Easy, then Medium, then Hard.

From the Google list.

#

What type of role was that?

#

Not sure why they asked them so many graph problems.

#

Standup meeting, have a good one, will follow up

rugged root
#

I'll be on in a bit

#

Got lots of stuff on my plate

rugged tundra
#

@somber heath @rugged root

rugged root
rugged tundra
rugged root
somber heath
spark wolf
rugged root
#

What do you mean?

spark wolf
#

Learn

rugged root
#

Oh that makes more sense. I think there's some resources pinned in the #discord-bots channel.

rugged root
somber heath
#

Right?

scarlet halo
#

password generator in scratch

rugged root
#

I love the cat head on it

scarlet halo
#

yeah me too

rugged root
#

Huh

#

Scratch is actually way more in depth than I've given it credit for

scarlet halo
#

yeah

#

like ive seen people do ray tracing on it

rugged root
#

What does it compile to? Or is it just interpreted

scarlet halo
#

might be javascript or something

somber heath
scarlet halo
#

not sure tho

rugged root
scarlet halo
#

holy carpet

#

i just thought of something

#

a random password generator

#

IN MINECRAFT

rugged root
#

@whole bear Your mic is stuck open

scarlet halo
#

clingy is playing minecraft

#

on the topic of mc

whole bear
#

hi

scarlet halo
#

hey

whole bear
scarlet halo
#

that is so true

whole bear
#

@whole bear say a continuous sentence

scarlet halo
#

its magnificent

#

something happened

rugged root
molten pewter
#

We were having a discussion about if chopping wood makes you more attractive. I would argue it does.

molten pewter
#

Bremelanotide (Vyleesi)

#

Flibanserin (Addyi),

coarse remnant
#

hello everyone im new to python

rugged root
#

Welcome! How're you enjoying it so far

coarse remnant
#

its pretty good just new to the language was thinking if i should get a bootcamp or just selflearn

somber heath
#

The right choice is the one you pick.

#

So long as you feel like, every now and then, you learn something.

rugged root
#

@lucid jolt What's got you stuck on the JWT stuff?

lucid jolt
#

i want to figure out how to setup it and how precisely it works

rugged root
#

With what backend?

lucid jolt
#

any. atm i did with spring boot

molten pewter
#

Off to fell trees πŸ‘‹

rugged root
#

See ya manly man

alpine path
rugged root
vocal estuary
coarse remnant
#

how long would it take to learn python

vocal estuary
#

how can i pick data from any website help

rugged root
#

It depends, there really isn't a good rule of thumb. Also depends on how much you need to or want to learn.

#

What kinds of resources are you using currently?

coarse remnant
#

well id like to be good enough to get a remote job

vocal estuary
coarse remnant
vocal estuary
#

still**

coarse remnant
#

for jobs java is better than python? or they are used for different jobs

rugged root
#

Python is good to have in your pocket. It's useful, and there are becoming more jobs

#

But I still think it's worth getting a couple languages under your belt. Also depends on what you want to get into

#

There's tons of potential remote work jobs

coarse remnant
#

oh now i see thanks @rugged root

rugged root
#

Having said that, if you're fresh to programming in general, Python isn't a bad way to go

#

@woven ember @willow copper Yo

woven ember
#

Can’t hear anything

#

U guys talking?

rugged root
#

Weird

#

Yeah

#

But you also just DC'd

woven ember
#

Im@on iphone

rugged root
#

Ah gotcha gotcha

woven ember
#

Idk why I can’t hear

#

Idk how to fix I searched google too

#

😒

rugged root
#

Uninstall reinstall?

woven ember
#

Did that

rugged root
#

Or maybe it's blocking the permissions that it needs

woven ember
#

I enabled the perms

rugged root
#

Hmm

woven ember
#

Still can’t hear

#

Idk what to do

#

None of you guys are lighting up green

#

Aha I heard a fraction of a second

#

Idk who it was tho

#

Got audio for a bit

#

Well idk πŸ€·β€β™‚οΈ

rugged root
#

Going to go with demons

#

It's the most logical answer

sharp idol
#

what's going on here

flint hill
somber heath
#

!code

wise cargoBOT
#
Formatting code on discord

Here's how to format Python code on Discord:

```py
print('Hello world!')
```

These are backticks, not quotes. Check this out if you can't find the backtick key.

For long code samples, you can use our pastebin.

unique axle
#

@gentle flint

gentle flint
last wraith
#

Eating more is the easiest way to gain weight. You're not physical anomalies of the universe, if you consume more calories than you expend you will gain weight.

#

The only thing that matters is Calories in, Calories Out

rugged root
somber heath
#

Keauxdgiaam.

boreal copper
#

hey guys can someone explain breifly what the pointers are ?

#

i am listening

#

okay so can you manipulate by using pointers or is it not possible in python ?

rugged root
#

That's the closest you'd get

boreal copper
#

okay interesting

boreal copper
rugged root
#

Beyond that, you'd be doing it in C libraries that you make to be wrapped in Python

#

Numpy being a good example of that

boreal copper
#

okay i consider myself as a beginner ofc so i heared it somewhere and i was curious about it

#

thanks boys

rugged root
#

Any time

#

Yeah this is getting into the weeds

#

You don't really need to mess with this stuff

boreal copper
#

any advices to me ?

#

to get to the next level and develop myself ?

#

i learned the basics

boreal copper
#

and they told me to build a project

#

yeah

#

i have a clue on that

rugged root
#

I'd say firming up your knowledge on classes

boreal copper
#

okay i wanted to do an automation project by the knowledge that i have

#

i guess with my info i can do that

#

okay thannks alot mate

rugged root
#

Happy to help. If you need help or clarification don't hesitate to ask

echo garden
#

i wond dpgk would fix my issue with this stupid install of unreal

#

im stuck

wise loom
#

I know you're helping him but.. everyone needs help

#

Ahaha !

#

Awesome

somber heath
molten pewter
#

Huey Lewis & The News β€œThe Power Of Love” Official Video, featuring β€œDoc” Brown (Christopher Lloyd) from the film Back To The Future. Remastered in HD!

Watch more Huey Lewis & The News official videos: https://youtube.com/watch?v=NUjIg10axqQ&list=PLg3qNG1ugs37K_L8-yLyCZZpgwl9AvkUd

Follow Huey Lewis & The News
Facebook https://facebook.com/hue...

β–Ά Play video
somber heath
#

The crested pigeon (Ocyphaps lophotes) is a bird found widely throughout mainland Australia except for the far northern tropical areas. Only two Australian pigeon species possess an erect crest, the crested pigeon and the spinifex pigeon. The crested pigeon is the larger of the two species. The crested pigeon is sometimes referred to as a topkn...

#

@oblique canyon πŸ‘‹

oblique canyon
#

Hiii

echo garden
#

hey

#

late

#

so i can't talk @somber heath \

oblique canyon
#

Why cant I speak in this voice chat??

echo garden
#

right

#

correct

somber heath
#

!voice

wise cargoBOT
#
Voice verification

Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

echo garden
#

Go to https://brilliant.org/godago to get a 30-day free trial + the first 200 people will get 20% off their annual subscription.
AI & ChatGPT for Everyone CoRise course https://bit.ly/44q14Si use "godago" for 10% off.

⬇️Resources mentioned in this video⬇️
⭐️Synthminds, AI Agency: https://bit.ly/3PhLd3X
⭐️Synaptic Labs: https://bit.ly/45qpsnE...

β–Ά Play video
#

You/re in a good mood @somber heath

#

or at least it seems that

#

way

#

I never knew you wore clothes

#

sounds like mental issue

#

lol

#

I thought you hair took care of that

#

lol im kidding man

#

im glad its getting cooler

#

man i love the cold

#

just don't like it without warm clothes

#

lol

#

right right

#

i know

#

My phone comes tomorrow WOOT

#

been waiting to get one

#

now my probation officer wont bitch

#

i remember

#

they were giving them away on Nicelodeon

#

and then it got better

#

no, they were using the acutal phones

#

to call the winners

#

yeah

#

a little

#

now were talking about impeaching biden

#

god help us

#

@somber heath man this situation is getting intense over here, talk of impeaching biden scares me because his power could over throw us.. but then again 48 million on top of the 30 million who owned guns just became new gun owners

#

go figure.

#

hard to believe that 78 million of us have guns now.

#

i mean shit, i have access to a gun right this second, i am not allowed to have one being a felony probationer but its not mine, the point is i have access and im not killing anyone.

whole bear
#

hey

#

boredom lol

#

experiencing it from memory or through the window

cerulean ridge
#

@desert vector wage slave

whole bear
#

i have to go cya later

crystal blade
#

what are you guys discussing about ? @somber heath ?

#

HEllo

#

Okayy

honest shadow
#

@somber heath could you suggest me good beginner personal projects for data scientist field?

#

okay

echo garden
#

alright @somber heath im out, its late.. later

crystal blade
honest shadow
#

you have experience?

crystal blade
#

Nope , I am Beginner who has done few projects related Feature engineering and Hypothesis Testing

honest shadow
#

ok thats nice

#

@somber heath what is the motive of this voice chat everyday?

cerulean ridge
honest shadow
#

cool cool

cerulean ridge
crystal blade
cerulean ridge
#

no, i mean, where are you transitioning from?

#

like, what were u doing before?

honest shadow
#

gotcha

crystal blade
crystal blade
crystal blade
cerulean ridge
#

usually it is best if you apply your data science on what you already know a lot. It would really shows that you can apply how to data science

crystal blade
#

my hypothesis testing project did had the problem where I had to find the factors influencing demand

#

I think I did what you just said

#

I think from what I understood till now is especially for Data analyst is : You have to make sense out of the Data @cerulean ridge

honest shadow
#

@somber heath what were the challenges you faced when you first started programming as beginner?

crystal blade
#

like investigate the data

#

and with data science you're kinda are expected to predict things

honest shadow
#

thats cool OpalMist i too want to be self taught programmer but i always get anxiety when i get any errorπŸ₯²

cerulean ridge
honest shadow
#

same here

#

i feel same

crystal blade
#

btw @somber heath you said people don't use github anymore , so any other site where I should showcase my project ?

cerulean ridge
#

btw @honest shadow ,do what charles did lol for your project

honest shadow
#

and end up in anxiety

thin fox
#

hi

honest shadow
#

thanks for suggestion @somber heath

#

exactly your right

somber heath
#

@gaunt terrace πŸ‘‹

thin fox
#

opalmist's solution can solve climate change too

gaunt terrace
#

Hi do i have to verify to speak or something?

somber heath
#

!voice

wise cargoBOT
#
Voice verification

Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

gaunt terrace
#

Dang im sad. Im doing physics rn can only listen.

#

I wanna fall from a high place

#

ouch

#

so if I send 50 messages over the nexzt 5 min will it let me get voice perms

#

got it

gaunt terrace
#

Physics 1: contant acceleration formulas unit conversions etc.

#

yep

#

whats everyone doing

#

peace

fervent grail
#

wait i check my microphone

last wraith
#

Hello Opal, I don't have microphone rights

somber heath
#

@last wraith πŸ‘‹

#

!voice

wise cargoBOT
#
Voice verification

Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

last wraith
#

Thank you

somber heath
#

@whole bear πŸ‘‹

last wraith
#

I like to listen in on people's conversations, I'm also making a chess variant application. After a Knight or Bishop move, the piece switches to the other

#

It's best to keep it casual I agree, it is just a game after all

#

Certainly in the chess world, it attracts some interesting folk

whole bear
#

Greetings!

last wraith
#

Queen's Gambit gave a lot of people the impetus to begin playing as well

#

I'm sure it's got character πŸ˜‰

#

I'll return then for some shenanigans. It was fun yesterday

#

There was a lot of frustration around datetime objects and numpy I believe

#

I didn't speak so no worries

scarlet halo
#

@somber heath im bored and at school what do i do

somber heath
scarlet halo
#

no i have a break

somber heath
#

Admire small things in nature.

scarlet halo
#

im inside

somber heath
#

Grains of dirt. Stones. Leaves. Twigs. That sort of thing.

scarlet halo
#

7 minutes left tell me something to code

somber heath
#

What can you code?

scarlet halo
#

i can code code

somber heath
#

Do you know about str.maketrans and str.translate?

scarlet halo
#

no

somber heath
#

There are two different argument forms to str.maketrans.

scarlet halo
#

cool

somber heath
#

Learn about what str.translate and str.maketrans do and how you can use them.

scarlet halo
#

ok

#

latr

#

im having german lecture soon

#

seems like some ascii replacement stuff

somber heath
#

Character replacement, yes.

devout bloom
#

!python

#

@somber heath
how do run the python code

#

I forgot

#

!python

print("nikhil bhai")
somber heath
#

@viral spruce πŸ‘‹

#

!e

wise cargoBOT
#
Missing required argument

code

#
Command Help

!eval [python_version] <code, ...>
Can also use: e

Run Python code and get the results.

This command supports multiple lines of code, including formatted code blocks. Code can be re-evaluated by editing the original message within 10 seconds and clicking the reaction that subsequently appears.

The starting working directory /home, is a writeable temporary file system. Files created, excluding names with leading underscores, will be uploaded in the response.

If multiple codeblocks are in a message, all of them will be joined and evaluated, ignoring the text outside them.

Currently only 3.11 version is supported.

We've done our best to make this sandboxed, but do let us know if you manage to find an issue with it!

viral spruce
somber heath
#

!voice

wise cargoBOT
#
Voice verification

Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

viral spruce
#

wait

#

what

#

the

devout bloom
#

!code

print('nigabjsdv')
wise cargoBOT
#
Formatting code on discord

Here's how to format Python code on Discord:

```py
print('Hello world!')
```

These are backticks, not quotes. Check this out if you can't find the backtick key.

For long code samples, you can use our pastebin.

devout bloom
#

!code

print('nigabjsdv')
viral spruce
#

@somber heath okay so i have to wait here till my 3 min block something is done

somber heath
devout bloom
#

!e

print('Hello, world')
wise cargoBOT
#

@devout bloom :white_check_mark: Your 3.11 eval job has completed with return code 0.

Hello, world
wise loom
#

oh interesting

#

what are you guys doing here

devout bloom
#

thank my man @somber heath

wise loom
#

lol

viral spruce
#

i want to talk so bad

devout bloom
#

!e

print('nikhil')
wise cargoBOT
#

@devout bloom :white_check_mark: Your 3.11 eval job has completed with return code 0.

nikhil
somber heath
#

@whole bear πŸ‘‹

viral spruce
#

i guess im too early member

#

i will be back im hungry lol

somber heath
#

!voice @strange summit πŸ‘‹

wise cargoBOT
#
Voice verification

Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

rugged tundra
#

@somber heath @wise loom

somber heath
#

@whole bear πŸ‘‹

whole bear
#

still i can't speak

#

😦

rugged tundra
#

These are invasive where I live, I killed like 10-20 yesterday

whole bear
rugged tundra
#

!voice

wise cargoBOT
#
Voice verification

Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

rugged tundra
#

They have these vacuums that they suck them up with

whole bear
#

😦

rugged tundra
#

Lantern Flys

whole bear
#

I need to send messages

#

a lot

rugged tundra
#

In October they lay their eggs on the trees, they look like bumps

#

So early Fall they lay eggs on the trees.

Best time to scrape the eggs.

wise loom
#

horrid b**** ?

somber heath
wise loom
#

right

somber heath
#

@primal arch πŸ‘‹

primal arch
#

hi

#

hows it going

wise loom
#

yo dolkindas

primal arch
#

hi πŸ‘‹

rugged tundra
#

I get to do weekend release @wise loom

#

@pliant girder hi

pliant girder
#

Hello @rugged tundra

wise loom
# rugged tundra I get to do weekend release <@264657660190654464>

Lyrics below. The bane of the engineer's existence...ON-CALL!

https://stdoutrap.com/

Start off the week all hyped
Feeling real bright and optimistic
Like I’ma make everything right
Now that I’m here, yeah we’re gonna just fix s***
Couple dead jobs last night
Take a little peek like what the f*** is this
Retry two, one of em dies
Gotta debug, ...

β–Ά Play video
rugged tundra
#

....they are bringing in a new dev ops person....instead of giving my manager's job to me...

pliant girder
#

can someone pls help me out..

rugged tundra
#

....I mean this new person does have experience building pipelines....it would take me time to research how to build on to the existing pipeline....I need a raise

pliant girder
#

hello, is anyone here able to help me out with Flask.. i'm having a simple and infamous problem in a flask project...
i'll appreciate if i can jump on a Voice call real quick and just share my screen just to point out this issue... i have large sectiion of code.. but jst a particular ish i'll like to point out.. Thanks

rugged tundra
#

Let me ask around

pliant girder
#

anyone else here.. who can help me with flask?

rugged tundra
wise loom
pliant girder
wise loom
rugged tundra
#

To get stream perms you need a mod or admin

#

But there are none in VC now

rugged tundra
pliant girder
#

i'll reproduce my codes here.

#

Main.py

from flask import Flask, render_template
import requests


app = Flask(__name__)
endpoint = "https://api.npoint.io/d0935fc8e15e3ff2c2ad"
response = requests.get(endpoint)
blog_data = response.json()


@app.route('/')
def home():
    global blog_data
    return render_template("index.html", posts=blog_data)


@app.route('/about')
def about():
    return render_template("about.html")


@app.route('/contact')
def contact():
    return render_template("contact.html")


@app.route('/post/<int:index>')
def post(index):
    global blog_data
    requested_post = None
    for blog_post in blog_data:
        if blog_post['id'] == index:
            requested_post = blog_post
    return render_template("post.html", content=requested_post)


if __name__ == "__main__":
    app.run(debug=True)
rugged tundra
#

github: https://github.com/krishnaik06/Flask-Web-Framework
We at iNeuron are happy to announce multiple series of courses. Finally we are covering Big Data,
Cloud,AWS,AIops and MLops. Check out the syllabus below.

30 Days Data Science Interview preparation - https://rb.gy/q1c58g
Big Data Master-https://rb.gy/xg1ob7
Business analytics-https://...

β–Ά Play video
#

In this episode of the "Learning Flask" series, you'll learn how to create and work with dynamic URL's in Flask.

Read the full text based version here - https://pythonise.com/feed/flask/generating-dynamic-urls-with-flask

Enjoying this type of content? Head over to my website at https://pythonise.com for full length text based tutorials, course...

β–Ά Play video
#

What part of code is not functioning how you want?

#

Also, you should review both of the above videos.

pliant girder
#
<div class="container px-4 px-lg-5">
            <div class="row gx-4 gx-lg-5 justify-content-center">
                <div class="col-md-10 col-lg-8 col-xl-7">
                    <!-- Post preview-->
                    {% for post in posts: %}
                    <div class="post-preview">
                        <a href="{{ url_for('post', index=post['id']) }}">
                            <h2 class="post-title">{{ post['title'] }}</h2>
                            <h3 class="post-subtitle">{{ post['subtitle'] }}</h3>
                        </a>
                        <p class="post-meta">
                            Posted by
                            <a href="#!">{{ post['author'] }}</a>
                            {{ post['date'] }}
                        </p>

                        {% endfor %}
                    </div>
#
@app.route('/post/<int:index>')
def post(index):
    global blog_data
    requested_post = None
    for blog_post in blog_data:
        if blog_post['id'] == index:
            requested_post = blog_post
    return render_template("post.html", content=requested_post)

This part

rugged tundra
#

Can you describe what you want to happen?

pliant girder
#

i'm getting an error for the index... i am trying to dynamically load up the post page from an endpoint

#

so basically i have different html files... like the index.html , post.html, etc

#

did you get this or i can explain more?

rugged tundra
#

Hi @rugged root

#

Where is the JSON ? @pliant girder

#

What's RTC hell?

pliant girder
wise loom
#

!verify

wise cargoBOT
#
Voice verification

Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

rugged tundra
pliant girder
sour lichen
#

So many strings not put in correctly

rugged tundra
pliant girder
#

same issues..

werkzeug.routing.exceptions.BuildError: Could not build url for endpoint 'post'. Did you forget to specify values ['index']?

rugged tundra
pliant girder
rugged tundra
#

@pliant girder make sure your code reflects each of these, then run

<a href="{{ url_for('post', index=post['id']) }}">

@app.route('/post/int:id')
def post(id):
global blog_data
requested_post = None
for blog_post in blog_data:
if blog_post['id'] == id:
requested_post = blog_post
return render_template("post.html", content=requested_post)

pliant girder
#
werkzeug.routing.exceptions.BuildError: Could not build url for endpoint 'post'. Did you forget to specify values ['id']?```
@rugged tundra
wise loom
#

for documents

rugged root
#

Oooo... scanners

gentle flint
#

very quiet today

rugged root
#

"Singel and ready to mingel"

gentle flint
#

lol I should add that

rugged root
#

That's just instantly what I thought when I saw it

uncut meteor
wise loom
#

@dapper minnow you a chemist?

amber raptor
uncut meteor
#

its shit

#

just use github 😩

amber raptor
#

Eh, it’s handling of users is better

rugged root
#

Teddy Ruxpin is out for blood

#

Wait how do you spell it

echo garden
#

This is a slow motion capture of alien beings and other paranormal spectral "ghost" on video personally recorded by me.

My particular situation is unique. Although I've dealt with this phenomenon for years, I've only recently acquired knowledge of the cause of my misunderstood existence.

The original video is 20 mins long shortened to specify ...

β–Ά Play video
uncut meteor
echo garden
#

eh..

#

bows head< yea

#

ive been reluctant to post the full 20 min video..

rugged root
#

Sorry, what does this have to do with anything?

heady rock
#

I think we're also planning on making semiconductors

rugged root
#

Oh right yeah

#

The national security push for it

#

Not sure how long it'll take to get the infrastructure up and going, though

#

We've got a lot to live up to

heady rock
#

Yea, it's because of the complicated relationship between taiwan and china

#

they want to make sure we still have a supply in case of a war

somber heath
#

If the leader of an electronic instrument orchestra is missing a limb, is he a semiconductor?

heady rock
#

its was Nikita Khrushchev, who banged his shoe on a table

rugged root
#

Ah thank you

#

I knew it was a thing, I just couldn't remember

heady rock
#

oh sorry

#

one of my nieghbors is cutting his lawn

rugged root
#

Oh no worries

heady rock
#

This is the only thing that I was able to find

"
Are the days of kids sneaking into 18-rated films really over? Digital proof-of-age app being used in UK cinemas to check children are old enough could just lead to more 'cheating', expert warns
"

dry jasper
heady rock
#

What are thoseeeeee?

dry jasper
heady rock
dry jasper
#

we need a more depressed scene

rugged root
#

I can provide

heady rock
#

seal feet

dry jasper
rugged root
dry jasper
somber heath
#

Fridge drifting.

dry jasper
#

volkswagen fox

rugged tundra
#

If you remove the back seats, you will get better gas mileage.

dry jasper
#

A little information before you read the info:

The Lied der Deutschen is not forbidden, neither the first nor any other verse of it!!! ItΒ΄s a myth many people believe in. The part:

"Deutschland ΓΌber alles" doesnΒ΄t mean that Germany stands above other nations, you have to see it in the context of the time in 1841.

Germany wasnΒ΄t an united nat...

β–Ά Play video
dry jasper
somber heath
#

Ways to not get caught in avelanches: Don't go where the avelanches are.

quasi sand
#

@somber heath genius idea

amber raptor
#

I've found Apple Tags via Bluetooth, that's not hard. It's figuring out what Apple Tags are associated with who.

somber heath
quasi sand
quasi sand
#

airtag are a kind of becon

amber raptor
#

How Airtags ELI5: They broadcast bluetooth, iPhones pick up the bluetooth, add location information, send it to Apple, the owners can see it, everyone else just knows it's nearby.

quasi sand
amber raptor
#

like it's buried inside iPhone setting to prevent it from doing that

rugged root
quasi sand
amber raptor
rugged root
quasi sand
amber raptor
# quasi sand Putin also skipping G20

I had debate with someone over BRICS and my point about BRICS was these are a bunch of countries that really don't want to cooperate and this twitter is like "See, told you."

quasi sand
#

i actually live in New Delhi and i know where biden is staying😏

amber raptor
#

Congrats? It's not really secret I'm sure

quasi sand
quasi sand
whole bear
rugged root
#

@unique axle It's an attempt at a currency, similar to the EU's Euro, but for a smaller subset of places. It's meant to try to displace the USD as the global currency

amber raptor
#

that was my point, you need India/China to be on much better terms and that doesn't appear to be happening any time soon

rugged root
#

If memory serves, the name is based on the original countries trying to start the initiative. Brazil, Russia, India, China, Saudi Arabia

whole bear
#

Just listening

quasi sand
rugged root
#

Sure, but at the same time, I'm not sure if those 5 are the ones we should give that decision to

amber raptor
#

It doesn't matter, EU/US are too close and GDP of those countries will govern the currency decisions

rugged root
#

Yarp

amber raptor
rugged root
#

Aww, Piggly

#

Oh wait that was Piggly 2

amber raptor
#

have they shown Pigley in any modern seasons

rugged root
#

Not sure, I'm not up to date

quasi sand
#

we went from airtags to Geopolitics

dry jasper
molten pewter
fervent grail
dry jasper
#

@flint hill

thin fox
#

bestie is back?

gentle flint
thin fox
#

true

#

I concur

gentle flint
thin fox
#

I found this on google - Iran is the motherland of saffron and produces more than 90% of the world's saffron each year.

thin fox
crystal blade
#

Guys is it effective for a resume to be just 1 page ; what do y'all think ?

gentle flint
#
echo garden
#

IF ANYONE out there has a little time, this is personal friend of mine, looking for a vote, its easy you can have Facebook to vote for him, He's trying to win a voting contest For a horror movie, he gets to be in it when and if he wins.. I ask that you please take the time to vote for him, he's currently 2nd place by now, and any vote would help.

#

hey im talking

#

yeah

whole bear
#

@rugged root

rugged root
#

@whole bear Sup

whole bear
rugged root
#

@formal meteor Yo

formal meteor
#

does linux save u money on ram?

rugged root
#

Possibly, but if you're doing it for that then you're really tightening your belt

#

@crude sky Catch you later

crude sky
rugged root
#

Oh fun fun

crude sky
#

@rugged root see you. the audio is lagging for me

rugged root
#

Gotcha gotcha. Catch you next time

proper grove
wise loom
#

@proper grove dude you talk sooo much, soooo much

#

@proper grove what are you doing

wise loom
#

prolly already old

wise loom
rugged root
#

Ooooo

#

I'll have to look through that, seems neat

knotty turtle
#

oh @whole bear @whole bear i just noticed this chat hi how are yall

echo garden
long iron
#

mr beast leave my youtube

whole bear
#

nah

somber heath
#

!e ```py
class MyClass:
def init(self):
self._hash = -1

def __hash__(self):
    self._hash += 1
    return self._hash

obj = MyClass()

my_set = {obj for _ in range(10)}
print(my_set)```

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

{<__main__.MyClass object at 0x7f85bd4a6610>, <__main__.MyClass object at 0x7f85bd4a6610>, <__main__.MyClass object at 0x7f85bd4a6610>, <__main__.MyClass object at 0x7f85bd4a6610>, <__main__.MyClass object at 0x7f85bd4a6610>, <__main__.MyClass object at 0x7f85bd4a6610>, <__main__.MyClass object at 0x7f85bd4a6610>, <__main__.MyClass object at 0x7f85bd4a6610>, <__main__.MyClass object at 0x7f85bd4a6610>, <__main__.MyClass object at 0x7f85bd4a6610>}
uncut meteor
#

!e

class MyClass:
    def __init__(self):
        self._hash = -1

    def __hash__(self):
        self._hash += 1
        return self._hash

obj = MyClass()

my_set = {obj for _ in range(10)}
print(my_set)


print(obj in my_set)
wise cargoBOT
#

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

001 | {<__main__.MyClass object at 0x7f4f6270e650>, <__main__.MyClass object at 0x7f4f6270e650>, <__main__.MyClass object at 0x7f4f6270e650>, <__main__.MyClass object at 0x7f4f6270e650>, <__main__.MyClass object at 0x7f4f6270e650>, <__main__.MyClass object at 0x7f4f6270e650>, <__main__.MyClass object at 0x7f4f6270e650>, <__main__.MyClass object at 0x7f4f6270e650>, <__main__.MyClass object at 0x7f4f6270e650>, <__main__.MyClass object at 0x7f4f6270e650>}
002 | False
somber heath
#

@runic jewel πŸ‘‹

uncut meteor
#

!e

print(hash(1))
wise cargoBOT
#

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

1
runic jewel
uncut meteor
#

!e

class MyClass:
    def __hash__(self):
        return 1

obj = MyClass()

my_set = {obj}
print(my_set)


print(1 in my_set)
wise cargoBOT
#

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

001 | {<__main__.MyClass object at 0x7fd4fcd247d0>}
002 | False
uncut meteor
#

!e

x = {[1,2,3]}
wise cargoBOT
#

@uncut meteor :x: Your 3.11 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "/home/main.py", line 1, in <module>
003 |     x = {[1,2,3]}
004 |         ^^^^^^^^^
005 | TypeError: unhashable type: 'list'
quasi thistle
#

@whole bear hi sir

#

i cant talk cause i dont have permession

somber heath
#

!voice

wise cargoBOT
#
Voice verification

Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

quasi thistle
#

i see that

#

trying to get the verification

#

guys i have problem will u help me that one

#

i would appreciate

#

i send a pic in minute

#

noooooooooo

#

duuuuuuuuuuuuuuuuuuuuuude

#

broooo

#

thank u

#

ye i see

#

i had file same location and name was random.py

#

thats why didint import it

#

now fixed it

#

thanks for help guys

#

love u guys

wise cargoBOT
#

You are not allowed to use that command.

nimble grove
#

Greetings , Pardon me are you iranian?

#

@quasi thistle

quasi thistle
nimble grove
#

Pleasure to meet you comrade.

quasi thistle
#

how did u know

nimble grove
quasi thistle
#

happy to meet u comrade

nimble grove
#

Thanks , It's good to see another iranians shoving into computer science.

quasi thistle
#

!voiceverfy

wise cargoBOT
#
Voice verification

Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

nimble grove
#

May I ask how good you are in python ? what are you interested in?

quasi thistle
#

i tried and i like it

nimble grove
quasi thistle
#

i like computer language

nimble grove
#

Do you learn by books or using tutorials?

quasi thistle
#

im just hanging around to find what suit me

#

then i grind in it

nimble grove
quasi thistle
quasi thistle
somber heath
#

@whole bear πŸ‘‹

whole bear
nimble grove
quasi thistle
nimble grove
#

Nope.

#

And there Is something I would like to discuss with you if possible ? Do you have time for a voice call?

quasi thistle
quasi thistle
#

@somber heath if i send more than 50 massage will it verfy me automaticlly

nimble grove
somber heath
#

@primal seal πŸ‘‹

stark knot
#

Hello there @somber heath

#

xD

#

it was supposed to be Dark Shark, but my old game allowed only 8 char name

#

had to improvise yk

#

How you guys are doing?

#

Btw what time is it there now?

#

coz whole server look dead

#

oh

#

I see

#

well, gc is never dead

#

General Chat

#

The way you talk sound... Nobel?

#

Like aristocrate yk

#

So you're from america

#

?

#

OHHhh

#

that makes sense

#

its evening in australia I see

#

What you upto now?

#

You play valorant?

#

Sorry, got to go. My windows need some update and restart.

#

Have a good day

pine dune
#

Press F then

#

Reborn from ashes lol

somber heath
#

@whole bear @lament bone πŸ‘‹

lament bone
#

bruh why do I have to send 50 messages to even speak

#

in this server

whole bear
#

// Create a program that enters 3 numbers and outputs sum and avg of these numbers.
#include <stdio.h>
void main()
{
int a,b,c,sum;
float avg = sum/10;
scanf("%d",&a);
scanf("%d",&b);
scanf("%d",&c);
sum = a + b + c;
printf("%d Sum:",sum);
}

#

Can someone tell me what is wrong with this ^?

lament bone
#

makes sense

pine dune
#

I was verified but left and joined servers few times

#

didn't get verified cause now I use chatgpt when I'm not doing smth right in code

uncut meteor
#
#include <stdio.h>

void main() {
    int a,b,c,sum;

    scanf("%d", &a);
    scanf("%d", &b);
    scanf("%d", &c);

    sum = a + b + c;
    printf("%d Sum:\n", sum);
}
whole bear
#

The position %d determines where the integer will go in the output

wise loom
uncut meteor
#

!code

wise cargoBOT
#
Formatting code on discord

Here's how to format Python code on Discord:

```py
print('Hello world!')
```

These are backticks, not quotes. Check this out if you can't find the backtick key.

For long code samples, you can use our pastebin.

whole bear
#
// Online C compiler to run C program online
// Enter bill then multiply by discount to find dis count, then subtract that by bill to gte the final price.
// Variables are bill_p, final_p, dis_p
// bill _p = int, final_p = float, dis_p = float
// Multiply, divide, add, substract from float will give only a float
#include <stdio.h>
void main()
{
    int bill_p;
    float final_p, dis_p;
    printf("Enter bill amount:");
    scanf("%d",&bill_p);
    if (bill_p > 30000)
    {
        dis_p = bill_p * 0.08;
        final_p = bill_p - dis_p;
        printf("Answer1:");
        printf("%.0f",final_p);
    }
    else if(bill_p > 25000)
    {
        dis_p = bill_p * 0.05;
        final_p = bill_p - dis_p;
        printf("Answer2:");
        printf("%.0f",final_p);
    }
    else if (bill_p > 15000)
    {
     dis_p = bill_p *0.03;
     final_p = bill_p - dis_p;
     printf("Answer3:");
     printf("%.0f",final_p);
     
    }
    else
    {
        printf("No discount avaliable");
    }
}
#
// Online C compiler to run C program online
// Enter bill then multiply by discount to find dis count, then subtract that by bill to gte the final price.
// Variables are bill_p, final_p, dis_p
// bill _p = int, final_p = float, dis_p = float
// Multiply, divide, add, substract from float will give only a float
#include <stdio.h>
void main()
{
    int bill_p;
    float final_p, dis_p;
    printf("Enter bill amount:");
    scanf("%d",&bill_p);
    if (bill_p > 30000)
    {
        dis_p = bill_p * 0.08;
        final_p = bill_p - dis_p;
        printf("Answer1:");
        printf("%.0f",final_p);
    }
    else if(bill_p > 25000)
    {
        dis_p = bill_p * 0.05;
        final_p = bill_p - dis_p;
        printf("Answer2:");
        printf("%.0f",final_p);
    }
    else if (bill_p > 15000)
    {
     dis_p = bill_p *0.03;
     final_p = bill_p - dis_p;
     printf("Answer3:");
     printf("%.0f",final_p);

    }
    else
    {
        printf("No discount avaliable");
    }
}
uncut meteor
#

!code

wise cargoBOT
#
Formatting code on discord

Here's how to format Python code on Discord:

```py
print('Hello world!')
```

These are backticks, not quotes. Check this out if you can't find the backtick key.

For long code samples, you can use our pastebin.

pine dune
#

I came here to have some background noise lol

#

learning for driver license

obsidian dragon
#

e!

import requests
from bs4 import BeautifulSoup

# Define the IMDb URL of the show you want to retrieve the rating for
imdb_url = "https://www.imdb.com/title/tt0944947/"  # Replace with the URL of the show you want

# Send an HTTP GET request to the IMDb page
response = requests.get(imdb_url)

# Check if the request was successful (status code 200)
if response.status_code == 200:
    # Parse the HTML content of the page using BeautifulSoup
    soup = BeautifulSoup(response.text, "html.parser")

    # Find the element that contains the show's rating (e.g., using CSS selector)
    rating_element = soup.select_one(".ratingValue strong span")

    # Extract and print the show's rating
    if rating_element:
        rating = rating_element.text.strip()
        print(f"IMDb Rating: {rating}")
    else:
        print("Rating not found on the page")
else:
    print("Failed to retrieve IMDb page")

# Close the response
response.close()
#

e!

wise cargoBOT
#
Missing required argument

code

#
Command Help

!eval [python_version] <code, ...>
Can also use: e

Run Python code and get the results.

This command supports multiple lines of code, including formatted code blocks. Code can be re-evaluated by editing the original message within 10 seconds and clicking the reaction that subsequently appears.

The starting working directory /home, is a writeable temporary file system. Files created, excluding names with leading underscores, will be uploaded in the response.

If multiple codeblocks are in a message, all of them will be joined and evaluated, ignoring the text outside them.

Currently only 3.11 version is supported.

We've done our best to make this sandboxed, but do let us know if you manage to find an issue with it!

obsidian dragon
#

!e

import requests
from bs4 import BeautifulSoup

# Define the IMDb URL of the show you want to retrieve the rating for
imdb_url = "https://www.imdb.com/title/tt0944947/"  # Replace with the URL of the show you want

# Send an HTTP GET request to the IMDb page
response = requests.get(imdb_url)

# Check if the request was successful (status code 200)
if response.status_code == 200:
    # Parse the HTML content of the page using BeautifulSoup
    soup = BeautifulSoup(response.text, "html.parser")

    # Find the element that contains the show's rating (e.g., using CSS selector)
    rating_element = soup.select_one(".ratingValue strong span")

    # Extract and print the show's rating
    if rating_element:
        rating = rating_element.text.strip()
        print(f"IMDb Rating: {rating}")
    else:
        print("Rating not found on the page")
else:
    print("Failed to retrieve IMDb page")

# Close the response
response.close()
wise cargoBOT
#

@obsidian dragon :x: Your 3.11 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "/home/main.py", line 1, in <module>
003 |     import requests
004 | ModuleNotFoundError: No module named 'requests'
obsidian dragon
#

!e

import requests
from bs4 import BeautifulSoup

# Define the IMDb URL of the show you want to retrieve the rating for
imdb_url = "https://www.imdb.com/title/tt0903747"  # Replace with the URL of the show you want

# Define headers with User-Agent
headers = {
    'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36'
}

# Send an HTTP GET request to the IMDb page with headers
response = requests.get(imdb_url, headers=headers)

# Check if the request was successful (status code 200)
if response.status_code == 200:
    # Parse the HTML content of the page using BeautifulSoup
    soup = BeautifulSoup(response.text, "html.parser")

    # Find the element that contains the rating using the provided CSS selector
    rating_element = soup.select_one(".sc-bde20123-2 span")

    # Extract and print the show's rating
    if rating_element:
        rating = rating_element.text.strip()
        print(f"IMDb Rating: {rating}")
    else:
        print("Rating not found on the page")
else:
    print("Failed to retrieve IMDb page")

# Close the response
response.close()
wise cargoBOT
#

@obsidian dragon :x: Your 3.11 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "/home/main.py", line 1, in <module>
003 |     import requests
004 | ModuleNotFoundError: No module named 'requests'
obsidian dragon
#

silly bot

somber heath
#

@nocturne copper πŸ‘‹

noble solstice
#

OpalMist u r singer also?

#

U have very good voice!

nocturne copper
#

I cannot speak english.hahaha

somber heath
#

@stark heart πŸ‘‹

#

!voice

wise cargoBOT
#
Voice verification

Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

wise loom
#

@cerulean ridge hello, I always wondered what your profile pic is?

#

@cerulean ridge maybe like two kids fighting?

cerulean ridge
#

lol, nope, keep on guessing

nocturne copper
#

Where are you from?

exotic moss
whole bear
somber heath
wise loom
#

why are crystals so popular these days?

#

even on chat apps I see in the hobby profiles "crystals"

#

like what is that

rugged root
rugged root
exotic moss
#

looks like a gummy

rugged root
#

Also yes

exotic moss
#

10/10 would eat it

wise loom
cerulean ridge
rugged root
whole bear
#

This a black opal

rugged root
#

It's like a screensaver

exotic moss
#

that's what i imagine you would see when you get sucked into a black hole if you could survive it

rugged root
#

Or the progressing colors of a bubble before it pops

somber heath
#

@whole bear πŸ‘‹

#

@tender brook πŸ‘‹

unique axle
#

*me watching the series from tiktok clips*

rugged root
#

That'd be a lot of clips

somber heath
#

@heavy stag πŸ‘‹

#

@whole bear πŸ‘‹

wind raptor
#

!stream 381154715293188106

wise cargoBOT
#

βœ… @dry jasper can now stream until <t:1694100024:f>.

willow light
dry jasper
rugged root
#

That'll tell you what you need to know about the voice gate

somber heath
#

@spice sinew πŸ‘‹

uncut meteor
slow vapor
rugged root
#

What's your question?

#

!stream 452930548986413067

somber heath
#

@rotund coyote πŸ‘‹

wise cargoBOT
#

βœ… @left leaf can now stream until <t:1694102441:f>.

rotund coyote
#

Hi

slow vapor
rugged root
#

I have indeed. One of my favorite things he's made, actually

slow vapor
rugged root
#

What's going on with it?

dry jasper
slow vapor
#

I dont know Im just really confused I got the snakeAI running

rotund coyote
#

wasssup people

rugged root
#

Sup

slow vapor
#

So like can you give me a tut on how to do it?

#

Because Ive searched everywhere and i cant find one

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied timeout to @whole bear until <t:1694102984:f> (10 minutes) (reason: duplicates spam - sent 4 duplicate messages).

The <@&831776746206265384> have been alerted for review.

slow vapor
#

@rugged root so can you help?

#

@somber heath Ok man

#

@rugged root thank you so much

#

@rugged root Ive been trying for 3 days

#

@rugged root theres a link in his video to the code

uncut meteor
#

!mute 799160175079850004 6h Continuing disruptive and rude spam, this is the second time you've had this behaviour please don't continue.

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied timeout to @whole bear until <t:1694124163:f> (5 hours and 59 minutes).

slow vapor
#

@rugged root Ok

uncut meteor
#

@rugged root Ok

rotund coyote
#

lol

slow vapor
slow vapor
#

yes i downloaded it but theres no tut

#

yes i have

#

I have the Mario world rom

dry jasper
#

where are you going when i drop the sick youtube links?

slow vapor
#

but i dont know where to put the code

#

It might be a lua or python

rugged root
#

It's lua

uncut meteor
#

if its lua

#

its likely C/C++

slow vapor
#

Ok

uncut meteor
#

will just be a lua api

slow vapor
#

I dont no anything about C/C++

uncut meteor
#

(i think that is what Opal was asking)

slow vapor
#

Like the only code I know is python

uncut meteor
#

its all the same

#

you can do it

somber heath
#

@slow vapor If you don't know where to put the code, that suggests to me that you need to cover your Lua foundations, first.

somber heath
#

I expect there are tutorials around, but it's not a language in which I'm proficient.

slow vapor
#

I have to phones one the plug and one for the load

uncut meteor
#

!guilds

wise cargoBOT
#
Communities

The communities page on our website contains a number of communities we have partnered with as well as a curated list of other communities relating to programming and technology.

uncut meteor
#

!tags

#

!tag

#

!help tag

wise cargoBOT
#
Query "tag" not found.
somber heath
somber heath
rugged root
#

Back in a sec

molten pewter
sour geyser
rugged root
#

This is the one I was looking at earlier. Forgot to link it

slow vapor
#

I just wanna talk

willow light
#

And this is why my next car is going to be from the 90s

sour geyser
willow light
#

deafening for a moment to take a few deep breaths

rugged root
#

Fair

sour geyser
#

@pine depot wanna do some brainstorming?

velvet tartan
#

Professor Brian Klass unpacks the truth behind history’s evil leaders, explaining how they so easily acquire power, and how we can change the pattern.

Subscribe to Big Think on YouTube β–Ί https://www.youtube.com/channel/UCvQECJukTDE2i6aCoMnS-Vg?sub_confirmation=1
Enjoy more Big Think podcasts β–Ί https://youtube.com/playlist?list=PL5uULy4b0kV6ecE...

β–Ά Play video
#

One of my favorite videos about this topic

rugged root
#

Powerful Psychopaths
I would listen to that band

velvet tartan
gentle flint
#

ikr can't relate

alpine path
#

What is the context?

rugged root
#

I don't know anymore

sour geyser
#

was data privacy

scarlet halo
#

hey

sour geyser
#

then "there's no such thing as data that isn't useful, just data that we haven't found a use for yet" and then Rabbit mentioned a direct relationship made by data analytics people within his company between salary and recidivism as an example of previously useless data becoming useful

#

then Selena extended the discussion to include indirect ripple effects from alternative crimes and trying to say there are more factors involved than income bracket's relationship to recidivism

#

and now we're kind of exploding the topic

sour geyser
alpine path
#

a bit xD

rugged root
#

I keep just hearing meat

#

Every time

alpine path
#

πŸ–

#

πŸ₯©

scarlet halo
#

meat

#

also we got to taste test different sausages

scarlet halo
#

i only tasted 1 of 5 cause the other ones didnt pass my previous requirements

rugged root
#

Meat: It's what's for food

whole bear
#

Maybe a skill issue ?

rugged root
#

He should wear a cloak

#

Because Cowell

uncut meteor
whole bear
#

incog got splif

spark wolf
#

Can someone check my code

#

Ima new dev

#

from mailtm import Email
import firebase
from time import sleep
import requests
from colorama import Fore, Back, Style
from keep_alive import keep_alive

PASSWORD = "JoinViniBoost"

config = {
"apiKey": "AIzaSyBxmfb16mlmD5vNoliSnCuCJqjxFapS_q4",
"authDomain": "mf23-room-ids.europe-west1.firebasedatabase.app",
"projectId": "madfut-23",
"storageBucket": "madfut-23.appspot.com",
"messagingSenderId": "359609929204",
"databaseURL": "https://mf23-trading-invites-2.europe-west1.firebasedatabase.app/",
"appId": "1:359609929204:ios:2fd5ba3bd87c65f0d2fda1"
}

db = firebase.initialize_app(config)

auth = db.auth()

def target():
try:
test = Email()
print("\nDomain: " + test.domain)
test.register()
print("Email Address: " + str(test.address))
test.domains()

    auth.create_user_with_email_and_password(test.address, PASSWORD)
    newUser = auth.sign_in_with_email_and_password(test.address, PASSWORD)

    auth.send_email_verification(newUser['idToken'])

    def getInbox(message):
        content = message['text'] if message['text'] else message['html']
        data = {
            "oobCode": content.split("\n")[4].split("oobCode=")[1].split("&")[0]
        }
        key = config["apiKey"]
        res = requests.post(f"https://www.googleapis.com/identitytoolkit/v3/relyingparty/setAccountInfo?key={key}", json=data).json()
        if res["emailVerified"] == True:
            print("Auto-Verification Completed!")
        with open("accounts.txt", "a") as f:
            f.write("{\"email\": \""+test.address+"\"},\n")
    test.start(getInbox, 4)
except:
    print("You are being rate limited.")
    print("Trying again in 7 seconds...")
    sleep(7)
sleep(10)

while True:
target()
keep_alive()

rugged root
#

Sorry one sec

rugged root
#

@whole bear Yo

whole bear
#

man how're you?

rugged root
#

Decent enough. Yourself?

whole bear
rugged root
#

Ooo neat. To emulate what?

whole bear
rugged root
#

Oh very cool

whole bear
rugged root
#

That reminds me, I need to replay GoldenSun...

whole bear
#

it can emulate sonic advance

whole bear
rugged root
#

Leaning is good

whole bear
rugged root
#

Learning even

#

Because I can't spell, it seems

whole bear
olive hedge
#

ikr, cringe

uncut meteor
vocal basin
#

act_runner has some problems because of wrong defaults

#

related to docker-based actions

#

the "fix"

#

@rugged root shouldn't conint be an annotation?

rugged root
#

how do

vocal basin
#

field: conint(...)

#

> calls not allowed in annotations
pyright being wrong
pywrong

rugged root
#

Yeah I'll just ignore that one

#

Work call, back in a moment

vocal basin
#

releases aren't Git thing
tags are

#

(as another example)

uncut meteor
vocal basin
#

@sour geyser maybe expired?

#

default, that GitHub's tutorial suggests, iirc, is 1 year

jovial dome
#

what is a good flashcard app for coding?

sour geyser
jovial dome
#

I use the free one but the formats all weird

#

Thanks for the suggestion though

sour geyser
#

all gone 😦

#

regenerating

rugged root
#

@wise loom You've got a weird noise coming from your mic

#

Cheers

wise loom
rugged root
#

All good all good

vocal basin
#

no, just regular strings
so diffs and commit messages can get auto-converted to dates

rugged root
#

HA

#

Oh god no

vocal basin
#

the name (TFVC) reminds of internal codename for office assistant (TFC)

rugged root
#

Didn't know that was a thing

vocal basin
#

> Steven Sinofsky states that "C" stood for "clown", while allowing his readers to guess what "TF" might stand for.

rugged root
#

Tank Fighter Clerical staff

vocal basin
wise loom
#

where do i post a meme

sour geyser
#

here?

wise loom
molten pewter
#

A scene from Little Nicky:

#

Rated pg-13

cunning lake
#

waiting on Voice Chat 0 if some on want to talk

#

one*

cunning lake
#

False & True

somber heath
#

!e py print(bool.mro())

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

[<class 'bool'>, <class 'int'>, <class 'object'>]
somber heath
#

!e py print(True + True + True + False)

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

3
somber heath
#

!e py print(5 + True)

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

6
somber heath
#

!e py arr = 1, 2, 5, 6, 7, 8 print(sum(v > 5 for v in arr))There are three numbers greater than 5 in arr.

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

3
somber heath
#

!e py if True: print('A') if False: print('B')

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

A
somber heath
#

!e py if 'abc': print('A') if '': print('B')

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

A
somber heath
#

!e py if ['a', 'b', 'c']: print('A') if []: print('B')

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

A
somber heath
#

!e py print(bool('abc')) print(bool('')) print(bool(['a', 'b', 'c'])) print(bool([]))

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

001 | True
002 | False
003 | True
004 | False
somber heath
#

@worthy token πŸ‘‹

#

@whole marsh @shut cobalt πŸ‘‹

#

@nova walrus πŸ‘‹

nova walrus
#

Hello

whole marsh
#

hello

worthy token
#

codewars vs leetcode which is better

viral spruce
#

i need messages now

#

but i cant spam

viral spruce
worthy token
#

hmmm

viral spruce
#

so im creating a portfolio website, which domain is better .com .me .dev .design .co

somber heath
#

@daring swift πŸ‘‹

viral spruce
#

for example im Yuk it will be notyuk.me or notyuk.dev

somber heath
#

@serene galleon πŸ‘‹

daring swift
worthy token
#

can u create a whole website in python or u need to use CSS and HTML

daring swift
#

@ornate loom what that name dawg 🀣

ornate loom
#

misclicked mb

viral spruce
worthy token
#

true

viral spruce
#

btw what do you do for work opalmist if you dont mind