#voice-chat-text-1
1 messages · Page 65 of 1
and ASGI and tower would be a pair for the underlying interface
same for Pydantic and serde
@vale tinsel I wrote something like 3 lines and forgot everything by now
so only heard of it
I had a corresponding kernel installed for Jupyter
(so just tried it there)
Jupyter supports way more than just Python
at some point I installed every kernel I reasonably could
which did include C, Rust and Ruby
Jupyter Kernel
JupyterLab is just a style for the front-end
JupyterHub is a more managed server
though actually for a proper pairing this would be axum+aide
and this would be serde+schemars
in both cases the second thing is responsible for JSON Schemas
I think objective c differ because it has object
Objective C is nearly dead officially and factually, unlike C++
I do know C lang
Objective C is a recognised-to-be-failed attempt at adding OOP to C
replaced by Swift
whereas C with Classes, now known as C++, at least got popular
areas where C++ failed are more to do with bigger scope and some theoretical basis
Apple used it before
I heard about it and it is confusing to me
Apple created Swift in part to replace Objective C
I talk shit about apple but they create good cpus
Hmm really now
True
Names of CPU are not trick as well.
like Ryzen 5600H with xyz graphics
or intel ultra elit blah blah
Lol
meanwhile Apple: just borrowing naming conventions from the army
It's marketing, and it works
- what are we going to call this rifle?
- eh, I don't know, M1
- what are we going to call this tank?
- eh, I don't know, M1
- what are we going to call this processor?
- eh, I don't know, M1
So true 😹
I mean how?
Most of user prob don't even remember about the name
but apple makes catchy name
everyone know about m1 m3 m4
you guys can say whatever you want about Apple, but it's still the ONLY company that owns the entire stack, hardware and software and OS.. end-to-end.
no, Oxide exists
A Genius admire simplicity and idiots admires complexity
Oxide is still in its childhood no?
already selling
can ppl buy a laptop/desktop from them?
or just servers
no laptops, no desktops, no individual servers;
only full racks
interesting choice. and what OS do these racks run?
the main CPUs run Oxide-maintained fork of illumos
auxiliary processors run Oxide's own microkernel OS
and they only intend their stuff to be a virtualization platform?
on-prem cloud
tf is oxide?
afaik they're privately financed above their current needs, we don't know the details
Company reinventing a wheel (computer)
they did manage to successfully boot without a BIOS/UEFI software
which is already quite an achievement with x86_64 being the insane mess it is
I mean they are making good progress...
but the age of Quantum computer is approaching
most of the workloads are incompatible with quantum
big corp is already investing in Quantum computer technology
remarkable and maybe useful considering CVE-2025-7027
Love this
if the current wheel is square-shaped, probably worth the effort of making it round
I guess UEFI is now super-complicated. But it's interesting that they're showing it's not needed at all..
AMD were surprised
quantum is about vectorisable computation
if you can move something from single threaded to multithreaded to multithreaded with AVX to GPU,
maybe there are possibilities to then move it to quantum
but, for a particular task, can you?
giving up all ifs
giving up all whiles and fors
I mean who would not like to have a better computer?
quantum is not a better computer
so branchless and loopless..
then also giving up all function pointers
Who knows it could be!
it can't
few things qualify as both branchless and loopless..
there are very specific requirements for what workloads can be performed on a entanglement-enabled processing unit
you need very large intermediate space of values for small inputs and outputs
everything needs to be expressed in terms of, tbf quite simple, linear algebra
I doubt you can use this to speed up JSON parsing considerably
quantum isn't about getting a better or faster computer
it's about solving very specific problems that a regular computer can't solve at all
(assuming reasonable time constraints)
that is for now stuck with AVX at best
If Quantum Computer can replace most server, it would soon be available for commerical use
it can't
in what way is quantum computer better than regular one?
apart from expense write-offs and money laundering or whatever
a very expensive refrigerator
Quantum Computer can easily breach the security of the traditional computer.
It make more sense to use Quantum Computer to defend such a breach.
that is a very specific usecase
also, no, not any encryption is broken by known quantum algorithms
SSH are already rolling out Shor's-resistant ciphers
rip SIDH
SIDH doesn't count
once again: this is not applicable to JSON parsing and whatever else regular server mostly do
But yet it showcase the potential of Quantum Computer
unrelated to the point
most of the workloads are quantum-incompatible
that's why we shouldn't get all locked up into another hype thing
Hmm
you can't replace a car with a rocket
understood
with Shor's being a metaphorical ICBM
So why do they invest in Quantum Computer?
mostly this
also quantum-enabled cryptography
certain things are impossible with regular CPU
not really because of the CPU
So to test and create better algo for security?
but because it relies on entanglement across very long distances
it's not entirely about algorithms
uh..
I think I was wrong about Quantum Computer
I should have understand the practical extend of Quantum Computer before discussing further
quantum cryptography very seriously relies on you actually sharing qubits between two parties
which is quite useful for provably safe procedures (there's very little determinism left by that point, so not really an algorithm)
there does exist an unbreakable encryption with both regular CPUs and quantum procedures
you can implement it in Python (and many other languages) with one symbol
^
from what I remember, quantum basically just off-loads the actual encryption logic to regular processors
so only the key sharing step is quantum
!e
key = 426
data = 111
encrypted = key ^ data
print(encrypted)
decrypted = key ^ encrypted
print(decrypted)
:white_check_mark: Your 3.13 eval job has completed with return code 0.
001 | 453
002 | 111
there is a slight issue with this:
you need a very long key
and whether that's delivered by pigeon or qubits -- that's a separate question
!e
key = 426
data = 11111111111111111111
encrypted = key ^ data
print(encrypted)
print("whoops")
:white_check_mark: Your 3.13 eval job has completed with return code 0.
001 | 11111111111111110765
002 | whoops
interesting.
this is how stream ciphers work
and I think no one is planning to replace them yet
(quantum mostly targets asymmetric encryption instead)
AES or some variation of chacha
confusing
funny how so far the only thing I had to look up was Shor's name
symmetric, quantum-irrelevant: AES, xchacha20, most of Feistel ciphers (unless you really messed up the hash function)
asymmetric, broken by Shor's algorithm: DSA, DH, RSA, ECDSA, ECDH, and everything else based on simple fields
total loser: SIDH/SIKE -- aimed for quantum resistance, broken on a laptop in an hour
asymmetric, seems to be alive: lattice encryption (I can't remember any specific examples)
there was a talk about SIDH
Papers We Love Conf 2022
https://pwlconf.org/2022/deirdre-connolly/
Transcript: https://pwlconf.org/2022/transcripts/Papers_We_Love_Deirdre_Connolly.txt
Deirdre Connolly / Zcash Foundation
Isogeny-based cryptography went from a curiosity to a serious post-quantum contender arguably because of this paper from Costello, Longa, and Naehrig from...
I did not remember what SIDH stood for
forgot the "singular" part
this is absolutely not trivial to understand at first
I think it took me something like a year to get how RSA works
and total around 4 years for understanding it including key generation
You got big brain
the maths is interesting but still complicated
I now realise that it's actually not trivial at all to learn
I got very luck with school
we proved RSA in school at some point I think
(there was a note for a few from the class who did cryptography, including me, that this is RSA)
I learn "nothing" from school
all I get to know is to be silent for hours
and hear yapping
we had no option for that at school
only almost happened to history lessons at university
currently watching this
https://youtu.be/kKbT0Vg3ISw
https://cpponsea.uk
Three Cool Things in C++26: Safety, Reflection & std::execution - Herb Sutter - C++ on Sea 2025
It's 2025, and C++ is vibrant and growing! The next standard's feature set should be finalized about 48 hours before this opening talk of C++ on Sea 2025, and there's a lot going on with new safety and modules improvem...
C++ is finally getting reflection, trying to understand what's happening out there
(I don't write C++ but I have to debug it)
@vale tinsel Hello
Yes hello
She explained about algo and limitation of Quantum
Ohh we talking Cubits now
Ig not
qubits
qubits
How fast can you type yuyaify..
You are pretty fast at typing
Have you heard of Cat qubits?? @delicate wren
I only have a general knowledge of how quantum stuff works, I don't follow actual papers and other publications
(no, haven't heard)
Me too, cat quibits is actually interesting
Cat qubits, inspired by Schrödinger's cat, exist in two quantum states simultaneously, offering a unique balance in quantum error rates.
Basically a theory that a cat exists in 2 states alive and dead - at the same time
that short description from the embed doesn't explain much
See ya guys..
I'm epy
this doesn't help either
Ait
Cat qubits, inspired by Schrödinger's cat, exist in two quantum states simultaneously, offering a unique balance in quantumerror rates.
the important part
Ahh I wanted it simple
so just a way to mitigate errors reliably
error handling/correction is the keyword there
Ok got it
@gilded estuary👋
hello opal
dr pepper tho
Dr. Pepper is sooo good but upsets my tummy
that sucks
cus its so good
try cherry coke maybe instead
holy thats a lot
cola pile
@thin lintel do u know any cyber
Cyber...what?
Nightwish perform "Ghost Love Score" from SHOWTIME, STORYTIME live at Wacken Open Air 2013.
Directed by Ville Lipiäinen.
NIGHTWISH IS:
Tuomas Holopainen
@Floor Jansen
@MARKO HIETALA OFFICIAL
Emppu Vuorinen
Troy Donockley
Kai Hahto
What better way to conclude the year as to recapture one of its outstanding highlights by revisiting Finnish...
dude i hate ads >_<
move to Russia, we have no ads on YouTube
@keen lodge 👋
not heavy metal, but its metal. this is DEFINITELY music.
https://open.spotify.com/track/1Ym3JWJG8HFJU2NbXavZ6a?si=8c96358afc464467
@fossil dust
Welcome to enjoy " Smooth Jazz In Seaside Balcony | Morning Jazz Melodies In Fresh Sea Ambience For Working, Relaxing "
Start your day on a positive note with our Whispering Jazz Melody. Picture yourself in a cozy corner, savoring a warm cup of coffee as the gentle jazz melodies create a serene and inviting atmosphere. This playlist is designed...
Provided to YouTube by American/Columbia
Chop Suey! · System Of A Down
Toxicity
℗ 2001 Columbia Records, a division of Sony Music Entertainment. With American Recordings, LLC.
Released on: 2001-09-04
Piano, Producer: Rick Rubin
Guitar, Vocal, Composer, Lyricist, Producer: Daron Malakian
Keyboards, Vocal, Lyricist, Co- Producer: Serj Tank...
woohoo grindcore
https://www.youtube.com/watch?v=gRcGk7y-sBU
Provided to YouTube by Century Media
Swan Lake, Op. 20 · The Agonist
Lullabies For The Dormant Mind
℗ 2009 Century Media Records Ltd.
Released on: 2009-10-30
Producer: Not Documented
Auto-generated by YouTube.
oh wait wrong one
https://www.youtube.com/watch?v=dNWDzZGmvpk
Provided to YouTube by Century Media
Chlorpromazine · The Agonist
Lullabies For The Dormant Mind
℗ 2009 Century Media Records Ltd.
Released on: 2009-10-30
Producer: Not Documented
Auto-generated by YouTube.
@tulip grail explanation: we're in VC 1
that was the point
@copper garden https://en.wikipedia.org/wiki/Softwarepark_Hagenberg
The Softwarepark Hagenberg is the Austrian technology park for software, located in Hagenberg im Mühlkreis, Austria, founded in 1989 by Professor Bruno Buchberger. The Softwarepark Hagenberg is a unique collaboration where research, business and education are intensively cooperating. Because of its success, the park has been called the "Wunder ...
inria
@copper garden brb
ight
heyy
thank you
sadly i cannot speak as i have just joined rn
want to see one of my latest turtle drawing using python?
Yes
Can't screenshare either
You can send it here
Nice
@heady wyvern isn't that Dmitry not Evgeniy on your pfp? or am I confusing with someone else
@reef granite can you beat this? Show us something flashy
Multiplayer leetcode battle challenges
- https://www.codebattle.in/ (multiple players, LC problems, poorly written, confirmed by Noodle)
- https://www.beatcode.dev/ (only 1v1, LC problems, works but only 1v1)
- https://leetrooms.com/ (requires chrome ext)
- https://www.cpduels.com/ (only for codeforces)
- https://code-duel.vercel.app/ (web server is improperly configured, doesn't allow login)
!user
You are not allowed to use that command here. Please use the #bot-commands channel instead.
@buoyant crater guy puts postmarketos on an android phone and turns it into a home assistant server, he had to remove the battery and made a bypass for power https://www.youtube.com/watch?v=OBOoDffWF0Y
One of the sickest performances I've seen. Floor rocks here 🤘🏼
Heavy metal is music
Symphonic metal of course..
Any that you prefer?
Given temporarily by moderators.
all are down, maybe leetrooms works but never tried it
I see.
Well, let me know if you ever find an equivalent. I guess my interest was toxic to code battle hehe.
waddup
Hi
hi
@plush crescent Usually they use same code
for such a test
@zinc rain Which ide do you use?
I think he would de dead by 2050
vsauce is legend
@main garden
@main garden You are just 18?
I'm blind
VSCODIUM
A microsoft free , vs code
Got it
!user
You are not allowed to use that command here. Please use the #bot-commands channel instead.
sure
@unborn mason what ya making?
Analytics of Cumulative Returns
yeah its backtesting a trading strategy
My ba d
hi some one can give me some recommend how to leran paython from 0
@warm patrol 👋
You joined voice chat. Just a greeting. 🙂
where are you from
@fallen vessel 👋
Australia.
hello
great 👍
@stuck bluff i need help mastering python
We can chat about that if you'd like.
sure thnx
Do you have any specific questions?
ah i am stuck at the point where i am confused with how many built in data structures should i learn
You learn what you use.
but if i have to be more specific with examples and questions give me some time and i ll come back
Through use, memorisation.
Some things you will use more often, this you will become more familiar with them and their capabilities.
ah so i need to find examples where i need to use them and memorise those cases
and use cases
You can always look up what you need to know for more specific details.
then i need one more suggestion if i have to break into competitve programming how much of python should i know
Not having done competitive programming, myself, I'm probably not the best person to ask, but you do want a very good general familiarity with what you have available to you in the language. However, more important, I feel, is probably going to be your general data structures and algorithms knowledge.
ah kk
Knowing the language on its own is never going to be enough.
It's just a language, not the things you're saying with it.
@misty sinew 👋
hey
is it faster to join a iterator of str or list of str and wich is the most efficient
memory side
@dense viper 👋
Hey, my college wifi blocked VCs
but like you can do "".join(["1" for i in range(4)])
"".join(("1" for i in range(4)))
no just as ex
ok
thanks
ahh the use case
here is it
!code
var = 2 * 2
f'...{var}...'
# vs
f'...{2 * 2}...'```
ok doing this rn
ok
cus the self is treated as a empty when self.contents = []
i can do a if statement
thanks
Do you intend to join us in the voice chat?
no sorry
hi
right
ima dip eat ice cream
aite
wasup
The Cyber Mentor(TCM)
Beauty in Code 2025 was a single-track full day IT-conference organized by Living IT, featuring six amazing speakers. It was hosted at the Malmö Live conference center on March 1, 2025.
https://beautyincode.se
https://livingit.se
Session 6 of 6 by Kent Beck (@KentBeck)
"The Forest & The Desert Are Parallel Universes"
So close and yet so far....
yea?
I saw you rage quit VC
Almost all of them are AfK
Did you need any help @sinful panther ?
no
and i dont rl wanna be interogated just bc i left a vc
My bad
I just felt that you were asking something but none of us respond
hence asked you
Hello!
hi
you cant talk
i know ;-;
best option to use gpt specially gpt 5 its so helpful
where is MongoDB located relative to the application?
bad auth : Authentication failed., full error: {'ok': 0, 'errmsg': 'bad auth : Authentication failed.', 'code': 8000, 'codeName': 'AtlasError'}
are you using it cloud-hosted?
yes
it fails always, right?
yes
anyone have knowledge about ai/ml by anychance
nodbody is active there
One of us is afk
are you re-implementing the API client or using some existing one?
ikO
a database
what package is responsible for establishing the actual connection to the database server?
pymongo
at which point does this get involved?
!code
I use it on the username since it has a @ and i need to convert it into percent-encoded forms
yes
(exact code)
Username and password must be escaped according to RFC 3986, use urllib.parse.quote_plus
I did it in my .env file
can you send the page where this is a quote from?
(documentation URL)
No body
you are not mixing urllib.parse.quote_plus and password= keyword argument thing, right?
Yep im not mixing it up
i escaped it in a seperate variable then concating it into the connection string
i did
you clicked this button during setup?
by default it removes the part starting with @
I tested it now and it did not let me include @
it turned example@gmail.com (name censored) into example
does it, under this column, show a username that has an @ in it?
stuff that's shown in the profile, as far as the DB is concerned, isn't the username for authorisation
are you on a page that looks like https://cloud.mongodb.com/v2/<a bunch of symbols>#/security/database/users?
no
follow these steps of navigating to it
do you currently have cloud.mongodb.com open?
yes
is there this menu on the left?
im in databaseusers and clicked on edit user
yes
im in database access rn
and i can comform I have the correct permissions
no
whatever is written there instead is the username, generally
im learniging javascript and C++ right now
my condolences
What's the code in 3adel_noob.py?
rich is supposed to be module in your file system, or a separate library from pip?
@indigo jackal 👋
@red wigeon 👋
yep @stuck bluff
@lilac ether 👋
I'll be honest, they must be smoking if they think 5"9 or 6ft is average in India
I'm certain 5"5 is average for man
Less than 1% of Indians are 6ft or above
today Discord decided to work without a VPN
wait no it didn't
it undecided
why is the "connected" display broken now also
it shows connected even when actually not
(now works)
I got three new computers this week
gradually setting those up
small ones
basically embedded
(2 of them)
256MB and 512MB RAM
surprisingly, the image for one of them came with Python pre-installed
3.12
also seems like I can install uv there too
ah, wait, no, it's glibc
won't work
need to build it myself
I think for its size 512 is quite okay
thing
three CPUs
(slightly confusing)
funny situation
it's a full computer
I'm running Linux on it
(SSHd into it)
screens are connected there via MIPI DSI
I ordered another one
(for distributed systems experiments)
mostly testing certain networking stuff with constrained resources
rabbitful excitement
and a different model:
256MB
Chinese
Yuya-ify
UEFI
I want this
8 computers shoved into one
Yuya
yuyayuya
annunciation
accents
whatever else
a/ä difference to some is non-obvious too
eating umlauts? pacman is going to have an explosive diaeresis afterwards
Diaeresis ( dy-ERR-ə-siss, -EER-) is a diacritical mark consisting of two dots (◌̈) that indicates that two adjacent vowel letters are separate syllables – a vowel hiatus (also called a diaeresis) – rather than a digraph or diphthong.
It consists of a two dots diacritic placed over a letter, generally a vowel.
The diaeresis diacrit...
set[Rabbit]
rack of catloafs
NOOOOO
why risc v why
why did humanity allow this
I thought RISC-V was incompatible with UEFI/BIOS
(UEFI takes control away from the OS)
clearly the answer is taco
https://youtu.be/qXWpa6zIQsk
In this video, Stéaviñ shows you how to pronounce and use "gyro" in a sentence.
Is there a word you'd like Stéaviñ to help you pronounce? Just add your suggestions to the comments below and don't forget to like, share and subscribe!
#EnglishByStéaviñ #EBSTutorials #HowToPronounce #ASMR #Shorts
okay
Gyro day in 4 days
something -ite
tacoscope
The letter ⟨ґ⟩ is usually romanized using the Latin letter g, or sometimes ġ with a dot or g̀ with a grave accent.
"so ġyro/g̀yro?"
dot is unusual
!charinfo ґ
\u0491 : CYRILLIC SMALL LETTER GHE WITH UPTURN - ґ
I don't know much about you @tame leaf but you mentioned you got ADHD.
I've noticed I'm type of person who talks about thing which has no meaning to listener, it has no meaning to me as well.
I felt like I've lost good connection and friends because of it, something which I do and regret yet does it again.
So I decided to ask you, do you see this as sign of ADHD?
because I do feel like I'm being ignorant
Ask your therapist, not me.
Okay
I'm only knowledged on the fact I have it, not assessing it over one message
It takes years for people to notice, especially if you were subconsciously forced to mask
I guess so, because I've lost friends and made foe because of it
only certain doctors can assess properly, but here is a little test you can take to see. It's probably more accurate than asking a random person on the internet that knows almost nothing about you.
https://add.org/adhd-test
Thankyou for resource
It did help, test made assessment that it's unlikely that I got ADHD
But I will consult doctor just to be sure
I do appreciate the help and resource chris
No problem
The phrasing on this feels odd, where are you from
Bhutan
💥
modern standard
we're all to old for this modern stuff
@thin lintel and safety practices too
whats your agentic workflow?
for programming?
what?
I don't flow towards work, I glide
and plome is 62 years away from the invention of ChatGPT
programming his Fortrans and whatever
i mean how do you use agents to speed up production
ie llms
while coding
referring to the earlier comment about 1960
I wish I could but I will not
i only debug fortran
don't actually design in it
undesign
I felt like depending of AI agent for production is not good
redesign
[just ]resign[ already]
I do use it if and only If I have to
subscribe to my onlyfans and I can
i diddnt say depending
more like asssisting
repairing electric fans without protection
*1930s electric fans
this is how : plan - code - test - adjust - repeat
Planning : understanding problem and designing solution
Task breakdown in function, class, module
execution and testing as I go
review and optimize
tracking every action
@misty sinew How do you use it?
AI agents are supposed to do stuff more autonomously
from what I understand
i.e. not only do you copy code from it, you allow it to paste the code and run it
They do but one has to be thorough
autonomously in terms of control
potentially unsupervised
Same
This is how the flow of agent is supposed to be for me
plan-do-study-act
but
there is a problem
AI can't study
nor can it adjust
today's LLMs are incapable of learning
still
you really need to dig into the internals to force learning onto it
which means you need to be in control of it
(no service consumption of ready models)
I do control
agent can interact with git
so every action would be tracked
remember: git reflog
when AI fucks it up
or human
both are well capable of that
(git reflog contains the history of what HEAD pointed to)
so, if you rebase/reset/whatever else incorrectly, you can restore previous state
Good to know
Why is web dev eating mobile app dev's lunch? Presumably more people use their phones than they use websites. Is it the type of people that are buying from these websites? Is it that it's majority businesses buying and doing stuff from making interactions from these websites and not individuals like mobile apps are?
nice
Hello everyone, i'm new here
I'm a software developer and also a computer science student in uni
i hope i'm welcomed ???
Welcome Ibrahim 🙂
yoo welcome dev
me too. i am here for help others
me too. i am cybersecurity , hardware engineer , and much more tho. i can help you in python or any other lang
Ohh that's great, I love the fact that you are an experienced hardware engineer.
At the moment, I'm learning rust.
Tho I use python frameworks like Django and Flask for software development
bro wow. i am pro on rust
i don't like python bc it's kinda too slow.
yeah i have like 1 - 3 years on hardware. 8 - 6 years software engineer
You know Python is a compiled language and it was birthed from the mother of all software languages C
i am on this server only for helping others
Ohh, well done man
yeah "C" create: C++ Rust(kinda) LLVM etc...
wait hbu?
btw i own a programing lang. it's coming on Summer of 2026 ( this lang will change the world )
This is amazing, I would love to know more about your language
By the way, which syntax is it gonna follow ???
tysm. and sure
i don't know anything about python
but i can help
my lang really close to python syntax
Thanks
Help me fix this script to working again and clone it
I need to updated
loadstring(game:HttpGet("https://raw.githubusercontent.com/tlredz/Scripts/refs/heads/main/main.luau"))()
Milien left?
@slim depot What's going on?
The government has info about web and internet
The US government was the one who made a Tor and Internet
Freedom is a better livelihood, India is a democracy and has freedom similar to western countries yet China and Singapore offer better value to Human life in basic necessities to financial independence
@slim depot
@slim depot Indian Government was victim, it's not just government being evil.
I can give you inside about one of the situation
Indian authority implement law for better civic rule and empowerment of local
It was purely with good intent
but local revoked the decision
and reason was most stupid
they feel they are entitled to be above the law
because this law had strict fine and punishment
k
@worn thistle 👋
Like hit and run law.
those who hit the victim must have to pay and take him to emergency
Indian rejected the law
Street dog law
Indian rejected the law
and so many case
Nah
Similar to developed country
street dogs which has sign of agression would be killed
government would take dog for adoption program
Controversial Section 106(2) in hit-and-run cases in Bharatiya Nyaya Sanhita (BNS), 2023, withheld by the government triggering protests and chaos. Law deferred due to lack of clarity on applicability in cases of fatalities or injuries.
NO
human
@slim depot Yes if it bit someone
But this was last measure
first was to take the dogs for adoption program
second was to implement strict law on dog owner, so they cannot abandoned the dogs which is measure reason for strict dog problem
Do you know all of these were rejected
But they want them on street
This is stupidity of Indian
@stuck bluff I don't know because they have foolish explanation
Just have a look at this
you would understand
These protestor are dog lover, they are more of selfish.
Some even have no empathy for rabies victim and blame on victim
@small fractal 👋
@stuck bluff Hi! I just joined accidentally
@merry island anvpy looks really cool
yeah you need to spend time in channels and talk to people you can do !voice
no !user
Hey by the way, have you checked the recent update in anvpy ?
These protestors belong to the elite class of Indian society, notice how not a single poor person was part of the protest. That says it all.
Exactly 💯
See from my point of view, you know r@bies is like one of the de@dliest thing ever, I mean it will definitely be listed in the top 10. So you have to think from two points of views, freedom for dogs and rabies. In india it's like 30000 de@th cases per year.
Especially with age under 14
None of these will face street dog problems, most of them drive in cars.
They will adopt husky and other breeds not indigenous breed and dogs of India.
They feel not sorry for using branded leather bags and fashion wear, yet they prefer to call themselves animal lover
Yeah I agree 💯
@misty sinew you talk in voice?
wdym>
you’re voice verified, you’re in the vc, might as well talk a bit
Bro who made that channel instead of just chatting in the VC
text is excellent for low bandwidth connections
It makes the VC better in interacting and connection?
certain things are better communicated in text(or images). and sometimes the connection 📶 is not good enough for voice.
i hope that makes sense
Hmm, I see
I want to but I do not have adequate setup.
It would be disaster to use voice, I have poor quality of mic and background noise is big issue for me
Well, I switched to ubuntu linux guys👀
I will eventually.
I'm working on proper setup
cool, i’m still waiting for kernel 6.14 to reach debian 13..
i mean you don’t have to be a streamer, even discord on mobile works if you wanna talk
I'm broke as f.
I got poco f1, almost decade old phone.
It is miracle it works somehow
Recently I messed up with my space key in keyboard
life has been hard lately
Interesting enough poco f1 is supported by postmarkeos
I’m assuming you run Android. Do you still get updates, can you install the apps you need? Can it still access the playstore?
Eh
I have pixel OS in my poco
I've used it before
Problem hardware it is too old to be used as normal phone
I use it mostly for streaming and chat
I wish I knew how to write drivers and diagnose problems with older hardware..
Repurposing or adapting software to older hardware seems like a cool activity
Yep
It is headache to fast boot
every phone has different process
and there will be error to deal with
using rom ain't fun
it has many draw back
Net Banking fails quite often
many application struggle on rom
What is rom ?
Rom means custom os or ui?
how is my django project ( :
name is codechest
It has a different purpose than GitHub.
https://flag-issued-leonard-extension.trycloudflare.com/home
horse heads are soooo big
how is my project : )
@misty sinew i wonder what would happen if microsoft google apple and meta would merge
what game?
dono that.... but okay
!stream 740572512005521458
✅ @tacit jetty can now stream until <t:1756695059:f>.
How is everyone doing today?
ok ty hbu
To answer your question, you shouldn't really take input in your classes. You'd take it in your main program where you were doing your menus.
Ah so. should the class get data from functions then? like the menus
Yeah, your method would take the input as a parameter.
wait so would you reccomend making it like different files or same one
You could make a generalized function to get input that takes the question and maybe the validation type if you wanted to check for that
alr i might need ur help later xD. ty
Anytime 😄
@umbral rose how are you doing today?
Good thanks, how are you?
Tired but enjoying camping
bro what are you doing are you trying to make game
so bro are you using pygame
how is that module . how is the experience .....
@sacred quest come here
alright
@austere yoke simply my lang don't work like you think. i build it with way easy to upgrade change syntax etc...
You are matching for Print( in your "parser"... So you don't have proper arbitrary functions in your language, since it must be hard-coded with the parenthesis.
https://cdn.discordapp.com/attachments/650401909852864553/1411469616315629708/image.png?ex=68b61684&is=68b4c504&hm=f8253069c56124bb7268f3b7666a9c36029800583a68151280648dd981eaa98e&
https://cdn.discordapp.com/attachments/412357430186344448/1411433805969096832/image.png?ex=68b5f52a&is=68b4a3aa&hm=37dd7733c1869288169817fbcbca1eba588ecbd760c3b018278d023fff54d5ee&
https://cdn.discordapp.com/attachments/412357430186344448/1411425088552833247/image.png?ex=68b5ed0c&is=68b49b8c&hm=086910efcafe0938dd4fa2b21984d29a027c8456f7a00b2c093cbb9a0d5774ed&
https://cdn.discordapp.com/attachments/412357430186344448/1411419276287541259/image.png?ex=68b5e7a2&is=68b49622&hm=0e00088bdd34901f37ee140aec8096f986e930939a94f5f0a02663cf0c65e4b9&
https://cdn.discordapp.com/attachments/650401909852864553/1411398885825581228/image.png?ex=68b67d64&is=68b52be4&hm=589c996d3c2912205e1aa334932f43dd85cd6eab0f3439606546b3d2a5d952a4&
http://brilliant.org/2swap/ - Click here for a 30 day Brilliant free trial and 20% discount on an annual premium subscription!
If you liked this, please support me on Patreon! https://www.patreon.com/c/2swap
You can support the musician, 6884, on Kofi: https://ko-fi.com/iam6884
Check out his music here! https://6884.bandcamp.com/
Video animate...
🐻 ✅ - bear accept
def nuke():
global __builtins__
import sys, gc
g = globals()
__builtins__.__dict__.clear()
__builtins__={}
g.clear()
sys.modules.clear()
gc.collect()
return sys.stdout
writing docs
a lot of docs
aaaa
(actually just translating my own writing between languages)
brb
back (work call happened)
I know at least 3 other regular people on this server that used it before
Flutter
🇨🇳
and one more big Chinese firm
also, this
yes, the game bundles a web browser for its UI
in one row
(the main one; idk about the showcase one, since that's mobile; might be integrating differently)
@dry pendant they're probably just "this company mentioned they use Flutter on this date" entries
@stuck bluff mail or male?
lmao
since that would meet the newer terminology
that's not what MCP stands for
MCP is Master Control Program
e-boy, e-girl, e-mail.
(yes, the joke being the misheard option is equivalent to first of that list)
Yo
which graph database is this?
That’s using Obsidian’s built in graph function
ok and how do you see this usefull in your journey?
What?
content of shared video graph theory
Because I think it looks cool
ok i was wondering how this gonna usefull in real life
- Because it looks cool, and that makes me happy. I program to have fun and make cool things, so there doesn’t need to be a real world use as long as I enjoy doing it.
- These graphs are useful for a field of mathematics called Game Theory, since it can often reveal superstructures of the system and bottlenecks of positions.
- In the more general case of a continuous physical system, these graphs are called phase spaces, and analyzing them can be a good way to understand how the system behaves. If you’ve ever seen the graph of at what temperatures and pressures water is a solid, liquid, or gas, that is an example of a phase space diagram.
awesome now that make sense
Valuation would be halfed or 1/3 of present valuation.
Tencent of China is Meta + Google of China.
Valuation would be halved at best, highly inflated valuation they have based on competition!
I see, so it's against their best interest to merge.
But I think behind the curtain they're one and the same.
I hope not, yet it appears to be.
Microsoft is as big as Apple yet it chooses not to optimise and improve Windows 🪟
Microsoft chose to enter the manufacturing of tablet and Phone market but it avoided the laptop market.
I guess this is a clear sign of compromise
is Microsoft doing this because it knows it can't do better than Apple.
or is it because they have a deal behind the curtain to complement each other and never compete.
Even if it can't do as well as Apple, it would be much better compared to third party vendors for Windows
I guess behind the curtain 🤝
The only valid argument to opt out of is "It can harm the interest of third party vendors and it would make them choose Linux or native OS "
I see no other reason, why not?
If they can make a Quantum Computer, they can make a good CPU as well
Hear from the Microsoft team behind the recent breakthrough in physics and quantum computing demonstrated by the new Majorana 1 chip, engineered from an entirely new material that has the potential to scale to millions of qubits on a single chip. Find out what is possible...
Chapters:
0:00 - Introducing Majorana 1
1:26 - Why does quantum com...
@dusk solar 👋
@fresh oasis fully audible
@stuck bluff 👋
https://leetcode.com/problems/evaluate-division/ <-- this is the problem if anyone is interested.
@gleaming vale 24/7
Making QPU is based on physics, making CPU is based on engineering
they're both physics
I mean CPU don't use physics to drive stuff unlike QPU
remember when p-doping and pn junctions about transistors were novel..
still physics..
yes it does, look up the inner-workings of a transistor
The transistor tech is done by chip manufacturer....
I'm saying is it doesn't mean that if you can make QPU you can definitely make CPU
Most option has 500 USD shipping fee and if not it simply didn't ship to Philippines 😭
@glad turtle ur German ja?
@astral pier 👋
Romanian 🇷🇴
Romanian.... Close enough
I find it very odd. I live very far away from China and I never get such shipping fees when ordering anything from there.
Idk....
Well most stuff I saw from the link u showed came from America
Sometimes some are from Germany
@desert mist 24/7
24/7??
24/7 ⏱️ 365 🗓️
@desert mist @tacit jetty ^^
passed lol, very bad perf tho
what version of python is best to use when learning?
Usually any version will work
seems like I cannot open mic yet
📉 it's blue therefore good
Guys whats the best free code editor except for microsoft visual studio mine is bugging
O
NOTEPAD
Thonny
u use it?
yes sometimes
VSCode, not VS
VS proper is not great
@tulip grail raspbian
its also preinstalled on raspian i think
(for stuff like Python and arbitrary editing)
the first question was "is it performant enough" lol
raise Todo
class Todo(NotImplementedError): ...
ctrl+shift+f raise Todo
@tawny lily WingIDE drops into interactive context after execution too
!d code
Source code: Lib/code.py
The code module provides facilities to implement read-eval-print loops in Python. Two classes and convenience functions are included which can be used to build applications which provide an interactive interpreter prompt.
might as well just use Jupyter at that point
dtrace it
AB testing segfault in prod
@tawny lily https://www.youtube.com/watch?v=VvUdvte1V3s
It seemed like an easy feature to implement, a checkout page to place an order. But this payment gateway has a simple API, so we added that. And this email service provider makes it possible to send an email with one line of code! Finally we can notify downstream systems via a message queue. The code looks simple, 6 little lines of distributed s...
mandatory watching material
for payment processing
(don't skip through, you won't learn)
no. go and watch that in full at 1x speed.
do you know the i-word for doing it right?
@tawny lily
thanks for clarifying, now go and watch the video
you should instantly reply if you know
idempotence/idempotence token
yeah, then you definitely need to watch that
Jimmy is entertaining enough to watch even not for raw technical stuff
i use 3.14
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
audio works
CPU and QPU both use physics at its core, to understand QPU one has to understand the working of CPU and Machine first.
Microsoft had discovered a path which hasn't been discovered to make its QPU,
road map to manufacture CPU is already in practice and it is much easier for corporations like Microsoft to make its own.
In fact Microsoft manufactures its own CPUs and AI accelerator for Azure Technology
It certainly can make its own CPU for laptop and Desktop
It is not just limited to the US, it extends to China as well.
BYD chose not to enter the US market, despite tesla being made in China.
I think it is the pure behind the curtain deal, BYD can't be banned like huawei as it uses in-house technology for core working of its EV
yo
Hello @glad turtle
hello
How you all doing?
VC inactive now?
Ah maybe all are afk
@stuck bluff They always end up being heated
I guess someone has bad day and he would like to express it out 😆
Sharing is caring 💯