Why Sponsor Oils? | blog | oilshell.org
I just released Oil 0.8.pre8, and it reached a significant milestone! The oil-native binary can now run Crestwave's brainfuck interpreter in bash, and it's even pretty fast.
So now is a good time to come up for air and write blog posts. This post is an outline of what I want to write. If the January Blog Roadmap is any indication, I'll publish a few posts, then go back to coding again.
Please ask questions in the comments section to help me prioritize the writing.
The C++ translation process is creating a fast and correct shell, which is exciting. The next two releases will continue along the same path:
Based on the last few months of progress, I believe this can be done by the end of the year. Recall that back in January, I said I wanted to get something concrete done in 2020. This is about what I expected.
I also want to reduce the scope of the project, and point out some problems.
yield
.I've been working on Oil for over 4 years! I considered it an experiment for most of that time:
After the progress in 2019 and 2020, I'm confident that the answer is yes. There's no risk of failing to deliver 0.8 and 0.9 — it's just work.
And with enough people working on the project, I'd argue there's no risk to Oil 1.0 or Oil 2.0 either. However, even though 30+ people have contributed code to Oil, I'd estimate that 90% of the code has been touched only by me.
I want to change that. Here are some posts that address "project sustainability".
The lack of real Oil usage has been bugging me for a long time, and I've mentioned it when soliciting help. I don't have a solid answer to this, so I'm interested in your ideas.
Outline:
Last week, I got a mail from a reader Andrew who's rewriting Oil in the Nim language! This is great, as I believe in the power of parallel open source development.
I'd like to spread the knowledge of shell implicit in Oil, and independent implementations are a great way to do that.
Roughly speaking, there are 4 possible levels of reuse:
Other hints:
ls */*_def.py
in the Oil repo shows Python code with "declarative"
knowledge of shellls */*_gen.py
are the corresponding code generators. They produce Python
and C++ code, but can be modified to produce Nim or Rust code, etc.Addendum: Rob Landley and toybox should reuse some of this knowledge. He says he's been working on a bash-compatible shell on and off since 2006! And he has expressed doubt about finishing it, so sharing knowledge only makes sense. However I'm not sure if we can communicate on the same wavelength.
Last year, I was asked if I accept donations for the project. My answer was no, because Oil is still an experiment. (In other words, I wanted to be able to abandon the project at any moment without guilt.)
However, I now think the experiment is succeeding. It feels like the codebase is "just on the edge" of being a significant advance over bash, the most widely deployed shell in the world.
In contrast, the documentation is not close to being done. And I think attracting contributors to docs is harder than attracting contributors to the code.
So I'd like to solicit donations to hire a technical writer for Oil's documentation. I'm not sure when I will do this. I don't really want to be an administrator, but it seems necessary.
I'd appreciate advice from anyone who has raised enough money to pay someone. I imagine that this is around 6 months of full time work. (E-mail me or leave a comment.)
I posted an offer to edit technical writing on lobste.rs. I can imagine something in this vein to on-board contributors to Oil, but I'm not sure what it would look like.
Though a major problem with this model is that it sets me up as some kind of authority, whereas I'd really like people to tell me what I'm doing wrong.
There have been multiple contributors, including Koiche Murase and Josh Nelson, who have fixed things that surprised me. And Crestwave has done a lot of difficult debugging on codebases I'm unfamiliar with.
In addition, our .travis.yml
was contributed a few years ago, before I knew
anything about Travis CI. It's gradually turned into
a useful and functional continuous build, of
course written in shell. (As of the last release, it runs the ble.sh
test suite and the mycpp translation of oil-native).
I did a good job of advocacy at the beginning of the project, but haven't had time for it lately. Here are some more ideas.
Headings for this post (yes, this is an outline for an outline!):
xargs -P
This is a post derived from these links:
Summary and analogies:
from __future__
to introduce new features.use strict
and more, but they don't change the defaults. A key
point that Sawyer X makes is that when you're using Perl 5, by default
you're using a language with 15+ year-old misfeatures.shopt
, but by default you're using a language
with 30-year-old misfeatures.In contrast, Oil has shopt -s oil:basic
and shopt -s oil:all
.
I need to explain Oil from scratch again. Recent progress on the implementation has made it more clear what Oil is and what it isn't. Draft on the wiki:
I want to condense those points and put them boldly and clearly on the Oil home page.
The comics post back in April alluded to this result, but I never published/explained it. This is mainly because I wanted to gather data on real shell scripts in the wild. For now, you can see the benchmarks:
Summary: Across several dozen test cases, Oil starts fewer processes than every shell except the uncommon yash shell. I could have optimized it more, but I didn't want to game the benchmark.
For context, I want Oil to be faster than bash and other shells along three dimensions:
I outlined 8 or 9 posts here, but there are still two more with #blog-topics:
After I publish those, I'll write the plan for Oil 0.8 and 0.9.
Let me know what you're thinking in the comments!