That's not true, and it is frustrating to read such a pointless falsehood. I worked in a soup kitchen for years. The Bill Emerson's Good Samaritan Act of 1996 codified in federal law what states had started implementing in the 70s, that good faith donations won't hold people/corporations liable to food injury.
That doesn't stop you from getting sued. That law still says you can sue for "gross negligence". You still have to go to court to prove you weren't grossly negligent.
Just yesterday I tried to type "Network and sharing center". Apparently it does not exist in the index which is quite annoying, I have to click through the control panel (after accidentally ending up on a web search). Windows 10 is an odd beast with multiple generations of UIs all nestled away.
If I type VS... Visual Studio Code! Cool. (wonder why it did not suggest Visual Studio itself which I also have installed, buy hey I got what I wanted)
If I type VSC... ??? config files and some random XMLs from the deep realms of AppData
If I type vscode... No results, try a web search!
If I type Visual Studio... THE Visual Studio shows, but no Code in sight
If I type Visual Studio Code... There it is again!
---
The whole rigmarole is just... Huh?! How does one even reach that point? I can't think about any naive buggy way that could reasonably cause such discrepancy of results. Just search by Filename and Display Name! Or whatever criteria, but be consistent!
When I start typing "solidworks" it alternates (with lag) between the Solidworks core software and Solidworks Explorer. I only get the right one ~half the time, since it seems like it will open the one that would have loaded rather than the one that is at the top of the list when you hit enter.
Trying to get to the network devies page is equally infuriating- it's under network adapters and options in Control Panel, and may or may not actually be accessible from the new Settings app- I don't remember.
Even better, try setting the dead zones on an XInput game pad. Off the top of my head, it goes something like:
“Settings” > “Bluetooth and other devices” > “Printers and other devices“ > Right click your game pad > “Gamepad Settings” > select your gamepad > “Ok” > “Deadzones”
I had been thinking about similar projects myself. I figure that experience with the z80, 68000, and the 6502 would give someone a platform for hacking for at least the next century. There are some dozens of 68000-like chips in a single car. I/O is as simple as LEDs and toggle switches for the bare necessities, such as bootstrapping other I/O options. Worked for the Altair 8800. From there one could implement morse-like momentary switch input. In these (possibly far-fetched) scenarios, going back to things like ticker tape and printers would make a decent amount of sense. Perhaps spools of wire could be used as "tape" for programs and data, as wire recorders existed before plastic tapes were available. I love seeing how home fabrication is developing, with people making simple silicon in their garage, but there is value to a basic tool chain that doesn't require as much sophistication and supply chains. I truly hope we don't live to see such a world, as the suffering would be immense. That said, I have no idea how complex supply chains can be expected to persist without fossil fuels.
I have used Vue to simplify some enterprise pages of unholy jquery. Vue is added as a single js file in the header, and I call 'new Vue' on a div element. I do not get .vue files, i can't use fancy vue compenents i see online, and a few other things, but it worked really well for my use case. I used vue to replace ~400 lines of jquery with 80 lines of very clean code. Use what you need, and leave the rest.
> I used vue to replace ~400 lines of jquery with 80 lines of very clean code. Use what you need, and leave the rest.
I tried using Vue, and started by trying to replace a small 100 line Jquery component and it quickly turned into 300 lines of Vue code. Like eating broccoli, I know that using Vue over Jquery is good for you, but it's still hard to swallow that first bite.
I have just finished Think Julia, which was a pretty good introduction and is available for free online: https://benlauwens.github.io/ThinkJulia.jl/latest/book.html
Its a little slow for seasoned programmers, but it has a lot of exercises and the idiomatic julia parts tend to stick out more with the simple 2 line snippets.