That being said, if you're in the dev-space, I'd recommend using Raycast instead. I've dong some cool things with it, like format my commit messages, generate UUIDs, and search my bookmarks with a command (/w dev -> my company's development application with a really long URL).
I loved Spotlight until I had to check out several project to my computer. Now with thousands of non-own files it’s really hard to find what I want. Even if I look for my own projects, Spotlight shows the same project as it appears in several node_modules as a dependency. Find out the right one means I have to hold alt on each item. Ludicrous.
Other than the spacebar and column view, the Finder is a toy compared to File Explorer.exe and I’ll never forgive Apple for it. 20 years of staleness.
But you can also deactivate the email address and be done with it.
Why not?
I just used Hide my email for a non-critical but real-life situation. I had to learn my new email address and I’ll have to remember it forever. I’ll probably change it back to my regular address at some point.
Capitalisation could also be used for such a purpose, but may be more likeely to accidentally get stripped.
I grew up an immigrant to Switzerland, now I’m an expat in South East Asia.
Dead Comment
"are you suggesting that CSS and HTML should have the same style? <a style=“color=\”red\””>?"
Probably more like <a css-color="red"> - or alternatively: <a id=xxx> and in an css file: .xxx { href: "http..." }
I also think that you need to chill.
Ironically XML allowed namespaces so css:color="red" could have totally been a thing. However CSS came out to separate content from style, so doing that wouldn’t have made much sense. I wouldn’t be surprised if the style attribute was added later.
Edit: wow I was right:
> HTML 3.0 supports style sheets via the use of the LINK element [1]
> HTML 4.0 adds new hooks for style sheets, which suggest how a document is presented. The new ID, CLASS, and STYLE attributes [2]
[1]: https://www.w3.org/MarkUp/html3/intro.html
[2]: https://www2.cs.sfu.ca/~ggbaker/reference/wdghtml401/new.htm...