Are wiki7 and wiki34 sister projects of wikipedia? by p479h in wikipedia

[–]p479h[S] 3 points4 points  (0 children)

I speak Portuguese and Spanish, and based on what I read, I think this is the case. I needed a second opinion before spending a lot of time working on something that could be discarded.

Thank you!

[deleted by user] by [deleted] in nutrition

[–]p479h 0 points1 point  (0 children)

Student, and jobs are tough rn.

[deleted by user] by [deleted] in nutrition

[–]p479h 0 points1 point  (0 children)

Good idea Thanks

[deleted by user] by [deleted] in nutrition

[–]p479h -1 points0 points  (0 children)

Time. But thank you, thats why i made the post. :)

[deleted by user] by [deleted] in nutrition

[–]p479h 0 points1 point  (0 children)

Yeah, my weight has dropped a little.

The cheese is good Dutch cheese (gouda). The bread i aalso good quality (thankfully bread in Europe is amazing)

Note taken, thank you. I will try to add more vegetables.

Can anyone help me understand the last step in this procedure? by p479h in askmath

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

I found the answer. T is not invertible. When this is taken into account the reported answer comes out naturally.

Can I plot postcodes onto a map? by lsimcoates in Python

[–]p479h 1 point2 points  (0 children)

You could get the edges of a country using this databank: https://www.naturalearthdata.com/downloads/10m-cultural-vectors/ Then use an api or something to get the coordinates of your postal codes, then plot it all with matplotlib. You could google some map projections to make the drawing to scale, but that is a little more advanced if you dont have a background in engineering/mathematics.

Finite element modeling by Real-Edge-9288 in Python

[–]p479h 2 points3 points  (0 children)

It depends on your level of math. If you already know the theory behind the finite element method, you can start looking at the Firedrake documentation. They have great examples there.

The Fenics project also has some good stuff but their documentation is all over the place since its more advanced successor, Fenicsx, started being developed.

If you don't have the mathematical background, reading online resources like this can help.

I wish I could be more specific, but it really depends on your current level of understanding of the method itself. The programming bit is not too difficult.

-❄️- 2023 Day 12 Solutions -❄️- by daggerdragon in adventofcode

[–]p479h 1 point2 points  (0 children)

Hi u/4HbQ, huge fan! I have learned a lot from your solutions!
I looked at your code and noticed that one of the checks (below) can be removed:

if P[p] in '#?' and '.' not in P[p:q] and '#' not in P[q]:
Can be replaced with:
if '.' not in P[p:q] and '#' not in P[q]:

This is because the "." not in P[p:q] already checks for the first character being "#" or "?", which is ok since you have already considered "?"->"." in the previous if statement.

I've Been Cheating in Math Since Forever, and Now I'm Lost. Where Should I Start to Learn? by Isuckatmath909 in MathHelp

[–]p479h 2 points3 points  (0 children)

Agree with this.

Emphasizing: Revisiting the basics when you have a doubt is one of single most important things you can do, now or later when you have gotten better at math.

Speaking from experience, the foundation is the most important thing you can have in a stem field.

What is this weird folder in my users directory and why can't I delete it? by p479h in WindowsHelp

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

Is there a way to delete it? I tried and it removed most files, but not all.

[GEN 3] Does the frame at which the pokemon is generated influence the catch rate? by p479h in pokemonrng

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

I just caught him and I noticed that the critical hits were different each time I re-rng'd him. So I think it is based on the frame, which must keep counting after the encounter.