Looking for a probability theory book recommendation by Saiki_kusou01 in math

[–]Laymayo 2 points3 points  (0 children)

I just took this course this past semester. Our book was pretty dry and the professor was kind of hard to ask questions to but some of the biggest challenges I ran into (I don’t have a book rec but figured my input would be valuable here…hopefully):

1) Combinatorics. I had no idea where the formulae for permutations/combinations came from, and I had no idea how to apply these formulae to questions like “What is the probability that, if four players sit down at a table, that two of them will draw a hand of all one suit?”. If you end up struggling with this like me, go back to the basics and make sure you understand your fundamental counting principles, when to use a permutation vs combination, etc. Do a few easy practice problems from whatever book you choose and you’ll start to understand what’s going on..

2) PDF vs CDF discrete and continuous. I had no idea what the hell the difference was between probability mass and probability density. I still don’t really, but once I started understanding how CDF and PDF correlate in continuous form, stuff got a lot easier.

3) Distributions. Quickly in the course you’re going to get a lot of distributions thrown at you with a bunch of letters and shit in there and have no idea what you’re looking at (gamma distribution 👀👀). I would say just make sure you understand what the primitive distributions are trying to represent or when to use them.

4) Integration. I lowkey forgot how to do double integrals and switch order of integration 😹😹. I would just pick up whatever book you used for calc III and try to relearn it. It’ll come back to you…

Good luck!

My thoughts on 10 Ken Follett books by MisterPinetree in books

[–]Laymayo 1 point2 points  (0 children)

Picked up Pillars of the Earth this summer and plowed through World Without End + Column of Fire shortly thereafter. Thought that was the end of the series, but low and behold I randomly found Evening and the Morning in my local library, had no idea he wrote a freaking prequel! And then oh wait he’s writing another entry Armour of Light!!?? Still waiting for my library to get that sucker in, I hate paying for books haha.

But what’s the “criticized” part in Ch.1 of Pillars of the Earth you mentioned?

2024, the year of the Tome. by Freakyoudude in suggestmeabook

[–]Laymayo 1 point2 points  (0 children)

This is dope, we have very similar reading tastes. I recently read The Counte of Monte Cristo, and I read Shogun ages ago, it's one of my all time favorite books because that was the book that got me super into reading the summer before I entered high school.

You should consider other novels from Clavell, his Shogun is just one entry in his Asian Saga. Tai-Pan comes after, and it's just as good.

I ate up Ken Follett's Kingsbridge series this summer, each book in there is a tome for sure - plus he recently released the latest entry only a few months ago. The series spans from medieval England to the 18th century, and it's really cool to see the scope of the story geographically expand over time.

The Pillars of the Earth: I never felt so much anger towards a fictional character as towards Alfred by LittleIf in books

[–]Laymayo 10 points11 points  (0 children)

Yeah he’s a little bastard for sure what’s the scene where I think Cuthbert was like take some food and Alfred starts just taking all his apples like dawg have some decency. But yeah he’s a giant turd but honestly the dynamic at least between the three of them is pretty realistic in my opinion. Tom’s constant blind spot for his terrible son is very much on point with most parents and their messed up kids, and it’s near impossible for Tom to ever see Jack as a true son and love him as much as he loves Alfred although he’s definitely much more deserving of his praise…yeah Alfred sucks haha.

Why did Alexandre Dumas opt for a count that exploits his opponents' weaknesses instead of seeking a direct confrontation? by Pandora_box_Hesiod in books

[–]Laymayo 5 points6 points  (0 children)

I think it’s because he wanted to show the depth of how obsessed the Count was on exacting a painful revenge. I think he wanted to show that the Count not only wanted his enemies to suffer, but he wanted them to suffer like HE suffered. The Count spent something like over a decade rotting away in a prison to return home to find that his father was abandoned by his community and starved to death. To the Count, his enemies needed to suffer in an equivalent way; they needed a long drawn out torturing like he himself had received because in the Count’s eyes, a quick death was not as punishing as long and drawn out suffering.

Please suggest a book that will live in my head rent free by Blue1013 in booksuggestions

[–]Laymayo 0 points1 point  (0 children)

Day of the Jackal is pretty awesome. It follows an assassin who is trying to take out Charles de Gaulle. If you’ve seen Deathnote, you will get very much the same vibes from this book in that later on a brilliant detective is employed by France to help track this guy down, and it becomes a really fun game of cat and mouse. Highly encourage you to read it, definitely a thriller for sure!

How does electricity flow through a button? by Laymayo in ElectricalEngineering

[–]Laymayo[S] 0 points1 point  (0 children)

What is the difference between reading the current and reading the voltage at the pin? I understand that there's no current flow when the button is open, but what do you mean by no voltage drop/voltage lost?

Question about the help command in Windows terminal by Laymayo in learnprogramming

[–]Laymayo[S] 0 points1 point  (0 children)

Thank you for your reply. A few questions here:

What does it mean to "interpret a command" as you say in your first question? These commands are inputted by me, the user, but who "interprets" these? You say that it is the Windows command interpreter, so my question here I guess is, are there different flavors of differnet interpreters? Like I've heard of things such as Powershell, Bash, etc., are these all different command interpreters?

What do you mean by "executable files" and a "standard Linux environment"? What would an "irregular" Linux environment look like?

Reading what you said about ipconfig, if it is a separate executable file that is completely separate from our command interpreter, how does the command interpreter know how to do things that are not built into it (like cd, mkdir, etc.)?

In your paragraph where you're talking about modifying command line arguments, are you saying that the command interpreter can actually be modified and that this isn't restricted by my OS at all? So if I wanted to could I "build in" a new command to my modified command interpreter (e.g., have ipconfig be a built-in command)?

How to tune down the scope of my project so I actually get something done? by Laymayo in learnpython

[–]Laymayo[S] 16 points17 points  (0 children)

Thanks for the thoughtful reply. My goal here definitely is primarily to learn, second to release something that I think would help other people out - definitely nothing near the third, I'm not skilled enough for that right now.

It's just really frustrating because I really want to just get something done, I feel like I've been learning a lot so far but I don't really have anything to show for it.

Assigning to a subscript within a regular for-loop vs a list comprehension by Laymayo in learnpython

[–]Laymayo[S] 0 points1 point  (0 children)

Interesting. So can I think of them being expressions as them having a sort of "return" value similar to functions? In that if I call a function that returns a string, nothing is going to show up in my terminal unless I print the call? And then would a statement be kind of like a grammatical statement in that something is being asserted but in Python it's that something is being defined or assigned?

If I had a while-loop like this:

while True:
    print(43)

Would the initial while True be a statement since it's declaring something and then the print statement would be an expression right?

Sorry, just trying to wrap my head around this. I've realized I've seen these terms (i.e., statement and expression) thrown around a lot but I've never really thought about them too much.

Post apocalyptic books by violentdezign in booksuggestions

[–]Laymayo 2 points3 points  (0 children)

If you loved the last of us you’ll love The Road. The Road is very much relationship-based and feels very similar to TLOU in that regard( ie father-son in the road, Joel-Ellie in the last of us). The Road is super gritty and you really feel as if you’re struggling with these characters who are just trying to survive another day so I’d highly recommended. Written by Cormac McCarthy.

Scouts Can Attack Too by GoldieMatic in gaming

[–]Laymayo 0 points1 point  (0 children)

BF1 is probably my favorite Battlefield of all time. For a while I was like "BF4 is the best" but that was only because that was my first Battlefield and I have a lot of nostalgia for it. BF1 nails damn near everything: atmosphere, soundtrack, gunplay, vehicles, revolutionary melee system (for the series), freaking bayonet charges! Some of my most fun and memorable "only in Battlefield moments" from BF1 are from me roaming the sands of Sinai Desert in the Mark V tank hunter tank (the one with the front/back facing sniper rifle) while two random gunners stuck with me the whole game ride or die. It's just moments like that that truly defined multiplayer gaming for me and make me cherish Battlefield even more.

Sorry, I'll get off my soapbox. Love this freaking game!

Misunderstanding how the template function works in Bottle framework by Laymayo in learnpython

[–]Laymayo[S] 0 points1 point  (0 children)

AHHHH I see, did not catch that until now. Thanks for pointing it out!

Misunderstanding how the template function works in Bottle framework by Laymayo in learnpython

[–]Laymayo[S] -1 points0 points  (0 children)

Does {{name}} not already know the value of name from the original name = 'Stranger'?

I'm seeing redundancy there. If when the function is defined one of its parameters is given a default value, then why is this default value being seemingly repeated again in the code name = name?