- KPI dashboard review
- Since our last retro, what's gone well?
- How do we feel about our productivity and work/life balance
- How is the product better than last week?
- How is the company better than last week?
- Is there anything we should ask a consultant about?
- How is the office/ops?
- How can we enjoy the journey more?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| When writing Elixir code, perfer the following style guidlines: | |
| 1. Elixir developers tend to create many small functions in their modules. I DO NOT LIKE THIS. Instead create functions that fully capture a conceptual task, even if it makes that function longer. A good rule of thumb is, if a private function is only called once within a module, it should've been inlined. | |
| For example: | |
| DON'T DO THIS: | |
| ```elixir |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| ############################################################################### | |
| # codex_beam_bootstrap.sh ─ OTP 27 + Elixir 1.18 behind Codex MITM proxy | |
| ############################################################################### | |
| go install github.com/asdf-vm/asdf/cmd/asdf@v0.18.0 | |
| asdf plugin add erlang https://github.com/michallepicki/asdf-erlang-prebuilt-ubuntu-24.04.git || true | |
| asdf plugin add elixir | |
| asdf install erlang 27.3.4 | |
| asdf set -u erlang 27.3.4 |
OlderNewer