#voice-chat-text-0

1 messages ยท Page 319 of 1

willow loom
#

neat

vocal basin
#

(also re-listening to some voice recording from two weeks ago)

#

my clean vocals are still way too weak

somber heath
#

@whole bear ๐Ÿ‘‹

whole bear
#

hi

vocal basin
#

I don't have that much experience with clean vocals

somber heath
#

@velvet stag ๐Ÿ‘‹

whole bear
vocal basin
#

it was recorded in another city on a mic that someone else bought specifically for recording

somber heath
whole bear
#

ohk

#

50 messages

#

i want to sent

#

okii

#

๐Ÿ™‚

#

??

#

whats u said

#

damn

#

are u making my fun

#

okii:)

somber heath
vocal basin
stark river
#

mongolian music is dry.. like the gobi desert

whole bear
#

Heah
Anyone konw karuta bot?

vocal basin
#

I've always had problems understanding pitch/tones from what I hear
even though I have a very good understanding of theory

whole bear
#

oki

vocal basin
#

highest note I've hit was 4KHz

whole bear
#

hh

vocal basin
#

but that wasn't with clean vocals

whole bear
vocal basin
#

Mellstroy isn't Russian

whole bear
vocal basin
#

loudest part of the spectrum is around 4KHz in the beginning

somber heath
#

@static charm ๐Ÿ‘‹

vocal basin
#

"this even looks scary"

static charm
willow loom
#

don't take your meds

#

never meds

vocal basin
#

last one is around 3KHz (I think?)

whole bear
vocal basin
whole bear
#

@gentle flint โ€˜s always doing irl stream in discord vc :3

vocal basin
whole bear
vocal basin
#

it's not pc, it's the browser

#

funnily enough, it's specifically chrome

#

good job on that, google

whole bear
#

it doesnt lag lul

#

i have my pc for around 4 years now

whole bear
#

been running chrome ever since

#

okay

#

u didnt have to tell me that ur lazy finding ways to record

#

๐Ÿ˜ฆ

vocal basin
#

what, out of all these buttons, is the upload button?

whole bear
#

u can record on ur pc

vocal basin
#

I don't need to record

#

I need to upload an existing recording

whole bear
#

thats the way u can upload is by recording your pcโ€™s sound on the spot

#

digitally

#

not physically

vocal basin
#

what is your understanding of "upload" in this case?

whole bear
#

theres a lot of software out there mate

vocal basin
#

I'm not your "mate"

whole bear
#

same server

#

๐Ÿ™‚

vocal basin
whole bear
#

you can record but upload? im not so sure

somber heath
#

@tacit temple ๐Ÿ‘‹

vocal basin
#

upload to the website not youtube or wherever else

whole bear
# vocal basin .

you can probably tell that you cant upload ur music from the browser for that website, but you could record ur pc

#

so helpless for such a helper role

#

XD

vocal basin
#

you're suggesting to plug PC audio output as input for the website?

#

kind of suboptimal

whole bear
#

cant you find an application or any software that can record ur pc?

#

again, so helpless of u

vocal basin
#

why record?

#

when did I ever say I need to record?

#

I already have an existing recording

whole bear
#

C U Z Y C A N T U P L O A D

vocal basin
#

an mp3 file

whole bear
#

W A I T

#

ur a baiter

#

troller even

#

ik ur smart enough to figure this shit out

vocal basin
#

I need to analyze an existing mp3 file, does the website provide an option for it?

#

if not, this website isn't suitable for what I do

whole bear
#

@somber heath pls intervene

vocal basin
whole bear
#

u cant upload

#

but u can record

#

all im sayin

vocal basin
#

huh, I found how, it just doesn't have a button lol

#

what an UI failure

whole bear
#

and theres a lot of other musical stuff there

#

so

vocal basin
whole bear
#

uploading capabilities varies

vocal basin
#

hmm
it doesn't have a pause button

whole bear
#

why would pause?

#

just record it if u want paus

#

ive said record many times now

vocal basin
whole bear
#

also

vocal basin
#

I just should install a DAW at this point

whole bear
#

i didnt know that you were talking about uploading files

#

i thought u want to record :?

vocal basin
#

so you just made up your own meaning of upload and assumed it's correct

whole bear
#

when u said upload

#

i was confused

vocal basin
whole bear
#

never did it before pithink

vocal basin
#

anyways

whole bear
#

geez

vocal basin
#

there's two sites I used

#

both are cringe-ish

whole bear
#

do tell

vocal basin
whole bear
#

wait

#

do u play piano?

vocal basin
#

I sing

whole bear
#

noice

#

i wosh i can too

vocal basin
whole bear
#

i sing like an autistic bird

whole bear
vocal basin
#

I haven't been doing clean vocals of even remotely enough time to provide any tips

whole bear
#

lol

#

both beginners then we are

vocal basin
#

as for extreme vocals:
don't drink cold water -- it harms vocal cords;
as soon it starts hurting, stop;
don't apply much pressure on vocal and false cords ever;
learn to breathe using diaphragm;

#

idk what else

whole bear
#

sometimes i twist my neck while singing

#

it doesnt hurt surprisingly

vocal basin
#

neck, throat, jaw, tongue and whatever else placement makes a lot of difference for extreme vocals;
for some techniques, it's the essential part;
(as far as my experience goes, there it's more important than for clean vocals)

whole bear
#

mine is whatever i find in yt karaoke

vocal basin
whole bear
vocal basin
#

it's so funny a deathcore/metalcore band releases an official karaoke

vocal basin
willow loom
#

hi

#

repeat that pls

#

been a while since i used one of those

#

i doubt i can help with this but i can try

dire pebble
willow loom
#

how does this relate to futures

#

that's what your initial question was right

#

perhaps i misheard

#

decorators are like a way to wrap a function with a function

#

they are in the docs

#

yeah i get it

#

I'm trying to track down the src code for property

#

class property:
    fget: Callable[[Any], Any] | None
    fset: Callable[[Any, Any], None] | None
    fdel: Callable[[Any], None] | None
    __isabstractmethod__: bool
    def __init__(
        self,
        fget: Callable[[Any], Any] | None = ...,
        fset: Callable[[Any, Any], None] | None = ...,
        fdel: Callable[[Any], None] | None = ...,
        doc: str | None = ...,
    ) -> None: ...
    def getter(self, __fget: Callable[[Any], Any]) -> property: ...
    def setter(self, __fset: Callable[[Any, Any], None]) -> property: ...
    def deleter(self, __fdel: Callable[[Any], None]) -> property: ...
    def __get__(self, __instance: Any, __owner: type | None = None) -> Any: ...
    def __set__(self, __instance: Any, __value: Any) -> None: ...
    def __delete__(self, __instance: Any) -> None: ...
#

well there's the source code

#

you're welcome

#

i just

#

alt clicked on it in vscodium

#

see ya

#

no vscodium is opensource vscode

#

without telemetry

#

bye bye

upbeat bobcat
#

@ornate elm Hi

ornate elm
#

hi

whole bear
#

hey, does anybody know where i can learn python easily?

short owl
whole bear
#

thx

willow gate
#

hi

upbeat bobcat
#

@viral oak hi

#

watching videos

#

Among us game

#

What are you doing?

whole bear
#

for solving important question

dense meadow
#

!e


test_var = 50
if test_var > 50:
    print("test_var is greater than 50")
else:
    print("test_var is not greater than 50")
```py
wise cargoBOT
dense meadow
#

let's go

#

!e


def generate_pseudo_random_number():
   
    a = 1664525
    c = 1013904223
    m = 2**3
    seed = 123456789
    pseudo_random_number = (a * seed + c) % m
    return pseudo_random_number

def is_natural_number(n):
    return isinstance(n, int) and n > 0


random_number = generate_pseudo_random_number()
print(f"Generated number: {random_number}")


if is_natural_number(random_number):
    print(f"The number {random_number} is a natural number.")
else:
    print(f"The number {random_number} is not a natural number.")
#

!e

def generate_pseudo_random_number():
    # Using a simple linear congruential generator (LCG) for pseudo-random number generation
    # Constants for the LCG (example values)
    a = 1664525
    c = 1013904223
    m = 2**32
    # Seed (you can change this to any integer)
    seed = 123456789
    pseudo_random_number = (a * seed + c) % m
    return pseudo_random_number

def is_natural_number(n):
    return isinstance(n, int) and n > 0

# Generate a pseudo-random number
random_number = generate_pseudo_random_number()
print(f"Generated number: {random_number}")

# Check if the number is a natural number
if is_natural_number(random_number):
    print(f"The number {random_number} is a natural number.")
else:
    print(f"The number {random_number} is not a natural number.")
somber heath
#

@wooden parcel ๐Ÿ‘‹

wooden parcel
#

HEy

#

@somber heath what are you talking about?

#

@somber heath I hope you get better soon ๐Ÿ™‚

somber heath
#

@echo isle ๐Ÿ‘‹

wooden parcel
#

@peak depot whats the temperature there?

peak depot
#

+23

wooden parcel
#

its +40 degrees celsius here

peak depot
#

+28 in my appartment without ac

wooden parcel
somber heath
#

!e py import random print(random.choice(['Get up.', 'Do not get up.']))

wise cargoBOT
stable axle
#

!e

import random
print(random.choice(['Reroll', 'get up.']))
wise cargoBOT
somber heath
#

The eastern spinebill (Acanthorhynchus tenuirostris) is a species of honeyeater found in south-eastern Australia in forest and woodland areas, as well as gardens in urban areas of Canberra, Sydney, Melbourne, Adelaide and Hobart. It is around 15 cm long, and has a distinctive black, white and chestnut plumage, a red eye, and a long downcurved bill.

#

!e py import random print(random.choice(['Get up and wash the cap.', 'Do not get up.', 'Put the cap back on without washing it.']))

wise cargoBOT
peak depot
wooden parcel
#

!e
import random
print(random.choice(['Reroll', 'get up.']))

wise cargoBOT
scarlet halo
#

hi

somber heath
#

@crude steppe ๐Ÿ‘‹

crude steppe
#

heyy!

#

im unable to unmutwe

somber heath
crude steppe
#

yeah

#

but since i haven't sent 50 messages in this server

#

i ain't able to verify due to the same

#

lmao

somber heath
#

@mossy agate ๐Ÿ‘‹

#

@rapid fog ๐Ÿ‘‹

peak depot
upper basin
#

Average ping: 1470 ms
Let's gooo...

upper basin
somber heath
#

@vale quarry ๐Ÿ‘‹

whole bear
#

@somber heath what do u think of the UI?

ISP's website

vale quarry
somber heath
whole bear
dry jasper
whole bear
#

i dont think i will ever experience less than 10 ms

peak depot
vocal basin
#

ig for mobile-ish internet makes sense

whole bear
somber heath
#

@wooden parcel ๐Ÿ‘‹

whole bear
#

which may explain the UI lol

vocal basin
#

btw "personal use only" might mean they'll block traffic if they detect it's a hotspot

whole bear
#

that sucks lul

vocal basin
#

I've known a company that did that (Yota, Russia)

#

some providers throttle

#

mine doesn't care afaik

#

they're just bad at handling it

whole bear
vocal basin
#

"personal use only" in case of home internet would be questionable

#

and meaningless with static IP

#

but that's rare

#

(my use or home internet doesn't even remotely qualify as personal only)

whole bear
vocal basin
#

quite sure it doesn't

whole bear
vocal basin
#

huh static IP price got cut apparently

#

from $2 to $1.5 (roughly)

#

per month

whole bear
#

bruh

#

welp

#

do u have any issue with ur isp?

vocal basin
#

they have outages around once a month

#

at night only

#

ig unannounced maintenance

whole bear
#

whats the biggest isp (not mvno) in your area? @vocal basin

#

here in AU region im in is Telstra then Optus

somber heath
#

@thin gale ๐Ÿ‘‹

vocal basin
somber heath
#

@whole bear ๐Ÿ‘‹

vocal basin
#

with mgts (mts) in the third place

#

all three are questionable companies

vocal basin
#

I only know two

#

people tend to use the base operators directly

dry jasper
vocal basin
#

@patent dragon background noise

patent dragon
#

Oh

#

tSoorry

scarlet halo
#

please build a fence around australia so i dont accidentaly go there

dry jasper
#

true

dry jasper
vocal basin
#

iirc Tasmania was discovered by Europeans before Australia

#

I don't know how that makes sense geometrically

dry jasper
#

Marsupialia

#

The thylacine (; binomial name Thylacinus cynocephalus), also commonly known as the Tasmanian tiger or Tasmanian wolf, is an extinct carnivorous marsupial that was native to the Australian mainland and the islands of Tasmania and New Guinea. The thylacine died out in New Guinea and mainland Australia around 3,600โ€“3,200 years ago, prior to the ar...

vocal basin
#

you need more than just genes for cloning extinct stuff

upper basin
dry jasper
#

The scientific question of within which larger group of animals birds evolved has traditionally been called the "origin of birds". The present scientific consensus is that birds are a group of maniraptoran theropod dinosaurs that originated during the Mesozoic Era.
A close relationship between birds and dinosaurs was first proposed in the ninete...

upper basin
#

Rotterdam, work with me hehe.

somber heath
#

@prisma glade ๐Ÿ‘‹

whole bear
whole bear
#

yall are closed mic ๐Ÿ˜„

#

@upbeat bobcat u know Indigo Park?

upbeat bobcat
#

no

whole bear
upbeat bobcat
#

why

whole bear
#

its really a good scary game

upbeat bobcat
#

ok I will check it out

golden kayak
#

Hi

somber heath
#

@native sparrow ๐Ÿ‘‹

#

@tight bane ๐Ÿ‘‹

tight bane
#

hi I cannot speak

somber heath
tight bane
#

I need send 50 mssg its a lot

#

what did you say?

#

just for chating about Ai and data science

somber heath
#

@cold crest ๐Ÿ‘‹

somber heath
#

@whole bear ๐Ÿ‘‹

whole bear
#

hey no one talking?

stark river
#

๐Ÿต

whole bear
#

huh wat?

#

wdym

#

lol

#

ok gtg bye

scarlet halo
#

why specifically when hemlock gets in ๐Ÿ˜ญ

#

ah

#

im playing mc rn and its fun

#

might start a 2 week phase

somber heath
#

@round bone ๐Ÿ‘‹

whole bear
#

lemme open vscode

scarlet halo
#

im on day 4 (ingame) and already full diamond gear (not enchanted)

#

boat filled with water :(

whole bear
#

opening mc too

#

bruh nope i needa get on vscode

noble solstice
#

Hello Guys!!

#

what r u guys doing?

scarlet halo
#

got the new cape

scarlet halo
noble solstice
scarlet halo
#

opal you scare away everyone with your beautiful voice :)

#

hey leg!

somber heath
#

@whole bear ๐Ÿ‘‹

scarlet halo
#

๐Ÿค” i think its you

#

nah jk

#

but you have a beautiful voice though

#

also i installed this mod.

#

uhhh

#

"transparent window"

somber heath
#

@sturdy night ๐Ÿ‘‹

sturdy night
#

jgj

somber heath
#

@nova knoll ๐Ÿ‘‹

nova knoll
#

still can't figure out how to unmute

somber heath
slender sierra
somber heath
#

@soft gate ๐Ÿ‘‹

upper basin
#

!e

a = 1
b = a==1

print(b)
wise cargoBOT
upper basin
#

This feels so weird. Is it a good practice?

somber heath
#

I'd have spaces on either side of the operator.

upper basin
somber heath
#

Mm.

upper basin
#

It's not weird to have = and == in the same line?

somber heath
#

It is not weird.

upper basin
#

Ok good to know. Thank you very much dear Opal!

#

Haa hahaha haaa, 'mericaaaa, fuuuuqq yaaaah

#

"Comrade!"

#

Supply and Demand.

#

Here:

  1. Find a problem you understand.
  2. Do literature review on existing solutions.
  3. Come up with an improved and/or novel solution.
  4. Develop the solution as a SaaS.
  5. Deploy as an easy-to-use tool.
  6. Find customers who need it.
  7. Register your company, and start planning your costs and expenses.
  8. Get bankrupt or acquired after a few years depending on how well your solution did.
#

@normal trout

upper basin
#

Well, you're looking at the wrong field then.

#

Krys literally mentioned it's a field where you have to have a keen eye for real-world problems and can develop technical solutions to them.

#

It's like saying I want to get rich, but I don't want to use my brain.

#

Legitimate rich people are often people who saw a critical issue and came up with an efficient solution everyone wanted, and they sold it at a reasonable price.

normal trout
#

how do I find problems then @upper basin

peak depot
normal trout
upper basin
#

Choose a field that you're familiar with. Agriculture, transportation, engineering, commercial, etc.

Then, look at the type of problems they have in their pipeline. What are the stuff that make their lives harder?

You'll be able to pinpoint it to a good problem or two. Then you can start to brainstorm solutions to it. Once you do, you can start thinking about a mode of delivery, a service, a tool, a platform, etc.

Then you develop it using a backend language, a front-end language, and use other tools as necessary. Then you can deploy it as an app or platform.

Lastly, you show the solution to some investors. You can get some investment from them. Then you can use that as the seed fund for your startup. You can then hire people who are better than you at development, marketing, etc., and start running a business.

#

@normal trout

#

You just need to be able to get the job done well.

#

No one cares if you're the best.

#

Your background (resume) serves a proof of whether you're competent to do the job or not.

#

Competency is simple, rest is just whether you're a good fit or not. Competency is literally just learning the topic and making good projects on github.

primal shadow
#

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

pine depot
#

explore engineering projects. theres bad solutions to things in literally every facility

#

if its your taste

upper basin
wind raptor
upper basin
#

Dev, can you please ask Hemlock to make vc0 a closer server?

#

Andrew Ng's course to ML is a must.

short owl
#

howdy @peak depot

wind raptor
short owl
#

first coffee have to do yard work before new rain

scarlet halo
#

modules?

upper basin
wind raptor
#

Can you tell I've taken one of his courses

upper basin
wind raptor
#

I originally learned Python through him haha

upper basin
#

He has some of the best courses on AI/ML.

#

I wish all of his courses were free though,.

wind raptor
#

Yeah, who would want money for making 20-40 hours worth of content. Can't be that difficult...

wind raptor
#

sarcasm

normal trout
scarlet halo
#

sacasm

upper basin
#

It's just sometimes hard to pay that much with my currency.

scarlet halo
#

where does ice come from ๐Ÿค”

#

not tate ๐Ÿ˜ญ

#

chris can i stream?

wind raptor
#

!stream 710856373675491381

wise cargoBOT
#

โœ… @scarlet halo can now stream until <t:1716823282:f>.

scarlet halo
#

:D

wind raptor
scarlet halo
#

im coding though

normal trout
#

thats c++

#

I cannot learn that language

scarlet halo
#

well you can

#

if you try

#

alr gtg

#

my dad wants to play tennis

normal trout
#

its harder than python

#

alot harder

scarlet halo
#

nah

normal trout
scarlet halo
#

for what im using it for its pretty much the same

peak depot
#

โ–บContributors
Music remixed by Dj Ice
Vocal by The Swingers
Publisher & Master copyright ยฉ WRD Music Ltd.

The original video from:
Youtube: http://www.youtube.com/DanceOkChannel
VK: http://vk.com/danceok

Subscribe & enjoy the music!

โ–บ BALLROOM MUSIC PLAYLIST by DJ ICE
All Ballroom Music : https://goo.gl/XIMBPA
Waltz : https://goo.gl/HD1Z8r
T...

โ–ถ Play video
scarlet halo
normal trout
normal trout
short owl
#

maybe Hemmy ran away joined another circus

primal shadow
#

Federal Holiday

#

Offices often get Memorial Day

short owl
#

try yoga first to get your joints and muscles ready to be punished @rugged tundra

#

tango classes have hot chicks

drowsy tinsel
short owl
#

stop sugar like soda , i lost 20 pounds gradually by not having it

#

western food is sugar + fat

drowsy tinsel
upper basin
#

Just remember it's supposed to be avoiding fights not provoking them.

short owl
#

sugar in coffe ok , just soada is liquid sugar which is very addictive

short owl
#

yes

drowsy tinsel
short owl
#

corn syrup sugar

#

BBQ in summer , smokey

drowsy tinsel
#

im 75kg XD wanna lose 10kg

short owl
#

is it true boxing teaches you to not be afraid to get hit - makes you tough @hasty shore

#

I new a guy who did boxing , he spend long time learning how NOT to get hit

hasty shore
short owl
#

wow ya , speed , go watch Tyson do stuff , in mid punch he can change his mind and redirect it

#

walking -- running , yoga - stretching so you dont rip stuff

#

tear injuries .......

hasty shore
#

also looka t paciao, is an amazing fighter

hasty shore
#

i indeed need to implement this, i didnt knew the importance of it

short owl
#

knew a girl who gave up on judo , she was tiny , got thrown around alot , beat up everyday in class - but that buiilds muscle toughness

hasty shore
#

also mental toughness

#

if you dont quit

#

and keep forward

short owl
#

im no expert - i just know MA is lots of getting toughened up and not afraid of pain or confrontation

#

most MA guys avoid real fights - they know they can rip someone apart

hasty shore
short owl
#

they prepare to live

hasty shore
#

true but always they enter octagon, they already prepared for worst case scenario(death)

short owl
#

maybe if your a white boy in hong kong , then your a target

hasty shore
#

jajaja, i wouldnt mess with them so they dont mess with me

short owl
#

just avoid fights

hasty shore
#

but i am prepared to die, if any of the loved ones are with me

#

i mean if they are threatened in someway

short owl
#

90 pound girl can do you in .... most are not ready for that idea

hasty shore
#

bruhhh

short owl
#

there are 120 pound viet namese guys who make a living beating up us marines and rob them

#

dont fight

hasty shore
#

i actually dont like to fight when not necesary

hasty shore
short owl
#

there are 80 year old military medics you dont want to go near - they know all your weak spots and is easy to de-activate you

#

need a good C compiler ( Ming ? ) to learn python bindings stuff

whole bear
#

@short owl hey buddy

#

i think you are still mad at me lol

still herald
lethal hinge
#

omggg

#

guys

#

i need to talk

#

50 msj

#

to send

#

adsa

#

s

whole bear
#

@lethal hinge hold on now, type properly

lethal hinge
#

oks

#

sorry

#

bro

rugged tundra
silk dust
whole bear
silk dust
upper basin
#

Different situations follow different distributions. Those who work in the field can spot those trends.

whole bear
# silk dust how would you differentiate real and artificial data you mean dummy data?

Artificially made data refers to data that is generated using algorithms, simulations, or other synthetic means to mimic real-world data. Dummy data, on the other hand, refers to fabricated data used primarily for testing, development, and demonstration purposes. I would think that he is using artificially made data because he is HIM (if he is HIM, that is).

drowsy tinsel
whole bear
#

using artificially made data is better than using dummies

#

BUT it depends on the purpose as stated on my last big paragraph

#

๐Ÿ˜„
.

drowsy tinsel
#

@primal shadow u sounds like an AI

whole bear
#

i do know types of data

#

thanks to my cs teacher

silk dust
#

hmm

whole bear
#

@primal shadow technically, people born on the 90s are born in the 90s, however, what you're saying is they didnt live much of the 90s.

drowsy tinsel
#

!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
#

#bot-commands

still herald
drowsy tinsel
#

!e

print("Hello World")
winged jungle
#

im new here... do u help with HW to understand ?

silk dust
drowsy tinsel
#

!e

print("Hello World")
whole bear
silk dust
whole bear
#

@drowsy tinsel #bot-commands

whole bear
#

lol

winged jungle
#

like for uni

whole bear
#

homework to understand

silk dust
#

duh

whole bear
#

is there any deeper meaning?

#

i feel like there is

winged jungle
silk dust
whole bear
winged jungle
#

sometimes i dont understand the tasks but like im good at coding

winged jungle
silk dust
winged jungle
#

its not rly HW its like more tasks

upper basin
#

@primal shadow is this stupid?

qmprs.synthesis.mps_encoding.sequential.Sequential
whole bear
upper basin
#

Would you say this is bad to have such a nested structure?

winged jungle
still herald
whole bear
scarlet halo
whole bear
winged jungle
whole bear
#

its exaggeration

whole bear
still herald
upbeat bobcat
#

!e

 txt = "I like bananas"

x = txt.replace("bananas", "apples")

print(x)
wise cargoBOT
upbeat bobcat
#

@still herald

still herald
#

ya

drowsy tinsel
#

lol

silk dust
wise cargoBOT
#

:x: Your 3.12 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "/home/main.py", line 1, in <module>
003 |     python
004 | NameError: name 'python' is not defined
silk dust
#

background noise

scarlet halo
#

!e

txt = "I like bananas"

x = txt.replace("bananas", "apples")

print(x)
wise cargoBOT
still herald
scarlet halo
#

there

silk dust
whole bear
#

me 2

still herald
drowsy tinsel
#

isnt it a tuple?

winged jungle
#

it is a tuple

scarlet halo
#

where tuple

silk dust
still herald
silk dust
drowsy tinsel
# still herald leave*

when there are many values to replace. With a dictionary, it's clear which old value corresponds to which new value because they're directly associated with each other.

whole bear
#

!e

def helloWorld():
    print("print")

helloWorld()
wise cargoBOT
whole bear
#

wait

#

i was wrong

#

guys

#

lemme fix this

#

@silk dust i fixed it

#

!e

def helloWorld(prรญnt):
    print(prรญnt)

helloWorld("print")
wise cargoBOT
whole bear
#

How to make a coffee (my way)

  1. Pour 1 teaspoon of coffee, 2 teaspoon of milk powder, and 1 teaspoon of sugar. (Optional: 1 teaspoon of honey)
  2. Pour however much hot water you want (preferrrably 1/2 cup of hot water). Then, stir.
  3. Drink the coffee.
#

thats not my mmain tho

#

thats my budget coffee

#

if thats not how u make coffee

#

then u prob rich

#

eh?

#

coffee grounds will suffice

#

just make sure the coffee melts

#

@primal shadow u might as well stick a candy to ur throat

#

๐Ÿ˜„

scarlet halo
#

enemies >:(

tall ridge
#

I got back from PyconUS and I almost recovered from the interaction overwhelm.

somber heath
#

@crystal hearth@humble turret๐Ÿ‘‹

humble turret
#

cannot speak lol

crystal hearth
#

im suppresed

#

๐Ÿ˜ข

humble turret
#

no permissions

crystal hearth
#

same

humble turret
#

oof

#

i need to do this for voice ig

whole bear
#

@somber heath did u know that you can make emojis in emoji kitchen?

somber heath
#

I was aware there was some kind of colour modifier in the utf spec.

#

@whole bear๐Ÿ‘‹

whole bear
#

Hello

somber heath
#

@frosty lantern ๐Ÿ‘‹

nova knoll
#

<class 'int'>x<class 'int'>

#

10x30

somber heath
#

!e ```py
class MyClass:
def repr(self):
return f'{self.class.name}()'

def __str__(self):
    return 'A string version.'

instances = [MyClass(), MyClass(), MyClass()]
instance = MyClass()
print(instances)
print(instance)```

wise cargoBOT
somber heath
#

!e ```py
class MyClass:
def repr(self):
return 'REPR'

def __str__(self):
    return 'A string version.'

instances = [MyClass(), MyClass(), MyClass()]
instance = MyClass()
print(instances)
print(instance)```

wise cargoBOT
atomic snow
#

!e

print("hi")
wise cargoBOT
noble solstice
#

Hello Guys!!

atomic snow
#

hi

nova knoll
#

:

somber heath
#

!e py print(123);print(456)

wise cargoBOT
noble solstice
nova knoll
#

!e
print(123)
print(456)

wise cargoBOT
somber heath
#

!e py for _ in '...'; ...

wise cargoBOT
nova knoll
#

gtg

noble solstice
daring crane
#

!e

import os
wise cargoBOT
atomic snow
#

!packages

#

!package

wise cargoBOT
#
Missing required argument

package

atomic snow
#

!pypi package

wise cargoBOT
#

package is a package to package your package

Released on <t:1303631937:D>.

somber heath
#

!e py v = '123' while True: v *= 2

wise cargoBOT
somber heath
#

!e py print('I\'m not dead!')

wise cargoBOT
somber heath
#

@daring crane ๐Ÿ‘‹

daring crane
#

I found vulnerabilities in my college Attendance website

daring crane
#

goooiii

#

not GUI

upbeat bobcat
glad rock
daring crane
#

Use selenium or Beautiful soup4

upbeat bobcat
daring crane
#

let me check once

#

you need the price tag right??

brisk bridge
#

hi

upbeat bobcat
#

Hi

daring crane
#

๐Ÿ’€

#

Bro scared us

somber heath
#

!rule 5 @glad rock

wise cargoBOT
#

5. Do not provide or request help on projects that may violate terms of service, or that may be deemed inappropriate, malicious, or illegal.

daring crane
#

Oh

#

Even in my uni, they didnt setup API keys correctly. So , when i usually checking through my college API's i found that we can actually post attendance by ourselves. I reached out my Dean of Academics to inform this that day. When i tried it posted my attendance lol

#

I could post attendance for whole college

#

or delete attendance for whole college

#

or edit

#

Yes

#

haha

#

its because of they didnt verified the session is actually coming from the owner or not

#

They didnt verify JWT == owners

#

yeah!

#

For sure

#

even i got shcoked

#

According to my uni policy it was a crime trying to impersonate their websites or databases. So i got scared and said this to higher officials

#

Haha

#

Now they improved it

#

Hummmm

#

Hahaha

#

ok

#

๐Ÿ˜‚

#

now your behind the bars

#

haha

#

How to get voice access here

#

๐Ÿ˜ถโ€๐ŸŒซ๏ธ

#

yeah

#

just saw

#

Are you a grad student or like working individual

#

I see

#

ok sir. ๐Ÿซก

#

Its 44 celsius here

#

damnn... You are saying farehiet or celsius

#

oh god 49 celsius would burn everyone

#

haha

somber heath
#

@crimson bridge ๐Ÿ‘‹

#

@unkempt cairn ๐Ÿ‘‹

#

@whole bear ๐Ÿ‘‹

upbeat bobcat
#

@leaden mountain hi

#

what

#

I didnt hear that

#

do I joke?

#

match

#

?

#

what is that bro?

#

yes

somber heath
#

@gentle elbow ๐Ÿ‘‹

gentle elbow
#

hi

somber heath
#

@fallen solstice ๐Ÿ‘‹

#

@faint hare ๐Ÿ‘‹

faint hare
#

Hrlloo

#

Why can't I speak tho

fallen solstice
#

WHAT?

faint hare
#

Alright

#

Thankyou

#

It does seem like I just joined

#

So it'll take a little time

#

Indeeed

#

Thankyou for guiding me

#

So how are y'all doing today?

#

It's okay

#

Happens to the best of us

#

That's great! Would you introduce me yourself a little if you're comfortable

#

Goddamn

#

โœจ

#

๐Ÿ‘

#

Haha okay

#

I'll make sure I do.

#

Hello Mr. Marquisbuig. That's actually nice.

fallen solstice
#

I'm not able to talk in voice chat 0 pls check. @somber heath

faint hare
#

True that i face a little problem with chatgpt too

#

It sort of cuts me in between

#

A LOT

fallen solstice
#

Oh. Ok thanks ๐Ÿ‘

faint hare
#

What do the activity blocks mean

#

Mr. Opa

fallen solstice
#

It seems that I should be in this server for more than 3 days. It's my second day now.

faint hare
#

Aha

#

Gotcha

#

Thankyou

#

Your about me isโœจ

#

Have a great day everyone! I'll go watch some lectures

stark river
#

that's why every front end dev is a fool*

dire pebble
#
seen = list()
loops = list()
passer = list()
a = 1
stopper = 0
while stopper < 100:
    if stopper == 100:
        break
    n = a
    a += 2
    for x in loops:
        try:
            if bx := n in x:
                print(f"The number {n} was found in the list {x}")
                passer.append(bx)
                continue
            elif by := n in seen:
                print(f"The number {n} was seen before.")
                passer.append(by)
                continue
        except:
            pass
    if any(passer):
        continue
    while True:
        if not n % 2 == 0:
            n = (n*3+3)
        else:
            n /= 2
        if n not in seen:
            seen.append(n)
        else:
            loop = seen[seen.index(n):]
            loops.append(loop)
            print(f"A number loop was found! (started as {a-2}) ({n}) {loop}")
            break
    stopper += 1
vocal basin
#

/= gives a float

#

!e

print(4 / 2)
wise cargoBOT
vocal basin
#

JS has no integer division afaik

vocal basin
somber heath
#

!e py print(4 // 2) print(4.0 // 2) print(4 // 2.0)

vocal basin
#

idk about 3n+3, but in 3n+1 numbers get quite large at times

wise cargoBOT
somber heath
#

@latent pewter ๐Ÿ‘‹

vocal basin
latent pewter
#

hello

vocal basin
#

in checks for lists are relatively slow

#

integer-only would be misleading because of limited precision and ints being quite big

#

!e

print(1e100 // 1e10)
wise cargoBOT
vocal basin
#

!kindling

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.

vocal basin
#

> it's not that simple
well there you go: you have an option to try and make the installation simpler

#

or whatever, deployment, etc.

#

bots aren't hosted on discord servers

sleek viper
#

it runs on my raspberry pi 5

vocal basin
#

so "it's not that simple" is referring to adding it to a discord guild?

#

generally users of bots expect it to "just work" without much set up on their part

vocal basin
#

as far as I've heard LaTeX is quite common for resumรฉs

#

so nothing out of the ordinary

#

@dire pebble use sets

#

not lists

#

!e

print({1, 2, 3, 4, 5} - {4, 5, 6, 7, 8})
wise cargoBOT
vocal basin
#

no, because lists don't support fast lookup

#

.add

#

!e

numbers = {1, 2, 4}
numbers.add(3)
print(numbers)
wise cargoBOT
vocal basin
#

!e

# if you really need to work with lists
include = [1, 2, 3, 4, 5]
exclude = [4, 5, 6, 7, 8]

exclude_set = set(exclude)
filtered = [x for x in include if x not in exclude_set]
print(filtered)
wise cargoBOT
vocal basin
#

exclude_set is an optimisation to make x not in exclude_set lookups faster

vocal basin
#

there set is just an implementation detail to make filtering faster

vocal basin
#

!e

include = [3, 2, 1, 4, 5]
exclude = [4, 5, 6, 7, 8]

exclude_set = set(exclude)
filtered = [x for x in include if x not in exclude_set]
print(filtered)
wise cargoBOT
vocal basin
#

this keeps the order because list comprehension keeps the order

#

for sets it's .add

#

sets don't have a fixed order

vocal basin
#

do you need to do in collection with the ordered collection?

#

just a placeholder for wherever you store the numbers

vocal basin
dire pebble
#
                                 _________________```
vocal basin
#

is it always a prefix?

#

what do the lists represent?

#

you need to get all numbers found that don't belong to the loop?
or all numbers in a loop that haven't been seen before?

vocal basin
#

so you keep track of all numbers not yet belong to any loop, right?

#

I'd suggest keep two separate sets:
numbers that are in some loop
numbers that haven't yet been proven to be in a loop

#

or even more:

lucid blade
#

XD

#

๐Ÿ˜„

vocal basin
#
all_numbers = unseen_numbers + seen_numbers
seen_numbers = numbers_in_some_loop + numbers_in_no_loops
numbers_in_no_loops = numbers_with_some_next + numbers_with_no_next

numbers_with_some_next have a number in numbers_in_no_loops that follows them
numbers_with_no_next don't

#

only numbers_with_no_next are meaningful to iterate further

stark river
#

๐Ÿคฃ

fallen solstice
#

P

lucid blade
#

OT just saw this on reddit ....

#

wow

#

thats a big firework

vocal basin
#

@wise loom (dis)proving it isn't the purpose of that code

#

as stated earlier

somber heath
#

@twin onyx ๐Ÿ‘‹

twin onyx
#

hey

dire pebble
#

The latest should be the one with last order digit

vocal basin
#

if you really need to have an ordered set, there's two options:
use an external package that implements it
use dict to imitate that behaviour

#

dict keeps insertion order

vocal basin
#

I'd highly suggest actually drawing how those graphs look like

#

something like

somber heath
#

@merry roost ๐Ÿ‘‹

vocal basin
#

@lucid blade
sadly that's more than 1% amount in some places

merry roost
#

were you playing lego before you slept?

somber heath
#

@hot charm ๐Ÿ‘‹

wise loom
vocal basin
#

there is no "perfectly" efficient removal by index afaik

#

as in

twin pond
#

hey @stark river u writing a software or smn?

vocal basin
wise loom
twin pond
#

mb i js left the call coz i had to join another

vocal basin
stark river
#

not rn

vocal basin
#

and O(1) access means O(N) removal

twin pond
twin pond
vocal basin
#

so it's more about inventing a common language for describing element systems that can be reduced to some canonical form

twin pond
somber heath
#

@slender cobalt ๐Ÿ‘‹

slender cobalt
#

Hello there

#

What's going

lucid blade
vocal basin
#

@lucid blade kilobits not kilobytes?

#

iirc 128 kilobyte is flac-level quality

#

(per second)

somber heath
#

@split charm ๐Ÿ‘‹

vocal basin
somber heath
#

@stark oxide ๐Ÿ‘‹

stark oxide
#

I can't talk due to that I'm new to the server

vocal basin
#

it should've been algorithmic not manually-made

stark river
#

why make that

somber heath
vocal basin
#

but with +1 instead of +3

stark oxide
#

I knwo but I need to be in here for more than 3 days but I'm less than it in hre

stark oxide
vocal basin
stark oxide
#

true

vocal basin
stark oxide
#

it can be overcomplicated later due that the diagram is realy big

stark oxide
#

and you multiply it by 3

somber heath
#

@chrome flax ๐Ÿ‘‹

stark oxide
#

for what companies do you work?

vocal basin
#

!e

from statistics import median

def step(n):
    if n % 2:
        return 3 * n + 3
    else:
        return n // 2

def steps(n):
    for _ in range(100):
        n = step(n)
    return n

numbers = list(map(steps, range(1, 101)))
print(median(numbers))
wise cargoBOT
vocal basin
#

!e

from statistics import median

def step(n):
    if n % 2:
        return 3 * n + 1
    else:
        return n // 2

def steps(n):
    for _ in range(100):
        n = step(n)
    return n

numbers = list(map(steps, range(1, 101)))
print(median(numbers))
wise cargoBOT
vocal basin
#

hmm

#

!e

from statistics import median

def step(n):
    if n % 2:
        return 3 * n + 3
    else:
        return n // 2

def steps(n):
    for _ in range(100):
        n = step(n)
    return n

numbers = list(map(steps, range(1, 101)))
print(sorted(numbers, reverse=True))
wise cargoBOT
# vocal basin !e ```py from statistics import median def step(n): if n % 2: retur...

:white_check_mark: Your 3.12 eval job has completed with return code 0.

[159, 120, 105, 30, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
vocal basin
#

they aren't that big

#

!e

from statistics import median

def step(n):
    if n % 2:
        return 3 * n + 1
    else:
        return n // 2

def steps(n):
    for _ in range(100):
        n = step(n)
    return n

numbers = list(map(steps, range(1, 101)))
print(sorted(numbers, reverse=True))
wise cargoBOT
# vocal basin !e ```py from statistics import median def step(n): if n % 2: retur...

:white_check_mark: Your 3.12 eval job has completed with return code 0.

[184, 160, 160, 106, 106, 80, 53, 23, 20, 20, 16, 10, 5, 5, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
vocal basin
#

+1 yields bigger numbers

stark oxide
#

do you have some website or something that is good for learning python?

vocal basin
#

!d resources

wise cargoBOT
#

Built-In Resources

Resource files are images and sounds built into Arcade that can be used to quickly build and test simple code without having to worry about copying files into the project.

Any file loaded that starts with :resources: will attempt to load that file from the library resources instead of the project directory.

Many of the resources come from Kenney.nl and are licensed under CC0 (Creative Commons Zero). Be sure to check out his web page for a much wider selection of assets.

stark oxide
#

that's free

vocal basin
whole bear
#

wait

#

do u guys remember the days when music bots was introduced and every server were using them?

somber heath
#

@light relic ๐Ÿ‘‹

stark oxide
#

beginner/advanced things

#

I use atm freecodecamp.org for html/css but I want to go more in teh python world, but I can't find a good website that's 100% free course for python

whole bear
#

Rythm is widely used for music app

twin pond
whole bear
#

app = bot

vocal basin
twin pond
#

js saw others use em

vocal basin
#

The Loop for +3 is 12-6-3

#

for +1 it's 4-2-1

stark oxide
#

true

somber heath
#

@lunar stone ๐Ÿ‘‹

vocal basin
#

as far as I see, +3 grows slower than +1

#

hmm

#

for numbers up to 1000

#

after that less so

stark oxide
#

is js or python better for a website? or depends on the end task?

vocal basin
#

for backend?

twin pond
#

u could go for py and django for

twin pond
vocal basin
#

(for frontend it's JS, for many reasons)

#

python-to-wasm is suboptimal

stark river
#

python if you want to build quickly.. js if you want to use same lang on fr end n bk end

vocal basin
#

JS is quite productive too

#

FastAPI is nice

#

I don't know enough to say if JS has an equivalent

stark river
#

expressjs

stark oxide
#

is your mental or pyshical health bad?

#

fr?

vocal basin
#

(I'd say Flask if it wasn't that bad)

#

FastAPI has extensive DI support

tall ridge
dire pebble
#
list1 = [3,43,4,24,23,4,423,4,23,43,25,2,5,23]
list2 = [3,43,4,24,23,4,423,4,23,43,25,2,5,23]
list3 = [3,43,4,24,23,4,423,4,23,43,25,2,5,23]
list4 = [3,43,4,24,23,4,423,4,23,43,25,2,5,23]
list5 = [3,43,4,24,23,4,423,4,23,43,25,2,5,23]
list6 = [3,43,4,24,23,4,423,4,23,43,25,2,5,23]
#treat as if the lists are not same

list_of_lists = [list1,list2,list3,list4,list5,list6]

print(3 in list_of_lists)
stark oxide
#

is this a nested list?

vocal basin
#

any(element in row for row in matrix)

#

very slow

somber heath
#

!e py import numpy as np arr = np.arange(9).reshape(3,3) print(arr) result = np.any(arr == 3) print(result)

wise cargoBOT
tawny cradle
#

bro has no cpu

#

nvm

somber heath
#

!e py import numpy as np arr = np.arange(9).reshape(3,3) print(arr == 3)

tawny cradle
#

i cant rea

wise cargoBOT
lucid blade
#

bbl u lot i gtg

#

waves

tawny cradle
#

does anyone have any experince with django?

vocal basin
#

I only have experience debugging other's django projects

tawny cradle
#

are there any databases that are particulary good outside of sqllite

vocal basin
#

postgres

#

mariadb

tawny cradle
#

ok

#

are dockers helpful

#

for using django

vocal basin
tawny cradle
#

ive been seetting up venv and its kind of a pain in the ass

gentle flint
somber heath
#

!e py import numpy as np arr = np.arange(9).reshape(3,3) result = 3 in arr print(result)

wise cargoBOT
vocal basin
#

docker won't help with venv that much

tawny cradle
#

ok

vocal basin
#

outside docker, you still need a venv

gentle flint
#

python3 -m venv virtual_env_name

tawny cradle
#

wow

gentle flint
#

and that's all

vocal basin
#

inside docker, you should have a venv still (otherwise pip complains)

tawny cradle
#

oh thanks for clarifying after i said i already know how to do it

gentle flint
vocal basin
#

yes

tawny cradle
#

not @vocal basin

#

ur nice

gentle flint
vocal basin
#

eh

#

not entirely

gentle flint
tawny cradle
#

yeah, dockers are multifaceted

gentle flint
#

environment issues basically

stark oxide
#

why is python so powerfull and easy at teh same time?

vocal basin
#

which it sometimes does

somber heath
stark oxide
#

what is happening here

vocal basin
#

... which is still very helpful, and I generally avoid doing almost anything outside docker for that reason

#

FastAPI is at least as user friendly as Flask, imo

vocal basin
tall ridge
#

For python and docker, I suggest reading the materials at pythonspeed.com. TLDR: the considerations for dev are different from prod and Docker treats python a bit differently from statically compiled languages.

vocal basin
#

as for Django vs Flask -- yeah, Django might be a bit too complicated

willow loom
#

neat

tall ridge
willow loom
#

I'm gonna go with django

stark oxide
#

what certificates can I get in python?

vocal basin
#

*headers are broken*
Django: here's 1300 page doc on how to maybe sometimes fix it
Flask: gg, your app is as broken as the framework itself

vocal basin
#

, last time I checked

tawny cradle
#

how do you feel about the js frameworks

vocal basin
#

or whoever was asking

obsidian dragon
#

!paste @dire pebble

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.

dire pebble
#
seen = list()
loops = list()
a = 1
stopper = 0
while stopper < 10:
    stopper += 1
    passer = list()
    n = a
    a += 2
    while True:
        for x in loops:
            try:
                if bx := n in x:
                    print(f"The number {n} was found in the list {x}")
                    passer.append(bx)
            except:
                pass
        if any(passer):
            break
        if n not in seen:
            seen.append(n)
        else:
            loop = seen[seen.index(n):]
            seen = []
            loops.append(loop)
            print(f"A number loop was found! (started as {a-2}) ({n}) {loop}")
            break
        if not n % 2 == 0:
            n = int(n*3+1)
        else:
            n = int(n/2)
vocal basin
#

hmm

stark river
#

shit code.. copied from somewhere