#voice-chat-text-0
1 messages Β· Page 471 of 1
hmmm no
because i know TITLE.lower() is for adding the lowercase option as well
or text.title()
How is everyone doing today?
yeah,
actually. this isnt so bad!
not at all actually
the only problem i had was the amount of comments
i like to add small logs to remember where i messed up
ah
i dont expect you to use this, but heres some cleaned up code:
# define constants
BASE_PAY = 0
QUINTILE_BONUS = 60
AGE_BONUS = 40
EMPLOYED_BONUS = 240
UNEMPLOYED_BONUS = 350
AGE_LIMIT = 65
QUINTILE_INPUT = "one, two or three.\n> "
EMPLOYMENT_INPUT = "employed or unemployed?\n> "
INVALID_INPUT = "Invalid, Please choose a valid option."
QUINTILE_DICT = {"one": 1, "two": 2, "three": 3}
EMPLOYMENT_DICT = {"employed": 1, "unemployed": 2}
total_payment = BASE_PAY
print("Please select your quintile.") # Ask user to provide quintile.
quintile_choice = input(QUINTILE_INPUT)
while (
quintile_choice not in QUINTILE_DICT.keys()
and int(quintile_choice) not in QUINTILE_DICT.values()
): # Check if input is in the quintile dictionary's keys or values. If not, ask again
print(INVALID_INPUT)
quintile_choice = input(QUINTILE_INPUT).lower()
if quintile_choice in QUINTILE_DICT.keys(): # Convert to value if the input is a key.
quintile_choice = QUINTILE_DICT[quintile_choice]
employment_choice = input(EMPLOYMENT_INPUT) # Ask for employment status
while employment_choice not in EMPLOYMENT_DICT.keys():
print(INVALID_INPUT)
employment_choice = input(EMPLOYMENT_INPUT).lower()
employment_choice = EMPLOYMENT_DICT[
employment_choice
] # This input only accepts keys. So always convert to the value.
age_input = int(input("How old are you?.\n> ")) # Ask for user's age
if quintile_choice in [1, 2]: # If quintile is in the lower two, apply bonus.
total_payment += QUINTILE_BONUS
if employment_choice == 1: # Use different bonuses for different employment statuses.
total_payment += EMPLOYED_BONUS
elif employment_choice == 2:
total_payment += UNEMPLOYED_BONUS
# Age limit
if AGE_LIMIT >= age_input:
total_payment += AGE_BONUS
print(f"You are receiving a total of {total_payment}")
@marble pendant
yes!
i am starting to understand really quickly
happy to hear that
so you create the dictionary first so it can be more easier to change values at any time
andddd to have some pre-set values so you can edit them with certain variables
yeah pretty much
and since its on a dictionary, it makes the code shorter
instead of repeating myself over time
applying D.R.Y
when you feel ready you should start learning about classes. you can find some good stuff with a quick google search, but people here will always be happy to help
that is awesome
i know about matches
@whole rover hi
good evening
I'm sure what I'm currently doing no one actually know how to do reliably
(rust+sqlite+multithreading+wasm+why)
how is everyone doing today?
where the hell is module.worker.js
@eternal panther π
@woeful blaze I think pyplot.show already uses tkinter
no way
it's working allegedly
oaky it's even returning a sane output
@somber heath you can also confuse everyone like PonyORM does
idk if you're aware of that thing
Hemlock is aware
everyone including you and the language server/type checker
stuff like select(p.name for p in Person if p.middle_name is None)
it parses the Python code
via whatever reflection
or it introspects the bytecode
not sure
then from that it generates SQL
@somber heath what if that field is list[str] | None
so you get a distinction between 0 middle names and lack of the concept of middle names
Falsehoods programmers believe about time, in a single list - falsehoods-programming-time-list.md
I decided that age would be an even dumber example
and I'm too lazy to think further
Classic essay about how software routinely bumbles human names.
there's a worrying about of programmers who assume it starts on Sundays and hard-code it too
@somber heath broken hardware that still needs support, mostly
we have a system that forgets what date it is after each reboot
so now my software has to live in a world which assumes the time can go either direction
@somber heath there are some speed of light concerns there anyway
but that's on very fine precision
a bit under a second
@somber heath 0
even if you assume negative to be BC, some calendars still have no year 0
and some have
@whole rover Swedish calendar?
they did an interesting calendar trolling run iirc
yeah, that's at least somewhat sane
@whole rover test Sweden or whatever that was
@whole rover1712
@cunning junco π
@whole rover I think it doesn't do the Sweden thing
!voice
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
@somber heath
Please I'm new but I'm interested in learning
We're currently learning about the ridiculousness of datetime systems.
how dose embbeding works?
1582-10-04 ES Spain 1582-10-04
1582-10-04 IT Italy 1582-10-04
1582-10-04 PL Poland 1582-10-04
1582-10-04 PT Portugal 1582-10-04
1582-12-09 FR France 1582-12-09
1582-12-14 BE Belgium 1582-12-14
1582-12-14 LU Luxembourg 1582-12-14
1582-12-14 NL Netherlands 1582-12-14
1583-10-05 AT Austria 1583-10-05
1584-01-06 CZ Czech Republic 1584-01-06
1587-10-21 HU Hungary 1587-10-21
1655-02-28 CH Switzerland 1655-02-28
1700-02-18 DE Germany 1700-02-18
1700-02-18 DK Denmark 1700-02-18
1700-02-18 NO Norway 1700-02-18
1700-11-16 IS Iceland 1700-11-16
1752-09-02 AU Australia 1752-09-02
1752-09-02 CA Canada 1752-09-02
1752-09-02 GB United Kingdom 1752-09-02
1752-09-02 US United States 1752-09-02
1753-02-17 FI Finland 1753-02-17
1753-02-17 SE Sweden 1753-02-17
1911-12-18 CN China 1911-12-18
1912-11-30 AL Albania 1912-11-30
1916-03-31 BG Bulgaria 1916-03-31
1918-01-31 RU Russia 1918-01-31
1918-02-01 LI Lithuania 1918-02-01
1918-02-01 LV Latvia 1918-02-01
1918-12-18 JP Japan 1918-12-18
1919-03-04 SI Slovenia 1919-03-04
1919-03-04 YU Yugoslavia 1919-03-04
1919-03-31 RO Romania 1919-03-31
1924-03-09 GR Greece 1924-03-09
1926-12-18 TR Turkey 1926-12-18
meow meow
this is okay. i am currently tryna implement an image processing fucky wucky thing in a client-side AI BUTTTTTT its not going very well. scraping to the best of my ability π
CS is a good all rounder but it depends what you want out of it
CS is a strong foundation - tbf academic qualifications arent valued as much nowadays and it is more certifications that are looked at by employers - but an academic qualification always helps ofc
this took almost two hours to achieve
what is embeding?
in the context of AI?
as far as I interact with them, they're just some compact representation of otherwise big data entry
anyone want to help me do some mythi or 2?
...
ah
sorry
that embedding
in the context of interfaces it just means putting something inside of something else
@astral coral
+$4.86 on trades
-$1000 on gas fees
FigureCanvasTkAgg seems to be just a regular widget
which you can use in tk like any else
@shrewd warren just use uv
automatic venv management
uv+ruff+VSCode
+pyright/pylance
O.o
uv init to setup the project
uv add <package> to add a dependency
uv run main.py to run
that's it
no venv activation
@unkempt sinew both are just extensions of C
very tightly integrated to C usually
@fierce dawn Lua since "recently" (whenever latest few versions were) has some implicit integer support
which works sometimes
JS/PHP have that as optimisation mostly
thats where it is
website looking quite detailed currently
Run diagnostics, network tests, and storage scans in one place. View system info and explore Windows internals easier than ever before. Built for power users, sysadmins, and engineers. - iaxivers/W...
@shrewd warren
Today is my birthday
im so fucking
mad
i got insulted on an egirl server so i posted a pic of a glock
π
my brother added me to that server
What did you intend to achieve by doing so?
You did a stupid thing. Now you ask yourself: "How do I put it right?"
i just left that server
πΏ
Almost every one of us has the power to change somebody's life. Use that power for good, eh?
Because if someone sent me a glock pic in anger, I would probably get a chill down my spine and have a very bad day, indeed.
I would be spending the rest of the day telling myself that it's just the internet, they're probably not serious.
Even if they are serious, it's not like they know where I live.
Do better, @twin zinc.
Do better.
π
@dry jasper https://www.youtube.com/@loewhaley
@plain light π
@chilly chasm π
hi
Fetch is a pet game where an object, such as a stick or ball, is thrown a moderate distance away from the animal, and it is the animal's objective to grab and retrieve ("fetch") it. Many times, the owner of the animal will say "Fetch" to the animal before or after throwing the object. The game is usually played with a dog, but, in rare instanc...
Can you please tell me how to unlock the microphone?
!voice
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
That's 48 more messages, so..
Zak, I think you're a handsome guy, or girl, who knows
Eww
I'm not going to math that
not because I don't want to calculate it but because I don't want to know if you're wrong or right
@versed heath the trickiest is when the problem is almost word-for-word
@polar ore π
@solemn hazel π
hi
radioisotope thermoelectric generator
RTG/RITEG
@split barn π
"what if it's not smoking because hot but creating vapour because very cold"
liquid nitrogen cooling home appliance
Then I still don't want to eat it cold π€£
if there is no liquid oxygen condensate in there, should be safe-ish to pick up
at least
but, yes, non-edible
I do not appreciate the fact that match/case (structural pattern matching) cannot even be used with regexes on the case branches.
This is such a big shortcoming of match/case.
because it's structural
ddsdddwdwdwddwdw
oh..
Rust doesn't support stuff like that either
!voice
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
@wind raptor that's interesting. i haven't found it yet
Rust is actually way more restrictive compared to Python in that regard
you can customise pattern matching in Python
to some extent
normally you'd just put stuff in if
but does provide things like range matching
what ya guys making
yeah, i'll have to compromise with that for now
??
home assignment for interview
Website for AI article summaries
when are we adding awk: blocks into Python
also, i hate saying "i am working on my portfolio", but that is exactly what i will have to be doing (right after i finish the home assignment).
i dont understand anything i am still 15
you've seen gitsummarise before, right?
what is a professional?
What is this?
Is this from Bash?
it's from α΄Ι΄Ιͺx
like a man who know the stuff too at a level where he can solve code thingies
I know bash awk. Just have never used it in a code block
where did u guys learn all this
it's a joke that we should add it into python
like how VB(A) has inline XML
all what tho?
Just gotta keep learning new things every week
i also wanna understnad these proggramming thingy
i jus know basic of java
taught in my school
this year they will teach python
(β―Β°β‘Β°)β―οΈ΅ β»ββ»
"birds should develop it themselves"
extradite the birds
bird flu? yeah they do that
hi joe
"if you catch it => you're a bird"
@wind raptor consuming computers? is that something biohackers do?
mad cow disease
I'm starting to get funny ideas again
what if I shoved the entire rustc into WASM
to run code samples client-side
compile and run
if you want to hate computers, try compiling and using sqlx on WASM
@vocal basin you like ocaml?
haven't yet tried using it
i see
only using Rust, which is partially derived from it
no idea lol
uses https://github.com/rust-lang/miri under the hood
@vocal basin if you were to write a CAS what would you write it in?
(computer algebra system)
Fortran because I can just reuse code from >50 years ago
how much of a "from scratch" is it supposed to be?
realistically, just offload all the work to Wolfram
yeah but thatβs fully commercial
Is this relevant for something?
if there is a goal to do it really from scratch (no dependencies executing at runtime, only build-time),
you will have to make a custom language at some level
i am stoopid wrong server
No worries. It happens
no i mean you can use LAPACK and well known libs.
but like thereβs tons of symbolic algorithms that youβd have to implement because thereβs no reference implementation(except for commercial ones which are closed source)
Rust+Datalog if you're fine with occasional memory leaks/incomplete execution control
(C++ suffers from similar problems, just at scale)
rustc itself uses Datalog
C++ is too big of a language for anything really. I think the next standard they push out nobody will have the energy to implement.
Rust is bigger than C++, it's just smaller cognitive-load-wise
turns out modules are a good idea
and C++ has "too much ideas" which aren't compatible with each other at all
C++ is adding linear algebra
Does Boost alleviate that? Why did Boost not replace STL is something i never understood..
STL has cleaner theoretical and implementation foundations than almost any other C++ code
the problem is that the rest of the standard library doesn't care
the generic code's and compiler's assumptions about C++ aren't entirely compatible with, for example, std::string
under copying semantics, std::runtime_error is a better std::string implementation than std::string
@whole bear π
A wrapper for &[u8] representing a human-readable string thatβs conventionally, but not always, UTF-8.
looks almost usable
@obsidian dragon 121GB
actively updating my guess to be as close to Mindful's guess without going under
@obsidian dragon @wind raptor I bought an 18TB drive for a file graveyard
@wind raptor especially in Git
it's not that expensive
like
$400
game theory
you won thanks to that
63
iirc
ah
119
either 119 or 121 if you guess 120
I have
like
eight SSDs
(Samsungs)
2 HDDs + 1 unused HDD
REPO
average Medium article
actually it's an ad
for the authors
bwaaa
well, that's kind of expected
Some Dynamite
lets go nuclear
@wind raptor getting rid of thermites with thermite: must see household guide
@solar sierra π
Just Put the ssd on a particle accelerator
average tiktok
I almost wrote "average tiktok article" lmao
@wind raptor LN is fine
I might've almost touched it before
liquid oxygen is bad
do not touch it
because of how differently it carries heat compared to liquid nitrogen
we were doing stuff with liquid nitrogen at school
and we were instructed to keep away from liquid oxygen droplets
dry ice is fun
The gre........
our teachers told us about where we could buy some for cheap
but I don't remember where
"""New"""
Explore Micron's Data Center SSD 7500 series for reliable, efficient high-performance storage in enterprise data centers.
no, it's real, it's just not "New" likely
(the original, official website)
I did?
There is, ye. I'm not ashamed of my stupid jokes
Diving suits?
Ye
I'm so friggin' wired. Little sleep + energy drink = a bad time
underwater β₯οΈβ οΈβ¦οΈβ£οΈs
C++?
That reminds me, I need to charge my dive computer for next week
I joined the chat, but I can barely understand anything since my English isn't good
nvm i find a solution
@wind raptor "look, increased contrast, clearly easier to read"
Needs more sharpness filter
Don't know yet
Still moving stuff little by little
We don't need to be fully out of the apartment until the 19th
it's already 29th :clueless:
Loooooove it
I love Webtoon
I've gone through so many of them
Currently working my way through The Gamer
Yeah I remember that one
Homestuck was interesting. Community driven web comic. The people responding to the comics decided the next action that the main character took
Sooooo good
Love Tower of God
Stag Town is good if you haven't read it
Melvina's Therapy, GremoryLand, and Counting Sheep are all great and should be read in that order
Clinic of Horrors is good
@somber heath I'm pretty sure that's just the lack of pants
comfy
Breezy
real
I dated a girl name Breezy. She was lovely, but we just didn't click
welp ill sleep now..... for some reason im an asian so ill sleap
Is that how that works?
idk but im an asian
have you guys seen flying slippers :3
It's super good
Hii
Most of the ones I like are horror or thriller
I think it might
OH OH OH OH
OH
"+99 Reinforced Wooden Stick"
That one is amazing
SO good
It's wonderfully silly
Webtoon yeah
I'm subjecting all of you to my obsession
- Life of a Quack Healer
- The Advanced Player of the Tutorial Tower
- Omniscient Reader
- Everything is Fine
- Unholy Blood
- The Dummy's Dummy
- My Girlfriend
- Beneath the Trees Where Nobody Sees
- Spore
- School Bus Graveyard
- Witch Creek Road
And much much more
- The Dungeon Cleaning Life of a Once Genius Hunter
The red vending machine thing?
Back, sorry
The vending machine one I'm thinking of is "Red Dart (B)"
Learning about interesting tastes in anime
HA
redo of healer
I think most of the Webtoon stuff is Korean
Some British, some American, some Canadian
high school dxd
But majority of Webtoon is Korean. I think it's originally a Korean comic platform
RoMANtic
romance is a bluff
@burnt kestrel π
But yeah, I highly highly recommend "Surviving Romance"
@whole bear π
Hi! Sorry I don't have voice verified I cannot speak but I'm here to listen and absorb all your knowledge!
I'll be back soon. Meeting
HA
Poor Rob
That's how politics should be
"You lose, bye now"
It's such a soap opera move
I shouldn't have drank the Monster
It's just got me jittery
Laaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaame
The computer they have spec'd out for my replacement is only 512GB storage
Whelp, guess I'm keeping the SSD from this one to slot into the new one as well
Just annoying
That's just what we've been getting
And I'm not going to pitch a fit about it
...... stuff
@wind raptor hey man is it possible for me to get verified to speaking voice channel ?
!voice
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
This is also my programming rig
I donβt use the text channels often so itβs been quite a tough for me to pass the automated verification
Everyone goes through the same process
Well played
Duuuuuuude, this laptop has retained screws on the bottom
That's amazing
@wind raptor OK donβt be mad Iβm going to spam 50 messages π
Whatβs the best channel I could do the same to annoy the least amount of people ?
Literally says it's not allowed in the #voice-verification channel
πππ
You spam, you get 2 additional weeks added to the amount of time it takes
From this current period
Correction. Has SOME retained screws
I donβt use text chats in any single Discord Iβm in I just generally donβt enjoy text chats or text messages
But ok I try
Do any of you guys have experience building telegram bots ?
I think it does
Bots are small applications that run entirely within the Telegram app. Users interact with bots through flexible interfacesβ¦
Yeah seems to be the case
He definitely has an API, but what it does lack is bots with deep features, which is what I think Iβm trying to build
This is exactly why Iβm targeting them
There are many clever tricks by which you can do a lot of things that they seemingly donβt want you to do not necessarily scraping data, but adding certain very desired features
!rule 5
5. Do not provide or request help on projects that may violate terms of service, or that may be deemed inappropriate, malicious, or illegal.
Right, which would fall under things we wouldn't assist with
This isnβt violate any other TOS Iβve looked into this and that
What do you mean ?
"a lot of things they don't want you to do" would violate that
Oh yes
Iβm not doing that
Iβm saying about building a bot not botting an acc
Iβm not buying a regular account guys. Iβm saying about building a bot like for example, there are thereβs a bot called bot father.
I canβt go to in depth man because itβs a seemingly very profitable idea. At least I think so.
I assure you, it's been done before
Ahahaha I figure but Iβm a bit scary bc a skilled dev could make it in a week max
Thaaaat's right
I hear you but I canβt explain it in text itβs too much tbh
Forgot it was WU
Ook
I definitely can in short itβs a paygate
But I digress on how it works as there is some secret sauce involved
Can I join you servers vc
!voice
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
I don't know, can you?
Yep
Ok well Iβll make to the 50 sooon β¦ cyall around
how many
YC Loves moats
True. She would destroy you, @obsidian dragon
She's ex-military
Right but
She's also in shape
Shhhhh
Damn it
I was trying to make you intimidating
Yeah no shit
The problem is that he's into it
Don't be a misogynist. Be a masseuse
It's funny because it sounds like massage-o-nist
@obsidian dragon Nobody wants that, especially me
The TTS thing
The good ol' speaking while breathing in
Skill issue
The Aussie voice is amazing
Probs
Any port in a storm
That's gold
Yep, got called out
It's less about the speaking and more that I wasn't responding quick enough to requests at work. My ADHD was preventing me from remembering that there was anything asked of me
Just been slipping lately with all the stress
It's part of it for sure
I'm not going to lie
They're not
I'm grown enough to know my weaknesses
That's a dangerous thing to give to someone with ADHD
It'd just be constant noise
I have thought about that
I just don't know how to train the voice model
A bad joke AND partly sarcastic
Eh
It's a valid option
Surrogate Hemlock
Honestly with the number of times I've explained Python classes, it could do that pretty easily
I keep forgetting he's like
6' 2" right?
6' 3"
eh
Holy fuck, Barron is 6' 7"
Kid's a monster
HE'S ONLY 17
The hell are they feeding him
That's so dumb Chris
I love it
But it's so dumb
I'm so mad I've never thought about that as a joke
The cry laughing is the best
Like "The Room"
The hell are "Advanced Format Hard Drives"....
Advanced Format (AF) is any disk sector format used to store data in HDDs, SSDs and SSHDs that exceeds 528 bytes per sector, frequently 4096, 4112, 4160, or 4224-byte sectors. Larger sectors of an Advanced Format Drive (AFD) enable the integration of stronger error correction algorithms to maintain data integrity at higher storage densities.
Huh, I've never heard of this one
you guys still working
Not sure
i am not a theory guy
"working"
ok
@obsidian dragon Why does it feel like the joke is sexist
Well played
?
I feel like I missed something
Like a mushroom?
A fun guy?
Can't currently, no
Last of Us situation
@peak depot Tone it down
From "Cow and Chicken"?
google, go fuck yourself
I'm confused
them begging the AI not to hallucinate clearly isn't working
(it's an existent function but it's not that widely available and not every place has bindings to it)
and the thing itself is extremely annoying
if anyone else needs to do that same thing:
emscripten_proxy_get_system_queue
emscripten_proxy_sync
emscripten_run_script
what a cursed technology
the future sure ain't what it used to be
@sweet sorrel ?
I know whats right, I got just one life, in a world that keeps on pushin me around, but I'll stand my ground, and I won't back down
Provided to YouTube by Universal Music Group
I Won't Back Down Β· Tom Petty
Full Moon Fever
β 1989 Geffen Records
Released on: 1989-01-01
Producer, Composer Lyricist: Jeff Lynne
Composer Lyricist, Producer: Tom Petty
Producer: Mike Campbell
Background Vocalist: George Harrison
Auto-generated by YouTube.
¬¬
hello guys
heyy opal
but the question,
can you opal?
can i ?
can zak?
wym?
aaahh
thats typical stuff
we mean hurting
physically
i said i was doing unpaid internship to my friend
and hes asking me the amount of stipend they are paying me
i said i was working remote
and hes asking me the place where i was working
cool pfp milien
guys whats your opinion on becoming a python dev?
scenario ( simply put ) : i like java. i want to become java dev. i get internship. they use python
should i learn both ( python django and java spring )?
or should i stop learning java for now?
@astral coral
.
loooooooooooooooool
Provided to YouTube by Atlantic Records UK
Hospitality Β· Funeral For A Friend
Hours
β 2005 Warner Music UK Ltd
Assistant Engineer: Floyd Reitsma
Performance: Funeral For A Friend
Co- Producer: Funeral For A Friend
Assistant Engineer: Sam Hofstedt
Mixer, Producer, Recorded By: Terry Date
Writer: Funeral For A Friend
Auto-generated by YouT...
@left briar !voice
!voice#
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
cant stream here lol
you need extra perms for streaming
Ask a mod when they're in the voice chat.
oh ok
guys whats your opinion on AI would take cover in the near future?
yeah boston dynamics
i mean like Software jobs bro
https://ai-2027.com/?
it shows possible predicted future?
Not completely, but it will change the life seriously.
π₯³
take cover
who's shooting at it?
hello
!voice
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
Goddamn :L
I still have a bottle of "not wine" that was gifted to me
I don't even remember if it was gifted a year or two years ago
it literally has "this isn't wine" written on it
@somber heath it might be that
this one is
I think it's more of a regulations/standards thing
"not liquor" aka vodka
hello !
@peak depot what if the horse is drunk
driverless horse
aka
horse
(I've looked up before writing that, they just like it, allegedly)
also allegedly they don't get drunk easily
also metabolism speed
beer tap | horse
@peak depot @somber heath "if you two sum up your hair lengths, would it be longer than mine?"
probably yes, I don't really know
(so I guess a bit longer?)
I guess in my case it counts as reaching lower than the back
at least when I'm standing
I didn't understand the maths on that
and geometry
what is the approximate result, my brain is too short to calculate
hmm
so I guess no
90cm
(unless Milien's hair is longer than Opal's)
if your IDE doesn't crash, it's not yet bad enough
I think recent file size in my case peaked at somewhere around 8000
(lines)
8000?
no way man
12,000
currently (in same project):
4944
4329
3546
2160
2068
there is no reason to split currently
it's very flat
therefore easy to maintain
!charinfo <
\u003c : LESS-THAN SIGN - <
correction: 6000
@fervent valley π
n8n
I'm too busy with real work to bother with AI
@hallow osprey π
i know you guys don't know me but I need help unrelated to python
its gonna sound dumb
what kind of problem?
open mic and speak bro
so I am broke
That leaves me no other choice but to torrent bonelab
One problem;
hm?
Are there alternatives to it?
(the AI bro type of AI)
DeepSpeed is a deep learning optimization library that makes distributed training easy, efficient, and effective.
guys lock at tis paper https://arxiv.org/pdf/2505.03335
Click the link below and sign up now to access the DeepAgent and ChatLLM Teams!
https://deepagent.abacus.ai/mbh
https://chatllm.abacus.ai/mbh
Join My Newsletter for Regular AI Updates ππΌ
https://forwardfuture.ai
Discover The Best AI ToolsππΌ
https://tools.forwardfuture.ai
My Links π
ππ» X: https://x.com/matthewberman
...
generic ML
yep
@bleak vigil π
hi
hi
@dusk sandal π
Hello
how's gonin on man?
Does anyone know how make a lm
I said nothing of sort
what is lm?
Language model
A Midsummer Night's Dream is a 1999 fantasy romantic comedy film written, produced, and directed by Michael Hoffman, based on the 1600 play of the same name by William Shakespeare. The ensemble cast features Kevin Kline as Bottom, Michelle Pfeiffer and Rupert Everett as Titania and Oberon, Stanley Tucci as Puck, and Calista Flockhart, Anna Friel...
I don't want to make a large language model I just want to make a small one cuz I already did convolution and maybe after I'll make a large language model but I wouldn't need to get computer parts which are expensive right now
like mistral model?
qwen3-8b?
?
I just want to make small model because I understand how I convolutional neural network runs but if I want to combine to both of those into a multimodal I need help vectorizing the words
this guy is good π
i start ai,ml just for a few hoursπ i have no idea man
can you be little more verbose .. or may be (verbose =True) π
One time a facial recognition algorithm told me I look like someone that I used to look like but don't look like anymore.
@iron geyser Celebrity I may resemble.
It's not the phones it's the TV. https://youtu.be/HtvVOrEgQqw?si=ibRjJpqeIBTU2z0r
Go to my sponsor https://aura.com/videoadvice to get a 14-day free trial and see if any of your data has been exposed
They Hid This from You: How Your SmartβTV Betrays Your Privacy
In this video we expose how your SmartβTV is quietly watching and listening to you, building a detailed profile of every show you streamβthen selling that data...
Another being Russel Brand.
sure ? mdr
Mdr?
All unitaryHACK participating bounties
woah is that rl
i really should be doing less projects but doing them well
π
now my favourite pet project is my autograd engine (that i have been on-off developing for the past year)
are-El
π
can I have sharescreen permission
you would need a Mod or Admin to do that, sorry
or have the role
i have the role
I've made up another hypothesis for why some people find it hard to use Rust
specifically the "clean code"/"best practices" people
there is so much "messy" stuff you can just get away with in Rust, which would be a nightmare to deal with in many other languages
variable shadowing, no non-casing naming conventions, mixing all possible dependencies and their different versions in ad hoc ways, lambdas all over the place
all the fun stuff I don't get to do when writing Python
I thing I've been programming for ~15 hours now
(less than Ace's 72, but still more than 8)
@torn tide π
!voice
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
i sent u request
have been i on the server for less than 3 days.
thats rude
do u have excperience with telegram bots
??
I've recently been instructing someone about making a Telegram bot
I want u to help me
what specifically do you need help with? is the project you're working on open-source?
> somthing
what exactly is that something?
Assistance requested via this server is generally preferred to take place on the server. DM help is generally discouraged.
so much code changes
given that theme, and how I use 426 as example number and what it refers to, it's quite a situation
two example values with the, uh, common topic (indirectly)
I should optimise how I generate those graphs
so that it doesn't take several minutes
currently, for each commit, it reads all the files
hi
meow meow pythonaires
idk was bored
(the poorly drawn other things are C. Rust and Javascript) :L
Can I have the role of "Python Propagandist"??? :3
or is a new rule gonna be made against Python propaganda :L
After months of applying, job seekers are finally landing interviews⦠only to be met with malfunctioning AI instead of real people.
#AIInterviews #TechUnderCapitalism #Automation #FutureOfWork #JobInterview
I am creating these videos for entertainment and educational purposes. Please do not contact or harass any individuals featured in the ...
AI interviews
I wish I could find a list of all companies that use AI chatbot software for interviews, so I can never interview with them in my lifetime.
OOF
am i audible?
@astral coral
need some advice
im learning django
through the official docs
i feel stuck
i dont know why
i always have problem reading docs
for gods sake, i landed an internship. these guys use djnago.
can you let me share my screen
or maybe can you open the official django docs for once
alright
how would you read through the docs?
GET MY FREE SOFTWARE DEVELOPMENT GUIDEπ
https://training.techwithtim.net/free-guide
Learn how to build a simple Django application in as fast as 20 minutes! You'll learn how to set up a Django project, configure URLs, create database models, render dynamic data with templates, and use the Django admin panel. Django is a powerful web framewor...
i watched a 3 hour course
but i get stuck in the tutorial hell
and usually courses dont cover everything right
okay practice?
if you were in my shoes, and you have to practice by reading through the docs
how'd do you it?
taking django as an example
i feel like this sets off from my peers
< sorry that i cannot talk >
come up with a basic idea, do research, look at other scripts, GPT and then make it
i wish i could, but in the process of fixing, i somehow ended up making it not to work
but i need to learn the basics anyway right
but I don't recommend GPT if you're learning to program
look mate, make a social media site. make a basic one add features later. this is a good start to learning databases like django
but i do need to learn the basics of django inorder to make a social media site right
¬¬
make the site
do it
stop reversing your intiative
look up how
youtube
GPT
yes sir
π«‘
the thing is man, YOU need to do this, not me, you're not paying me nor do I have any investment. but I'm giving you direction and something to work on to get where you wanna be.
you could do this in one day if you focused ¬¬
I'm not saying make f-ing facebook but a simple system where you are managing your database
@cyan reef hi
Looking for a guy who knows programming, more specifically Python, in DM please, urgently
probably wouldn't hurt
not if you're careless with needles
I have accepted the fact that I can't time the vocals properly so now just slicing and rearranging them after the fact
@whole bear π
π
@junior willow π
I've just found the only (so far) audio filter on top of the limiter/compressor that I'm okay with
@peak depot hey , what you working on rn?
nice what for a game?
oh, nice
guys, what is the difference between from xy import * and from xy import xyx ?
* imports everything defined in xy.__all__, if it exists, otherwise imports everything that doesn't start with _
ok, can you give me an example where this is useful
!pep8
PEP 8 is the official style guide for Python. It includes comprehensive guidelines for code formatting, variable naming, and making your code easy to read. Professional Python developers are usually required to follow the guidelines, and will often use code-linters like flake8 to verify that the code they're writing complies with the style guide.
More information:
- PEP 8 document
- Our PEP 8 song! :notes:
* is generally discouraged
ok
because it makes it harder for both humans and language analysers to determine where a symbol is coming from
I've seen PyCharm's LSP crash because of * imports before
on a relatively small project
yeah understandable by symbol you mean variable ?
yes, just using a terminology from other places
ok now it is better to use import xy
from module import member or import module is preferred over from module import *, yes
got it
the worst possible case for PyCharm is * re-exports iirc
e.g. when a has from b import *, b has from c import *, and all the stuff that's imported from c is also accessible in a
can you give me an example of recursion imports
if file a has import a or so
it's less common in Python than in some other languages
because Python is less strict about visibility
okay
you would often see re-exports in Python when there's some bigger outer module re-exporting stuff from submodules
I think discord.py does that
actually, even some parts of the standard library do that
!d asyncio
class asyncio.Lock```
Implements a mutex lock for asyncio tasks. Not thread-safe.
An asyncio lock can be used to guarantee exclusive access to a shared resource.
The preferred way to use a Lock is an [`async with`](https://docs.python.org/3/reference/compound_stmts.html#async-with) statement...
embed being funny
wait what asyncio has __main__??
@wind raptor did you know about python -m asyncio?
it's fine in this case because language servers generally have the list of symbols bundled inside
i.e. they don't have to look through all those *s to figure out where, for example, Lock comes from
I've never used asyncio at the command line. What does that do?
exactly what you'd expect:
asyncio REPL
oh wait it's literally pinned in #async-and-concurrency
I've never read through pins in there
if you want to make a DAW, use Zig
or rather
if you want to make a DAW, make Zig
^ screenshot from a DAW
fun music software:
https://sonic-pi.net/
Sonic Pi is a new kind of instrument for a new generation of musicians. It is simple to learn, powerful enough for live performances and free to download.
@tulip gyro another ffmpeg wrapper?
people will literally do anything not to type ffmpeg in the CLI
anyway, spoiler, you can't really do it Python
if you allocate memory during audio processing in real time, you're probably doing something wrong
@rapid jungle look into what Andrew Kelley did
It's just that I need an expert to help me program my script that works with YOLO
Zig was originally made for a DAW he was working on
@wind raptor Bun
also