proj-oot-ootPackagingThoughts

See this thread from Hacker News on the lack of canonical best practices for use of packaging/deployment in Python and Ruby (subthread https://news.ycombinator.com/item?id=7802228 ):

https://news.ycombinator.com/item?id=7802005

note situations like subthread https://news.ycombinator.com/item?id=7804129

in Oot we need to make such problems go away by focusing core dev effort on these things when such problems arise.

--

https://github.com/Microsoft/nodejs-guidelines/blob/master/windows-environment.md#max_path-explanation-and-workarounds

" MAX_PATH explanation and workarounds

For the uninitiated, MAX_PATH is a limitation with many Windows tools and APIs that sets the maximum path character length to 260 characters. There are some workarounds involving UNC paths, but unfortunately not all APIs support it, and that's not the default. This can be problematic when working with Node modules because dependencies are often installed in a nested manner. "

---

to fight library typosquatting (eg urllib vs. urrlib3, bzip vs. bzip2, etc):

---

this looks like a really good way to do packaging:

https://yakking.branchable.com/posts/what-and-why-nix/

---