For instance, inflation is a big one. I remember during the first spike in inflation (2021 I believe), I started nothing prices have gone up between 25-50%. We've been told at the time inflation was something like 7% but that would mean paying $5.35 for something that used to cost $5, which was obviously not what was happening. In short, they play games with the numbers.
Bezos was on Fridman talking about something similar. He learned that Amazon’s metrics said typical wait time less than 1 min to reach customer service. But everyone complained about how long it took. So in a meeting he called Amazon’s customer service line and was put on hold for over 10 minutes, far exceeding the promised wait time. He stated, “When the data and the anecdotes disagree, the anecdotes are usually right."
All in goes off vibes and try to tie it to reality but sometimes miss the mark. But I think the vibes are often more right than the data.
> For instance, inflation is a big one. I remember during the first spike in inflation (2021 I believe), I started nothing prices have gone up between 25-50%. We've been told at the time inflation was something like 7% but that would mean paying $5.35 for something that used to cost $5, which was obviously not what was happening. In short, they play games with the numbers.
When there is a mismatch between your personal gut feeling and some official number or alleged fact in the world, there are different ways you can react:
A) You could think "Hmm, that's weird, is it possible that I'm missing something?"
B) You default to thinking that clearly you are right, so this is just another case of those so-called experts lying to you.
Had your response been A), you would have looked a bit more into it and realized that the overall inflation number is not based just on a subset of a few grocery items, but based on all different kinds of living expenses that people have. Many of those prices increased much less in 2021 than the overall 7% inflation rate (e.g., prescription drugs, cell phone plans, airline fares, motor vehicle insurance), so naturally, inflation in other categories was much higher to result in an overall rate of 7%.
If your gut feeling also tells you to doubt the inflation numbers for individual item categories released by the U.S. Bureau of Labor Statistics ([1]), you can get the raw data for those too, if I remember correctly.
One problem with your gut feeling is that it's very susceptible to various biases. For instance, the price of one grocery item increasing by 30% will be much more noticeable to you than the price of another item staying the same. It's also very easy to not realize that you are comparing the current price to the one from two years ago or so, thereby dramatically overestimating the yearly inflation rate.
I didn't mean to single you out, but the tendency by so many people to have overconfident knee jerk reactions to various information, instead of at least considering that they might have unknown unknowns or things they don't fully understand, is something that really concerns me.
[1]: https://www.bls.gov/opub/ted/2022/consumer-price-index-2021-...
Firefox also had it via an extension.
The only other browser (to my knowledge) that had native tabs earlier than Vivaldi was the original Opera browser, which was eventually killed, which in turn led to people leaving the company and creating Vivaldi.
Most things that third-party kernel drivers used to do (device drivers, file systems, etc) are now done just as well, and much more safely, in userspace. I'm surprised if Microsoft isn't heading in this direction too?
Presumably, Crowdstrike runs on macOS without a kernel extension?
That's correct: CrowdStrike now only installs an "Endpoint Security" system extension and a "Network" system extension on macOS, but no kernel extension anymore.
That’s not the point of the original scary fairy tales. The point was to keep kids from danger by scaring them so much that they don’t expose themselves to said danger. The downside of this style of child raising , of course, is that kids are unable to realistically assess the danger and sometimes don’t shed their fears when they get older.
After experiencing the issue on my MBP, I actually waited a couple days before I rebooted my Mac mini, and before I did so, I checked whether there was an "Install macOS Sonoma" app in the Applications folder (there was not). My (now proven incorrect) assumption was that the Sonoma installer would always come in form of such an app, like it did for previous versions of macOS.
For the past 5+ years, I've always waited at least 6-9 months before upgrading to a new major macOS version, and I am generally very careful about not upgrading accidentally. There is zero chance that I twice missed a notification or accidentally initiated the Sonoma upgrade myself.
1. Export 1P passwords to a 1pux file
2. Import file into Bitwarden
3. Done.
2b. If you have attached documents in 1Password, you need to manually add those to Bitwaren.
This process is pretty straight-forward, though. To get a clean list of all items with file attachments in 1Password, I found it very useful to create a Smart Folder with the rule "Number of attachments is greater than: 0".[1]: https://bitwarden.com/help/import-faqs/#q-how-do-i-import-fi...
alias rm='trash -i'
It will prompt you before moving files to the trash instead of deleting them straight away on macOS.I've also added the -i flag to the following:
alias mv='mv -i -v'
alias cp='cp -i -v'
alias ln='ln -i -v'
It warns me when a file might be overwritten in the target directory and will display a short protocol of the actions performed due to the 'verbose' flag.This can really backfire. Ages ago, I used to have exactly the same alias for 'rm'. After a year or two, I got so used to 'rm' not really being destructive that one late night when I was really tired, I used it on a remote system without feeling the need to carefully check the file name. That remote system, of course, did not have 'rm' aliased to a safer version...
Long story short, I strongly recommend using a different alias name (e.g., 'rem', 'rmi' or so). In this case, the worst that can happen is getting a 'command not found' message, when the alias is missing.