#voice-chat-text-0
1 messages ยท Page 319 of 1
(also re-listening to some voice recording from two weeks ago)
my clean vocals are still way too weak
@whole bear ๐
hi
I don't have that much experience with clean vocals
@velvet stag ๐
Do unmute so he/she can talk
it was recorded in another city on a mic that someone else bought specifically for recording
(they have a music band)
ohk
50 messages
i want to sent
okii
๐
??
whats u said
damn
are u making my fun
okii:)
Sui was the beloved companion of Steve and Terri Irwin. Their daughter, Bindi, was named after their favorite croc and her middle name, Sue, is after Sui. These words are Steve's about his best girl: My sweet little Sui was born on Christmas Day 1988. I brought her home when she was just six weeks old and we became...
also tone deaf
mongolian music is dry.. like the gobi desert
ohh super
Heah
Anyone konw karuta bot?
I've always had problems understanding pitch/tones from what I hear
even though I have a very good understanding of theory
oki
highest note I've hit was 4KHz
hh
but that wasn't with clean vocals
are u russian bro
mellstory area:)
Mellstroy isn't Russian
He left the Russia, i think
@somber heath that one, unlike clean vocals, is loud and hurts ears a lot
loudest part of the spectrum is around 4KHz in the beginning
@static charm ๐
"this even looks scary"
@somber heath hello
last one is around 3KHz (I think?)
try chrome music lab
I was talking about the frequencies not the UI
@gentle flint โs always doing irl stream in discord vc :3
first: it lags a lot
second: I don't see an upload option there
it doesnt on me, maybe thats just ur pc or internet
u can definitely record, see yt videos for it
it's not pc, it's the browser
funnily enough, it's specifically chrome
good job on that, google
record as in?
been running chrome ever since
okay
u didnt have to tell me that ur lazy finding ways to record
๐ฆ
what, out of all these buttons, is the upload button?
u can record on ur pc
thats the way u can upload is by recording your pcโs sound on the spot
digitally
not physically
what is your understanding of "upload" in this case?
theres a lot of software out there mate
I'm not your "mate"
me when I literally have this opened
you can record but upload? im not so sure
@tacit temple ๐
.
upload to the website not youtube or wherever else
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
you're suggesting to plug PC audio output as input for the website?
kind of suboptimal
cant you find an application or any software that can record ur pc?
again, so helpless of u
why record?
when did I ever say I need to record?
I already have an existing recording
C U Z Y C A N T U P L O A D
an mp3 file
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
@somber heath pls intervene
projecting?
uploading capabilities varies
hmm
it doesn't have a pause button
to pause the audio that it plays
I just should install a DAW at this point
i didnt know that you were talking about uploading files
i thought u want to record :?
so you just made up your own meaning of upload and assumed it's correct
that's your problem ยฏ_(ใ)_/ยฏ
never did it before 
anyways
geez
do tell
this one lags: https://spectrogram.sciencemusic.org/
this one is oversimplified: https://academo.org/demos/spectrum-analyzer/
This audio spectrum analyzer enables you to see the frequencies present in audio recordings.
I sing
mostly the first one because it supports both mic and upload
i sing like an autistic bird
any tips?
I haven't been doing clean vocals of even remotely enough time to provide any tips
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
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)
what do u sing?
mine is whatever i find in yt karaoke
speaking of yt karaoke:
https://youtu.be/wGZ840OzGj0
Grab your mic and hop on the stage, it's your turn to takeover the karaoke party! Turn up the volume and sing it loud, we want to see your BEST performance of our song "Day Drinking!"
Video by John Fenton at Negative Space Visuals
Follow on Instagram at NGTV_SPACE
ill try this tmr
it's so funny a deathcore/metalcore band releases an official karaoke
mostly covering existing deathcore songs; occasionally, some other stuff
hi
repeat that pls
been a while since i used one of those
i doubt i can help with this but i can try
In this tutorial, I'll be unveiling 5 essential Python decorators that every programmer should have in their toolkit. If you're wondering what decorators are and how they can supercharge your Python code, you're in the right place. Throughout this video, I'll dive deep into the world of decorators, explaining their fundamental principles and sho...
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
@ornate elm Hi
hi
hey, does anybody know where i can learn python easily?
thx
hi
takeuforward
for solving important question
!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
:white_check_mark: Your 3.12 eval job has completed with return code 0.
test_var is not greater than 50
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.")
@wooden parcel ๐
HEy
@somber heath what are you talking about?
@somber heath I hope you get better soon ๐
@echo isle ๐
@peak depot whats the temperature there?
+23
its +40 degrees celsius here
+28 in my appartment without ac
We are not using ac
!e py import random print(random.choice(['Get up.', 'Do not get up.']))
:white_check_mark: Your 3.12 eval job has completed with return code 0.
Get up.
!e
import random
print(random.choice(['Reroll', 'get up.']))
:white_check_mark: Your 3.12 eval job has completed with return code 0.
Reroll
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.']))
:white_check_mark: Your 3.12 eval job has completed with return code 0.
Do not get up.
!e
import random
print(random.choice(['Reroll', 'get up.']))
:white_check_mark: Your 3.12 eval job has completed with return code 0.
get up.
hi
what
@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
Average ping: 1470 ms
Let's gooo...
Yeah, I'm getting really pissed.
@vale quarry ๐
@somber heath what do u think of the UI?
ISP's website
โ๏ธ
๐คทโโ๏ธ
for me its bad cuz there arent any dropdown options on the right of the logo
"personal use only"
hmm
ig for mobile-ish internet makes sense
i think i failed to mention that the company is going through re-infrastructuring afaik
@wooden parcel ๐
which may explain the UI lol
btw "personal use only" might mean they'll block traffic if they detect it's a hotspot
that sucks lul
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
but i think the term "personal use only" varies in definition, itd be safe to ask the company first before considerations
"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)
does it say "personal use only" for yours with the cotract youre into or nah?
quite sure it doesn't
do whatever u want then lol
whats the biggest isp (not mvno) in your area? @vocal basin
here in AU region im in is Telstra then Optus
@thin gale ๐
onlime (rostelekom) and dom.ru (er-telekom)
@whole bear ๐
MVNOs aren't that popular where I live
I only know two
people tend to use the base operators directly
@patent dragon background noise
GOD DAMN
please build a fence around australia so i dont accidentaly go there
true
iirc Tasmania was discovered by Europeans before Australia
I don't know how that makes sense geometrically
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...
you need more than just genes for cloning extinct stuff
Supplementary video from the paper Grossi B, Iriarte-Dรญaz J, Larach O, Canals M, Vรกsquez RA (2014) Walking Like Dinosaurs: Chickens with Artificial Tails Provide Clues about Non-Avian Theropod Locomotion. PLoS ONE 9(2): e88458. doi:10.1371/journal.pone.0088458.
http://www.plosone.org/article/info%3Adoi%2F10.1371%2Fjournal.pone.0088458
Abstrac...
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...
Rotterdam, work with me hehe.
@prisma glade ๐
weve sen tis wan b4
no
u must see it
why
its really a good scary game
ok I will check it out
Hi
hi I cannot speak
I need send 50 mssg its a lot
what did you say?
just for chating about Ai and data science
@cold crest ๐
Full video on ig โโ @ThaPhantom._
@whole bear ๐
๐ต
why specifically when hemlock gets in ๐ญ
ah
im playing mc rn and its fun
might start a 2 week phase
@round bone ๐
lemme open vscode
im on day 4 (ingame) and already full diamond gear (not enchanted)
boat filled with water :(
got the new cape
playing mc
Damn! Enjoy ur game
@whole bear ๐
๐ค i think its you
nah jk
but you have a beautiful voice though
also i installed this mod.
uhhh
"transparent window"
@sturdy night ๐
jgj
@nova knoll ๐
still can't figure out how to unmute
Hi๐
@soft gate ๐
!e
a = 1
b = a==1
print(b)
:white_check_mark: Your 3.12 eval job has completed with return code 0.
True
This feels so weird. Is it a good practice?
I'd have spaces on either side of the operator.
Like
b = a == 1
```?
Mm.
It's not weird to have = and == in the same line?
It is not weird.
Ok good to know. Thank you very much dear Opal!
Haa hahaha haaa, 'mericaaaa, fuuuuqq yaaaah
"Comrade!"
Supply and Demand.
Here:
- Find a problem you understand.
- Do literature review on existing solutions.
- Come up with an improved and/or novel solution.
- Develop the solution as a SaaS.
- Deploy as an easy-to-use tool.
- Find customers who need it.
- Register your company, and start planning your costs and expenses.
- Get bankrupt or acquired after a few years depending on how well your solution did.
@normal trout
Lost me on the first one
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.
how do I find problems then @upper basin
ur the troll here
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.
!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.
explore engineering projects. theres bad solutions to things in literally every facility
if its your taste
Yeah, it's super easy to spot small or even big improvements, and you can easily build on an existing codebase.
https://www.kaggle.com/learn @normal trout if you want to start learning about ML
Practical data skills you can apply immediately: that's what you'll learn in these no-cost courses. They're the fastest (and most fun) way to become a data scientist or improve your current skills.
Dev, can you please ask Hemlock to make vc0 a closer server?
Andrew Ng's course to ML is a must.
howdy @peak depot
How cool is that!?
first coffee have to do yard work before new rain
modules?
Awesome course.
Can you tell I've taken one of his courses
Yep HEHEHE
I originally learned Python through him haha
He has some of the best courses on AI/ML.
I wish all of his courses were free though,.
Yeah, who would want money for making 20-40 hours worth of content. Can't be that difficult...
No I know it's worth it.
sarcasm
yes
sacasm
It's just sometimes hard to pay that much with my currency.
!stream 710856373675491381
โ @scarlet halo can now stream until <t:1716823282:f>.
:D
Make sure to select appropriate content for streaming ๐
im coding though
nah
badminton better ngl
for what im using it for its pretty much the same
โบ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...
nah
theres no way its the same, its ALOT harder
yes more exciting
maybe Hemmy ran away joined another circus
try yoga first to get your joints and muscles ready to be punished @rugged tundra
tango classes have hot chicks
how to lose weight without exercise and also without leaving fast food"?
stop sugar like soda , i lost 20 pounds gradually by not having it
western food is sugar + fat
sugar okay noodles?
Just remember it's supposed to be avoiding fights not provoking them.
sugar in coffe ok , just soada is liquid sugar which is very addictive
liek pepsi, coke
yes
damn i love it in summer
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
true
help you with reflexes a lot too
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 .......
yeep is like a super power
also looka t paciao, is an amazing fighter
very important, ironicly, i havent been doing, and luckily i didnt got injured in this ammount of time
i indeed need to implement this, i didnt knew the importance of it
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
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
those mans are prepared to dead, they indeed can and more
they prepare to live
true but always they enter octagon, they already prepared for worst case scenario(death)
maybe if your a white boy in hong kong , then your a target
jajaja, i wouldnt mess with them so they dont mess with me
just avoid fights
but i am prepared to die, if any of the loved ones are with me
i mean if they are threatened in someway
90 pound girl can do you in .... most are not ready for that idea
bruhhh
there are 120 pound viet namese guys who make a living beating up us marines and rob them
dont fight
i actually dont like to fight when not necesary
.
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
@lethal hinge hold on now, type properly
u learning ML?

real or artificially made data?
how would you differentiate real and artificial data
you mean dummy data?
Usually if the distribution is too perfect, or doesn't make sense from a domain-specific viewpoint.
Different situations follow different distributions. Those who work in the field can spot those trends.
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).
๐
using artificially made data is better than using dummies
BUT it depends on the purpose as stated on my last big paragraph
๐
.
@primal shadow u sounds like an AI
also, i wouldnt know if ma guy is using what kind of data because idk what's he doing at all
i do know types of data
thanks to my cs teacher
hmm
@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.
!code
#bot-commands
!e
print("Hello World")
python?
im new here... do u help with HW to understand ?
yes
!e
print("Hello World")
i dont get the meaning ur trying to convey pls do tell
sure what type of hardware do you need help with
@drowsy tinsel #bot-commands
like for uni
homework to understand
python trying to use mouse for coding in python
duh
i code python on vsual studio code

everybody does ๐
sometimes i dont understand the tasks but like im good at coding
can u be quiet:)
lol
its not rly HW its like more tasks
@primal shadow is this stupid?
qmprs.synthesis.mps_encoding.sequential.Sequential
spit it out already
imma post nexr day the task just wanted to know if u helping
x = txt.replace("bananas", "apples")
print(x)
idk the task so idk if i can help or anyone here
i sometimes do it on nvim or pycharm. so not everybody does.
u still do... sometimes
yeaa i dont have the task yet budd when i do i post it hereb
its exaggeration
yeaa fr
we'll try to "help" you as much as we can with our limited time in life
why i have to add a dictionary ?
!e
txt = "I like bananas"
x = txt.replace("bananas", "apples")
print(x)
:x: Your 3.12 eval job has completed with return code 1.
001 | File "/home/main.py", line 1
002 | txt = "I like bananas"
003 | IndentationError: unexpected indent
@still herald
ya
lol
yea i hope
can you must urself
: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
background noise
!e
txt = "I like bananas"
x = txt.replace("bananas", "apples")
print(x)
:white_check_mark: Your 3.12 eval job has completed with return code 0.
I like apples
why
there
bg noise
me 2
i'll go
where u adding dictionary here?
isnt it a tuple?
it is a tuple
where tuple
where?
im talking about this
leave*
oh okk
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.
!e
def helloWorld():
print("print")
helloWorld()
:white_check_mark: Your 3.12 eval job has completed with return code 0.
print
wait
i was wrong
guys
lemme fix this
@silk dust i fixed it
!e
def helloWorld(prรญnt):
print(prรญnt)
helloWorld("print")
:white_check_mark: Your 3.12 eval job has completed with return code 0.
print
How to make a coffee (my way)
- Pour 1 teaspoon of coffee, 2 teaspoon of milk powder, and 1 teaspoon of sugar. (Optional: 1 teaspoon of honey)
- Pour however much hot water you want (preferrrably 1/2 cup of hot water). Then, stir.
- 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
๐
@primal shadow heres ur answer for what type of candy: https://youtu.be/gY0-Bp0bGTk
enemies >:(
I got back from PyconUS and I almost recovered from the interaction overwhelm.
@crystal hearth@humble turret๐
cannot speak lol
no permissions
same
yessir
@somber heath did u know that you can make emojis in emoji kitchen?
I was aware there was some kind of colour modifier in the utf spec.
@whole bear๐
Hello
@frosty lantern ๐
!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)```
:white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | [MyClass(), MyClass(), MyClass()]
002 | A string version.
!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)```
:white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | [REPR, REPR, REPR]
002 | A string version.
!e
print("hi")
:white_check_mark: Your 3.12 eval job has completed with return code 0.
hi
Hello Guys!!
hi
:
!e py print(123);print(456)
:white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | 123
002 | 456
Guido is not impressed;
!e
print(123)
print(456)
:white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | 123
002 | 456
:x: Your 3.12 eval job has completed with return code 1.
001 | File "/home/main.py", line 1
002 | for _ in '...';
003 | ^
004 | SyntaxError: invalid syntax
gtg
!e
import os
:warning: Your 3.12 eval job has completed with return code 0.
[No output]
package
!pypi package
!e py v = '123' while True: v *= 2
:warning: Your 3.12 eval job timed out or ran out of memory.
[No output]
!e py print('I\'m not dead!')
:white_check_mark: Your 3.12 eval job has completed with return code 0.
I'm not dead!
@daring crane ๐
I found vulnerabilities in my college Attendance website
Search over 30,590 used BMWs. TrueCar has over 588,523 listings nationwide, updated daily. Come find a great deal on used BMWs in your area today!
Use selenium or Beautiful soup4
@glad rock
hi
Hi
!rule 5 @glad rock
5. Do not provide or request help on projects that may violate terms of service, or that may be deemed inappropriate, malicious, or illegal.
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
@leaden mountain hi
what
I didnt hear that
do I joke?
match
?
what is that bro?
yes
@gentle elbow ๐
hi
WHAT?
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.
I'm not able to talk in voice chat 0 pls check. @somber heath
True that i face a little problem with chatgpt too
It sort of cuts me in between
A LOT
Oh. Ok thanks ๐
It seems that I should be in this server for more than 3 days. It's my second day now.
Aha
Gotcha
Thankyou
Your about me isโจ
Have a great day everyone! I'll go watch some lectures
that's why every front end dev is a fool*
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
//= not /=
/= gives a float
!e
print(4 / 2)
:white_check_mark: Your 3.12 eval job has completed with return code 0.
2.0
JS has no integer division afaik
while True on the inner loop is a bit sketchy
!e py print(4 // 2) print(4.0 // 2) print(4 // 2.0)
idk about 3n+3, but in 3n+1 numbers get quite large at times
:white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | 2
002 | 2.0
003 | 2.0
@latent pewter ๐
you should consider using set() for seen instead of list()
hello
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)
:white_check_mark: Your 3.12 eval job has completed with return code 0.
1e+90
!kindling
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.
^ @sleek viper if you need project ideas
> 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
it works with discord's API
it runs on my raspberry pi 5
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
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})
:white_check_mark: Your 3.12 eval job has completed with return code 0.
{1, 2, 3}
no, because lists don't support fast lookup
.add
!e
numbers = {1, 2, 4}
numbers.add(3)
print(numbers)
:white_check_mark: Your 3.12 eval job has completed with return code 0.
{1, 2, 3, 4}
!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)
:white_check_mark: Your 3.12 eval job has completed with return code 0.
[1, 2, 3]
exclude_set is an optimisation to make x not in exclude_set lookups faster
this will keep the order
there set is just an implementation detail to make filtering faster
!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)
:white_check_mark: Your 3.12 eval job has completed with return code 0.
[3, 2, 1]
this keeps the order because list comprehension keeps the order
for sets it's .add
sets don't have a fixed order
do you need to do in collection with the ordered collection?
just a placeholder for wherever you store the numbers
collection being include there
_________________```
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?
(first or second?)
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:
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
๐คฃ
P
@twin onyx ๐
hey
How can I add following numbers in following order to the set without append method?
The latest should be the one with last order digit
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
also unseen numbers pointed to by pointed ones
I'd highly suggest actually drawing how those graphs look like
something like
@merry roost ๐
@lucid blade
sadly that's more than 1% amount in some places
were you playing lego before you slept?
@hot charm ๐
I probably missed that part
hey @stark river u writing a software or smn?
having logN removal means logN access
@vocal basin I want to brainstorm with you on a problem I saw on someone's website about a data structure.
https://www.chiark.greenend.org.uk/~sgtatham/algorithms/equivalence.html
mb i js left the call coz i had to join another
as far as the algorithms that I'm aware of
not rn
and O(1) access means O(N) removal
lol what?
mm ayt
seems a bit too general
so it's more about inventing a common language for describing element systems that can be reduced to some canonical form
damn what even is that? a rocket or sumn?
@slender cobalt ๐
spacex starship
@lucid blade kilobits not kilobytes?
iirc 128 kilobyte is flac-level quality
(per second)
@split charm ๐
what a waste of time lmao
@stark oxide ๐
I can't talk due to that I'm new to the server
it should've been algorithmic not manually-made
why make that
I knwo but I need to be in here for more than 3 days but I'm less than it in hre
is this even/2, odd *3 +1?
after some point it'll be impossible to pack them like this
true
yes, collatz conjecture
it can be overcomplicated later due that the diagram is realy big
+1 has a bigger change of getting to 1 than +3
and you multiply it by 3
@chrome flax ๐
for what companies do you work?
!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))
:white_check_mark: Your 3.12 eval job has completed with return code 0.
6.0
!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))
:white_check_mark: Your 3.12 eval job has completed with return code 0.
2.0
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))
: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]
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))
: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]
+1 yields bigger numbers
do you have some website or something that is good for learning python?
!d resources
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.
that's free
this has a filter by what's free and not
wait
do u guys remember the days when music bots was introduced and every server were using them?
@light relic ๐
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
mee6 prime
app = bot
for +3, chance of ending up in a loop that contains 1 is exactly 0
uh ye i remember that too bas i never really used em
js saw others use em
true
@lunar stone ๐
as far as I see, +3 grows slower than +1
hmm
for numbers up to 1000
after that less so
is js or python better for a website? or depends on the end task?
for backend?
u could go for py and django for
yeah
python if you want to build quickly.. js if you want to use same lang on fr end n bk end
JS is quite productive too
FastAPI is nice
I don't know enough to say if JS has an equivalent
expressjs
that's more like Quart for JS
(I'd say Flask if it wasn't that bad)
FastAPI has extensive DI support
It depends more on who is paying for your time. If you are working for yourself, use python. If someone else is paying you to write software, JS is better, because you will never be done.
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)
is this a nested list?
!e py import numpy as np arr = np.arange(9).reshape(3,3) print(arr) result = np.any(arr == 3) print(result)
:white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | [[0 1 2]
002 | [3 4 5]
003 | [6 7 8]]
004 | True
!e py import numpy as np arr = np.arange(9).reshape(3,3) print(arr == 3)
i cant rea
:white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | [[False False False]
002 | [ True False False]
003 | [False False False]]
does anyone have any experince with django?
I only have experience debugging other's django projects
are there any databases that are particulary good outside of sqllite
for running a database -- definitely yes
ive been seetting up venv and its kind of a pain in the ass
it really isn't
!e py import numpy as np arr = np.arange(9).reshape(3,3) result = 3 in arr print(result)
:white_check_mark: Your 3.12 eval job has completed with return code 0.
True
docker won't help with venv that much
ok
outside docker, you still need a venv
python3 -m venv virtual_env_name
wow
and that's all
inside docker, you should have a venv still (otherwise pip complains)
oh thanks for clarifying after i said i already know how to do it
which you can safely ignore
yes
the whole point of using docker for python development is to avoid using a venv etc
and saying it was a pain in the ass
yeah, dockers are multifaceted
well and avoiding pains with apt dependencies etc
environment issues basically
why is python so powerfull and easy at teh same time?
(I don't follow this until it actually errors)
which it sometimes does
https://youtu.be/SMWi7CLoZ2Q?feature=shared @obsidian dragon
http://www.youtube.com/parrygrippradio
Special thanks to all of the cool people who let me use their video clips!
Please check out the original videos:
Hamster eating bell peppers
http://www.youtube.com/watch?v=BrtKgAjXv7g
from: http://www.youtube.com/dalsch
Hamster Eating Cotton Candy
http://www.youtube.com/watch?v=QWNAU2HBg-A
from: http:/...
what is happening here
only some of the pains
... 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
(responding to VC)
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.
as for Django vs Flask -- yeah, Django might be a bit too complicated
neat
yes, because Django is for when your app talks to a human and Flask is for when the app talks to APIs
I'm gonna go with django
what certificates can I get in python?
*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
no official (PSF-approved) ones
, last time I checked
how do you feel about the js frameworks
!paste @dire pebble
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.
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)
hmm
shit code.. copied from somewhere