Arnold Daniels
Arnold Daniels
Add a rollback directory where users can optionally add a file that inverts an update. The name of the file in the rollback dir should be the same as in...
[Git hooks](https://github.com/icefox/git-hooks) is a tool to manage git hooks. DBVC should be able to install simple by running ``` dbvc install-hooks [--path=...] [status] [mark] ``` The command should check if...
DBVC should be able to create a dump of the database schema. ``` dbvc dump ``` DBVC should also be able to dump the data. This is useful for adding...
``` Usage: dbvc mark update ... [options] ``` Should be ``` Usage: dbvc mark UPDATE ... [OPTIONS] ``` To differentiate between literals and arguments.
[Avoid type-checking](https://github.com/jupeter/clean-code-php#avoid-type-checking) doesn't address a realistic situation in which one might do type checking. If type declaration can be used that's great, but often it's not the case. One major...
Please add a `README.md` showing how the parser can be used.
> strictly and strongly typed code with no loose casting for those who want additional safety in extremely defensive programming. Loose comparison does loose casting with unexpected result. To achieve...
Similar to arithmetic operators (`+`/`-`/`*`/`/`/`**`/`%`), loose comparison operators **should only** be used for numeric values. This is true for `==`, `!=`, ``, `=` and ``. Using any of these operators...
The (old) Android wallet has the option to import an account using a QR code. Please make this option available on this WavesGUI as well. Either always or when running...
Waves platform uses a custom way of seeding a key pair. There is a standard way of seeding ED25519 keys implemented in NaCl compatible libraries (including tweetnacl.js, pynacl and libsodium)....