Davide Angelocola
Davide Angelocola
I tried to compile this project with JDK10 and maven 3.5.0: ``` [ERROR] /Users/dfa/projects/system-rules/src/main/java/org/junit/contrib/java/lang/system/internal/NoExitSecurityManager.java:[39,9] method does not override or implement a method from a supertype [ERROR] /Users/dfa/projects/system-rules/src/main/java/org/junit/contrib/java/lang/system/internal/NoExitSecurityManager.java:[42,51] cannot find symbol...
NB: this is just an experiment, cannot be really merged until project loom is integrated in JDK - change is really trivial - tested with latest loom binaries: ``` openjdk...
Ideally command completion should be programmable. But let's try to provide some obvious defaults: - `cd` should propose only directories - `kill` should propose only local process ids, along with...
**Problem** Enumerating a benchmark is not possible right now: ``` benchmark 5000 { rand | drop 10000 | take 10000 | count } | enumerate 1 10_000 ``` without any...
**Problem** This is not a real problem but I think `ruby|perl -ne` is very useful in many situations. **Solution** A possible solution would be: `lines - | command` command to...
**Problem** Right now hosh provides two very unusable commands for output redirection: - `cmd | open file WRITE CREATE` - `cmd | capture VAR` **Solution** - `> file` alias for...
**Problem** Right now Hosh provides some very basic support for sorting, filtering, splitting, etc. Explore and experiment some new commands around data manipulation. **Solution** Existing solutions of data manipulation of...
**Problem** In https://github.com/golang-migrate/migrate/blob/master/README.md contains this: ``` It's easiest to always run the URL parts of your DB connection URL (e.g. username, password, etc) through an URL encoder. See the example...