It's stored in my Dropbox so it is always backed up, though it is not VCS'd. It's worked for me for years, far better than any app. Too, I have full control over it, and years of the data, free for processing by any tools/LLMs that I might want (I haven't wanted such a thing so far, but maybe I will).
The difference of course is that when a startup goes out of business, it's fine (from my perspective) because it was probably all VC money anyway and so it doesn't cause much damage, whereas the entire economy bubble popping causes a lot of damage.
I don't know that he's arguing that they are good, but rather that _some_ kinds of bubbles can have a lot of positive effects.
Maybe he's doing the same thing here, I don't know. I see the words "advertising would make X Product better" and I stop reading. Perhaps I am blindly following my own ideology here :shrug:.
And with that, I will never read anything this guy writes again :)
The truth of the matter is that school shootings are still much rarer than the daily use of phones in school. Talk to a current middle/high school teacher. They will tell you that in most classes there are at least some kids on their phone the entire time, and there is nothing they can do about it. And those kids distract the ones around them.
Kids get "emergency" texts from home midday, and it turns out to be stuff like "I put your socks away for you".
They can't take the phone away anymore because if they do, a parent comes in making the same argument you did, or they accuse the school of theft.
A statewide ban of phones during class time would at least give the local administration and district some air cover in these cases to confiscate phones that are being used during class.
For years I wanted to make a Visual Studio [Code] extension that justifies comments as you type including hyphenation but accepting additional spaces as necessary. I never dared to really start beyond some research into relevant algorithms and libraries because it seems pretty complex. I tried to use things like fmt and par but mostly accepted that I can not have nicely formatted comments unless I do it manually, which I do sometimes but in general just costs to much time, especially as any small change often forces redoing several lines.
You have to deal with long identifiers that you preferably do not want to break across lines, [nested] lists, tables, code blocks, or ASCII art contained in comments, distinguish between hyphens as part of words and hyphens inserted by hyphenation, there might be structured comments like XML doc and Javadoc tags, ... When I saw Tom7's Badness 0, I considered throwing a LLM at the problem, but I think that this is not [yet] practical if you want it in real-time and without hallucinated comments.
Does something like this already exist or something to build on top that would make writing an extension not a year-long effort?
I use this extension extensively. It's not auto-wrapping, but you can bind it to an easy shortcut and wrap when you need to. I find it almost indispensable. I wrote a vscode extension to do the same thing, then discovered this one which does it far better.