Nikola Jichev

Results 16 issues of Nikola Jichev

Check this out for more information: https://github.com/lostisland/faraday/commit/067be864a67e791e6766253ce4ef3f5c740caf70

Currently in production we call: droplet.send(:action, remote_id, :enable_backups) in order to access the private action method. Here is the documented api for enabling backups: https://developers.digitalocean.com/documentation/v2/#enable-backups Added a fixture json response...

Refactors the workspace commands a bit as well

This commit adds support for creating project specific keys and retrieving project specific ssh keys. The missing http requests are described in the [docs](https://www.packet.net/developers/api/sshkeys/) The added ones are: - `GET...

Currently the client does not support all the actions of the documented API found here: https://www.packet.net/developers/api/ It would be nice if we got the rest of the actions included.

A Code Action that removes the following warning checks from Credo: - Credo.Check.Warning.Dbg - Credo.Check.Warning.IExPry - Credo.Check.Warning.IoInspect - Credo.Check.Warning.IoPuts - Credo.Check.Warning.MixEnv

A workspace command that extracts an anonymous function to a private one. Example: ```elixir defmodule Example do def run(list) do square = fn x -> x * x end Enum.map(list,...

enhancement
good first issue
workspace-command

A workspace command that inlines a private function Example: ```elixir defmodule Example do def run(list) do Enum.map(list, &square/1) end defp square(x) do x * x end end ``` Hovering square...

enhancement
good first issue
workspace-command

A workspace command that extracts an expression to a variable. Example: ```elixir defmodule Example do def run(argument) do DoSomeOtherThing.run(String.split(argument, "\n")) end end ``` Hovering the String.split expression and running the...

enhancement
good first issue
workspace-command

A workspace command that inlines a variable. ```elixir defmodule Example do def run(argument) do var = String.split(argument, "\n") DoSomeOtherThing.run(var) end end ``` Hovering var with the cursor on both places...

enhancement
good first issue
workspace-command