Dimitri Arrigoni

Results 10 comments of Dimitri Arrigoni

``` vendor/bundle/ruby/2.7.0/gems/slop-4.9.1/lib/slop/types.rb:54: warning: deprecated Object#=~ is called on Integer; it always returns nil ```

> My temporary fix is to do > > ```ruby > run :local do > command "something || exit 1" > command "something else && another || exit 1" >...

```lisp (defun my-hls-hook () (when (featurep 'highlight-symbol) (highlight-symbol-mode t) (highlight-symbol-nav-mode t) )) (add-hook 'find-file-hook 'my-hls-hook) ```

You could also use ``pry-coolline``. You could, also, see this issue: https://github.com/pry/pry/issues/1579 I ignore, if ``ruby-packer`` allows to use a ``--with-readline`` build option… because, in this case, it (probably) should...

You could use your own location for temp directory, sample of use: [tasks/gem/compile#L64](https://github.com/SwagDevOps/swag_dev-project/blob/c4561180d522d8077d7f74e5761399fc1fa417aa/lib/swag_dev/project/tasks/gem/compile.rb#L64).

Ubuntu Linux 16.04 LTS will no longer be supported by April 30, 2021. Ubuntu Linux 16.04 LTS reaches the end of its five-year LTS window on April 30th 2021 and...

Use sass : ```scss .gutenberg { @import "~gutenberg-web-type/src/style/gutenberg"; } ```

Use sass : ```scss .gutenberg { @import "~gutenberg-web-type/src/style/gutenberg"; } ```

Exit code, should be more specific than ``1``: http://tldp.org/LDP/abs/html/exitcodes.html ```sh sleep infinity # Ctl-C echo $? # 130 ```