#voice-chat-text-0
1 messages Β· Page 552 of 1
right, gotcha
just a lower-level implementation detail of it
starlette to FastAPI is what tower+hyper are to axum
that went over my head 
Architecure choice matters. You have to commit to it, and changing it later down the road is going to be a hassle.
pick anything, try it
with Python, safer choice is to go with something ASGI
why? you'll be able to change upstack stuff during the project's lifetime
(prior to ASGI existing, recommendation there would be WSGI)
currently using fastapi (w/ uvicorn)
Just follow a tutorial then play with it try to add something new to it
it's possible to gradually transition away from Django, because the fundamental integration layer is not Django, but ASGI
I wasn't talking about which is best, just responding to fkorstyzz about it not mattering.
=> web framework should (not must) be engineered away as a non-architectural choice
frameworks (picked over libraries) generally should be avoided, unless you can justify their use
"I have no clue what is going on and need a strict structure to guide me" is justification enough initially
@primal shadow would be great if there was an option to just give a type to the query that it should populate when returning from SELECT
just for type checking and usability
idk if Python ecosystem has stuff for that
@dataclass
class User:
username: str
display_name: str
user = query(
User,
r"""
SELECT
/* */ username
, display_name
FROM users
WHERE id = $id
""",
id = 123,
).only()
print(user.username)
print(user.display_name)
vc got noisy...
Rust already has a great non-ORM approach to SQL
basically this
hmm
I guess you can do with Postgres+UNNEST
!e bro just do this
print(r"a"
r" something"
r" why not")
:white_check_mark: Your 3.14 eval job has completed with return code 0.
a something why not
the missing indent is really driving me crazy lol
uv downloads all packages in parallel, great improvement
i didn't even know this
uv innit?
innit?
fun fact: npm innit is a valid alias for npm init
npm devs are experts
users = list(query(
User,
r"""
SELECT
/* */ username
, display_name
FROM users
JOIN UNNEST($id)
AS input(id)
USING (id)
""",
id = [123, 456, 789],
))
for user in users:
print(user.username)
print(user.display_name)
/* */???
π€£
they do edit distance?
did you mean [...] ?
no
it's just an alias
reasoning for why /* */
wierd syntax
it's just a comment
damn..
SELECT
username
, display_name
FROM users
never new sql has comments..
-- and /* */
@primal shadow the download speed/whatever is very much not the main reason to use uv
as for poetry -- its issues is what uv seemingly fixes
it's about a better high-level interface
uv.lock is one of the most important reasons for using uv
specifically uv add
uvguy
ah, yes, John UV
- updates
pyproject.toml - updates
uv.lock - installs the necessary packages to the current
.venv
this is mostly inspired by cargo add/npm install
"ohno, Python 0.9 is about to get EOL'd"
Python 0.9 must've been great
0.(9)
stable like a patient
!pep 750
no
it is three point one four
ESPECIALLY Because it's 3.14
PITHON
For one version only
2.71 was also pretty good, I liked it
2718
who needs to separate digits anyway
do be aware that GIL-free Python is slower
so you need to measure whether or not that performance cost is less than what you save by collocating everything within a single process
if there's very little cross-communication, GIL+multiprocessing is still faster
the whole GIL thing has so much discussion bullshit around it
pycon
- it's not a big Python issue
- new changes to it don't have that much benefit
It's a python conference held annually where psf and researchers do talks.
Last pycon was good.
people just like to overhype stuff
It's still premature I feel.
The idea of it still seems like a good performance boost when used properly.
maturity as applied to tech is a thoroughly invalid qualifier
What's your definition of maturity in that context?
unless you're ready to admit that C++ is immature
there is none, that's the point
it's a meaningless fucking word in the context of tech
stop using it
I'd disagree, but not a hill I'd die on.
You can propose sth, and build a proof of concept that works but is not really well-written, fleshed out.
by that definition C++ is still the category of a proof-of-concept
Maturity is the amount of refinement and analysis the tool goes through to become fleshed out.
How so?
Not obvious to me, sorry.
it's a terrible amalgamation of half-prepared research and choices by committee members incapable of saying "no"
Rust 1.0 was a more "grown up" (by that notion) tech than C++ is now
C++ still allows uninitialised data by default, it's not yet even on track to becoming a proper consistently designed language
and this point of view isn't even coming from outside C++, that's what the same people who design and write C++ say
the only part of it that had any sort of proper design and grew somewhat correctly over the years is its standard library
Here: https://www.pyconsenegambia.org/en
@wise loom
Pycon Senegambia
It's still a powerhouse used extensively though. It's like qiskit. Everyone uses it. Dive deep enough and you'll find tons of design issues and half-cooked code.
C++ is very much the PL equivalent of "grow first, figure out later" startups
Qiskit then.
Or Pennylane.
god. I hate pennylane.
Only decent thing to ever come out of pennylane was catalyst, and that was carried by David Ittah.
just more illustrations on how this kind of tech still gets used, even despite it's not yet being ready in terms of consistency
it's a very bad metaphor in this case, a communication issue
It could be mature but poorly designed though too.
C++ is old and it had more research applied to it than Rust, yet it's still at a less advanced state with regards to overall design correctness
Pennylane made the choice to do what they did. No matter how much budget and time you give them, it will still suck.
the implications the word carries are incorrect
again, bad metaphor
too many contradictions
You can have a design that's mature but not optimal or best practice though.
It's half the current research. Horrible design, but optimized and refined as much as possible.
At that point, it's not a matter of maturity, it's just poor design from the get go. Like the project itself is bad.
That's how I learned the term at least. Back to the original point, I feel python needs a few years until they get nogil and the new features to a respectable level.
- Brought to a state of complete readiness.
- Profound; careful.
(excluding medical/human-related definitions)
the word heavily implies positive effects that arose from time
in what aspect?
Have a look at the conversation a while ago.
improvements have been made, but that doesn't necessarily bring the language overall to some consistent model
it is getting worse in some aspects
Informal Name Year of Publication
C++98 1998
C++03 2003 (minor update/technical corrigendum)
C++11 2011 (a major upgrade)
C++14 2014 (a minor update)
C++17 2017
C++20 2020
C++23 2024 (technical work completed in 2023)
things like move semantics absolutely aren't a definitive improvement
TLDR; we were talking about nogil, I mentioned it's a good feature that hasn't matured yet, AF mentioned the term "maturity" is not appropriate/not defined in context of tech, I was debating the difference between maturity vs good design.
within this analogy, progression of "maturity" in tech can very much happen in reverse
with the amount of stuff that gets accreted, the goal for "ready" moves so far away that the overall system gets less ready
I know what you mean, but that's a matter of perspective too. What was the saying? The more you learn, the less you know.
Why not?
and it's really not a matter of perspective, when very much every standard process participants' perspective on this is the same
C++ is not getting close to readiness
baseline readiness vs continuous improvement after the fact
But what you mentioned sounds like the baseline is moving.
contributing to a runaway catastrophe vs iteratively improving something
at such speeds that it can't yet be reached in a reasonable time
a system can reduce its scope and move the baseline closer
tools and parts of ecosystem around it are often more consistent and stable than the language itself
@upper basin they add so much half-ready stuff that they won't be able to get it ready as a whole anywhen within the next half-century
unless they actually just start cutting
C++ needs quite a lot of breaking changes to go back on track
and, no, "but we want to be fully backwards-compatible" isn't an entirely meaningful argument any more
latest C++ standards introduced a lot of new UB, which in turn means breaking old code
I like backwards compatibility as a feature, not a constraint.
Rust used to have Semaphore in the standard library even after 1.0
at some point it got deprecated then removed
so even Rust isn't following this religiously
It's healthy.
that was a funny typo mixup
hehe
meanwhile, pre-1.0, there was so much stuff that we don't see now
for example, green threads
they got ripped out in 2015
and a complete, simpler redesign was introduced in 2018 with async/await instead
another thing that Rust has over C++ for introducing such changes:
editions
separate concept
2015 edition still doesn't recognise async/await as keywords
and you can compile code under 2015 edition even on the latest Rust compiler
it's a way to introduce breaking changes, primarily syntactic ones
@grave viper not yet
ah
if already installed, then, yes, delete
you could've non-manually converted one into another, but I guess you already did that somehow
add -r?
yeah, -r
Christmas 2
@dry jasper he's omni-present all across European Christian culture seems like, very big important saint in Orthodox stuff too
@wise loom just termux+nvim
@vocal basin he was a real person from turkey
I just use termux
I've done Rust development through that before
but it's a bit weird about the ABI
some patches to packages required
ah, protection not prediction
branch prediction is a completely separate topic
@upper basin you can block merge based on CI
we do that at work for some stuff
though not exactly to block
there is a button to schedule merge
and the blocking functionality turns into "merge when CI passes"
this one seems to be paid
(with reasons explained on the website)
React is useful to learn to understand how it works
the hooks are a good idea
you might consider Preact instead
it's somewhat okay too
with smaller bundle size
CSS is not that bad, actually
can do quite a lot of nice stuff with it
ugh I need to wait whole 6 more minutes for DNS to update
@dry jasper I forgot to tell you this two years ago. We're nephews. Wait, no. I'm your nephew.
it's always DNS
ssh -L is truly the highest level of friendship
aaaaaaaaaaa
... how did manage to generate a cert anyway
meanwhile I'm still using OpenVPN for everything
it might be rule-breaking (rule 5)
(out of scope for the server)
too easy to use maliciously
as in cyber attack software is
@wise loom 13
13 is the limit
for specific per-country limits, see https://support.discord.com/hc/en-us/community/posts/360050817374-Age-restriction
WHY IS DISCORD ASKING FOR MY BIRTHDAY?
Discord's Terms of Service requires people to be over a minimum age to access our app or website, so we are introducing a system to verify that users satisfy ...
"there is only Debian and wrong choices"
nearly all Kali stuff is installable everywhere else
Debian is Ubuntu without bloatware
I use openSUSE
iirc that one is quite separate from the rest
@lavish gazelle "primeagen disagrees"
ed
ed is better
vim only
vi is somewhat broken
there is only one correct response to seeing ed:
?
M-x ed
?
I use vim instead of nano just for ergonomics
nano feels uncomfortable for me
mostly because it's not modal
I rarely ever use neovim
mostly just vim
because that's more likely to be installed
@grave viper only four tabs?
some of my accounts use self-hosted mail
@grave viper watch talks and conferences, not tutorials
that'll really help, from my experience
stuffs like this
https://www.youtube.com/watch?v=FyCYva9DhsI
Kevlin Henney
It is all to easy to dismiss problematic codebases on some nebulous idea of bad practice or bad programmers. Poor code, however, is rarely arbitrary and random in its structure or formulation.
Systems of code, well or poorly structured, emerge from systems of practice, whether effective or ineffective. To improve code quality, it m...
tsoding?
Ρoding
ts not st
this
it's a pun on how Latin C is pronounced [ts] in Cyrillic
fireship is a meme channel
COBOL is the hottest programming language of 2020. Learn how it powers the world's mainframe computers in 100 seconds.
Support this channel by upgrading to a PRO member at https://fireship.io
#cobol #compsci #100SecondsOfCode
COBOL Docs https://en.wikipedia.org/wiki/COBOL
My VS Code Theme
- Atom One Dark
- vscode-icons
- Fira Code Font
!voice
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
I mean, i have been in that sever more than 3 days, I be active in voice channels more than 3 hours and still i can't pass this verification
active in voice channels
this is unrelated
being in the VC doesn't affect anything
Been consistently active for 1 hour 30 minutes in text chats
9 activity blocks, 10 minutes each
oh
thx)
@upper basin the "work enough to get residence" seems to be a 10-year permit if earning enough
if what I'm reading is correct
That's MM2H
so, yeah, no permanent and not based on work time
RP-T
MM2H is expensive as shit. Some people "immigrated" like that.
both are 10 years but seemingly different things
if earning RM15,000+ a month
yes
yet, even this still doesn't give a full permanent residence
the 5 years requirement is seemingly in addition to that
worked 5 years (somewhere?) + has formal qualification + RM15'000+ a month for 2 years + lived for 3 years there
this is, like, only a bit higher than what I get but idk how living cost compares
I don't have a degree π
degree is what stuff gets filtered by when there are too many applicants
... and I've never been to a single tech hiring interview
speaking of oil and gas,
https://www.youtube.com/watch?v=sdWEGzWFcCc
This has to be the worst measurement system still in widespread use.
This video is a kind of follow up to my previous video on nuclear fracking. I've hinted at doing a rant about the awful awful units system the oil industry insists on using for a couple of years now, so here it finally is.
I suppose the only source (apart from my memory) is t...
@upper basin getting an offer first sometimes is part of getting the visa
Russia is technically Europe too
AI euphoria is giving way to something else. The industry that once looked unstoppable is starting to bleed from a thousand tiny cuts. Short sellers like Michael Burry and Jim Chanos are circling, warning that the AI buildout isnβt a one-time investment but a recurring cost wave. And now debt is quietly taking over as the fuel of the boom. Loa...
@amber raptor "aggressive accounting methods" ^^
are you using chinese models?
these tv anchors and the topics they believe are important..
well, you reposted it, seems like their topic choice procedure is working
@upper basin pay yourself a salary
well what I meant is I just think it's odd/cringe how US tv anchors are demonizing and chastising the usage of chinese models..
tax through the roof
sales tax + wage tax
90% of applicants quit before they get hired big
oh wait that was about gamblers
@upper basin QOBOL
ah, yes, Fibre's Witness
Jehova's Fibreoptics
"want to talk about lord and saviour, The SFP+?"
@upper basin managerial response: have you tried not putting those bugs in to begin with?
has anyone ever looked at infinite canvas code editors? https://www.codecanvas.app/
See your code on an infinite canvas
default vercel logo as the favicon
yes but their animations looked interesting
hmmm
here's another one https://charkoal.dev/
Canvas code
when CNBC starts to call you out
@upper basin explosion
ed mentioned
snakes are speaking
@upper basin what does x mean there
@upper basin xkipped
That awesome @upper basin much appreciated for sharing us
Can one of you ping me once the test finishes? I need to take a quick nap.
@wind raptorchris can u help me pls
I LOST THE GAME
@somber heath are you there, do you have leisure time ?
@somber heath I want show you something
!code
# ask user for their food
food = input("what's your favorite food?")
# Remove whitespace from str and captialize user's food
food = food.strip().title()
# say awesome food to user
print(f"awesome, I don't like {food} LOL")
# which century were you born in ?
year = int(input("what year were you born? "))
# calculate century
century = (year - 1) // 100 + 1
# display century to user
print(f"that awesome, {year} this history make me disappontment ")
please judge my code
first mistake = captlize
captialize
Capitalise / Capitalize
!e py print("abc def ghi jkl".title()) print("abc def ghi jkl".upper())
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | Abc Def Ghi Jkl
002 | ABC DEF GHI JKL
"Awesome. I don't like apples."
upper
came share us
!e py print("abc deF JKL".upper())
:white_check_mark: Your 3.14 eval job has completed with return code 0.
ABC DEF JKL
classical
@mint pivot π
> greater than
< less than
>= greater than or equal to
<= less than or equal to```
@heavy heath π
it would look like this
$ ./bin/calc
>>> a = 32
>>> a
32
>>> a + 2
34
idealy my project would look like this 
#include <vector>
namespace Calc {
namespace parsing {
struct Token {
Token();
enum TokenType {
Atom,
Operator,
Eof
};
private:
// on future ill just store the index of the token
TokenType _type;
char* _val;
};
struct Expression {
Expression();
enum ExpressionType {
Atom,
Operation
};
private:
// optimizations would be
ExpressionType _type;
// on future ill store the index of the header and length of the vector that store char
// and remove the type identifier and just create a type method tht will return the type
double _val;
std::vector<Expression> operations = {};
};
}; // namespace parsing
}; // namespace Calc
!voice
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
@jaunty socket srr gtg
@sharp raft
# ask user for their food
food = input("what's your favorite food?")
# Remove whitespace from str and captialize user's food
food = food.strip().title()
# say awesome food to user
print(f"awesome, I don't like {food} LOL")
# which century were you born in ?
year = int(input("what year were you born? "))
# calculate century
century = (year - 1) // 100 + 1
# display century to user
print(f"that awesome, {year} this history make me disappontment ")```
makes me dissapointed
!doc zip
zip(*iterables, strict=False)```
Iterate over several iterables in parallel, producing tuples with an item from each one.
Example...
@hardy crystal π
Meuvim my neovim config
my personal neovim config. Contribute to hitoyaCute/Meuvim development by creating an account on GitHub.
Official 4K Video for βFoilβ by βWeird Al" Yankovic
Listen to βWeird Al" Yankovic : https://weirdalyankovic.lnk.to/listenYD
Subscribe to the official βWeird Al" Yankovic YouTube channel: https://weirdalyankovic.lnk.to/subscribeYD
Watch more ββWeird Al" Yankovic videos: https://weirdalyankovic.lnk.to/listenYC
Follow βWeir...
its def wierd
morty: Open Your Eyes
good thing they didnt add the mystery of frequency
Singular vs plural. distinction
curly brace / curly braces
square bracket / square brackets
parenthesis / parentheses
thats actually a english stuff not programming
Hello
@lavish grail π
sup
Singular vs plural. distinction
curly brace / curly braces
square bracket / square brackets
parenthesis / parentheses
plu-rl
purar lol
I regret didn't learn before now
before now
I regret not having learned Python before now.
I regret not learning Python before now.
I regret my decisions.
regret not before now
coding != programming
me oppsete
opposite
opposite
primate
@somber heath start the no freewill argument lol
eating time
@jaunty socket no one is angry
we are on server meant for learning, we should be open minded
@atomic pendant π
hello
banana and rice
furikake
!voice
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
!voice
you should talk more in text
Seasoning mix
(Ajiyose)
"Nichifuri"
am back
ajinomoto :D
soup
soup
π§Ό Soap
π₯£ Soup
π§Ό in bone broth :D
absorption
HMAS Tobruk (L 50) was a Landing Ship Heavy (LSH) of the Royal Australian Navy (RAN), based on the design of the Round Table-class of the British Royal Fleet Auxiliary. Planning for the ship began in the 1970s to provide the Australian Army with a permanent sealift capability. She was laid down by Carrington Slipways in 1979, launched in 1980, a...
In computational biology, N50 and L50 are statistics of a set of contig or scaffold lengths. The N50 is similar to a mean or median of lengths, but has greater weight given to the longer contigs. It is used widely in genome assembly, especially in reference to contig lengths within a draft assembly. There are also the related U50, UL50, UG50,...
I don't want to eat a roomba.
@stable creek boil an egg?
Hardboiling an egg.
Softboiling an egg.
boil
Boiling an egg.
oh boling....
sunny upsidedown
I will scramble some eggs
I will scramble an egg.
I am scrambling some eggs.
I scrambled some eggs.
not scrampling
scram bull eggs
ScramBull egg
boolean
poolian
The bull fell in the pool.
@jaunty socket you saying poolian not boolean
methods
!voice
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
hii
@somber heath
i need sm1
to watch my discord bot
adn fix it
ill pay
is this possible?
!rule 9
dried parsley
pars-lee
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | 1
002 | 2
003 | 3
*unpacking
!e py a, b, c = 1, 2, 3 print(a) print(b) print(c)
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | 1
002 | 2
003 | 3
!e py a = 1, 2, 3 print(a) print(type(a))
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | (1, 2, 3)
002 | <class 'tuple'>
Hi
tuple is just a unresizable, unchangeable lists
Is this a class?????
yes
It can be!
if you have question you can ask dr.Opalmist
ok
I am not a doctor.
no python
okay
yo
All objects are a data structure with attached functionality for interacting safely with that data.py my_list = [] my_list.append(123) # hey, list instance, using your list.append functionality, add 123 to your data
text = "AbC"
print(text.upper()) # Hey, str.upper, give me an uppercased version of this string. Look at its data and give me a new string.```
// type variable name value
int data = 3;
Every object is of a type, a class, which governs the creation, data structure and attached functionality of objects of its type. A class can be thought of as a factory or blueprint.
on python
# variable name type value
data : int = 3
!e ```py
class MyClass:
pass
foo = MyClass()
bar = MyClass()
print(MyClass)
print(foo)
print(bar)```
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | <class '__main__.MyClass'>
002 | <__main__.MyClass object at 0x7ff6a18406e0>
003 | <__main__.MyClass object at 0x7ff6a1834690>
on int type if you do data + other_data that will happen is you will make the data other_data larger
on string if you do data + other_data it will put other_data next to the data
here
This shows three objects, the class and two instances.
foo and bar are both objects of type MyClass
strightforward
Straightforward.
learning english while learning programming nice move
!e ```py
class MyClass:
def foo(self):
print("Hello, world.")
bar = MyClass()
bar.foo()```
:white_check_mark: Your 3.14 eval job has completed with return code 0.
Hello, world.
Wait why I canβt talk?
!voice
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
Be one there for 1 hr 30 consecutively
That's to do with text conversation.
Not voice.
Ya I will just keep it then
Open
Me I just came back form building my robot for VEX with my team
The 1hr 30min thing isn't about time on voice.
Ya I get it itβs for text
You you can search up VEX itβs very cool
And go to images
opal mist was here more than 12 hour a day
β¦.
It sounds like it would be frustrating.
you can def get verified just on one sitting
One might even say it sounds...vexing.
def you
Multidirectional rollerblades.
No no not Lego way more complicated
Omni wheel
We CAD it
Then build
This was our old one
Itβs a small field so Omni is for drift
VEX is a organization
Search it up
Ya this
We do VEX V5 thatβs the high school one
Search up VEX push back
Search up VEX example match so first there is a 15 second automatic period where you do your code and then do 2 minutes of driver
Lemlib phthon block
You can use a lot of lang
Lemlib, python, block coding
Many languages
Ya forgot to put commas
Here
Watch this it is a example match
We use a brain and it connects using plugs
To motors, pneumatic
lol not really
teaching kids how to replace human with machine
No no
innovation
Itβs not like that
lol
YOU DO VEX TOOO????
CRAZY!
I DO VEX V5
okay loveya goodnight
@heavy citrus π
wait
!voice
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
@frigid willow π
hello
yeah imma head out because i can't speak

@somber heath tax avoidance forum
they once invited a historian, he said rich people should pay taxes, they really didn't like it
just send them to mars
in a mars climate orbiter way
(mars climate orbiter did not, in fact, orbit)
thielocracy
@peak depot FβοΈx News
@dry jasper at some point you really should learn that "both sides are bad" is an idiotic infantile response in >99% cases
no
grow up
bashing one side is just brain dead
are you fucking deaf and blind?
nope are you?
the discussion was literally about how the fucking fox news are excusing child abuse
also
the main stream media, public leaders of the right wing in the US
fuck off
nope
I retract my previous statement on calling you "not a nazi, just dumb", you actually are both
if you cant handle a "both sides are bad" than your way to deep into politics
also known as educated (unlike you)
yes opinions and beeing political deeply into one side means your super educated........
and stop calling me a nazi
wtf are you than?
unlike nazis, a human
we don't even have those here lmao
all who opposed nazis have been incarcerated or killed
π
sure buddy
same as in germany
all got jailed and denazified
crazy how you attack me for having a different opinion (both sides are wrong)
AfD is still existent, unfortunately
just like novo russia and russian nazis supported by kremlin
if they go back to their economic origins, maybe their existence can be excused
russian nazis supported by kremlin
not limited to just russian nazis, kremlin is very ready to export funding for right-wing extremists everywhere
@dry jasper fuck off, go away
we don't want you with us in the VC, stay in the other chat
or just don't join
alright stay in your echo chambers
having to say this because you're incapable of picking up a social cue for goddamn near 10 times in a row
like actually crossing into open harassment
its a public server
I am a survivor of the said topic - I really don't wan't to hear "well it's done on both sides" when the values are clear on the other
<@&831776746206265384> Animmo keeps following us and harassing with bullshit arguments
.
you only want to hear "only one sides does it"
makes sense....
the OG discussion was: who are the ones saying "it's ok" very very publicly
yes and you mentioned that the maga ppl are saying it and fox
(should be possible to deduce that from voice channel join/leave logs)
yes i joined the VC becouse its a public server
if you dont want me to join than go to a private server
also who is calling who "dumb", "nazi" etc?
lmao another nazi in VC1
and I was talking about very public venues where this was done. If you come on claiming "the others do it too" then where are they do it too? What news channel? What influercer?
?????
superplantman
(previous nickname)
@somber heath I completely and openly stand by every single thing said there, so not worried about that
Aww, I missed out on the anti-nazi chat?
And how am i a nazi?
no just the "you cant say both sides are bad so you must be a nazi"
<@&831776746206265384> pls do something about the abusive behavior or AF, calling everyone a "nazi", "dumb" etc etc
yes some person did not
but thats not the problem
the problem is that some ppl get called for no reason
Bashing Nazis until their brains are dead is the good side
Check a history book
"no reason"
i am not arguing against that
just getting labeld as something you are not is kind harsh
You don't want me to bash the nazi side?
no
Let me do a pretend mod thing. Up to everyone as to if they abide by it or not.
@peak depot anyway, I have acquired more cat memes, time to pipe that into the DMs
!shhhhhh
the topic was that maga and fox news how they are saying that the age of consent can be lower and how that is pdf like
i said both parties are doing it and they are both shit
well and i got called nazi etc etc for saying "both sides are shit"
Maybe because one side is modern day nazis
and the other side is trying to stop the modern day nazis
and you're doing the whole "both sides are shit" aka "both sides are the same"
When clearly, they are not.
Literally one side is limiting criminal investigations to the other sied
@peak depot it's going to go the same way it went previously:
they provide a source, it provides the opposite point
NEVER seen a democrat announce they will only investigate republicans
It's literally wehat the republicans have been crying about for decades without evidence
what they are now announcing they are doing
"opposite" to what they claim
Hi
howdy π
@peak depot yes, that's the disgusting inhuman part of it
Milien is fluent in english, finnish are smart.
I struggle with english, I grew up learning english from age 1
Do you have any sources?
Looks like it's mostly one side that doesn't want to protect children
I've lived here all my life
π
Where do you get your info about America from
I have paid a LOT of attention over the decades to American politics, state politics, random local politics
Is that how you spend your time? wasting it on this depressing shit"?
I live here, so I do
If you think that i am wrong that you should have a normal Civil conversation about it
Without calling names
civil conversation ended the moment you started the "both sides are bad" idiocy
Life has no meaning, meanwhile other part of brain you should enter VC and talk π
https://www.dailykos.com/stories/2025/8/21/2339592/-Republican-Sexual-Predators-Abusers-and-Enablers-Pt-5 Looks like a very republican problem, you'll find some vile people on the left, but you'll find em in abundance on the right
@somber heath nope, following people around is very much harassment
that is very much not okay
I guess behind the screen these republican and democrats are Friends.
so goes against rule 1+2 quite directly
I'm not gonna say every elected Democrat is good, but I will say every elected Republican is bad (at least federally).
I think politics is like gamble it gives a hope to voter and regret.
Cycle of elect and regret, what do you think?
Nah, it's a cycle of elect and forget
Trump 1 was a shitshow
but here we are, Trump 2
shittier show
@peak depot yep, that just crossed the line this time
What rule is calling someone names against?
The Republicans lie and scream, people eventually break down and listen to the criminals
That seems to be the cycle
They never do anything good for America
For the last... 40+ yearws
read the rules and find out β¨
Remember those day when republican were democrat and democrat were republican?
this is history
Republicans just want people to hurt
That's all their policies are these days
hate
they have no real policy other than hurt others
(I meant complaint letters)
#code-of-conduct everyone should chill and treat each other with respect.
Exectly
Btw how was your day?
So can we all stay in our channels?
π
and keep the peace
that we've divided ourselves into
No need to toss jabs across channels
Gratitude, I like it!!
There are no divisions
@peak depot for a moment I thought it was, like, an opposite of tombstone
rock getting planted on birth instead of death
Just capitalism
buy this shiny rock because you were born in May!~
You're a June baby, you need THIS rock!
NEEEEEEED
I'd think Diamonds would be on more of em
Probably jewelry stores got together
Liek the old got milk ads we had, IDK if you did
but it was like the milk farmers got together
and ran national ads
I wish I could afford atleast one stone but I can't
why can't they have rock as birth stone?
Lovely rock
Milk? How about insurance?
@peak depot famous movie "Linear algebra, first semester, lecture 7"
I don't actually remember if you take linalg or not
If I would have invested a thousand dollar in Nvidia in 2017 I would be millionaire by now
biggest regret of my life
without ego capitalism would fail!
@somber heath "solution": install it from Chinese apk sources
CCP has approved your message
@somber heath even got the annunciation details right
and Milien can provide the cat part of the combined Louis Rossman image
OpalMist do you noise in you head talking to you?
I do have noise in my head talking to me most of time
it is normal?
@somber heath that happened often enough to me to be a concern but rare enough not to qualify for stuff
(only audio, no visual)
Damn
Glad to know, I'm not alone
it's recurring enough that I don't remember all instances
"hasn't flu been dead for a century?"
Damn
I had the flu when I was a kid
no way it can be relevant today
same with the common cold
how can anyone still be bothered by it
just like war, it's been around so long ,why does anyone still mind?
uncommon cold, rare cold, epic cold, legendary cold
Morning
(the point was exactly that, yes)
You missed the sarcasm
You don't think I'm actually OK with endless war do you>?
The point is COVID is still dangerous
even though it's been 6 years
I was using the flu to show how that's possible
((context from VC was: "isn't COVID dead already?" -- it isn't dead, still around))
@somber heath iirc SARS1 was early 2000s
very highly fatal, so didn't spread as much
@somber heath in other news,
@primal shadow bureaucracy complications
Any efforts to curb it would be stymied by "There's no valid scientific research showing that microplastics are bad for you. Let us fill the world with more microplaatics."
Hi
encatment
it means cat
based on how success is defined
only partially
if you can somehow combine humility and daring
great naming
https://oxide.computer/blog/hubris-and-humility
run into problems that put you down and force humility upon you, there's quite a lot of them out there
@primal shadow first step is realising it's a problem, in a way
been there, got fired and got humbled
I never really ran into this with people, only with actual code problems
I did not get in trouble at work once for any sort of serious lack of knowledge, but I had to correct and educate others, including higher ups, from the very beginning all the way through now
if you want Enterprise-y encouragement do sometimes be less quiet: "disagree and commit"
-- AWS and people who realised this part of their "principles" is somewhat okay
@cinder vale that is more like corporate politics not humility
"politeness"
humility is primarily about inner thoughts
becaue I take humble actions in life
humility is in the reasoning that leads to those actions
the only reason I take humble actions is because I have realised that they make me able to achieve the goals
actions themselves can't really be humble individually
very horseful
or polite
@peak depot while it's a pun, the game's name is just an English word, derived from satisfy
(etymology might help understand phonetics I guess)
should my name become politegod instead?
I can't actually find another word that went through the exact same morphologic construction
there are many words with -tory, but most of them take t from -te of a verb
If I take polite, actions based on the long term,
I think the overgroup is the word humble
what do you think?
"humility is not thinking less of yourself, humility is thinking of yourself less"
(`thinking you are inferior' vs `thinking of yourself less frequently')
this is not entirely true, but it's a useful saying
while technically incorrect, the point this makes is:
if you're overthinking it, trying too hard to be humble and centring everything around it, that is the wrong approach
I portray myself as a modest estimate of my value or importance at my work
don't portray, be
therefore the name is also god
my actions are humble because I have seen the effect of being humble
if you need to pretend/portray because of the company having dysfunctional processes and practices, that is a separate issue
yeah, that'll take some work to move that from the outside effect towards the reasoning process
Well I feel like even though my name is not making sense its still functional in the coorporate world
I believe it can be achieved, so don't stop at just focusing on outside appearance
putting more focus on others agreeing with you, coming up with same ideas as you -- that might be useful to level with the rest
@peak depot 18
@peak depot I can just link to my messages
that's all the explaining
quite a lot of "god complex"ness in programming often aligns with being scared of letting others do the work
especially if you end up being given any sort of power
@peak depot Russia only dropped to just below -40 degrees so far
but that's not in the North somehow
in the East
iirc we usually get lowest temp a bit more westward
ah, no, nvm, I misremembered, it's all there
okay I guess just applying the simple climatic rules just works then
invest
"oh no, even maps now have financial ads"
stuff is happening near Australia
more cats
No published scientific studies are known to have been conducted on the efficacy of these soaps, about which serious doubts have been raised.
AI is replacing Senior Engineers in 10y. Another prediction from a random person on Linkedin .
Ready to future-proof your love life? Connect with me for the detailed plan
I thought this was about Software Engineering..
given the Russian first name of the poster, this is quite possibly heavy trolling
hello
as opposed to UnjustPurse
Mere container.
@somber heath can I get some help with using buttons in tkinter? I'm trying to make a calculator for my ap class and I don't like how they're in the top left corner and small.
dman
damn*
something something .pack
im using grid rn with columns and stuff, and so far it's working well
its just small
I've given up on all desktop/mobile UI, only doing Web for UI now
I made a help post with the paste bin for both of the files.
lmao yeah
here's what it looks like
atleast it works!
I saw something about scaling
my buttons file is really large
its like 2kb
well it way larger than the actual file where everything runs
!code
@chilly tundra π
you can cheat and insert an invisible button to the left of 0
heres that pastebin i was talking about: https://paste.pythondiscord.com/W72Q
hii
hey this is due in a few weeks so I have time
I started this last night and we don't work on it till tmr
awesome
lmaoooo
1 hour
(negative 1)
good on u for starting this early lol
i've done some basic coding in my class but we're starting with our create task early
I really started on friday but I couldn't get the files so I had to restart, luckly I wasn't far. I only had the window and a button.
I started it on the school computer lmao
do yall think there's a better way to do my buttons? Rn i just copy paste each one and change the values to the ones I want
also i don't have the actual calculator function working yet, just the ui.
@wise loom
You're deeply uneducated to be arguing about someone's country with a person from that country
Like, even if Alisa lives under the fucking rock from which she peeps once every 10 years she'd still know more about the state of her country than you
ONLY
hello @shrewd warren
I don't
@somber heath I manged to get the frame to work
its 2d
π₯
@cloud holly π