Ryan Bigg
Ryan Bigg
With my application here: https://github.com/radar/nf_performance_spree, (checkout to 2def4a0e0dfaa2bfce7003572cbec1a61336bd83) when I attempt to run `cap production puma:start`, I receive this error: ``` cap aborted! undefined local variable or method `puma_socket' for...
I am running this command: ``` bundle exec asciidoctor-epub3 book-highlights.adoc -v -D /Users/ryanbigg/books/rails_book/build/epub -o book.epub -B /Users/ryanbigg/books/rails_book -a generation_date=2020-05-01 -a git_version=f0ebc069d -a pdf-fontsdir=pdf-styles/fonts -a pdf-stylesdir=pdf-styles -a epub3-stylesdir=epub-styles -a pdf-style=book -a...
Hello! I have a Rails application which has some unusual behaviour when paired with dry-core. Here's [the branch](https://github.com/radar/exploding-rails-rom-dry-example-app/tree/dry-core-issue) that replicates the issue. If you clone down this app with this...
Should replace a lot of this code: https://github.com/radar/twist-v2/blob/master/frontend/src/Book/Note/Comments/CommentForm.tsx#L15-L33
If we're using `hanami-router` 2.0.0.alpha3 + `hanami-controller` 2.0.0.alpha1 and attempt to use the syntax as suggested in hanami-controller's README, we see this error: ``` ArgumentError: unknown keyword: :configuration ``` We...
Given that the chapter mentions all the other (beginner-friendly) documentation sources, it would only make sense to also mention Elixir School too.
In Chapter 13, we will show the documentation for `Map.get/2`, which has this title: ```elixir def get(map, key, default \\ nil) ``` The `default \\ nil` syntax is new to...
We should show an example of doing list recursion in a function here, because it is hinted at in Chapter 6. ```elixir defmodule People do def list_names([]), do: :ok def...