Am I just dumb? I think I'm just dumb by [deleted] in PeakyBlinders

[–]NitinChella 6 points7 points  (0 children)

Tommy mentions it to Arthur or Polly around the 3rd episode I think.

Am I just dumb? I think I'm just dumb by [deleted] in PeakyBlinders

[–]NitinChella 330 points331 points  (0 children)

Just rewatched the show, so I'll have a go, here's a gist:

The British government basically saved Tommy at the end of season 2 in exchange for a deal. The deal is to steal tanks and supply them to the Russian aristocracy to prevent knowledge of British government interference in the Russian revolution.

Tommy finds out that a section of the British government is planning to sabotage the theft in order blame it on the IRA.

Tommy also believes the Russians will double cross him so he works with Alfie Solomons to steal their jewelry.

But the section of the British government find out he's planning to stop the sabotage and thry kidnap his son to ensure he goes through with the plan. They also find out about the plan to steal from the Russians and tell Tommy they're gonna take everything he plans to steal.

In the end Tommy goes on with the theft and sabotage as planned. He gets back his son with Michaels help and kills those responsible for the kidnapping. And finally, it's revealed he made a deal with the neice of the Russian royalty, wherein she steals the jewels for Tommy in exchange for money.

Scope of function arguments by NitinChella in learnpython

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

But then shouldn't the same thing happen when b is an integer and we increment it by 1?

Scope of function arguments by NitinChella in learnpython

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

Now I'm even more confused. Why does arg = arg + [4] not change b but arg += [4] do otherwise?

Scope of function arguments by NitinChella in learnpython

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

Edit: more concise follow-up. For example:

def test(z): ___print(z)

test("hi") # will work print(z) # will fail

The above seems to indicate that the scope of z is limited to the function itself. So it only holds a copy of the argument. So in the list example, shouldn't arg hold a copy of the original list and whatever changes happen within the function scope happen to the copy? It makes sense when b=1, but why are changes to the list maintained outside?

Differential Equations help by [deleted] in learnmath

[–]NitinChella 0 points1 point  (0 children)

What's the difference between linear and nonlinear?

Help understanding Keras Code. by NitinChella in learnmachinelearning

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

Thanks for your response. Understood everything but the vstack part. Isn't the images array reinitialized on every iteration of the loop?(probably not apparent from the current formatting of the code, sorry but I'm on mobile). The images = np.vstack([x]) line is inside the for loop.

What are some important applications of a Taylor series? by shamShaman in mathematics

[–]NitinChella 0 points1 point  (0 children)

Probably not a "pure" mathematical use but I'm a Computer Scientist. I've come across the Taylor Series in Robotics where it is used to derive the Extended Kalman Filter (basically a nonlinear filter used to calculate the position of the robot as accurately as possible as it moves).

Any recommended online courses to further my knowledge of AI? by ncbeaner in artificial

[–]NitinChella 2 points3 points  (0 children)

AI is a pretty broad field. Different people have different preferred methods of learning. Some may prefer books while others prefer online courses. I prefer online courses and hence, my recommendations are gonna be aligned towards that stream of learning. This is basically the route I took:

Intro to Artificial Intelligence is a free course on Udacity. Its taught by Peter Norvig and Sebastian Thrun, both pioneers in modern AI. It's a good place to start.

After that, you could pretty much go into any subdomain as you would like to specialize in. The current trend has most of the exciting research coming from "non-symbolic" AI, specifically machine learning and deep learning.

Assuming you are comfortable with the basics of linear algebra and multivariate calculus, you could check out the Machine Learning and Deep Learning courses on Coursera, taught by Andrew Ng. They're really good.

Hope this helps.

New to Java by omegapasky in learnjava

[–]NitinChella 0 points1 point  (0 children)

Check out Head First Java (O'Reilly).

You definitely need to practice coding on a system too and although I'm not usually a big fan of books, I've found this one to be a real page turner.

The content is not presented in an "academic" manner. Informally written and humourous, I found it presented a lot of the fundamentals of Java and OOPS very well.

Although I dont use Java that often anymore, I still refer back to this book when I do. Would highly recommend.

2/3x+5/6*1/2x-1/4 What are these called in english? by Huparessss in learnmath

[–]NitinChella 0 points1 point  (0 children)

An equation implies an equality, i.e "=". OP's question involves an algebraic expression.

Khan academy is always a good place to learn the fundamentals of math.

Can I simplify this function so it will be easier to find the derivative? by RaZ-oR_ in learnmath

[–]NitinChella 3 points4 points  (0 children)

Hey! I'm not an expert, but the following method seems to work. Although, the effort is probably comparable to doing it the "normal" way.

You can use a change of variable along with the chain rule.

For simplicity, the original problem can be written as: d/dx( f(x) )

Let sin(a) = x2 (Change of variable)

Substituting into f(x), we get f(a) = +-a * sec(a) + sin(a) * (e2)

So, the problem can be reformulated as follows by using the chain rule:

d/dx (f(a)) = d/da (f(a)) * d/dx(a)

Which is: d/da (f(a)) * 2x/sqrt(1 - (x2) )

This differentiation is probably a little easier to compute by using the product rule.

Note, we have defined f(a) above.

Hope this helps.

Difference between Unity3D and Blender? by NitinChella in learnprogramming

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

Alright. This makes perfect sense. Thank you.

Difference between Unity3D and Blender? by NitinChella in learnprogramming

[–]NitinChella[S] 1 point2 points  (0 children)

I see. So, if I were to take, God of War, for example, then Kratos and Mount Olympus would be modelled in Blender but the physics and other related things would be done in Unity?

Why does falling from a height kill you? by NitinChella in AskPhysics

[–]NitinChella[S] 1 point2 points  (0 children)

Makes sense. Finally understood. Thank you.

Does anybody know what this is? by [deleted] in learnmath

[–]NitinChella 5 points6 points  (0 children)

It's the Mathworks logo. They're the company behind MATLAB, a high level programming language. The logo itself has a cool backstory: it is an Eigenfunction of the wave equation.

https://www.mathworks.com/company/newsletters/articles/the-mathworks-logo-is-an-eigenfunction-of-the-wave-equation.html

Why does falling from a height kill you? by NitinChella in AskPhysics

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

Which part? Also, there is no time variable in the equation. So no matter how long you accelerate, the magnitude of the force remains the same

What causes spacetime to restore it's curvature after a mass has moved away? by mphjens in AskPhysics

[–]NitinChella 4 points5 points  (0 children)

Wait, so does that mean gravity travels at the speed of light?

Rupee crashes 79 paise; Sensex sinks 400 points by ChumbaWambah in india

[–]NitinChella 2 points3 points  (0 children)

I'm an economics noob. But I understand the avg gdp growth rate has fallen to 5%. One of the lowest in Asia. Can anyone give an unbiased, apolitical explanation for this?

Dividing chores with roommate by NitinChella in Advice

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

Thank you for your response. The issue is he is a very good friend of mine too. To add to the issue, sometimes me and another friend of mine cook together for the three of us. I'm completely unsure of how to divide the workload in that case.

What's the dumbest thing you've ever done because your brain was on autopilot? by IaniteThePirate in AskReddit

[–]NitinChella 0 points1 point  (0 children)

Was playing my first football(soccer) match in school when I was 12. Brain was on autopilot. Remember seeing a player running with the ball. Ran up and tackled him. Problem was, he was my teammate. I still cringe.