So Gundarium alloy is getting closer to reality?
HN user
marethyu
nvm, I found it in archive.org
Does anyone know where can I find contents for the 2020 gigaleak?
I just created my account so I can buy/sell gunplas
$45 USD is equivalent to about 63 CAD. This is crazy considering that I brought 4GB one last year for $70 CAD.
I think it also explains why most people don't rate after transactions in Facebook marketplace.
I attempted the problem myself before reading your solution. My strategy is bit different: for every N>285, I check whether there exists a positive integer solution n to two equations T_N=P_n and T_N=H_n. Using basic algebra and quadratic formula, it boils down to checking whether the quantities 1+12(NN+N) and 1+4(NN+N) are perfect squares. If they are perfect squares, denote their squares by x and y. The next step is to check if 1+x is divisible by 6 and if 1+y is divisible by 4. They are easy using % operator.
from math import sqrt
def isPerfectSquare(n):
sr = int(sqrt(n))
return sr * sr == n
for N in range(1, 10000000000):
foo = 1 + 12*(N*N + N)
bar = 1 + 4*(N*N + N)
if isPerfectSquare(foo) and isPerfectSquare(bar):
x, y = int(sqrt(foo)), int(sqrt(bar))
if (1+x)%6 == 0 and (1+y)%4 == 0:
print(f'Candidate found: N={N}, T_N={N*(N+1)/2}')All I can find is this magnet link: magnet:?xt=urn:btih:brl45s3ysyotj6ljolmtnrlvfmyv4y7s&dn=tea&xl=59368985613&fc=57794 but this is not 200gb one...
It can potentially be used to discriminate against deaf applicants.
The first episode of Kanojo Okarishimasu season 4 will aired sometime around the first week of July.
Can wearing realistic face masks and contact lens that changes iris color possibly fool modern face recognition software?
I thought it was talking about Boruto's Kashin Koji.
Your name doesn't sound Japanese to me unless it ends with u vowel so that your last name sounds like Ijidakinrō.
Wondering if all these emulators are open sourced
Build an emulator like GameBoy emulator.
Any good resources for building my own TI-84 emulator?
Should I be willing to relocate to US for FAANG internship or it would be fully remote? If need to relocate, will I be responsible for paying flight tickets and lodging?
Also, what is the best way to get accepted for FAANG interview for someone with no work experience? Submit resume directly to company website? Connect with FAANG recruiters on LinkedIn and direct message them? Maybe try to get some experience in other tech company before applying to FAANG to maximize chances?
Why it is flagged?
Damn this is cool, may I ask which field you got your PhD on? Computer Science with specialization on physical simulations?
What's wrong with Indian tutorials?
What helped me to finally break my addiction is to sell my gaming account in black market for $.
Oh, did Qiaochu finally returned to math after long hiatus?
Classical Mechanics by Taylor
Relearning mechanics from first principles is fun!
Do read. Books. Not kindles. Books.
Do you mean physical books are better than ebooks? Why is that?
ashamed of what Imgur has become?
Can anyone explain what's the problem with Imgur?
to browse pornhub
I think it depends on how you learn vocabulary. If somebody learns a bunch of vocabulary on context, then he will naturally acquire grammar and pronunciation compared to somebody who learns off context.
The syntax is ugly.