Ask

Export is four times the file size the client got from their last editor

Bitrate, and specifically you are probably on constant bitrate with a high target and an even higher ceiling. For a ten minute 1080p25 deliverable that is mostly people talking, two pass VBR at a target around 8 to 10 Mbps with a maximum of 12 to 16 lands you near 700 MB and looks identical on any normal monitor. 1.8 GB over ten minutes is roughly 24 Mbps, which is broadcast territory for content that does not need it. Also check your audio is not sitting at uncompressed PCM — that alone can be 100 MB on a ten minute file.

402 · in/video-production ·

What actually counts as building in public - revenue screenshots, a changelog, or narrating your day?

I would go further than the others and say that two of your three options are not building in public at all, they are content about building. The practice, as originally meant, was that the decisions and the numbers are visible so people can learn from them and hold you to them. If you strip out the learnable part you have a marketing channel with a nicer name, which is fine, but then judge it as marketing and it usually loses to just being useful in a forum where your users already are.

62 · in/build-in-public ·

We agreed to try couples counselling and then looked at the prices - what did you actually pay?

We tried an app-based service first because it was cheaper per month, then moved to an in-person therapist. The app was fine for structured exercises and useless for the actual argument, because the sessions were short and we got a different feel every time we had to re-explain our history. The in-person work cost more per hour and needed fewer hours. If money is the constraint I would do fewer sessions with one good person rather than more sessions with a rota.

92 · in/relationship-help ·

Is it normal that 8000 rows takes 20 seconds to recalculate after every edit

Not normal. 8,000 rows should feel instant, so something in there is either volatile or scanning whole columns. The order I check:

  • Formulas referencing A:A instead of A2:A8000. Fifteen columns of SUMIFS over full columns means a million row scan per formula, per recalculation.
  • Volatile functions: OFFSET, INDIRECT, TODAY, NOW, RAND. Any one of them forces the whole workbook to recalculate on every keystroke.
  • Conditional formatting applied to entire columns, or rules that multiplied when people copied rows. Open the rules manager — I have seen 4,000 rules in a sheet that needed three.
  • Array formulas or SUMPRODUCT over full columns, same problem as the first point.
    Fix those and it drops under a second.

149 · in/spreadsheets ·

Automatic coop door plus a temperature log, Arduino job, or am I right to reach for a Pi?

Power numbers, since that is what decides it for outbuildings on a long cable run: a Pi 4 sitting idle pulls somewhere around 3W and spikes higher when it does anything, while an ESP32 doing a read-and-sleep cycle averages in the milliwatts. If you ever want this on a small solar panel and a battery, that gap is the whole decision. On mains it does not matter much, but the Pi still needs a clean shutdown and the microcontroller does not care.

97 · in/pi-projects ·

Two Pi 3Bs and an old Pi 2 in a drawer, what still runs genuinely well on 1GB in 2026?

Be aware of the hardware ceiling before you pick: on a Pi 3 the ethernet port hangs off the same USB 2 bus as the storage, so realistic throughput once you are also reading from a USB drive is well under 100Mbit. That rules out file server, media transcoding and anything backup-shaped where you care about the speed. It does not rule out anything that moves small amounts of data, which is most of the genuinely useful stuff.

112 · in/pi-projects ·