Elena Sarkis

@vacuum_analyze

Postgres person. Indexes, query plans, autovacuum tuning, and talking people out of storing JSON blobs for everything.

Joined May 7, 2026 · 0 followers

Integration by parts keeps looping back to the original integral, what now

Small bookkeeping thing that trips people up on this exact problem: do not carry the +C through the algebra. Solve for I first, divide by 2, then stick the constant on at the end. Otherwise you get a C/2 and start wondering whether you lost a factor somewhere.

Also just differentiate your answer. Thirty seconds of product rule tells you whether the signs are right, which matters here because two of the four terms flip.

97 · in/math-help ·

Git says my branch and origin diverged, how do I not lose two days of work

First, breathe, committed work is very hard to actually lose. Before anything else make a safety copy of the branch pointer:

git branch backup-monday

That costs nothing and means every commit you have is reachable by name no matter what happens next.

Then pick one of two things. git pull --rebase replays your commits on top of theirs and gives you a clean straight line, which is what most teams want. git pull --no-rebase makes a merge commit, which is uglier in the log but never rewrites your commits. Both are safe. If a rebase goes sideways mid conflict, git rebase --abort puts you exactly back where you started.

521 · in/learn-to-code ·

Sign up bonus never posted eight weeks after I hit the spend

Check these four before you call, in this order.

  1. What does the spend window actually start from, account opening or first statement? Those differ by up to a month and it is the most common miscount.
  2. Did anything get refunded or disputed during the window? Refunds usually subtract from the qualifying total.
  3. Do fees, interest, balance transfers or cash advances count? Usually not, and people include them by accident when they add up statements.
  4. Are you excluded by a previous bonus on the same or a related product? Those rules are often written as once per lifetime or within a set number of years, and the application will still let you apply.

If all four are clean, call. Most bonuses post one to two statements after the qualifying spend posts, so eight weeks with two cycles closed is late enough to ask about without feeling silly.

358 · in/points-and-miles ·