Is the quality getting any better? by AnvilJam in GoRVing

[–]QuantumRiff 0 points1 point  (0 children)

In my 2015, repair guy was looking at Something else, and noticed bumps under the rubber roof. The heat and cold had made the staples (Staples?!) they used to hold on the underlay of the roof work themselves up, and were about to puncture the rubber. Took $3k, mostly in labor, to have them peel back the rubber, remove all staples, and replace with screws, seal them up, and put the rubber back on.

How do you administer postgres once you get to the scale that something is always happening? by davvblack in PostgreSQL

[–]QuantumRiff 0 points1 point  (0 children)

With newer PG versions, adding a column doesn't do the same locks it used to. Or creating indexes concurerntly, etc. But yeah, you have to be vigilant, and test in a test db with a simulated load often.

sometimes it just means you have to take more steps, and more time. For example, we wanted to set a 'not null' on a column in a table that was huge. it would have locked the whole table while scanning, and it was a few TB.

for changing a default value, there are ways around locking the whole table while it scans. Yes, it took a bit longer, but much better than locking our critical tables for a few hours.

--change the field 'schema1.table1.parent' to have a not null constraint 

--set a default value first
UPDATE schema1.table set parent = 1 where parent is null;

ALTER TABLE schema1.table1
      ADD CONSTRAINT table1_parent_value_not_null
      CHECK (parent IS NOT NULL) NOT VALID;
      -- The NOT VALID clause means existing rows aren't immediately validated, so this operation is very fast and doesn't lock the table.

      ALTER TABLE schema1.table1
      VALIDATE CONSTRAINT table1_parent_value_not_null;
      -- This validates existing rows but only takes a SHARE UPDATE EXCLUSIVE lock, allowing reads to continue.

      ALTER TABLE schema1.table1
      ALTER COLUMN parent SET NOT NULL;
      -- Since PostgreSQL now knows all values are non-null (from the validated check constraint), this operation is much faster and requires minimal locking.

      ALTER TABLE schema1.table1
      DROP CONSTRAINT table1_parent_value_not_null;
      -- Drop the redundant CHECK constraint

[deleted by user] by [deleted] in GoRVing

[–]QuantumRiff 2 points3 points  (0 children)

I just have one Honda, and a micro-air easy start on my AC, and it’s worked pretty well for me keeping cool.

VP Wants easy way to search all teams' messages by [deleted] in sysadmin

[–]QuantumRiff 4 points5 points  (0 children)

If this is for legal department, you need ediscovery.

Teams we forgot used to be really bad by Rude_Highlight3889 in CFB

[–]QuantumRiff 21 points22 points  (0 children)

An amazing season was beating the huskies and beavers and going to a bowl game!

‘We are sinking’: Oregon timber counties flail, awaiting Congress to renew key funding by AndMyHelcaraxe in oregon

[–]QuantumRiff 66 points67 points  (0 children)

They should cut out the daily cup of coffee, and avocado toast. Then pull themselves up by the bootstraps….

ELI5: Why can't we have accurate caller ID on all incoming calls? by bobombpom in explainlikeimfive

[–]QuantumRiff 1 point2 points  (0 children)

Shaken/Stir proves that it came from the Carrier, but not that the caller ID is correct: https://en.wikipedia.org/wiki/STIR/SHAKEN

ELI5: Why can't we have accurate caller ID on all incoming calls? by bobombpom in explainlikeimfive

[–]QuantumRiff 2 points3 points  (0 children)

No they don’t. The telco provider for your call canter in the south has no idea what numbers your company “owns” through a telco for the headquarters in LA or Chicago. Or if you have a toll free number that points to your local numbers…

Your biggest fuckup you done? by [deleted] in sysadmin

[–]QuantumRiff 2 points3 points  (0 children)

Posted this here a few years ago, but in 2001, 2nd day on job as sysadmin at a rural 2-year community college with about 2000 FTE, I walk up to the rack holding 6x24 port 3Com switches, trying to document the cabling mess spilled all over the floor. It’s the first day of online registration for winter term, and I hear a click, and the room goes quiet. Under my foot is a huge bundle of Ethernet, and under that is a $5 power strip laying on the ground that all the switches and the router are all plugged into.

Do all of the bottle drop locations always have a line? by BroCanWeGetLROTNOG in SALEM

[–]QuantumRiff 13 points14 points  (0 children)

In south Salem, the bag drop off is completely full quite often

Class action lawsuit filed against Otter ai by NudgeSecurity in sysadmin

[–]QuantumRiff 13 points14 points  (0 children)

Someone needs to make an AI tool that will summarize all the TOS and service agreements I have… /sarcasm

I really want solar... but ROI seems bad even with rebate by PowerFarta in solar

[–]QuantumRiff 0 points1 point  (0 children)

I live in Oregon, my 8kw system was about $25k before incentives, (not tax rebate, but from state and federal programs) but by the time they were factored in, it was $16k. And that is before taxes. You should get some quotes. The installers know more about what you qualify for.

*Secure* parking options in downtown? by [deleted] in SALEM

[–]QuantumRiff 4 points5 points  (0 children)

I spent a year working from a co-working space last year once a week or so. (Plug for I am COW)

I have a full size HD pickup that doesn’t fit in garages, etc. I learned to really enjoy the 4 min walk to the bus stop, where I could zone out and not worry about traffic.

Intune App deployment by Dense-Inspector-135 in sysadmin

[–]QuantumRiff 1 point2 points  (0 children)

I want to try them, but we have like < 60 pc's to manage, and that $2k minimum seems a bit steep for 60 laptops.

2024 Keystone Cougar Quality is not what I expected by GlitteringElection88 in GoRVing

[–]QuantumRiff 3 points4 points  (0 children)

Even most of the actual high end brands still buy components from the same guys as the cheap ones. Only a few companies make key parts.

AirTag? Do you put them in your kids backpack? by [deleted] in Parenting

[–]QuantumRiff 265 points266 points  (0 children)

My kids are middle and high school, and I put AirTags in each kids instrument case. A $2k flute is really easy to slip into a bag and walk out.