#serious-discussion
1 messages · Page 67 of 1
oh
and this answers @hollow onyxs original question
now to understand why the theorem even works
I wonder if Wikipedia has incorrect proofs for something
unlikely
math wiki often has pretty high quality
probably not very accessible to new learners but usually a good review
@flat harbor @alpine kindle hi i am overwhelmed in discussy 1
🫂🫂🫂
helo what u need is a nice calm discussion 2
that is indeed what i require
its aprils fools im thinking abt what diabolical scheme i can plot for my discord entities
i havent been Aware of annual events since christmas
valentines just went past... dont wanna let the clown day happen like that
it is my mothers birthday in 5 days
ive asked what she wants 4 different times
and she hasnt told me
then ure justified in giving her a starbucks coupon
thats amazing
and probably an amazon giftcard
i didnt get her anything for mothers day cuz i was uh
at a cub scout camp thing
if i was a mom i dont think id expect gifts it wuld be great to receive them but id rather enjoy a phone call once a week or smth
mmm
Well I’m failing my mom lmao
I maybe call twice a semester
i dont think i called that often either
but if u remind urself abt it then might as well as ukno
True true
i think last week i called after work
told them abt what i do and that i love them and it was nice
ill try to call my parents at least once a week when i move out
idk im terrible at phone calls
if its too often then it gets a bit awkward
but u get better at them ye
i dont pick up phone calls if it isnt from my parents either
my brothers im better at cuz they both use discord so i can just send a message in our gc
how do i april fools
we occasionally organise playing videogames
discord with family...
its swag
games with family........
unimaginably swag
one of them is a developer
for what
neat
super neat
my sister treats me as indian tech support
she uses a macbook and doesnt know hoe
thats
something im scared of
cuz i took cs
people will ask me
t ofix their compiuters
can u fix my computer for me its running super slow and super loud and smtimes it crashes a lot can u fix it ure a computer scientist right
racist....
gaslight them into thinking you didn't take cs
i know how to normalise a database to third normal form i dont know how to make chrome run faster
no
i escape all accusations by reminding u that im an indian nationalist
its ok thats kinda cool
i am a nationalist for the great nation of null island off the west coast of Africa
purest form of nationalism is for a nation uve never been in before
did you know it goes up to 6th normal form
smth about like transitivity and atomic stuff
it does but that is not covered in the a level
oooh words
don't be sorry
sdlc?
system development lifecycle
system analysis stuff
is that like rda, waterfall, spiral
yeah we're literally doing the dev lifecycle and database stuff right now
there's more than one diagram
oh boy
that's a really bad development workflow
thats what
the year 13
NEA
is based off
doing a project
following that cycle
i thought you were supposed to do RDA
do ppl even like ever care abt this
which is like
iterative
rda?
"evaluation" --> "disposal"
Nice
are you doing
A levels
L
indian nationalists are the biggest racists
wjec?
Checkmate
wjec is the welsh exam board
F of the highest degree
ahhh
my school picked it cuz the NEA is more like
i am so sorry
objective mark scheme
but that just means
you do a really fucking boring useless project
my condolences
in a dead language
very very sorry
what
i see
vb?????

yeah....
that's horrifying
Good
that must be illegal
but also that might mean
i need to learn more python
like the libraries the yuse
i think they use tkinter?
at least you aren't using visual basic
i think my school has a few libraries they want us to use
numpy, matplotlib, and tkinter
Reasonable
but fuck i havent done python in ages
idk if its just cuz i have a mentally ill brain
but i can
never fucking remember
the dataa strucutres
lists tuples dictionaries
or whatever
Then start doing something fun
i think i need to
go over some stuff again
then i want a project
something to make me actually
apply OOP
cuz rn its just sorta something i know of but have never used
anyone know tikz? :"}
You could do it the other way around use a problem or project to motivate your learning
What is that?
it's.. a latex package that lets you draw simple figures
quick question regarding the OOP thing
i'm surprised you didn't know
I'm just curious about actually applying it
would a use be something like
class button
build a fraction class. it covers most of the basics.
And how come Sherlock holmes need that?
attributes size colour text
check #latex-help
methods click
Ye but those built in
yea that's a fair description of oop
You wanna make your own classes
the latex-help channel is so inactive 
And model a problem in a way that is simplified by OO approach
Think of a racing game with a car class
What are the methods of the car?
What are the properties of the car?
one way I tried using it was
idk if I can explain it cuz it's based off uh
a Minecraft game mode
are you familiar with the pit
on hypixel
We are listening
you get
a sword
or pants
or bow
and you can enchant it 3 times
so I tried to have a parent class just called item
then 3 subclasses for pants bows and swords
with their separate enchant lists
but idk I felt like doing that without OOP would have been not much slower
Functional approach has been trending of late
idk if i still have it
Can be done either way
it might be on my other laptop
Find it and reuse if permitted lmao
Would they allow pygame or ursina
Eeek
Feels artificial
yeah most people make up their client
and make fake questionnaires and iterviews and documentation of the old system
its so fucking redundant
ours is based on choosing a vague problem that doesn't have a specific solution
and then programming the solution
You aren't going to be able to use kick ass libraries like in IRL programming
The project maybe lame
you're allowed to use libraries and stuff
the one extra thing i think ill try and add just cuz why not
is hashlib
for password encryption
cuz i wanna learn how all that works with like
is it called salt?
whatver that is
however my teachers really dont like it when i add literally anything extra
I had that experience too
they tried to replace my code when i used a uuid generator instead of just repeatedly incrementing a single number for item IDs
Well for uni/school problems, paradigms do not matter
You do not really solve real problems
Ok this part is to simulate requirements gathering and system analysis...why not interview something real lmao
well they didnt teach me how to actually create a new object whenever a user wants one
so
could u elaborate a little please
Might as well not do OO if it's singleton...do functional
but then i get less marks...
must use complex data structures for this simple project that doesnt require any complex data structures...
Well that's CS undergrad
Well atleast the part that covers data structure and algorithms
they teach the theory of data structures
and then just expect us to
implement them in the project
Yes that's how it works
You want to know why you care?
no i get theyre important
but
i kinda would like to know
how to make
a doubly circular linked list
Well imagine a doubly non circular linked list
Now just like make head->prev be last node
And last->next be head
i dont even know how to code a normal linked list
i think
isnt there a class for the current node
idk i forgot most of this stuff
i missed the lesson they taught linked lists my entire understanding comes from a random youtube video i watched once
Well what properties should a list have
A list should have nodes
And each node should somehow be connected to the neighbouring node
So you want a value and a "pointer_to_next" thing
Now like play around with insert and delete functions
And it should be self evident
This is a complete implementation of a Singly linked list
Mfw leetcode
Yeet code
Leetcode is better than undergrad cs classes for learning algorithms
Except when you have like an exceptional cs program
Ig it's like Wikipedia...mass adoption making it indispensable
i think i will just
not use a linked list for this project
thats effort
its a HS level CS class so id imagine just anything other than array counts as a "complex data structure"
Well you can use integer with a custom order
Linked lists are a measure of "can you write C"
They aren't really a good data structure per se
Well they have their uses in places you expect the least
But in general they are not the best solution to a problem
Is morpheme count is a good measure to determine how much information a piece of text contains? Are there better measures?
pinging @leaden torrent because i suspect he has a good answer
Uh
Interlinguistically no
Within a language, maybe? Unsure
At first glance I'd be concerned about, for example, pro drop languages
And topic centric languages
But maybe over large enough samples it averages out that it doesn't matter
Still I wouldn't be surprised if there's differences in morpheme counts between 1st and 3rd person writing despite no change in information amount
Not in English but likely in other languages
Unfortunately no
That isn't to say one doesn't exist
Just that I'm not familiar with it
You'd have to check the literature yourself
thanks!
Sorry for the not helpful answer lmfao
not your fault you took time to type up an answer
Fwiw I know that morpheme density is often compared crosslinguistically
There's a famous result that, if you remove purely grammatical constructs, speakers of different languages tend to communicate the same number of "meaning morphemes" in the same time
(which results in speakers of e.g. Japanese talking much faster on average)
(as in like, faster syllables)
This is often interpreted to mean "spoken languages communicate information at the same pace"
But I am not 100% sure how valid this interpretation is
Am i banned
Hello good nights cool people 😄
.
I have this too
@lament lynx bro I think we should leave and return on this server to fix it
what
I have no idea what's going on
Same for me
lmao someone is trolling with the names
"msword-equation-editor" that is good trolling
we're trying our best
read #changelog
what is happening to the channels
hello, why is the server photo like this?
we're trying to fix it
read #changelog
Okay thanks
Nice april fools :P
Well this chat is drad
I thought, this hacker does know it's math...
||Its April 1st||
April 1st?
anyone have the pythagoras proof without the trig identities
hello
Uu can prove it visually
Are the channel names an April Fools thing or something
no the server is corrupted
tragic
BADASS
me when 1^infinity = e

I wonder what the audit logs look like on this discord server
I was aboutta mention that they'd be completely full of "channel renamed" because of channel names becoming "corrupted" and then "uncorrupted"
but I guess it would be full of that anyway with #❓how-to-get-help
i guess now it's also full of "server profile picture changed" with all the
s they're adding
bruh
The bot filter is still on 😔 i thought it was gonna be turn off so that we could have the 87th low quality discussion about the intelligence quotient
Anyone down to study with me , I do CS , Maths and Business A levels, year 12😁?
I thought you meant you were 12
😭
Learn to independently study
Alone is boring AF
If you can't independently study don't go to university.
Finished the top level logic of the GPU core, this ones quite big. Time to do much testing lol. Just super excited for that. It should be able to get around 1 and a half floating point operations per cycle and is nicely pipelined to utilize a wide range of DDR memory busses and caches.
Just heard explaining stuff to people is good for revision?
You can achieve the same thing by writing notes.
Currently on my 2weeks holiday from school which started today, plan on literally grinding maths from now on
and you see this
I pretty much taught myself a large percentage of Calc with minimal effort, barely any time in school.
You don't need other people.
The problem I realize I have is that , ik how to do question only when ik exactly what topic I'm doing
But I struggle in exams as I dk what to use
Going to start logs on Sunday ☺️
An easy concept that can be boiled down to just a few notes.
log(ab) = log(a) + log(b) ,
log(a/b) = log(a) - log(b)
log(a^r) = r*log(a)
So guys how did you like my April fool prank ??
Thats all there is.
Dk what this even means lol
Nanite that's not all
It's related to that.
Another problem I have is that I stay up late and usually only sleep like 6 hours a day
I know I only discussed base-10 and missed base-n and base-e
Depends on the base used
I am using e base
Yes it is irrational
How?
Wait guys can I use CHATGPT for revision, by asking it to create certain maths topic questions?
No\
If you want to fail. Yes
😂
I cannot
What would you guys recommend would help me get better at maths , don't just say revision
Cause next year I will sit my exams which decide what uni I go to
bro revision is literally the only way to get better at exams
ur given a syllabus
its the only thing you really can do
wolframalpha
A big problem I have noticed is that when I don't get something I just look at the answer and pretend like "oh yeah u do that, I would've got that"
This is dangerous. I failed many courses because of this
My aim is to attempt a question that I don't understand in all the possible ways I can think of, rather than just skip to the answer
Do some similar questions after you look at the answer to see if you really understand it
Essentially you need to do enough problems until you can recognize the patterns so that this doesnt happen
Unless you can explain a child you did not understood yourself
that's a bad heuristic but probably works in the case of being in highschool yeah
😭 another day of only 5 hours of sleep, I need to fix this if I want to revise
You should sleep more 👍
Yeah good idea
It's better to study less and sleep like a normal person
the grindmentality doesnt do that much
^
Currently all I do is waste time on TikTok
well that's not good
average highschooler tho
set a screentime limit on ur phone or something
that works for me
Don't worry. You'll get bored of it
I plan on letting my friend create a password for the screen time lock thing
that's a lot
Tiktok videos aren't magic
I think you should set a screentime and teach yourself self-control so you don't bypass it
Algorithm is magic
Humans only make videos. Can't get interesting after certain point
Currently during a school week I spend like 8 hours on my phone a day, it's insane.
I want to narrow it down to 3 maximum
there is so much interesting stuff out there
yeah i got to 8hrs once
immediately set a screentime lmfao
i dont use tiktok but twitter + discord did it for me
Weekends averaging 12 hours😭
I enjoy discord much more than tiktok
How do I set a screen time?
do you have an iphone
i have no clue how to do it on other OS' but on ios its just in the settings
settings -> screentime -> set a limit
Why are you white
Thousands of apps
surely android has this built it
someone removed the yellow and I don't like the VA colour
It's more fitting
yeah
Not in a bad way
Google pixel gang
Just like
unclear why the yellow was removed but i have lots of opps on the mod team
I feel like things are back to normal now
yeah
well no
i've been yellow for so long lmao
also i dont like that the role is like off-white
its just subtly not white
annoying
It will only feel normal when im very active blue again
u can always get removed from yellow
tbh i should just become a discussion poster again
maybe not today. too active
It's fixed
That feels way better
reserve mod
Yeah reserve mod
Haha
ya
I could just show my whole ass and it was expected
bruh
still like that for me
albert on tiwtter was matan
i guess my opps just didnt like it
Hmm
yeah this was hilarious
Last Sunday I apparently spent 12 hours on TikTok alone
And 5 hours on other apps
💀😭
Thank God I added the timer now
hello guys
12 hours in one day?
Yeah
omg, that's a lot even tho i have done that before but in other apps 🙂
Yeah but now I'll only be spending 3 hours max on my phone a week
that's cool, especially you downloaded the timer, it's good way to manage your time
why was the server down for sometime, you guys?
Got hacked
To set up the ultimate troll.
ahh ok
Lol
i love math so much
much love
if math was so good why didnt they make a math 2 ???
this is the only reason im not mod
there is no other explanation
what happened to the server?! It doesn't look familliar at all
Hacked
I see
But at least we can still help people
Can anyone help me with solving separatrix separation
math mods are working very hard to fix probelm
Problems don't always help
They do if you're in highschool.
You should learn to derive the product rule, quotient rule,
What an odd comment
and chain rule
Is the only math you know calculus
This person didn't mention calculus once
Yes you should learn the concepts. The best way to do it is to do problems.
does that help?
yall both right tbh
problems help with noticing the pattern but sometimes people need a more indepth explanation of the concept before they get it
i also might be completely misreading the context though
yeah it didn't make sense in the context of the conversation we were having + odd thing to ping me over
i guess they just wanted to list all of the calculus facts they knew, idk
Rote learning doesn't entirely work.
are you a robot
If you are learning by rote you don't put the effort into actually understanding the concepts.
lol
im i can take either linear algebra or differential equations next year
which should i take?
linear algebra
im going into comp sci btw
you'll find it more relevant in the rest of your life/math you study
ok
yeah definitely LA lol
ok
Don't take diff unless you are fully comfortable with both Integral and differential calculus
You may also be thrown into PDE's
ok
Which means you should be familiar with multivariate calculus, which also means you should be familiar with linear algebra.
A lot of these is based in vectors, and matrices.
There is many youtubers who are Professors who cover this subject.
Diff-equations aren't that hard once you develop the initution for the tools used to solve them for example integral calculus allows you to find a function defined by the anti-derivative of a function. This anti-derivative is a potential solution to a differential equation.
Other notation for an anti-derivative is an indefinite integral.
yea
i've taken through ap bc
tho bc's been a struggle
just trying to figure out to do w/ap stats my senior yr
Why has BC been a struggle?
BC sucked when I took it. Whats a polar equation. No one knows.
Linear algebra will be a core course in your CS degree
you most likely won't need to touch diff-eq and if you do it will probably be one of the easiest math courses in your degree
Polar equation, you mean a function which defines itself in the polar coordinate space? Where some trigonometric functions have undefined results due to a number of reasons?
It's okay, really
polar equations, remembering all of the integration rules, and junior year in general
my Autism/adhd fueled gifted kid days are coming to an end
Better now than in first year
i mean yea
and like they’re still technically goin
like i’m still gonna end school as valedictorian with more credits than my schools history
(almost) everyone hits the wall at some point where u have to start thinking really hard
thats cool im proud of u
just stress and mental health
ya
kinda gone down the gutter this year
some call this burn out
which came to a head when i realized my course registration was due 35 min ago
and needed to be handed in in person
so minor panic attack
plus this math class is gonna be virtual learning which sucks
Jesus, everyone seems to have a disorder these days...
like i’m already doing my second math class virtual this year
is your school not fully back in person
we are
idk how highschool works these days
but we’re small
so we have to be part of this network called MSON
for more advanced courses
like this year i’m taking an Mson in mathematical modeling approaches to social justice which is cool
nope they don’t allow us to do that
thats fucked up
and the main curriculum is challenging enough as is
my highschool they would let you but it was like "introduction to car mechanics" or whatever lol
A useful skill.
bc i’m taking bc and then for english and history junior year we have to take this course called american studies which is a 2.0 credit 90 min/day course
it’s intense
but it’s rlly eye opening
its good 2 get pushed in highschool
evne if u need to do it artificially by taking like 10 courses/semester or whatever
lots of people breeze thru and then get murdered by 5 courses/sem in uni
Schools drill plug-and-chug that is why.
Are you 34
The students don't actually understand what they are doing.
Professors make many complaints about how under prepared students are coming out of high-school.
like even in chem we memorized like nothing
this is broadly true unless you're in a place with a nice curriculum
has the entire periodic table each test
bc they wanted us to actually learn the science
not just memorize elements
same for our advanced physics class
Advanced physics class? "Define advanced"?
it’s two ap calc based physics courses in one
in all but name
bc the teacher didn’t want to be bound to a curriculum
Again "define advanced"
that’s just what the course is named
What was it's contents?
like senior calc based ap physics
well it started with vector analysis of motion and a bunch of other mechanics stuff now it’s electricity and magnetism
basically the ap physics c courses
Did it involve contour integrals on the complex plane or something simpler?
lmfao
Mechanics a lot of it is simply multivariable calculus, vector calculus, and most of that is done in the 3D real-number plane.
If you are going into "electricity" and "magnetism" unless you are dealing with contour integrals I wouldn't call it complex.
Which are typically used for Maxwells equations.
Not what I'd call advanced physics then....
😭
i’m sure it isn’t
it’s to differentiate it from our physics course
which is taken by 9th graders
and is so watered down it can barely be called basic physics
Glad I'm 25+ and don't need to do school.
Figured
eh school is fun
school >> adulting
friends and electives and extracurriculars and learning
I was barely in school. for a large percentage of my life, because I was more interested in what was outside.
like i don’t wanna be an old grumpy jaded adult
tho i’m already 3/4 of the way there to that
fair
i spend most of my time with my robotics team tbh
or in debate
Compressed an entire 12 year school period starting at the lowest levels of math.
I knew nothing at the beginning.
6 months, screwing around bit of study here there got to Calc 1 passed with no prerequisite schooling. Understanding Calc 2 moving onto Calc 3
Reason being I actually saw a "use of it"
Translation I don't need the education system to succeed.
Too me school was a waste of time.
yea esp when you can make 20k a month by being ur own boss
Currently studying radio-frequency theory, with the goal of designing wifi-networks, degree specialization in Cyber-warfare.
nice
neat
Uni
ah
Technically CS, but I pull triple time outside of the degree.
bro a menace for real!
@neat lintel cant tell if u are senile old man or 13 years old
And that ranges from reading - Biochemistry, Physiology, Energy production theory, Machine Learning, Programming (C++, C, C#, Java), Calculus 1,2,3,4, Linux Systems programming, I have a lot of time on my hands and I just consume.
Definitely not 13.
I probably should do a PhD, but the pay is abysmal.
Why do you think you can do a PhD
CWNA currently, nothing fancy.
i ask nothing more
No,'
fuck
hint its not
Type of an opamp.
well it’s something related to op amps thats the hint
but u really should be able to answer this if u are studying anything related to ee
it's a map to find the treasure
why yall so mean
RF theory as in Diffraction, Scattering, Reflection, Absorption, etc.
i think its a battery
More related to what I do in Wifi-network engineering, rather than creating a circuit.
it really isnt
are you sure
I can understand the underlaying sub-carrier theory behind OFDMA and OFDM.
As thats more important in what I do than building a carrier signal generator.
idk this guy sounds pretty credible to me
ok ur studying communication theory without having any circuits classes at all
kepp in mind this is a completely basic op amp circuit
hey rahulthegr8 you're on a math server right?
Yeah thats not what the sort of signals theory I am interested in.
tell me what this diagram is for
physics
I have a book on electrical engineering I'll get to it.
for real!
You're not far off.
It's probably fair that if you go online to boast you can do a PhD you should be prepared to back it up
well i don’t claim to study commutative algebra
man who cares
theres no comm alg here
and i don’t make claims about studying 15 different subjects on my own
It comes down to the time invested vs actual returns. It makes zero sense to do a PhD grovel for grants and earn probably less than a network engineer or software engineer does in your life time.
🍿
I've weighed up the pros and cons of that.
Many many students regret doing a PhD.
i just got a little triggered about him boasting his ass off
Go on. Tell us your PhD wisdom
ykw gets me really mad
him using periods on discord
LMAO
that really grinds my gears
Give a good reason to do a PhD?
Apart from academia?
no gif perms
No. I want to hear what you think phd is like
Lol classic discussy 
we're so back
So back?
i love roblox
6 -7 years of your life forming the foundations of the specialization you focus, on often working for professors that either conduct research centered around what they do, or you end up doing derivative work which has no use. You focus on one narrow field, be it physics, engineering, chemistry, and typically form a very narrow focus. Some get jobs in large companies being paid well but this is the exception rather than the rule.
yeah you definitely shouldn't do a PhD if it's gonna take you 7 years
how long does a phd normally take
BRO USED THE CORRIN SIP EMOJI
I'm finishing up my PhD and have some regrets but none are financial in nature
yeah but imagine the oppourtunity cost
omg youre the dude that goes to u of a right
good thing the tech job market is so healthy right now
I'm not a capitalist pig grifter
this is copium
this is sarcasm
Not really.
People are so weird when it comes to PhDs >_>
At this point I’m gonna start ignoring advice
Because there is such things as PhD farms
phds are lame and for nerds
for real!
Cool
every phd student is depressed and sad and weird and has some vice
such as posting on discord
why
no thats just you
maybe thats just you
Or DnD
Anyone with a semblance of a life wouldn't be a PhD and on discord...
no ng im not mad that im industrying out 
They do not have the time to scratch their backside.
definitely not!
they're even a discord mod
PhD in what?
Math
Particular field?
PhD in shitposting about PhD should be a thing
Mathematical biology broadly speaking
More specifically simulation techniques for reaction diffusion advection systems
doesnt count
Are you groveling for grants
ha that sounds made up
you cant trick me
Ah fun, numerical integration problems.
Math discord really is a toxic place to be 
I do not grovel for grants
for real
I got a scholarship and haven't had to worry about funding whatsoever
So what do you hope to do with your biological simulation degree?
I don't plan to do anything with it
simulate biology
I'm leaving academia to go into teaching
Be sure to join r/Professors
damn
What is that
personally i would not let that slide
Reddit for professors by professors
its a Reddit.
I only use Reddit to shitpost about politics
Reddit is still a conservative platform to me
Professor in which sense of the word
Have fun dealing with students who refuse to study and using chatgpt to do their assignments.
this is insane
what
how
have you ever used reddit
Dang Nanite now you also have experience with being a professor
Yes I have and yes there are options but when it comes to meeting redditors in real life they are typically conservative
Just read the rants from professors
you'll get the gist.
i love nanite i think we should keep him around
you must be in australia or something if u think reddit is conservative
this is doubly insane
Have I had bad luck or something
isnt it like a top five msot popular social media app im pretty sure most people are redditors in some sense
yeah
i think you just meet a lot of conservative people
Ah you mean professor in the American sense of the word
Also partially owned by the CCP
man you just have banger after banger
I read the rants of a president for 4 years so I guess I'm a president now too
How do I stop this from happening? 
bro brought in the ccp
As a general term for teachers?
Fr i get no breaks
dye ur hair and wear a tshirt that says "soy libcuck" or something idk
I hereby declare you guys call me president Delerik
Anyway unlike your cynical ass I have actually worked for quite some time in high-school classrooms rather than just reading about it on reddit from disgruntled redditors and I'm quite happy with my career choices
rat bite
OMG I GET IT NOW
Cynical realist.
HIS DISCORD USER IS RAT
btw can u ban the guy in chill
AND HE HAS THE ALBERTA FLAG
I can lift beautifully. More beautifully than anything you have seen. Everybody says I'm the best lifter
I am also interested in how much president delerict can bench
WHICH IS A RAT FREE PROVINCE
No, you are not a realist, you haven't worked for a moment in a high-school but for some reason think you have meaningful opinions about it
Wow very inspiring. What can I do to lift more like you?
You are evidently a redditor indeed
I would never teach high-school students in the first place.
Ever.
Okay good for you king
The other day a lifter came up to me. And he was crying, telling me how much he admired me
Somehow people are always crying around me
can’t tell if ur doing biden or trump
Then why do you need to justify it to me if that is indeed true?
What
Oh I see
Still dreaming, in abbreviated email.
You're doing the old "haha I insulted you and now you're talking back, how greatly I have offended and bested you, fool" thing
Well Nanite why are you here to justify why you will never do something
Christ you're a real gem aren't you buddy
Are you convincing us or yourself
Absolute pleasure to make your acquaintance
Why are you even remotely offended?
I am not offended
u did call his phd work numerical integration 
wats that
It seems that ultimately Nanite is here to convince himself
its when you integrate but its hard so u just guess
real
but you guess really well
That is what they use is it not? vectors and numerical integration techniques for approximations, combined with other computational techniques? You can't exactly calculate these things directly they eat too much processing power up.
this man really enjoys putting together vaguely related terms into a sentence
It's a bit like hearing someone has a phd in chemistry and saying "Oh, titrations, i get it"
even though that's all they do in those labs and you cant convince me otherwise
funnily enough he probably knows nothing detailed about them
is that not what chemists do
Sure bud
Tonight’s interdisciplinary roasts are top notch
Oh physics is just...
Wait what is physics just again? How should we be reductionist about it
I am however a mod and as such I do have an interest in making sure this community isn't turned to a toxic wastedump by dipshits like yourself who for some reason think they have anything resembling a well-reasoned and valuable opinion on things with which they have vanishingly little knowledge and even less experience
Physics.. oh you mean free body diagrams? haha yeah that stuff is easyyy
Physics is just diagrams!
no that's category theory
Do I? You don't use numerical reasoning with computational biology?
What is numerical reasoning
You don't use diagrams for physics?
I take it back you're not a redditor
Physics? You mean pseudo math?
You're from fucking quora aren't you
Like when you add two plus two and it's four thats numerical reasoning
Damn Jesse good point everything is numerical
True
Eventually
In any case most of what I do is based on stochastic simulation
numbers arent real theyre a conspiracy made by the government to make us question god
Which is... not the same thing as numerical integration
Measure theory is just Greek numerics. Called sigma algebra.
You aren't real you are a false prophet sent to quash knowledge of sacred numerology





