David Kinnes
699 posts

David Kinnes
@dkpeall
Chaos, Destruction, Mayhem my work here is done.
Johannesburg Beigetreten Ekim 2008
182 Folgt52 Follower

@Leon_Schreib at DHA Cresta and they off line, I thought this was a thing of the passed? What are you doing to fix this?
English

@Discovery_SA Discovery to their credit have contacted me quickly, hopefully we can get it resolved.
English

@Discovery_SA An increase in insurance premium from 4621.22 to 5321.43 represents a 15.15% increase (an additional 700.21). This is the reason I moved away from discovery years ago it's going to happen again. Someone better fix it and call me.
English

@Xandra_KH Enjoy, I have to ask are you really tall or are those monitors from TEMU?
English
David Kinnes retweetet

🚨 Here is the full 40 minutes of my crew and I exposing California fraud, Minnesota was big but California is even bigger... We uncovered over $170,000,000 in fraud as these fraudsters live in luxury with no consequences. Like it and share it, the fraud must STOP.
We ALL work way too hard and pay too much in taxes for this to be happening. These fraudsters have been able to defraud American taxpayers for years without any pushback from the public and politicians.
It is time to EXPOSE IT ALL and end America's fraud crisis.
English

The City of Johannesburg has condemned the Democratic Alliance (DA)’s mayoral frontrunner, Helen Zille, for entering a reservoir in Yeoville without permission. ewn.co.za/2026/03/13/cit…
English

@ConCaracal Let me guess there is a fee for traditional cleansing 🤣😂
English

@WabiSabi749 @ashoKumar89 @0xlelouch_ The default is used for new rows only and only used when the value is not provided during insert. Set the default then backfill to avoid a row slipping in without a value.
English

@ashoKumar89 @0xlelouch_ I’d swap 2 and 3 to avoid a race condition but yes. this is the answer 👍
English

I will use a two step migration:
1. Add the column without default:
ALTER TABLE users ADD COLUMN is_verified BOOLEAN;
This is fast because it only changes metadata.
2. Backfill in batches
Update rows gradually:
UPDATE users
SET is_verified = FALSE
WHERE is_verified IS NULL
LIMIT 10000;
3. Set default after backfill
ALTER TABLE users ALTER COLUMN is_verified SET DEFAULT FALSE;
English

















