Postmodern

Results 698 comments of Postmodern

Could you rebase this against the `0.2.0` branch? I'm having trouble testing this locally.

@moozzi I pushed the `add_edit_notes_mozi` branch, which is your old `add_notes_edit` branch but without the merge `main`. `git log main..add_edit_notes_mozi` will show you the commits. Rebasing it against `0.2.0` may...

Should we even have a `-r` option, or should `ronin grep`, etc, behave recursively by default if you give it a directory?

It is the intended behavior for `program_name` to return the literal name or file path that was used to invoke the program. If you ran a ruby script using a...

@javierjulio for Arrays of Arrays, I foresee two formats: ## Arrays of Arrays ### Arrays of Arrays (Format A) ```ruby [ "One", "Two", "Three", [ "Foo", "Bar" ] ] ```...

@javierjulio those representations of trees look a bit too complex. One shouldn't have to define two arrays for just a single line of the tree-list output. Ideally a single line...

@javierjulio I'm still not sure whether to support `['Has-no-children', 'Parent1', ['Child', ...], 'Has-no-children', ...]` style where the Array of children follows the parent String *or* `[ 'Has-no-children', ['Parent1', ['Child', ...]],...

@javierjulio very cool! I would recommend using `if`/`else` instead of ternary operators. ```ruby value = if foo then value1 else value2 end ``` ```ruby if foo puts ... else puts...