#ot1-perplexing-regexing
1 messages · Page 48 of 1
now you need to pull from source system again huh?
No, we get data from 3rd party.
They provide in SFTP w/e
imagine SFTP. pretty sure we have FTP processes running somewhere
i remember when i was an intern they briefly mentioned it
and i was like wait
dont they mean SFTP
nope it was FTP
🕯️
SFTP is a requirement to receive data. Only real reason we have it.
.randomcase legacy
leGACy
Well, this is my week. Not even Friday yet.
accurate
They dropped the request for the metric. I don't have to dig through that JS crap. 
on the 4 quadrant value/effort matrix, query requests are always low value in the grand scheme on things
according to every data podcast i listen to
in a DS leadership book i read, theres also an art to assigning the right quadrants to the right team members
too
that was interesting but not relevant to me atm
since trying to stay out of manager world as long as possible
you just dont get compensated correctly for it
lol
Bout to bat back this mf excel error with "you have to rewrite it"
inb4 "can you help me rewrite it"
like juniors get certain boxes, seniors get certain boxes, and then you as the lead get certain boxes
something like that
i hope im making sense otherwise this quadrant talk will just be nonsense

Like role objectives?
This excel garbage isn't my strong suit either.
Well, it's slowly becoming...

Also, take a look at this job role I found lmao: #career-advice message
💀
for some dumbass reason half the string fields in the schema are limited to weird ass limits
give me my text fields damnit
hey

rofl
😩
just make it natural like :03 or :11 times
anytime i see an email sent at :00, i assume it was scheduled
Btw, do you know how well NLTK is good at removing people's names?
poorly
I schedule 8:00 am emails for people who send EoD 
Otherwise, I schedule it later in the day when I'm actually awake. O.W. you get some response back and it'll be odd if you didn't respond right after.
I on me tablet!!!

I want those quick wins
pain
is it youtubeVideo or youTubeVideo
I'd also pick the former but can't really point out why
You wouldn't camel case youTube
I can kinda see it if your reasoning is "separate every word" and " 'you' and 'tube' are different words"
If they weren't a name of a service, written together. It is stylised as YouTube, yes, but it's a single word, single name.
@weary moat its you!
meatballs r very expensive
#python-discussion message
@latent wolf
I'm mostly just a hobbyist that picked up integration outside of any official curriculum so I'm not that good at integrals, but general advice is to just do a lot of integrals
I tend to see integrals online, try them for a bit, and then either succeed or go look at the solution if I feel like I can't solve it, and then I'll usually have learnt a new method or some identity I can apply in the future
don't be scared if you see stuff you don't know, but also be able to tell when something is too advanced for your current level of knowledge would be my advice
in terms of where to find integrals, MIT integration bee is a nice entry point imo, no complex analysis necessary (for the most part), and I hang around quora and maths stack exchange too
in terms of actual integration tips
uh
feynman's trick is very very versatile
always have king sub in your mind
gamma and beta function is pretty neat so check that out imo
make sure you're solid with substitutions and IBP and all that
if you can't solve something don't be afraid to look it up after you've had a good crack at it
and then if that doesn't work sleep on it
don't disregard convergence when doing integrals
making sure stuff converges so what you're doing is legal is fairly important imo
and I guess have fun?
I'm just doing integrals for fun so my perspective would differ from someone who has to learn integrals for their job or school or something
hello stickie, great monologue
thank you
#ot1-perplexing-regexing more like #ot1-stickie-math-monologue
oh yeah and do literally anything to avoid partial fractions
cover up method is great
but otherwise it is usually a pain
and make sure you're very comfortable with differentiation
because you'll be doing it a lot
Thx
matrices and linear systems are also surprisingly common so if you have time check out linalg as well
I only know how to do derivative
but a lot of integration is just instinctual at least for me
so do a lot of problems to build up instinct
Is integration used in cs
if you're starting out from scratch start with a calc 2 course or something
No course
I learned because needed to use
I mean like ones online
if you're learning it just for cs that's a different topic
Ya I used derivatives for sgd
integration would be less important I think
and knowing how to integrate even less so
Ok I really enjoyed deriving
verb for to take a derivative is differentiate
idk ask the etymology nerds
where are them

where art thou, etymology nerd
wherefore art thou, etynerds
because english is weird
I use derivate in my lib even though I know that's not grammatically correct because I like it to be homogenous with activate
do you also use "mouses" and "foots" instead of "mice and "feet"?
No but I think I will start doing so now
lol
My feets
if i did
int a = 5;
int& b = a;
b = 4;
that's reflected in a too, right? isnt that what aliasing effectively means
yes
b is a reference there, if I recall my C correctly
C++, but it is a reference
yeah and a reference is an alias isnt it
pretty much
consider in perl, foreach $a in (@arr) { $a = 1 }
$a becomes an alias of each element of @arr
to wit, changing $a changes the element of @arr because $a IS each element of @arr (in turn)
you could demonstrate this in C++ as well
for(int& el: arr) {
el = 1;
}
$a is not a reference. if it were, assigning to it without dereference would change what it referred to, right?
cool beans
well, there is the C++ reference, which behaves more like an alias, and there is the "value reference" that java et al use
C++ references are by design not rebindable
Reference to a reference type 
IG the contrast is that java references are only rebindable, you can't assign to their target
why am I using java as an example, this is exactly how python works as well
oh, I didn't know that. interesting
I guess C++ references are much like perl aliases then
isnt raku perl
LOL
raku is to perl what C++ is to C
that's an apt comparison
interesting
raku was too ambitious, IMO. and the logo/mascot is shit.
hey, I like camelia
Never heard of it
is that the butterfly name
it's absurd
raku was absolutely too ambitious, ye
I remember when it was proposed. I actually thought it was a joke
it took forever to get an impl
so now it is effectively a language dominated by its reference impl
wow this is definitely one of the logos of all time
lol
you see what I mean, eh?
raku is extremely good at making really nice solution
i mean
just well, you need to spend a lot of time to actually find the features you can use
as languages go, it is quite interesting. perhaps a bit too flexible though
Woah. This language is based
lol
(there are a number of exceptions, I remember the havoc I caused by asking about RLE)
there is no real steppable iterator
outside of just a while loop with indexes
I like the grammar feature, even if it is extremely slow
everythin in raku is extremely slow, so ...
it can go pretty fast if its doing really basic operations
often beating python about2-3x
which is pathetic considering it has a JIT, but still
or does moar have a JIT, I am not actually sure
is it interesting enough to spend an evening on
yeah
it has a lot of features
junctions, custom operators, and the ... operator are ones I think are worth checking out
(0, 1, * + * ... *) being fib numbers is pretty cute IMO
flipflop operators are also somewhat interesting
Sounds mildly interesting
lol each sentence here hurt me
oh yes, you get a ton of weak typing
the first language I have seen where weak typing is actually helpful more often than it is harmful
also type hints aren't hints, but runtime type checks
with some minor static inferrence
ok autovivification is a cool name so i can excuse it
damn this thing is really liberal about what it accepts
ah wait no <x y z> is specifically for array of strings not all arrays
Well I feel like a twit. TIL that tox -e 3.10 does not, in fact, run the py310 environment at all. It accepts the parameter, doesn't find a match, and runs against the available python environment anyway.
oops on me.
(venv) preocts @ Preocts ~/python-src-template (preocts)
└─▶ $ tox -e 3.10
...
platform linux -- Python 3.8.10, pytest-7.4.0, pluggy-1.2.0
...
3.10: OK (11.62=setup[11.29]+cmd[0.33] seconds)
congratulations :) (11.68 seconds)
huh
A version pushed yesterday corrects the behavior of accepting 3.10 blindly. All my CIs are work are broken. HA!
fascinating
New behavior
Successfully installed tox-4.9.0 virtualenv-20.24.3
(venv) preocts @ Preocts ~/python-src-template (preocts)
└─▶ $ tox -e 3.10
ROOT: HandledError| provided environments not found in configuration file: ['3.10']
Does that mean you haven't... ever tested on 3.10 
That's mildly entertaining-- even moreso that it hadn't caused any significant issues.
Err maybe not as entertaining for you.
I only glanced at the issue board for tox dev.
I expect this will make a bit more noise than expected. I was testing it locally to figure out why they made that change. Now I see and 100% agree with it.
So tomorrow I get to figure out how to translate 3.10 to py310 in my CI.
That or I just need some dedicated docker images that only have one python version installed. tox -e py will still default to the available version.
oooh, OR I could get clever and alais the default before calling tox allowing the -e py flag to work and totally screwing the next dev into understanding the why. 
Hoping for you to find a path of least resistance towards a solution.
least resistance? 
I don't know a whole lot about testing aside from concept, so I'm attempting to acknowledge your situation and hoping that you have an easy time fixing it, but it largely goes over my head as to... why 😅
.xkcd 2347
that's me. I'm that random person
Is it cold in Nebraska? It sounds cold. I like cold.
Can get pretty chilly in the winter time, yeah.
I absolutely vibe with this person's commits
I squash while in a git rebase -i
f>s
wait ImageMagick is such project?
it's always like this for gha
i always do rebasing over merging
commit history just looks more linear
hmm
linear history is the sweet lie some tell themselves that development is clean.
I'm not apologetic of that take.
yeah I was just thinking, "but its not linear"
I usually rebase for funsies
I have honestly never used rebase. I don't even know what it does. I probably used to when I first learned different git operations, but then I went on to never use it
I have a branch off of a feature branch in PR right now that has 70+ commits. More than half of them are breaking and the library doesn't even begin to pass tests until the last three of them. Once reviewed, I'll rebase squash them all into a a few commits before merging.
rebased
It's one of those rare cases where jumping into the middle of my work won't be helpful. It's all broken.
Outside of those cases, yes... I want all your commit sins. I want seven branches off of three features leapfrogging around each other. It's glorious. It's messy. It's valuable history.
it bascially just takes all your changes as a patch, and applies it on the commit you are rebasing on
so like, you never branched in the first place
It rewrites history.
i see
atlassian has good gifs
You start your branch at point A in history and build something. The main branch moves forward, as they do, and is at point D by the time you're done.
You can merge which draws this side graph showing you outside of the main branch between A -> D
You can rebase which rewrites your history to show that you didn't start working until D
man git rebase
My issue with rebase enforcement for linear history is that the branch being around while main went from A -> D tells a story. It explains why choices might have been made.
I actually like the graph of braches that comes about after a while.
So the major use case of rebase is just to make the history less accruate so that it looks nicer lol
The loudest argument I here for linear history is git bisect.
bisecting a linear history is easier.
bisect is another one that i never learned lol
git bisect is absolutely based and you should learn it
but if you are bisecting that often... pause and reconsider things please
i see
it lets you binary search your commit history
pick a known "bad" state, pick a known "good" state, and find the commit that introduced it
yeah i see the use case for it, its basically when there is a regression after multiple commits and you dont know which commit has the problem
You could build each individual one and check
so you basically "discard" changes after certain commit?
using thay
no
to find bad commit
you just find the bad commit, it doesn't discard anything
It's a very powerful serach and identify tool.
(after setting min and max commit)
well
well i mean
it discards in the process
sure, you discard the commits that aren't causing the problem, while searching
not as a result
though, the last time i used git bisect it was completely unhelpful because the problem wasn't a bad commit, rather a change in the global state of my computer 😔
like you select start and end commit
then it gives you basically "does it work before XYZ commit"
yes it moves forward in time, no it moves back
so you're saying you needed a wider repo...
guessing using binary searxg
Hello! Do you have a moment to hear about the wonderful world of containers? You have a few friends that do dev work too right? I'm sure you do. Let me spin you some numbers on....
right?
man i wish we could containerize this app. we tried really hard
😭
yes, pretty much
yeeypie
huh
Don't rebase public history
Ah, that time a junior force pushed to main. Good times....
i don't suppose you were a junior at the time?
i love rebase
Honestly had never seen my senior at the time so upset at themselves. They practically yelled at the director to write them up for not setting the branch protections up.
I learned two good lessons that day.
- It's rarely a junior's fault (alone)
- "Applys to admins" in branch protections is worth clicking
i'm the only one that touches a certain repo but i still have mandatory reviews from the entire devops team, my manager, and a third devops person
Same with all the repos in my team at the moment. I'm the only SE.
i'm stuck teamsing people to just review the thing 😔
😔
Actually.. my hair doesn't look that good.
Yeah. We have production requirements. All changes must go through PR. The PR must have two approvals that aren't from anyone making the changes. THEN we need to do a change request for prod access which requires two more reviews. blah
Most weeks it's easy. On weeks that I'm just trying to push out few dozen patchs/bumps/etc .... grrr
of course, prod is actually 4 stages of uat and other stuff
which all require approval
then someone produces a tool to push it directly to every user in case of security problems
then everyone just starts using that tool instead of the proper staging process
Oh thank the eggs I don't need to CR for each environment. Once I get a director level thumbs up, I can go all the way to home base.
which, because I'm insane, I have automated. I click one button in a UI and the deployment system is on auto-pilot.
it even opens a PagerDuty incident for me if it fails. I can go out and soak the sun up while pushing to prod.
:3c yeeeees
there's emails and stuff for CI, and some emails from the database, but the logging situation is a bit 🥴
observability, metrics, and tracing. Feel the power of the four golden signals.
the four what
No anchors on this article. About half-way down. https://sre.google/sre-book/monitoring-distributed-systems/
ah, i see
Latency, traffic, saturation, and error rate.
If you know those of any system you have the four golden signals. You can say "it's working" or "it's broken".
so true
I will kick this drum down the street. OH I get fired up around monitoring. haha
And tracing - be still my little egg heart.
forget not the mnemonic, lest ye wonder the status
We had an incident happen today, someone physically unplugged a NIC they shouldn't have. Within minutes of the event our NOC team had a full map of the impact across 70 systems with signals on recovery. OH MY GLOB I love it...
Network Operations Center
oop
😔
(venv) preocts @ Preocts ~/python-src-template (preocts)
└─▶ $ tox -e py3-whateverthisis
py3-whateverthisis: OK (11.69=setup[11.35]+cmd[0.33] seconds)
congratulations :) (11.75 seconds)
Yeah... I don't like this behavior at all. 
that should fail.
The prefix py makes it behave unexpectedly from my view.
tox -e py-whateverthisis
I see where the maintainer is coming from but hrmmm.... that's squishy
https://github.com/tox-dev/tox/issues/2858#issuecomment-1382033793
Well I'm going to be learning more about tox than I thought today. 
😔
heck it. Trying out nox instead.
hi pub voice
Hey there, @split finch! 🌟
I hope this message finds you well. Your kind words truly warmed my heart! It brings me immense joy to know that I could be of help to you in your Python coding journey on the [Discord Server Name]. Your appreciation means a lot to me, and I'm thrilled to hear that my guidance and explanations were beneficial to you.
I believe that learning and growing together as a community is what makes places like [Discord Server Name] so wonderful. It's incredibly fulfilling to see your progress and know that I played a part in your success. Overcoming coding challenges can be tough, but your dedication and willingness to learn made it a pleasure to assist you.
I'm here to support you whenever you need it. Feel free to reach out if you have more questions, want to explore new concepts, or simply want to chat about programming. Remember, the journey of learning is ongoing, and there's always something new to discover.
Thank you for your offer to return the favor. While you might not realize it, your enthusiasm and eagerness to learn contribute to the positive atmosphere of our community. Keep shining bright and keep coding! I'm excited to see where your journey takes you.
Wishing you continued success and growth in your Python programming endeavors. Looking forward to our future interactions and the opportunity to learn and share together.
Stay curious and keep coding!
Warm regards,
[Your Name]
That's mean
😬
that is not the intention.
huh
That was a touching automated email
Reminds me of applying to jobs 
"Your continued existence is super inspiring"
i am ||not||
ot0 disagrees
@rough sapphire
So how annoying derps are kept away than? I hope Reporting isn't removed as well
@hazy maple mechanical engineering is extremely broad
everyone knows mechanical engineering isn't as cool as other engineering
whoa
I like to say that mech only covers things that move, or are stationary, and also things that are hot or cold
i know a meche. they're really good at burrito wrapping
I want a csv file uploaded online
ah
Do u know how to
I don't have a website I have a csv file
where do you want to upload it?
you cannot access the csv locally?
No I'm using Jupiter notebook
🤦♂️
I need to add this code there https://www.kaggle.com/code/irtezaplays/twitter-sentiment-analysis/edit
have you ever used github?
No but I have a acc
im pretty sure you can upload csv files and other databases on kaggle as well
did you know that?
open the csv in vs code and see the right bottom corner
you should see something like utf-16
or whatever
change it to utf-8
save it
it will work
Wats Vs code
open notepad lol
make a new .csv file
copy paste the content
delete the old file
or just use any tool online to convert your file back into utf-8
i'll go afk for a while
It's alr that
It wotked
Bro idk wats happening
Pip install isn't working
@fathom musk
Im eating
Send error screenshot
Oh I made it work
Finally
What do it write in this
dataset_filename = os.listdir("../input")[0]
dataset_path = os.path.join("..","input",dataset_filename)
print("Open file:", dataset_path)
df = pd.read_csv(dataset_path, encoding =DATASET_ENCODING , names=DATASET_COLUMNS)
Is it supposed to do this
What is df.target
there is no such thing as target
says so right in the error message, "DataFrame object has no attribute target"
@naive igloo queer is a term used to describe people other than straight, pretty much
alr
some people identify themselves with a different gender than the one associated with the sex they were assigned at birth
when some one sees themselves differently than what they are assigned as although needless to say there are caveats because sex isn't a binary
uhh, could tou rephrase please :)
just didnt get the part after "as although needless to say there are caveats..."
you just used verbed as subject and it confused me
or smth like that
"queer" was originally used as a slur used against LGBTQ+ people. (btw "gay" was also a slur a long time agk)
The term was reclaimed, the Q in the LGBTQ+ means "queer", and it's generally okay to use as an umbrella term for the community (LGBTQ+ community == queer community). But with the history of the word, it's not good to call a single person 'queer' unless they call themselves that.
So the whole set of anti-LGBTQ+ discrimination is called "queerphobia". Because as you noticed, it isn't just homophobia, here it was transphobia
Trans people can be straight
wait what
i used it as an basic term someone who wasn't familiar with the topic could understand
if someone is intersexed, and that person decides to follow similar logic to many cis-people (I have blue eyes therefore I am blue-eyed), and utilizes pronouns that would be mixture of a male/female pronoun, would they be considered queer?
Like they could be straight for the gender they choose, it's just a word really
the appropiate one here would've been cisgender but that'd been another question
in simple terms: someone might be born with a vagina, but might feel that they're being forced to pretend to be a woman. They feel like they were born with the wrong body.
but like that makes no sense to me..?
i am sorry 😔
probably because you were born in the right body. Most people are.
because there are things that would put one as intersexed like different chromosomes or having a mixture of different parts
ok that doesnt help unfortunately 😅
it's tough to identify with someone who is absolutely convinced that they're being forced to live as the wrong gender if you haven't experienced that yourself. All you can do is empathize and try to understand that there are a significant number of people who feel this way (I think it's 1% to 2% of all people)
many cis-people do feel like a man/woman. some don't (like myself). and i am certain i lack said feeling of that
what is that?
Straight means heterosexual. Trans women can be attracted to men. Trans men can be attracted to women.
As to whether "trans women" are "men or women" because those may not be obvious to you:
trans is short for transgender and is an adjective. Tall women are women, trans women are women. The adjective doesn't change the fact that both are women
the easy way to explain is people like you or me, who were born in the right body, and identify as that
would you describe yourself as nonbinary, then?
so "true" straight?
Cisgender is when your gender aligns with what you were assigned at birth.
for example: born with a penis, feel like a man.
Straight is heterosexual. Cis people can be straight, gay, bi, pan, ace, whatever
so cis people = non-trans?
personally no. i just go by male because well i have that part. but i don't really feel anything regarding with gender. but there are other who do consider me genderless and therefore non-binary. depends on who you ask, really
yep. ~98% of all people
After meet a lot of people I'm like hm guess a lot of ppl feel this way , I have to address the topic and like come to terms with it lol
ok i got that part
2% are part of the LGBTQIA spectrum
IIRC, it's somewhere around there.
not strictly trans
no, that's significantly higher.
It's around 9% of people that identify as LGBTQ
about 1 in 10.
https://williamsinstitute.law.ucla.edu/publications/trans-adults-united-states/ - according to this. around 1% are trans
Yep.
Although with some identities, the border is not clear - some people choose not to identify with the label trans, instead of choosing just non-cis.
I used to use that for myself back when I believed my identity to be partially aligned with my assigned gender, so I didn't feel "truly" trans or "truly" nonbinary
oh, 2% of the spectrum is trans, but overall LGBTQIA is 9%?
Among young people there's a higher % of LGBTQ people
what?
understood
...i heard only of LGBTQ(+)...
Okay, my partner's computer is free, so I'm off to play some Baldur's Gate. Tag me if something complex comes up, I love explaining the terms
why so many letters
stats seem to fluctates from 3.5% (lower boundary) to 15% (higher boundary)
the + represents the other letters
I'm a cute kitty (sorry for photo of the screen)
can i call it then just L+ then :)
you can shorten it to queer
that'd be perceived as queerphobic
That's the new baldurs gate? Looks like it may be an old game just ad well
cuz i didnt include "Q"?
just snipe it smh
so min form is actually LQ+?
mini form is just Q
That's not inclusive
because the L is normally perceived as a shorthand for "Loser"
queer encompass all the other letters
around 1-2% of people are not cisgender (they don't "feel" like they belong in the body they were born in)
around 10% of people are either transgender or homosexual or bisexual
wait being trans ≠ non-cis?
it's very close, but not exactly
hu
some people (Like @prime lagoon) say that they are not cisgender, because they don't identify with the gender they were assigned at birth, but they are also not transgender, because they don't identify with the opposite gender. They either feel a mix of both, or feel something that they don't identify with either gender.
uebwkzusbw
it is confusing
I think the most accurate way to put it is that everyone is either cisgender, transgender, or non-binary
i do identify with the gender i was assigned at birth, but i don't feel a gender. like what is suppose feeling like a man mean?
ah, sorry. Didn't meant to misrepresent you.
idk tbh myself
you just have a pp and act as a gentleman by ethics, at least in my understanding
someone who is cisgender feels like they were assigned the right gender at birth
someone who is transgender feels like they should have the opposite gender
someone who is non-binary feels like they don't fit into either gender
i suppose i just offended like entire lgbtq community with that statement
what is acting like a gentleman mean?
I doubt it. Behaving respectfully is easy for anyone to agree with.
well ethics have a man and a woman, man generally helps woman, as per ethic rules
I've met multiple non-binary people who said they were transgender, that wouldn't fit that definition
welp 🤷♂️ I tried 😄
for example you "уступаешь" woman, help her transfer heavy bags, etc
I know quite a few cisgender heterosexual women who would take great offense to that 😂
um. i don't get it really. i have no concept of what it means to be a man/woman socially at all
It differes a lot between cultures
In America there's one type of man who works hard and has a family, That's just one kind though
He pays for all the shit 😄
yea i am sorry for those people
that's where I'm at, but it seems inapplicable to me as to why that would be a man. to me, it the definition of a hard-working person. not a man, or woman
stereotypically, men are providers, women are caregivers
Yeah and I don't see why the woman in that typical house can't work hard too 🙂 many do
and quite a lot of women find that stereotype offensive 🙂
well
unfortunately that is how history went :)
A lot of man also find that stereotype to be unfair
and there are work-at-home dads with go-out-to-work moms
true, but we write our own future
That's why among younger people it's less prevelant
...we cant just erase the past either
no, of course we can't
Yes I'm sure.
Yep. It's amazing
That's me, I'm not gonna snipe myself
i find it "more" fair generally too
i hope you know i'm reffering to the snipping tool MS has built in
who the hell use that?
in any event, as far as the entire discussion on queerness goes, the most important thing to remember is basically just that there are a lot of people who feel differently than you, and that's OK. Letting other people live in a way that makes them feel comfortable is great for everyone.
lots
I use Lightshot
the snip tool is meh. rather use printscreen than paste and crop
thats cool, different people prefer different things 🙂
Nonbinary is kind of analogous to artistic type people they're cool
cuz it was built-in
yeah it's a quick and easy one for me to use, because it's built in, same for the screen recording tool
uhh, that is literally what snippet tool does?
downside of the screen recording tool is it saves the videos without compression
you can configure in accessibility settings to launch it on PRINTSCREEN press
i use OBS for that
i use win shift s too i guess, dont really like lightshot because of all the stuff thats related to sensitive data being posted to their service and then you can just change random letters in links and get some random's dude info and they do nothing about it
about last part they should have just used more letter smh
Ah. Snipping, not sniping. And that's my partner's computer, I'm not logged into discord there, hence photo
now i wonder, is it only me who is really into like preserving the past data?
cuz i met some people who didnt really care about it
Ever heard of historians?
no, but i can imagine
i dont care about it 🤷
What do you like remembering? Do you like the present?
i dont like remembering
Do you like space?
like what space
personal or the space space
Yeah like I think Saturn is cool
i do like myself :)
yes, but most people prefer to disregard the bad parts of the past and learn from the good ones
it was really visible a few days ago
i like the aesthetic of nebulas and some other space stuff but im not into researching it or anything, just looks cool to me
i went to a silly outer space conference a few days ago
n realized that university people are actually into conspiracies alot
Some of those light we see took billions of years to get here, they might have been eaten up by a black hole by now
tbh couldnt care less
Learning about the bad parts helps prevent repeats.
Although some groups right now look at those bad parts now and use them as inspiration 😦
well if the bad parts are caused by your actions-sure
if not then better just forget
bad parts are always consequence of an action one way or another
not always your's actions

this is one of the worst things you can ,,not" agree on lmao
not me, i wont disregard even bad events
sexual assault victims, family trauma
both of those things can be just random and not caused by your actions
OH
as long as you learn from the bad events and dont repeat them
i thought we were talking about the nazi and those things
Well different people like different things that's fine, you're engaging in the chat in general so there's one thing you (maybe) like
I think i may be missing context
just decided i don't want to make a fresh project
lmao
hi
I agree that fermented projects are yummier
lol
458 errors to solve
@acoustic moss is this not glorious? :3 (pardon the lack of tmux, in the middle of rebuilding some things)
😭
This gives fossil-age college professor
damn
i was so confident i was good at frontend
then i tried to make a to-do list, turns out i don't know how to pass props around
I spilt coffee over my t480 and had a very stressful 3 hours. I disassembled trackpad, keyboard and wiped it all down. Realized the damage was worse then I thought. ALMOST went to the apple store to get a macbook pro. Then I came back to my senses and got myself a replacement keyboard from amazon. Read reviews about official lenovo parts store and heard horrid stories, and decided 3rd party sellers can't be any worse.
😱
Honestly, I was secretly hoping for bigger damage so I can have proper excuse for getting macbook 🤣
isn't the 480 like 5 years old anyway
maybe you're due for an upgrade 😌
maybemaybemaybe
ah
so i will be going to hs next year by american system
uh
by my system it is still middle schoold
you will be fine :)
switzerland is not real
source?
switzerland is fake news to store gold n money in bank

switzerland is fake news to sell clock
people go there have to pay lots of money in order to maintaij an unreal world

Switzerland is pretty nice. Lucerne was amazing
/shjrug
¯_(ツ)_/¯
1st to 4th grade is primary school
5th to 9th is secondary/middle school
10th to 11th is high school (to 12th for younger pupils ;) )
Asking for stars is like begging for likes and subs on YouTube
It simply assures I'll go out of my way not to do it
im not sure this is star worthy
Does it have a theme for a better OS? I don't want my site visitors to think I use a Mac.
🤣
I'll genuinely star it if it does
!rule 6
I wonder what the new abbreviation will be
PyDis also just means "Python Discord"
Working on a tamagotchi type thing, what does this sprite convey to you?
Feeling unwell
mans hungy
Hungy is what I'm going for trying to distance from unwell
Maybe something with a more neutral expression conveys it better?
But now it just kinda looks like a dude with wiggly tentacles lol
Too much?
imo hungry + green = unwell
but i think the neutral face gets it across more
Ideally the color would be chosen/randomized so I have to be concious about that being a factor for sure
Been jamming to this for about 18 hours now...
https://mynoise.net/NoiseMachines/coolQuantifyMusicGenerator.php
I have heard that catchphrase before 😂, non repeating beats? 🤔 Any irrational number ig 😅
mynoise is awesome
Stephane puts a crazy amount of effort into these generators and recordings.
The generator is new, but the site's been around for a good long while
And, yes, it works a lot like what you mention. Non-aligning cycles.
Polyrhythms is a great generator to play with the idea. 10 beats, all very repeating. Mix it up and you get something that is ever changing.
https://mynoise.net/NoiseMachines/polyrhythmBeatGenerator.php?l=00005832135522126019&m=&d=0
I will surely try it out later, it's awesome to hear lol(im in class 😅)
This one in particular carried me most of the way through NaNoWriMo last year 👀
NaNoWriMo?
something something wri month
National Novel Writing Month
Happens every November. https://nanowrimo.org
Last year's is still being written, I've got a lot to learn about finishing a novel. But those polyrhythms were on for easily three-quarters of my work. haha
😮 that's a new thing I'm hearing. Which country is conducting these?
.bm preoct-opied music
.bm some interesting music thing
America, according to Wikipedia
Thanks 👍
🏴
@owner bro
um...
Where is it dude djfsldjfksdfjsdlfdks
🏳️ We've got french flag. Is that good enough?
french?
nahh they are L people
industrial Revolution
colonials
and
colonials
LLLL

Global.
My teammates: You've done a lot of work on that library
Me: Thanks!
Them: Glad we did that. The reviews were rough but worth it.
Me: ...
Them: ...
Me:
?
3000LOC changes?
2,500 for that PR. I think that will bring the feature up to about 7k total? I stopped looking.
you should look at qalculate codebase, its truly glorious
few files are just 7k LOC
what are you cooking
Hi @proud dew
Chaos.
The project in question has gone years having multiple hands with no enforced style, pattern, or review process. I just spent 8 days aligning it to some standards, refactoring some of the inheritance nightmares away, and picking one of the four model patterns for all the models.
We'll find out in about two more weeks. These changed break everything for the automation service using the library. So... now I get to go through that monolith of chaos and update all the references to the library I just cleaned.
Thankfully the library now fully supports annotation with all Any use removed and a standardized naming convention. Should be all downhill from here.
The end goal is to see if we can trim 20% of the dev time off work from both repos. Time spent just trying to understand how things work.
have you considered tossing it in the bin and starting over?
@primal herald hey did you see my DM?

#esoteric-python is calling me
rightio 👀
jack wins
daaang making the leaderboard
I reckon I could hit 140 60s
Lemme find my laptop I think I tend to do better on there
I genuinely can't imagine my hands moving faster
membrane 💪🏻
welp, nevermind, bout the same 👀
how-
gah damn 👀
i flopped at the end 😭
damn
no bad for doing it on your phone
based
skill issue
bradly sees dead people
i fell off on qwerty 😭
though I shouldn't be too mean: #python-discussion message
That's falling off??? 👀
I'm at a solid 10wpm on qwerty
lol i was too for a while
then i realized that rebinding everything to work with colemak + coworkers computers is annoying
s/ly/ley/
FTFY
It's a great movie
I don't want to give it all away
But yeah, speaking to the dead dinosaurs
I've gone down the alternative route of making a keyboard with the firmware forcing it to be colemak 👀
just got my laptop
rip
i used to have like 130ish wpm
now my hands are rusty
at least i got like a 20 wpm increase with monkeytype, used to be 95ish
welcome for more though
blazingly fast
🦀
I agree, the colors are messed up
i too agree
there's too much agreement going on here!
so true
Ortholinear Gang
Linear keys are amazing.
holy crap bro got worse consistency that i do
i thought mine was pretty bad
but i never saw a graph of f(x) = sin x
And yet still finishing more code. /tease
Arch btw
based accuracy
Based thinkpad. I love typing on this thing but qwerty.

Looks like you're slowing down there at the end. 🧓🏽
I have a problem where I look too far ahead and start typing the word after what I'm trying to type =/
and this issue where my fingers move faster than my brain 
very relatable, also the internet keeps telling me it's a sign of dyslexia 😔
I think trying to type at speeds of 170+wpm, it's probably just a symptom of brain not working fast enough.
you fell off fr
or rather, perhaps fingers not working fast enough to keep up with brain? iunno.
i simply have early onset rsi
after 10 minutes of trying to do this with no errors i got this
I have extreme wrist pain, I just push through it 
I think I can get a bit higher with my reds.
Blues have too much in the way of bottom out for me, my reds have o-rings.
thisd fels so werid
lol
I do miss my mx clears.
it's like they're air
One day I'll be motivated enough to put clears on this keyboard.
you need a better keyboard 😦
I was just looking at mx clear keyboards the other day. (I realize that's not... the same thing as reds.)
I had clears at some point in the past and I recall them being pretty nice to type on though.
i have two keys that are blacks on my kb as leftover of the rhythm game time, rest are red
mx clears are super heavy, no click, tactile bump. They feel good under a pair of hands that worked in retail for decades. I just slap the keys a little too hard for my own good.
I think MX SPEED Silvers are some of the best switches I've owned.
virtually no pre-travel, you can brush a key and it'll actuate.
A set of reasonably think o-rings bring the bottom out and pretravel distance together too, which makes for a really unique typing experience.
Where you're just kinda'... touching things instead of typing.
sounds like a case of trigger finger
I have pains on my right forearm if I use normal keyboards
Boba u4s are the best tactile switches
Message "sͨeͧrͭuͤ" not found.
!charinfo sͨeͧrͭuͤ
\u0073 : LATIN SMALL LETTER S - s
\u0368 : COMBINING LATIN SMALL LETTER C - ͨ
\u0065 : LATIN SMALL LETTER E - e
\u0367 : COMBINING LATIN SMALL LETTER U - ͧ
\u0072 : LATIN SMALL LETTER R - r
\u036d : COMBINING LATIN SMALL LETTER T - ͭ
\u0075 : LATIN SMALL LETTER U - u
\u0364 : COMBINING LATIN SMALL LETTER E - ͤ
\u0073\u0368\u0065\u0367\u0072\u036d\u0075\u0364
boba?
Neat.
Gazzew boba u4
ooh
Diacritical marks or something for my name
sounds like a nightmare to me. I'd approach the keyboard and the buffer would overflow.

I've been wanting to try them
So far the best feeling and sounding switches I've tried without having to do anything to them.
I've got a friend who has them who really likes them
I've got some choc reds on my new board (that I'm yet to finish), not too sure how they'll feel since I haven't finished making it but I like the idea of a nice low profile board
The ergo you posted right? I wish they would do more variations of the choc switches. I don't like the feel of any of the tactile ones. The linears feel fine though. Post the finished build in the future!
Should look something along these lines once it's done
Haven't finished the bottom half of the case though, once I've done that I'll get to machining
OHHH Machining the case is impressive and I am envious of that skillset.
I wish I could. Did you also create the pcb?
There's a couple things I'd change with the PCB if I were to do a V2, but it's not too bad
Thing AMA Board
That's mostly why I did the project 👀 the PCB and firmware are pretty basic compared to other stuff I've done, I don't have a heap of machining experience though so mostly did the project for that
That is immensely impressive. It looks amazing so far.
My guess is no that wouldn't be possible
The gravity thing ir that stuff above
At the distance the baseball or pencil or whatever would be orbitting it would be too far away
Lets see if I remember year 12 physics
Would a worlds largest pumpkin work
Use a solid tungsten ball as the center, to act as the sun
The rest of the bodies would be melons
Forget orbiting me, the melon system shall be a reality
Plus the tungsten ball could reflect light from distant stars giving my melons day and night. I hope
I mean no matter what objects you've got you can get them to orbit
But at these sizes
The speed would be so incredibly slow it would basically look like it's still
Well I cant exactly make planets like in hitchhiker's guide to the galaxy
Why not? I thought you were making a simulation or something 👀
Oh yeah, I can simulate it
Got to carried away and thought I was actually going to be able to go to space and do it 🤓 me and my imagination
For example, say you want something to orbit 1m away from you
You said you were what, 120 pounds
Is this keyboard?
idk what that is in reasonable units 👀
Question is, how big of the Sprite do I make the pencil
.wa s 120 pounds to kg
about 54.4 kilograms
yeah
8x8 pixels?
I've no clue
Was it the 6.67 one
Oo, that's cool!
Spring swap them to 54-56g
Google says its 6.6743 × 10-11 m3 kg-1
Why
Might be how you get the gravity of different objects in space idk I didnt read what it said I just looked at the number
That's the gravitational constant
No why are you doing this
Nvm it just says gravitational constant = 6.6743 × 10-11 m3 kg-1
I'm bored.
please we've had far weirder topics in this channel
Further follow up on the keyboards: https://bastardkb.com/charybdis/ this thing is amazing with bobas. The guy runs a very nice open source mission too
No im just curious
I remember there was a good 3 hour discussion here involving calculating spaghettification in a black hole
I cant neccesarily go back to game development, my poor laptop cant handle more than 2 instancez of godots lighting/shadow casting system
2d simulations is all I can do, this agpu is garbage
I got my computer for 500 or was it 800. Somewhere in that range.
Has a decent gpu
Quite old though
This laptop is advertised as a "college productivity" laptop. For college use
simply do embedded stuff and work with even less powerful hardware so you learn to make the best use of it possible 👀
But it can barely handle anything
I mean it can play counter strike source at a steady 50fps
Use ncurses and make fun terminal apps
Most college students don't need much
Engineering and CS students though
Lil different
But css isnt demanding at all so it isnt surprising
It can play dont starve and other 2D games
Can it play noita
Glad I bought those 8 years ago
Back to gravity simulation of getting melons and pencils to orbit me
What type of melons are naturally big and semi heavy
Of the watermelon family
Coconuts/gourds can work too
My gfs melons
Yes I watched that tim guy do something similar so I can just use what I learned from him as the framework
Made this on my calculator.
I guess the shape doesnt matter, only the size and mass
So I can use squares, rectangles, triangles, circles, etc
I mean in reality they would
But just assume they're all point masses
To make your life easy
Did I say 1 to 1 scale
What I meant to say is 1000 to 1 scale
I'm not going to program a pencil spinning rapidly while I attempt to get the math right for a perfect orbit
Elliptical orbit or almost perfect circular orbit? Does it matter
Hmm when does that occur
Under what conditions will a planet circle something in an elliptical orbit.
Almost all of them
Nothing is going to follow an absolutely perfect circular orbit
Guess it depends on how ot was introduced to the system
In the real world anyways
Yeah
I'm doing this for nothing. I can just do this is universe sandbox 2 cant I
Too bad I cant run it
Its alright
Can borrow my cousins pc again on his day off
But nah, irl social interactions are awkward
Its better than doing nothing
Go to your local uni and just waltz into one of the computer labs
Can't say I'm familiar, I'm not in a country where that's a thing 👀
We do have a technical college that probably has a physics professor. Could go and ask to speak to them
I do like wearing black
And see if they could do a demonstration for me
All I know is, is that physics people like talking about physics.
It's a job where all you do is think, speak and solve math
Worth a shot, as long as I dont interrupt a lecture
Cool
@tranquil orchid are you one of those physics people
No I'm one of those electrical engineer people
Oh
I'd show you something I made thatd probably irritate the heck out of you
Nah itd def drive you to insanity
It's just 4 electrical outlets screwed into two small pieces of wood. With a power cable crudely soldered onto it for power
And they're not even grounded. 🙂
Is that your version of a powerboard 👀
No I got bored again that day
It works but it isnt safe and I dont trust it. I still use regular outlet hubs or whatever they're called
Yeah I'd be a little worried about dying using that
The outlets are grounded tho. Still scary
More so the whole live wires things 👀
Electrical components with exposed metal connected to said components is fun
I touched an exposed outlet box at school trying to switch off a light



