One Dean Koontz book isn’t a great sample size. He writes a LOT and most of it isn’t very good, but every once in a while he gets it just right and puts out a really good one.
Though tbf, I haven’t re-read his stuff in probably 10 years so I don’t know if it holds up to modern scrutiny. Odd Thomas was always my favorite of his.
My wife and I also keep our Keepass passwords in each other’s Bitwarden vaults.
So to lose access we’d both have to simultaneously forget our Bitwarden passwords AND be locked out of any biometric login. I consider that sufficiently unlikely.
I doubt that would affect Wi-Fi, but what does affect it (at least 2.4 GHz frequencies) is microwaves. They operate at the same frequency and interfere with the router’s output waves.
My wife refused to believe me until I had her run a speed test and watch the signal drop when I started up the microwave, then rise again when I turned it off.
Ease of syncing across devices has me using an internet-based password manager (Bitwarden), but I keep a second local-only password manager (Keepass) that only stores my Bitwarden password. Just in case.
On your second point, that’s what the science actually says. “Observer” or “observation” is used in a scientific sense and was probably a poor word choice. Science journalism gets carried away with anything that has the word “quantum” in it and it drives us mad.
You’re absolutely right that the mechanism that’s causing the wave function to collapse is the presence of whatever piece of equipment the particle is hitting. Whether that collapse happens at the two slits or the back wall changes the pattern, and that change is what shows wave-particle duality.
Also: physics doesn’t claim to know that the Big Bang only happened once. That’s just as far back as we can rewind with our current models. This is again something that science journalism takes a lot of liberty with.
Well that still puts you pretty safely in the range, actually. The typical cutoff year is 1996. I’m 30. You were 7 (or almost 7) but you don’t remember 9/11?
I hate to break it to you, but memory of 9/11 is kind of a litmus test for the Millennial/Gen Z border. If you don’t remember it you’re likely Gen Z or right on the border where generational definitions get really fuzzy.
Basically scripts you can run on the fly to pull calculated data. You can (mostly) treat them like tables themselves if you create them on the server.
So if you have repeat requests, you can save the view with maybe some broader parameters and then just SELECT * FROM [View_Schema].[My_View] WHERE [Year] = 2023 or whatever.
It can really slow things down if your views start calling other views in since they’re not actually tables. If you’ve got a view that you find you want to be calling in a lot of other views, you can try to extract as much of it as you can that isn’t updated live into a calculated table that’s updated by a stored procedure. Then set the stored procedure to run at a frequency that best captures the changes (usually daily). It can make a huge difference in runtime at the cost of storage space.