curriculum icon indicating copy to clipboard operation
curriculum copied to clipboard

Results 71 curriculum issues
Sort by recently updated
recently updated
newest added

![image](https://github.com/DockYard-Academy/curriculum/assets/14877564/d835737f-d280-4c70-8877-80a551e525c8)

can be based on a few articles I've written such as: https://brooklinmyers.medium.com/how-to-build-maintainable-test-factories-in-elixir-and-phoenix-84312998f7e7

![image](https://github.com/DockYard-Academy/curriculum/assets/14877564/ce2df8b0-0482-4916-bdc9-d155604ce697)

![image](https://github.com/DockYard-Academy/curriculum/assets/14877564/bc157335-e653-44d3-91e3-49639f816f6f)

![image](https://github.com/DockYard-Academy/curriculum/assets/14877564/44b8f6bd-7681-44a7-b95c-7b0e9aa5602c)

![image](https://github.com/DockYard-Academy/curriculum/assets/14877564/532ac56b-491b-4d10-aa39-0fed35c0fe39)

:normal reason does not actually kill the process. ![image](https://github.com/DockYard-Academy/curriculum/assets/14877564/3e1fe9f0-41df-4845-bdb2-03fe1be9f837)

![image](https://github.com/DockYard-Academy/curriculum/assets/14877564/4c41a465-5272-4fed-a397-b577ffdfbd6c) default config is confusing. We should have the `Stack` process be a named process. Write a test suite for both the default state, and initializing state. Show more code...

**Describe the issue** Timer.seconds should be Timer.seconds.get_time per requirements ```elixir {:ok, pid} = Timer.start_link([]) Timer.get_time(pid) 0 Process.sleep(1500) Timer.seconds(pid) 1 ``` --- @moduledoc """ iex> {:ok, pid} = Timer.start_link([]) iex> Timer.seconds(pid)...