Sam Houston

Results 18 comments of Sam Houston

This solution may not work for you, but I mine was broken because I was not using the master branch version. I fixed it with the following: `cd ~/.atom/packages/vim-mode` Then,...

Running: `mix phx.routes` gives a summary of the api endpoints, would this suffice @th0mas?

# Macros vs Regular functions Say we have our `AppendOnly` module with the following functions ```elixir defmodule AppendOnly do def insert_logic(changeset) do ... def update_logic(changeset) do ... def one_logic(struct) do...

@mischa-s nice typo catch 👍 I think you may be on to a potential code smell, nice work Another way of updating a key and throw a an error if...

Hey Nelson, my weekend's going well thanks. I'm actually not using `Elixir` syntax highlighting atm - I'm testing out having minimal plugins atm and seeing how it goes (currently only...

Sounds good 👍 I'd enjoy that. I'll message you on gitter and we can arrange a time

@SimonLab I have `syntax enable` at [the bottom of my `.vimrc`](https://github.com/samhstn/my-config/blob/master/.vimrc#L46) (for more info run: `vim -c "help syntax|only"`). `syntax enable` will use the basic syntax highlighting described in the...

To work for both OSX and linux would be cool! But I don't know how often I would run it on mac - probably not very often. I could see...

I would like to be able to run the script in the following environments: + https://hub.docker.com/_/debian (using `apt` for installing packages) + https://hub.docker.com/_/centos (using `yum` for installing packages) The script...

I was having this error when running elixir tests when my `goon` path was inside my elixir project. Changing: ```bash git clone https://github.com/alco/goon.git && cd goon && go build &&...