PhoenixExamples's profile picture. Content is moving to @elixirfocus -- sorry for the confusion.

Phoenix by Example, has moved to @elixirfocus

@PhoenixExamples

Content is moving to @elixirfocus -- sorry for the confusion.

Phoenix by Example, has moved to @elixirfocus reposted

🔗 Phoenix Diff: A phoenix application to show the changes between different versions of generated phoenix apps, which makes it easy to upgrade an existing app with latest changes. Very useful during release season. phoenixdiff.org


Phoenix by Example, has moved to @elixirfocus reposted

🍿 The ElixirConf EU recordings are starting to show up. I recommend watching some over lunches this week. youtube.com/playlist?list=…


Phoenix by Example, has moved to @elixirfocus reposted

Elixir Terminology: Parameters vs Attributes When we say "parameters" we are usually talking about data coming into the system from external actors; When we say "attributes" we are usually talking about internal Elixir structures. #myelixirstatus elixirfocus.com/posts/paramete…


Phoenix by Example, has moved to @elixirfocus reposted

✏️ Using Schemaless Changesets to Separate Concerns Between the Web Context and the Business Context If you find yourself making multiple flavors of changeset for your business nouns and various web forms – it might be time to rethink your approach. elixirfocus.com/posts/ecto-sch…


Phoenix by Example, has moved to @elixirfocus reposted

Retro Taxi: September 2021 Update A few months ago I kicked off the next sample project, a team retrospective board built using Phoenix LiveView called RetroTaxi. Today I’ll share how it has been coming along. elixirfocus.com/posts/retro-ta…


Phoenix by Example, has moved to @elixirfocus reposted

💰 September 2021 Elixir Consulting Availability My summer vacation is coming to a close and I am once again looking for my next consulting project. mikezornek.com/posts/2021/8/c…


Phoenix by Example, has moved to @elixirfocus reposted

✏️ Resources and Suggestions to Find Elixir-based Employment The following is a collection of resources and suggestions for people looking to acquire full time or project specific employment writing Elixir. #myelixirstatus elixirfocus.com/posts/elixir-j…


Phoenix by Example, has moved to @elixirfocus reposted

If you want to be able to copy/paste a complex multiline block of code into an iex session, consider wrapping it in an anonymous function and then executing that function on the final line. #myelixirstatus #elixir

ElixirFocus's tweet image. If you want to be able to copy/paste a complex multiline block of code into an iex session, consider wrapping it in an anonymous function and then executing that function on the final line. #myelixirstatus #elixir

Phoenix by Example, has moved to @elixirfocus reposted

Improve the Clarity of Your Elixir Code Through Expressive and Consistent Language The following is a collection of terms I try to be mindful of in my own work. Hopefully this list helps inspire some of your own terminology choices. elixirfocus.com/posts/programm…


Phoenix by Example, has moved to @elixirfocus reposted

Understanding when to use String-based Maps vs Atom-based Maps Why the lack of consistency? Why don’t people just use String-based Maps or just use Atom-based Maps? Why do all these Phoenix tutorials jump from one to the other? elixirfocus.com/posts/string-v…


Phoenix by Example, has moved to @elixirfocus reposted

⚗️ Elixir Tip #99 - Working with nested maps ⚗️ Dealing with nested maps can sometimes be challenging. Luckily the Elixir standard lib provides some very useful out of the box functions just for this purpose! #myelixirstatus #elixirlang #elixir #erlang

akoutmos's tweet image. ⚗️ Elixir Tip #99 - Working with nested maps ⚗️

Dealing with nested maps can sometimes be challenging. Luckily the Elixir standard lib provides some very useful out of the box functions just for this purpose!

#myelixirstatus #elixirlang #elixir #erlang

Phoenix by Example, has moved to @elixirfocus reposted

⚗️ Elixir Tip #97 - Enum.with_index⚗️ Often times when iterating over an enumerable, it is useful to have the index of the item as well. Particularly useful when outputting lists in LiveView 😉. #myelixirstatus #elixirlang #elixir #erlang

akoutmos's tweet image. ⚗️ Elixir Tip #97 - Enum.with_index⚗️

Often times when iterating over an enumerable, it is useful to have the index of the item as well. Particularly useful when outputting lists in LiveView 😉.

#myelixirstatus #elixirlang #elixir #erlang

To assert redirects (and even dynamic redirects) check out `redirected_params/1` and `redirected_to/2` of `Phoenix.ConnTest`. hexdocs.pm/phoenix/Phoeni… Used them just now in an upcoming new sample app. #myelixirstatus #elixirlang #phoenixframework

PhoenixExamples's tweet image. To assert redirects (and even dynamic redirects) check out `redirected_params/1` and `redirected_to/2` of `Phoenix.ConnTest`.

hexdocs.pm/phoenix/Phoeni…

Used them just now in an upcoming new sample app.

#myelixirstatus #elixirlang #phoenixframework

If you are using @tailwindcss inside of an @elixirphoenix app, you may notice the live reload iframe encroaching into your page layout. Check out this quick fix offered in the GitHub issue discussing the issue. github.com/phoenixframewo…

PhoenixExamples's tweet image. If you are using @tailwindcss inside of an @elixirphoenix app, you may notice the live reload iframe encroaching into your page layout. Check out this quick fix offered in the GitHub issue discussing the issue. github.com/phoenixframewo…
PhoenixExamples's tweet image. If you are using @tailwindcss inside of an @elixirphoenix app, you may notice the live reload iframe encroaching into your page layout. Check out this quick fix offered in the GitHub issue discussing the issue. github.com/phoenixframewo…

If you are looking for a visual way to brainstorm through interface requirements I highly recommend the breadboarding technique of Shape Up. I have found it very useful in my recent work. basecamp.com/shapeup/1.3-ch…

PhoenixExamples's tweet image. If you are looking for a visual way to brainstorm through interface requirements I highly recommend the breadboarding technique of Shape Up. I have found it very useful in my recent work.

basecamp.com/shapeup/1.3-ch…

📢 Phoenix by Example is all about crafting educational content extracted from open source example projects. Today I am kicking off my latest example project, RetroTaxi! phoenixbyexample.com/posts/retro-ta…

PhoenixExamples's tweet image. 📢 Phoenix by Example is all about crafting educational content extracted from open source example projects. Today I am kicking off my latest example project, RetroTaxi!

phoenixbyexample.com/posts/retro-ta…

Phoenix by Example, has moved to @elixirfocus reposted

⚗️ Elixir Tip 73 - Tracing GenServer execution⚗️ The BEAM has some of the best observability tools built right into the runtime. Right down to tracing individual GenServer process execution flow! #myelixirstatus #elixirlang #elixir #erlang

akoutmos's tweet image. ⚗️ Elixir Tip 73 - Tracing GenServer execution⚗️

The BEAM has some of the best observability tools built right into the runtime. Right down to tracing individual GenServer process execution flow!

#myelixirstatus #elixirlang #elixir #erlang

Phoenix by Example, has moved to @elixirfocus reposted

⚗️ Elixir Tip 74 - ExUnit test coverage⚗️ ExUnit is packed with plenty of great developer experience related goodies. One of my favorites is the built in coverage reporter! #myelixirstatus #elixirlang #elixir #erlang

akoutmos's tweet image. ⚗️ Elixir Tip 74 - ExUnit test coverage⚗️

ExUnit is packed with plenty of great developer experience related goodies. One of my favorites is the built in coverage reporter!

#myelixirstatus #elixirlang #elixir #erlang

Phoenix by Example, has moved to @elixirfocus reposted

📚 We've done book clubs before inside of @PhillyElixir to great success and I'm excited to see the possibility of something larger scale in the Elixir community kickoff. I will do my best to attend.


Loading...

Something went wrong.


Something went wrong.