HackerTrans
TopNewTrendsCommentsPastAskShowJobs

rainhacker

no profile record

Submissions

H1B Crackdown on Indian Workers Erodes Texas Real Estate Boom

bloomberg.com
8 points·by rainhacker·le mois dernier·3 comments

[untitled]

1 points·by rainhacker·le mois dernier·0 comments

What are some unforeseen / elusive edge cases you have seen in your career?

reddit.com
2 points·by rainhacker·il y a 3 mois·0 comments

Amazon could take at least a day to restore data centers hit by 'objects'

businessinsider.com
2 points·by rainhacker·il y a 4 mois·0 comments

Palantir and Anthropic AI helped the US hit 1k Iran targets in 24 hours

moneycontrol.com
111 points·by rainhacker·il y a 4 mois·86 comments

Worming out molecular secrets behind collective behaviour

iisc.ac.in
13 points·by rainhacker·il y a 4 mois·0 comments

13-hour AWS outage reportedly caused by Amazon's own AI tools

engadget.com
3 points·by rainhacker·il y a 5 mois·1 comments

Google Skills

skills.google
1 points·by rainhacker·il y a 8 mois·0 comments

[untitled]

1 points·by rainhacker·il y a 8 mois·0 comments

Amazon is planning a new wave of layoffs, sources say

fortune.com
9 points·by rainhacker·il y a 9 mois·0 comments

Orders for Pahalgam satellite images from US firm peaked 2 months before attack

theprint.in
1 points·by rainhacker·l’année dernière·0 comments

London's Heathrow Airport Shut Friday Due to Power Outage

bloomberg.com
7 points·by rainhacker·l’année dernière·1 comments

DiceDB

dicedb.io
235 points·by rainhacker·l’année dernière·132 comments

Uber Auto is now on SaaS – What does that mean for riders?

uber.com
1 points·by rainhacker·l’année dernière·0 comments

Microsoft confirms performance-based job cuts across departments

cnbc.com
8 points·by rainhacker·il y a 2 ans·2 comments

We're All in 'Dark Mode' Now

theatlantic.com
17 points·by rainhacker·il y a 2 ans·8 comments

A fatal car crash in India sparks concerns over Google Maps

bbc.com
3 points·by rainhacker·il y a 2 ans·3 comments

Secrets of Corporate HR Department

old.reddit.com
27 points·by rainhacker·il y a 2 ans·2 comments

Amazon CEO: AI Assistant Has Saved $260M and 4.5K Developer-Years of Work

finance.yahoo.com
2 points·by rainhacker·il y a 2 ans·0 comments

In a leaked recording, AWS CEO tells most developers could stop coding soon

businessinsider.com
56 points·by rainhacker·il y a 2 ans·60 comments

comments

rainhacker
·il y a 7 ans·discuss
I like 'Better Explained'[1]. It specifically focuses on intuitive understanding of mathematics.

A post I like is on adding numbers 1 to 100 [2]. The staple formula is n(n+1)/2, sum of arithmetic progression. How can we intuitively arrive that this formula?

> Technique 1: Pair Numbers Pairing numbers is a common approach to this problem. Instead of writing all the numbers in a single column, let’s wrap the numbers around, like this:

1 2 3 4 5

10 9 8 7 6

An interesting pattern emerges: the sum of each column is 11. As the top row increases, the bottom row decreases, so the sum stays the same.

Because 1 is paired with 10 (our n), we can say that each column has (n+1). And how many pairs do we have? Well, we have 2 equal rows, we must have n/2 pairs.

Number of Paris x Sum of Each Pair = (n/2) (n + 1) = n(n+1) / 2


[1] https://betterexplained.com/

[2] https://betterexplained.com/articles/techniques-for-adding-t...