#ot1-perplexing-regexing
1 messages Β· Page 481 of 1
@bleak lintel hello i need graph for my math homework
the ot name says so
pls help
lol
Can I post some visualizations in python?
plz
ugh i just visited /r/dataisugly and now i dont like graphs anymore
i will stick to r/dataisbeautiful
dataisugly
those are fighting words
that's a subreddit lol
still..
half the graphs in r/dataisbeautiful belong in r/dataisugly tbh. Just because it uses a pretty color palette doesn't make it a beautiful graph if the data visualization sucks and is flawed >_>
@floral viper graphs?
i was offered graphs and I want the graphs now
I am also a big fan of data visualization that is almost meaningless. It is cool to see how graphs can be abused imo xD
Here is a plot I did pulling NEET statistics directly from the ministry of statistics open database. They show the long term unemployment (sort of) among different demographics in Sweden.
NEET 
wtf is happening in sweden
Interesting trends in this data is the peaks among younger people and the long term flat slope of older females
wtf is happening in sweden
@versed saffron weβre starting international cults
another interesting area is the peak slightly after 2007, this was the banking crisis
Ahaha
Interestingly the older female NEETS were not affected by the banking crisis, suggesting that they are more cut off from the economy than other groups
is Sweden's economy based on tourism?
No
why the seasonal peaks then
The seasonal peaks among the younger population is likely related to summer jobs
or at least they look seasonal
people age 15-19 often work extra during the summer
it gets less and less seasonal the older you get
I don't see any peridicity in the ages 30-34
at least not among the male
for me I can't really see it in 25-29
female 25-29 does have some periodicity
likely related to them taking short term jobs more often
the jobs we have here that got more women than men are in elder care, education, kindergarten, etc. Those jobs are often not permanent and layoffs happen seasonally (in kindergarten the assistants are laid off during the summer for example)
No, the ministry of statistics only keep records on younger populations.
It is possible that there exists statistics for older groups but I have not found any
so in conclusion:
sweden kinda wack
Not really π
The data visualization was only meant as explorative. I was pretty surprised to see more female NEETS in older groups. The stereotype is the opposite:
The stereotype is the opposite
funny how that's usually the case
also where did everyone else go
who
Here is another visualization I made, this time over topography (land elevation)
the map on the second image is a different program
is that made using python π ?
ahh umlaut!
yes, python + matplotlib
the plot consumes about 20 gigs of ram (it literally crashed my VM that had 16 gigs allocated)
bright is elevated
jesus
ah ok ya that would do it
yall know if there's a way to customise the plt ui?
cause it's not bad
it just isn't great
not that I know. I just rely on it for plotting
hmm I'll look into it tomorrow
anaconda is giving me nothing but trouble and pycharm can't find the library
then again when is it not
most of the time it's just missing libraries
I was using R studio through it for hw and the dll's just disappeared
Anaconda can only use libraries built into the anaconda dist
ouch
Huh, I never had any kind of issues with anaconda like that
Hope it sorts itself out, might wanna do double backups
I'm probably going to uninstall it tbh
One thing I would recommend for homework is to push em to a private repo at github or gitlab
like I was only really using it for spyder and r but I've moved to pycharm
ya that's probably a good idea
You can use R standalone no issue
no need to use it through anaconda
Rstudio is a very nice IDE for R
yeah that coudl be the case
I know they recently release R 4.0 which broke support for a lot of older packages
they changed the standard behaviour of dataframes so strings as factors is false by default
this broke legacy support for ALOT of packages
yeah true that
yikes
Tbh Python with pandas beats R any day of the week
idk Ik it's powerful and all that but I'd rather use py for that sort of stuff
ya exactly
but some places use R for their data science so it is useful to know anyway
yeah
I had one job offer where they wanted both python pandas and R
I'm taking data 101 and 301 this year at ubc and that's what we're using
but I think after 301 most courses use py
py is a lot more powerful, especially considering stuff like sklearn, scipy, and such
numpy π
numpus
numpee
yeah numpy really is the single point of success for python in data science xD
blockchains can do anything
really??
oh wow
ya ill be taking a look at that too
no clue what im doing but it looks like fun
oml genepop hell ya
I recently learned about something called PCA. There is an excellent vid that explains PCA using genes in mice. https://www.youtube.com/watch?v=FgakZw6K1QQ
Principal Component Analysis, is one of the most useful data analysis and machine learning methods out there. It can be used to identify patterns in highly complex datasets and it can tell you what variables in your data are the most important. Lastly, it can tell you how accu...
Well worth a watch
It is a fantastic technique
thanks. since my major is microbiology
The technique is general so you can apply it on a lot of different things, but that video is geared towards biology and genetics
NOOO now that ive been doing different programming languages, i now do double quotes π©
double quotes are sort of more correct imo
Yep. I could use single quotes, then accidently use double quotes which doesn't looks right
coming back from cpp and java, single quotes feel wrong for strings I completely agree
I only use single quotes for chars now
also idk what tz you're in lord but it's a bit past 8:40 π
And I literally chose not to do it all day because I was lazy and it just happens to be before 8:40pm π
whats the link again? haha
I will DM you the results xD
actually hold on something's fricked
kk, let me know
if this is in my __init__, will it update properly?
self.armour_list = [self.Armour.helmet, self.Armour.chestplate, self.Armour.leggings,
self.Armour.boots, self.Armour.ring1, self.Armour.ring2]```
like if I add a ring and try to access it later, the ring only assigns to Armour.ring1 but it's not in the list
LOL, pointers.
I do not think this is the way to do what you want to do
i need my pointers :(
I think you would need to setup something a little bit fancier to make that work properly, but I am unsure.
it might make more sense to have armor slots that are either filled or not, then just check them when needed. I do not think a list makes sense here
it's just I need to iterate through them
actually that shouldn't be in the init I only need it a couple times
you would need to probably set up an @property on things like Armour.helmet for them to behave like pointers. Right now you are creating a new list with whatever the value was when the list was created, it should not updated if, say, Armour.helmet was changed.
you could set armor_list to a method that gets those items from self.Armour by the string representation of the attribute name
actually ya and return a list
something like (based purely on memory, so bear with me on this xD
Class WhatEver:
def __init__():
self.armor_slots = ["helmet", "chest", "legs", "ring1"]
self.armor = Armor()
@property
def armor_list(self):
return [getattr(self.armor, attribute) for attribute in self.armor_slots]
@versed saffron
would there be a point to setting it as @property.getter?
oh wait
no nvm I'm thinking about this wrong
that's weird
if I do:
def armour_list(self):
return [self.Armour.helmet, self.Armour.chestplate, self.Armour.leggings,
self.Armour.boots, self.Armour.ring1, self.Armour.ring2]```
it's fine
but if I do your method it says list object not callable
yeah, that probably makes sense, Im tired and did not test that. I can actually find something that works doe
I should probably look at more than a tutoiralpoint page too lol
oh wait
you call it as an attribute, so you do not actually call it.
you would use my_instance.armour_list
without the ()
the @property decorator allows the function to behave like an attribute/variable
@versed saffron
1. variable/attribute names should be lower class (looking at line 47 self.Armour should be self.armor)
2. not sure what class NoItem is for, this looks like it could be replaced with something more intuitive.
3. avoid non-descriptive variable names (var name "x" on line 137)
Very awesome. I really do not have too much to say now. Your code looks much cleaner and more organized. It looks like it may be TOO OOP (such as with class NoItem), but overall very good. Pretty readable, clean, and DRY.
One thing I would really like to see is docstrings. Even if a function is fairly self explanatory, a quick docstring could really help.
i.e add this to class Stats:
class Stats:
"""Character stats and skill levels."""
while this is fairly obvious from the name, this docstring could make it easier and faster to read. Same with class Levels (really every class and function, unless it is incredibly obvious what it does.
class NoItem would benefit heavily from a docstring as I am unsure what it is really for.
overall really nice, much better. This is pretty good code quality imo
thanks that's great to hear, I wanted something of quality in my repo before I looked at freelancing so It's nice to know I'm on the right track
I'm slowly starting to work on docstrings but I kinda want a functional game first lol
I'm pretty sure I need NoItem because I need to call .name on it and if it's None I'll get an attribute error
I guess the other option would be to stick it in a try but that seems more redundant than just having the class
- I might need it for my
selectfunction
is dry a good thing lol?
DRY = dont repeat yourself
makes sense
I think I'm just going to avoid using __call__ for a bit tho the NoItem didn't need it
oop more like spOOPy
if you get to open source or contributing: ALWAYS use docstrings always. I haaaate reviewing code without documentation, it ruins my day. LOL
probably lol
I've just had to change so much this past week it doesn't feel like it's worth the effort until I have something concrete
spooky
Same
ahh okay lol
Big and Little, idk
Its actually two ways to store data
I looked up eidian and got results for Indian food
one is from left to right, and the other way
hmm
way to store a byte
big endian is (in bit order)
87654321
while little endian is
43218765
ot0 is wack
When is it not?
Sometimes
it is not usually
If there's quite a few people on and there's no mods participating it usually gets out of hand rq
hmm true
ot are the best
let's forget about it now
so hex(50) is 0x32 0b0011_0010 big endian, while it's 0x23 0b0010_0011 little endian
just flips the "hex digit" but seeing as we store decimal numbers left to right by size, it doesnt make much sense to use little endian IMO
good to know regardless
youtube just recommended this to me
I might have read this before
but I forgot lol
This is one of our Dance Party Friday videos (from April 24, 2009).
Bloomingdale High School - Valrico, FL
** check out our other awesome videos at http://www.youtube.com/WBULTV **
artist: Daler Mehndi
song: Tunak Tunak Tun

Have anyone here bought products through affilate link?
Idk If I should build affialte website. Kinda hard to get visitors to buy products like that
it happens the other way usually
first you get audience
then you start affiliate
i need help deciding a license for my open source project
I need a license such that anyone forking it has it open source as well as any modifications to it are open source as well
MIT, I think
Pretty sure MIT still needs the license
yeah
It just allows for non-OSS use
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
yeah non oss is not what I want :(
GPL?
Permissions of this strong copyleft license are conditioned on making available complete source code of licensed works and modifications, which include larger works using a licensed work, under the same license. Copyright and license notices must be preserved. Contributors pro...
Yeah I'm reading it π
Thinking about it, I think I'll be moving most of my future software to BSD
I thought Pure was referring to BSD, the OS
BSD is a license also I think
yeah, that'd make more sense
(I think)
yep, it's a thing
BSD licenses are a family of permissive free software licenses, imposing minimal restrictions on the use and distribution of covered software. ... The original BSD license was used for its namesake, the Berkeley Software Distribution (BSD), a Unix-like operating system.
thanks for checking that π
Why does math and physics have so much help meanwhile programming feels like youβre on your own
Ironically, programming has the most accessible resources compared to math and physics
Yeah
With the latter being bound to textbooks
What do you mean by helps?
You have millions upon millions of programming resources
If CS didn't exist, I would've majored in mathematics then drop out
I had to chose between CE and Mechatronics when I applied for uni. I am glad I chose CE
lol mechatronics sound complex
Yeah man it is hella difficult. I wish I knew mechatronics now but m,an it would not have been fun to learn it at uni.
CS FTW!!!
Mechatronics, oh god
I was top of the class in high school. Now in college, not so much.
You should just relax in college
I am lol
Even though it's 5 classes. I have too much free time
I can work full-time and study no problem
Yeah, enjoy your time
Maybe because it was barely getting serious math, is why thereβs so much help for it.
Right now I have a lot of issues with implementing finite state machines with using Haskell
That's how you succeed
I easily understand programming concepts, but not math lmao. Why is that?
programming is more applied than math
Programming is ironically all about maths
Like I have hard times remembering the formula in math
You're only subjected to one side in programming
in math you kinda have to learn things for some abstract problem you might have to solve in the future. In programming it is almost always applied to a practical problem present right now
When you meet the mathematical side, you will have to improvise
And then you realise that the formulas you barely remember have different shapes and structures
And most of them are related to the other
That's why starting with the machine learning is almost always gonna help you learn mathematics more
For me I donβt see myself doing a variation of turning regular expressions into finite state machines anytime soon or after these classes.
It activates the logical and imaginary part of your brain to improvise a formula
Which surprisingly is the same formula in paper, just different
Sadly a lot of the math education is just teaching people to memorize instead of teaching how to produce a formula
My teachers did teach how to produce the formula with the proof
Yeah, practice is the most important of all
I just dont have the motivations to care
I had multiple cases sitting on an exam and not remembering the formula, but since I thoroughly reject the classical way of education I could produce a formula because I understood the concept.
Sadly a lot of the math education is just teaching people to memorize instead of teaching how to produce a formula
@floral viper It's kind of the same with "arts for the sake of arts"
lucky my class's online lmao
If you understood the concept, then you will have no trouble forgetting the formula
Because it was never memorized in the first place
Idk about reduction of orders, variation of parameters, etc. formulas for solving types of homoq equations
At least I remembered the chapter and topics
I can memorize easy, but I quickly forget them after a few of chapteres
That's why you need to understand more and practice more
But If I see the formulas
Actually, it's not the formulas
I just make too many mistakes. Like minor mistakes that mess up all my works lol
For me learning concepts is a lot easier than memorizing formulas. So I just tend to do that instead. Put some extra time on it and remember it better than I would have if I sat trying to remember a formula
Tbh I enjoy math, but I hate making mistakes
For instance in a mathematics test, I wrote my answer in a draft
And I copied it incorrectly in the final answer space
ugh I hate that
Agreed
Make us show all the work and make a stupid answer sheet
EVEN with the steps and labels to show what you did lOL
I mean basic geometry.
Yeah, but making us to add the labels and vocuabulary next to every step
Waste of time lmao
That, is stupid
Yeah, true
Too bad, high school picks the teacher for us. Using this stupid algorithm. We didn't get to pick the teacher
Ironcially I was top of that class. Teacher praised or smth
I agree with this
I achieved more in subjects I hated rather than the ones I loved more
Oh right. For the same class. We had to write notes on Tablet with stylus.
Ugh
Just normal notebooks would've been faster
Oh right. For the same class. We had to write notes on Tablet with stylus.
@frozen thorn maybe they will take a peek at your notes
note taking is a great skill though it is kinda boring sometimes
Not on Tablet LOL
most of the time
i can imagine it, i dont like the feel
it is like reading a novel in pdf and reading a novel in paperback
I think we were lab rats
paperback i like
good lord. i'm out of milk.
Maybe blockchains can help you
enough people have suckled at the cryptographic teat by now that it's probably just producing milk powder
!otn cryptographic-teat
cryptographic teat ledger
rather than the chain contain blocks
we will call them boobs
the boobchain
it's an udderly fantastic idea
I'm sure either the feminists or the animal rights activists will put a stop to it
i guess like most coin offerings milkcoin will go sour pretty quickly
teat ledgers, what the hell?
you're right, it's a bad idea. should nip it in the bud asap
oh god
my god... youve done it sir
bisk is on a pun spree lol
bisk, it's in the morning for god sakes
An udderly fantastic idea.
youve won pun of the day for me and the day just started
Bisk is on a roll lol
You're throwing puns at 4 AM FOR ME
i like the immediate horde that came here after that one
we were talking about mathematics
then bisk ran out of milk
What was he doing in milk?
probably the milk gave him pun ideas
look, i was just trying to keep you abreast of my milk situation
my god, he is not even slowing down
slow down with the milk
no. i will push all the puns pasteurise.
I mean, cmon, there cant be that many milk puns left.... right?
You guys are milking this dry
noice
I dont ask, I just appreciate what I have π
I think it's the breast idea ever.
look. i'm punstoppable. i'll been punning from curdle to grave.
It just keeps flowing, huh?
We'll all feel like boobs if we stop, now.
I am convinced bisk is only half human now
I think it's much more merciful that i get banned right now
he is next level
He is serving em up by the gallon
He's high on milk
you guys just pail in comparison
Moo, I'm trying
that pasteurize one was lowkey π₯
it's both pun and fun with language
I've never been much of a punster, but I do appreciate a good pun π
i'm proud of it
im genuinely impressed
Personally, I'm not a fan of forced puns, where the language gets mangled in order to make it work.
LOL
lol
Nah the best ones are the ones that flow like milk
I thought it was quite good
i can't help it if i'm the cream of the crop
I mean, I get that they're the in thing at the moment.
I wish I had this sort of punnage in me
ok, wtf, you seem like you are not even close to out of puns, how is this possible
please dont stop
when it comes to puns i'm just legendairy
wow
How
I am amazed as well, the sheer amount of milk puns coming out of that man is nothing short of extraodrinary
!ot a pun-time-with-bisk
he's condensing the heat with puns
oh my god. I think we are witnessing bisk ascending. How the hell is this even possible
He is going to india
hasn't he ascended already?
lol it's hard
I am physically incapable of this sort of thing
Bisk might be turning into a cow soon
when i was your ages it never a curd to me that my future would be in puns
π
bisk is secretly worshipping cows for puns in exchange
ok, this is all starting to get a little cheesy now
Nice
Milk
it soured a bit now yeah
ok, this is all starting to get a little cheesy now
@eternal wing all we need is a little lemon now
I did one, I can die happy
I should not even brie up this late
time for you to expire
guys, holy shit cow it is contagious
I'm already expired
wtf
xD
it's a good thing he's not awake to see this punnage, he'd be crushed.
it's butter this way.
I feel like I am spamming reactions, but I am legitimately impressed every time
this is like an anime battle where it is just so obviously one sided
I would ping hemlock so he could see, but im not a muenster
Same
Its the one where the protagonist levels up but then he keeps on going
Save message ID for when he's on
but mine was already a pun.....
OH LOL
Hemlock is getting cheddered atm
watch bisk milk another
i bet he thinks he could stand up against me in this pun battle
but it's hard to stand up when you lactose
lmao
lol
LOL
wtff
dude
Haaha
I'm not sleeping till he runs out of milk puns
^^^^^
life time of puns
bisk has a pun book
How does he do it
he's definitely sitting next to a cow rn
i'm fairly certain he has a pun book
Do you have to be very creative or what
life time of puns
@gentle moss I think you might be a literal genius
milking it
flipping pages while drinking milk
only in puns.
Bullishness.
i'm fairly certain he has a pun book
Itβs a pun encyclopedia at this point
grabbed that one by the horns
Even if you have the book. It's hard to use it like that
Oh all this talk about milk, I need to get me some biskets now
bisk is in a good moo today
I would be more impressed if he spent his time writing milk puns in a book just to prepare for this exact scenario
better be careful though opal. if you heifer pull that shit again there'll be hell to pay.
someone PIN THOSE
too much to pin

bisk has most of the pins
I'm expiring tomorrow
i just wanted milk for my tea and didn't have any. it's not like i'll drink milk like a cattle.
your fertility will expire tomorrow?
Tea good
you drink tea like a cattle though
cats drink tea?
Someone get me my kettle, I need to prepare some tea
I'm expiring tomorrow
Youβre still in the Best Before date
because i have no beef
bisk is just watching us as we try our hardest
i sense that this guys will become wuvvers
time to consume u
Whey
you can hear him saying "Pathetic"
i'm actually just getting ready to go out and watch water flow backwards up a river
your puns are of no consequence
how long can we milk this puns?
well, enough milking
I think the era of milk puns is over.... it is complete
Has the well dried up?
it all turned to cheese :((
anyway, what does that even mean? River? was that a pun?
no
I guess we could say, he ran out of milk
he brainwashed you lol
no. i'm actually going out to watch water flow backwards up a river
LOL
I would like more context
tidal bores are cool.
and perhaps an explanation haha
So he went for nature stroll
ohhh, that sounds nice actually
semi-rare occurrence in the river near me
right time of year the moon pulls the water back up the river
or some shit
that is really cool
ohhh, I have seen videos of that
lol i think that's basic
that is insane. I only learned about that last month. It looks insane
the moon tries to steal the water of the earth not knowing it helped brought the right conditions for life. we should thank the try hard robber
huh
yeah, i'm not sure how many large tidal bores there are
but the one i'm going to see is a pretty big river
git outta here wit dat hippie nonsense. LOL jkjk
neat, that is actually really cool haha
Hundreds turn out to see and surf
SUBSCRIBE to our YouTube channel for more videos: http://www.youtube.com/skynews
Follow us on Twitter: https://twitter.com/skynews and https://twitter.com/skynewsbreak
Like us on Facebook: https://www.facebook.com/skynews
Follow us on I...
one guy surfed down the entire length of the bore
oh, i know what that is
looks very coool
imagine waiting awhile for this to happen, then falling off your board immediately
hah
TIME to sleep lol. Bye, mooo
peace o/
i'll get some pictures while i'm out, don't suspect it'll be a big bore though
sounds nice
tsunami sized bore
I am flying tomorrow.... I should sleep too π€
you should :3
π©οΈ π΄ π₯
sleep is for the strong
sleep is for the WEAK
Β―_(γ)_/Β―
sleep is for mortals
I'll sleep when I'm dead and I'm dead when i've slept
an elephants faithful, 100%
you need some sleep
I would rather go to sleep
water go backwards
it do
Oh is that that thing
Where the water goes backwards
On like one day every year or something
it does it more often than that
but yeah, it's a tidal bore
this is the 2nd largest in the world
not a very big one and the wave didn't break
poor surfers got cold and wet for nothing
anyone know why I cant save text at 2pt?
Water go backward 
finally, milk for my tea.
sadly it's tetley tea because the shop had nothing else
trash tier tea
I read teatly tea first and thought you were still punning
sadly it's tetley tea because the shop had nothing else
I'm sorry that you have to go through this
me too
but it was either tetley or the Nisa brand ones
and they're an unknown
rather the devil i know
ive been drinking so much milk recently
i never have milk with cereal or in drinks or as a drink on its own
but
recently ive had a good few bowls of cornflakes with milk per day
its like drinkable cheese
i go through phases with milk
sometimes i'll drink pints a day
other times i just use it for my tea
hmm, i love milk and i mostly drink it as it is
@edgy crest have you tried oat milk?
whats oat milk
Ah yes milks that are not milk
whats kheer
actually I just done it like you would make nut milks
soak the rice in boiling water for a few hours, then blend it well, and strain
huh, you mean boiled rice
no you don't boil the rice
just soak the rice in boiling water
well it tastes like rice
but milky
now that I think about it, I wonder if other grains can be made into milk
like corn
I actually think oat milk tastes better than cowβs milk
And it canβt be called βnot a real milkβ. Drinks like almond milk have been around for many thousand years and isnβt anything new
still talking about milk, you guys?
Actually, what do we define as milk?
I'd go with "A nutritional liquid produced by female mammals to feed their offspring"
Hmmm
i would go with the same
yeah, just with a glass
I can drink cow milk though even though I am not a cow
And therefore not an offspring
i am not saying anything me being their offspring
also, genghis gurkhan, sounds like someone from history, just the name's modified a little

It's intended to be consumed by the offspring, the fact that humans started drinking cow/goat/etc milk as well is just us being weird
their offspring
I...think that is too vague
Cowβs milk is intended for their children. We just take it, drink it and feed the tiny tiny cows what we find for cheap
Can't put it into words right now
i kinda wonder who came up with the idea to suckle some other animal's milk
Lemme think how
Itβs disgusting, really
also, genghis gurkhan, sounds like someone from history, just the name's modified a little
@edgy crest It is a take on Genghis Khan, yeah
That still happens. When the cows are too old to produce enough milk, theyβre killed. The male cows (bulls?) are also killed soon after birth, since they canβt produce milk and therefor arenβt really profitable
then you thought?
I guess the definition has broadened to include liquids with milk-like taste and properties, like almond milk and oat milk
i dont wanna argue with vester with this subject
Or coconut milk, for that matter
Hahah I donβt feel like discussing this atm either, but why not?
well we can share ideas while not triggering each other xD
I'd still say that actual milk is produced by mammals and the rest is more of a "milk-like product that we call milk because why not"
well milk is a word that we made up so that we can associate it with an object just like numbers and symbols do. so i can say that there is nothing wrong calling almond milk "milk"
"Good for cows, good for humans. Milk. Buy now."

Well, not that simple
Yeah, I wanted to make it sound like a short ad
Definitions are weird because they almost always come after the word
Sources:
https://sites.google.com/view/sourcesmilk/
Over the last decade milk has become a bit controversial. Some people say itβs a necessary and nutritious food, vital for healthy bones, but others say it can cause cancer and lead to an early death.
So who is right? And wh...
milk
- I havenβt fact checked the video or watched it in ages, but kurtzgesagt videos are generally good
Yeah
oooooooohh kurzegast
kurtzgesagt is the best
i watched taht i think
I love their videos
Neologisms are a bit of a different story, but in general words came first as a means to describe some idea that might or might not be extremely broad/vague, and then we came up with not-exactly-accurate definitions in an attempt to systematize and scientifically describe the words
So basically we're crazy good at inventing problems
out of thin air
yeah, kurzugesagt really good
lol milk contributes more greenhouse gases now thats new info
π
i mean it makes sense though
the videos are rly good and the animation and voice is epic
i think it is not new
careful, there's a difference between a theory and a conspiracy theory
one has been proved and one has been not
Metal straws for example, i thought they will help the environment but, i think it has the same effect as well.
"theory" can refer to proved/not proved things
Theory is a statement supported by unequivocal proof
And can also mean "hypothesis"
a conspiracy is a statement with enough proof to make it reasonably believable
but doesn't mean it's correct
I disagree with the enough proof part
a conspiracy is a statement with enough proof to make it reasonably believable
@rich rover oooooh interesting me will read the entire discussion
A hypothesis is a statement that is not proved, because it doesn't have sufficient evidence
There are conspiracy theories called Covspiracies
doesn't mean they are correct
Yeah
it takes alot of courage and lots of meetings between scientists of all fields to declare your theory correct
I think in science, "scientific theories" are proven
well no
it may not be proven
a lot of popular ones are insofar as you use them
Oh, I mean theory β scientific theory
one is more reasonable to the other
for example, there used to be the plum pudding molecule of how an atom works
which was fine
Kinda confusing though
they will pick the more reasonable
and worked perfectly well for most science
but then it was found to be inaccurate, so a new model is devised
both are theories
A theory in science is also called "scientific theory"
the new one is more correct but you don't assume it's entirely accurate
I understand that
the new one is more correct but you don't assume it's entirely accurate
Yeah
It's falsificationism, I think
you can evaluate it
experimentally
but you can never be certain that it's 'correct'
and the experiment should be reproducible
after all, most theories are models for how things work
right?
it takes lots of years to prove something right
you need the general opinion of people WITHIN the same standard of that field
more popular way of seeing it is you can't disprove by providing examples 
[Karl Popper] argued for falsifiability and opposed this to the intuitively similar concept of verifiability. Whereas verifying the claim "All swans are white" would require assessment of all swans, which is not possible, the single observation of a black swan is sufficient to falsify it.
I think this applies to scientific theories
they made a hypothesis that all swans are white
if it took long enough without witnessing a different coloured swan, it would be a proved theory
but if they noticed JUST ONE
then it is disproven?
it has sufficient evidence to prove the hypothesis wrong
and then they build on it that " Most swans are white, but some also appear to be black"
until they notice more black swans
then they prove it wrong and the cycle goes on and on
You're sharing your thoughts about a field to the world
it has to be accurate as much as possible
You don't want to build foundations on a false belief
that would cause a lot of problems
exactly, and take Anti-vax as an example
mhm
people think that vaccines actually harm them
Hello world
but because some people theorised the flu shots can make you sick, they made it a "theory"
no one really got a chance to prove it
so more people believed it
and now we have morons that don't take vaccines
but they still persist on believing it right even though they dont have proof that it is harmful?
they do sometimes
and i thought the flat earthers are gone but holy cow, theyre here again :3
and then they come to the question " why can't i find enough evidence to support my hypothesis"
YES
i have an example to that
one flat earther wanted to test a hypothesis
by shining light horizontally at a 1 km distance
i mean, the ancient greeks already proved it by themselves with careful "experiments" but idk how modern humans messed up to think that earth is flat....
mhm
he believes that the light will not bend which is a correct theory
it goes with the curvature of space time right 
he placed a sensor at the end of the kilometre hoping the light will end exactly where it started on the other flashing platform
it curves because the earth isn't flat
I still only half-understand the general theory of relativity

it relates human existence with space and time
i was amazed too that gravity is not a force
gravity is a field
gravity is a field
nice
i watched a video from Veritasium and i now know gravity aint a force but a field of some sort
The only thing that I do know about it is that massive objects distort spacetime, which other objects move along in as well
More distortion is essentially time travel
That's about it
there's a simple definition on earth
if you were to throw an object with speed
it starts to resist
throw with more speed
it resists even more
throw it at the speed of light and it will have enough energy to disintegrate
Slap a million times and you will cook it
lol
Slap a million times and you will cook it
@rough sapphire but that slap needs to be fast right?
for many reasons, you have to speed up even more every slap
So how much sl/s (slaps per seconds) would it need to cook it
MUTUAL ASSURED DESTRUCTION
lets assume the hand wont die from it
assuming you move your hand about 1 meter in about 0.3 seconds during a typical slap
how much energy does it have though hmmm per slap
that gives you a final speed of 1/0.3 meters per second at the end of the slap
inhumanly possible
can it be not exactly a slap?
your nerves have a limit
too much and your arm will fly from the power
literally
that's why we slow down the reflex
that gives the kinetic energy of 0.5 * m * v^2, assuming a human hand weighs about 0.75kg, you get 0.5 * 0.75 * (1/0.3)^2 ~= 4.166 J per slap
yeah not considering heat losses
depends on the thing
mhm
and here, the losses as heat don't matter :)
ok here
Marinated chicken breast in a spiced cream, tomato and cashew nut paste sauce.
we want to warm up this tikka masala from tesco
lol
0.46kg of tikka masala
now what's the specific heat capacity of chicken tikka masala

so c = 1770 J per KG per degree celcius
I am just imagining a man with an uncooked tikka masala furiously slapping it with inhuman speed
I am crying
so E = m.c.T, = 0.46 * 1770 * 25 = 20355J of heat to warm it up
if we're in space
and the chicken tikka masala is non-radiating of heat
i.e. perfectly shiny
i can sense his face laughing why he needs to cook the chicken through slapping
we need 20355J total, /4.166 J per slap = 4885 slaps
so if you want to heat up some perfectly shiny chicken tikka masala from 5 degrees celcius to 30 degrees celcius and you're in space
And the sound is just gmod objects bouncing at each other in high speeds
davie504 = OMG
And the sound is just gmod objects bouncing at each other in high speeds
@cosmic lotus yess
lol
5 slaps
@high verge ya davie relate
Weren't you supposed to finish an assignment?
What would the tikka masala taste like, cooked using the hand god's slapping
bruh
using god's hand?
What would the tikka masala taste like, cooked using the hand god's slapping
@cosmic lotus too much human skin cells that wont taste different i guess
I wonder
yeah, probably
How much power would it take to cook it using just one slap
assuming the tikka masala is indestructible
you have too many assumptions
it was calculated before iirc
mhm
It's needed so the tikka masala doesn't disintegrate into a powdered mess
assuming the tikka masala is indestructible
@cosmic lotus so i cant eat it then
thats sad
well we could use the Unindestructibleinator 3001β’
good aftanoon guys
Hello
So many Discord server are just incredibly toxic. I'm so happy that we have such a great community here
is that sarcasm? I can't tell the difference lol
No. That's serious
finally woke up at 7am. Feel goods man
omg so powerful
hahah nice
I cant even wake up at 9am properly
So many Discord server are just incredibly toxic. I'm so happy that we have such a great community here
@narrow pecan Ye, One server has a rule for not pinging the admins
like what??
Yeah
is that sarcasm? I can't tell the difference lol
must be
yes
lmaooo
Looks good, gonna try it out
the gh cli and git are not the same
gh cli is just a cli for github things.
git and github are different
remember that
git is just a versioning system
oh wait is that right?
Yeah
Simply put, Git is a version control system that lets you manage and keep track of your source code history. GitHub is a cloud-based hosting service that lets you manage Git repositories.
@bronze root https://learngitbranching.js.org/ learn git here
thank you !
must be
@plucky grotto it is definitely not sarcasm
oh boy, here I go replying to old messages again
The older "github cli", hub, was a wrapper around git
So you could alias it to git and use both normal git things and github-specific things
(i recall there also being an unofficial gitlab cli that wrapped around git or hub, so you'd have a wrapper around a wrapper. fun)
nice to be back
@elfin sandal you should be not talking here if youre drunk xD
eyyyy

what's up with you how's your day
Hey @fresh kayak!
It looks like you tried to attach file type(s) that we do not allow (.pdf). We currently allow the following file types: .3gp, .3g2, .avi, .bmp, .gif, .h264, .jpg, .jpeg, .mkv, .mov, .mp4, .mpeg, .mpg, .png, .tiff, .wmv, .svg, .psd, .ai, .aep, .xcf, .mp3, .wav, .ogg, .webm, .webp, .flac, .afdesign, .m4a, .csv.
Feel free to ask in #community-meta if you think this is a mistake.
bruuuuuh
eyy i'm great
this is my study plan
youre with your friends now right?
just trying to fill in those 50 messages required to participate in voice chat
fuck it's broken
mohamed u in university?
i mean i guess you are right?
i was in uni a while ago too
just trying to fill in those 50 messages required to participate in voice chat
@elfin sandal wait why?
was so-so
youre new here?
idk it's the admin rules though
nah i've been online for a few months but haven't really talked in chat
no, gcse student
i see
try not to spam macro
or you will get a text ban too π
uk's version of sat
uk, noice
lmao im jk (kinda)
no, gcse student
@fresh kayak so youre age is around 14-16?
most people around here are below 20yo
from what i can tell
what i've met
idk about you guys tho lol



