#elixirtips search results
Trying to update a function in your #elixirlang project? try `mix xref` to find all the places that it's used #myelixirstatus #elixirtips
Tip of the Week #TipOfTheWeek #ElixirTips #ElixirRealEstate #WeeklyTip #ProTip #LifeHack #AdviceOfTheWeek #QuickTip #WeeklyAdvice #TopTip #SmartTips #ExpertTip #TipForYou #RealEstateAdvice #RealEstateExpert #SmartRealEstate #RealtorTips #RealEstateHelp
🚨 Developer Alert! 🚨 Michael, founder of @paraxialio, is here to discuss a critical Elixir security tip. Discover why Erlang's binary to term could be your code's hidden enemy and the safer alternative you should use. Don't risk your app's security! #ElixirLang #ElixirTips
#elixirtips Elixir text types pack up unicode integers (code points) two ways: iex> ?a 97 iex> <<97, 98, 99>> "abc" iex> [97, 98, 99] 'abc' Charlists ARE lists of integers. Strings ARE binaries, continuous bytes in memory. Charlists are Lists, linked lists. #myelixirstatus
July Elixir Tip 15: Use Keyword.get to have easy keyword options for functions. This is a common pattern I use for content-helpers. #myelixirstatus #elixirlang #elixirtips
(ignore if you're not interested in Phoenix LiveView) I find myself re-using the same "copy to clipboard" logic across my liveview projects. So I wrote a quick gist for how I do it. It's simple + interactive + works across browsers. #elixirtips charlieholtz.com/copy
🚀 #ElixirEnthusiasts! Experienced dev @PJUllrich shares eye-opening tips to navigate Elixir with confidence! 🌟💡 Discover mindset shifts & strategies to elevate your skills. 📈🔥 Must-watch for all levels! 👀 #elixirtips #developerinsights #MyElixirStatus
Cuida tu piel! Pasos: Limpia, exfolia, hidrata y protege del sol. #elixirdetox #promotinghealthyliving #elixirtips
#ElixirTips La moringa es ideal en jugos, aderezos, ensaladas o espolvoreada en sopas. #superfoods Elixir Juice House
#ElixirTips Ash Framework
Mainly learning the Ash way vs the Ecto's. Defining resource actions and domain code interfaces with arguments is significantly different from writing normal functions. However, the validations and changes feel much easier once you understand them. The best part is conditional…
Level up your Phoenix skills! 🚀 Use Elixir's built-in concurrency to write parallel tasks, and don't forget to handle errors with Plug's catch-all middleware. Your code will thank you! 💻" #PhoenixCoding #ElixirTips
Is there any documentation that collects all these tips? #ElixirTips #MyElixirStatus
#ElixirTips string diff
If I want to generate a diff between two string in Elixir is a good lib for that? #myelixirstatus
Is there was an Elixir forum topic for Elixir TIL and solutions like this? Instead of posting questions, we would post the solutions we found.
1/2 #elixirtips reducers. Reducers take an accumulator and x, and return another accumulator. Enum.reduce takes a reducer function that specifies the acc *second*. My advice? In modules, place the acc *first* for better piping and use an anon fn to flip args. #myelixirstatus
When writing @elixirphoenix LiveView apps, make sure your forms have a `phx-change` handler so when your LiveView crashes or reconnects the form state is not lost. This is especially needed for forms with long text areas. #elixirtips #myelixirstatus
#elixirtips Sometimes a tuple is a better map key. Examples: - a cache key of {item.id, item.updated_at} => item, ... - a game token {x, y} => :black_queen, ... - a course catalog {:elixir, :basics} => lesson, ... Works great. #myelixirstatus
Color formatting string diffs. #ElixirTips
Holy shit that was easy List.myers_difference(old, new, &Kernel.==/2)
Level up your Phoenix skills! 🚀 Use Elixir's built-in concurrency to write parallel tasks, and don't forget to handle errors with Plug's catch-all middleware. Your code will thank you! 💻" #PhoenixCoding #ElixirTips
The safe version Plug.Crypto non_executable_binary_to_term hexdocs.pm/plug_crypto/Pl… #ElixirTips
#ElixirTips Ash Framework
Mainly learning the Ash way vs the Ecto's. Defining resource actions and domain code interfaces with arguments is significantly different from writing normal functions. However, the validations and changes feel much easier once you understand them. The best part is conditional…
This was a lot harder than I think it should have been in Phoenix LiveView. I needed a global event handler (outside any specific LiveView) because all the action happens in the app template and needs to work along with every LiveView. I couldn’t use live_render because I need…
Using the new Erlang 27 :json module: Encode: :json.encode(%{test: "bananas"}) |> List.to_string() Decode: :json.decode(~s({"test": "bananas"})) @elixirlang #elixirtips @elixirstatus
Color formatting string diffs. #ElixirTips
Holy shit that was easy List.myers_difference(old, new, &Kernel.==/2)
Is there was an Elixir forum topic for Elixir TIL and solutions like this? Instead of posting questions, we would post the solutions we found.
#ElixirTips string diff
If I want to generate a diff between two string in Elixir is a good lib for that? #myelixirstatus
Is there a forum or doc that collects advice from experienced Elixir engineers? This gets lost on Twitter or I would miss it if I didn’t check Twitter regularly. It’s more #ElixirAdvice than #ElixirTips
Biggest misconception about @elixirlang: "it is slow in micro scale but fast in macro scale". Elixir is actually quite fast in the micro scale. There are *specific tasks and algorithms* that you may have trouble optimizing in the way you could in a mutable language. However, 👇🏻
🚀 #ElixirEnthusiasts! Experienced dev @PJUllrich shares eye-opening tips to navigate Elixir with confidence! 🌟💡 Discover mindset shifts & strategies to elevate your skills. 📈🔥 Must-watch for all levels! 👀 #elixirtips #developerinsights #MyElixirStatus
Is there any documentation that collects all these tips? #ElixirTips #MyElixirStatus
🚨 Developer Alert! 🚨 Michael, founder of @paraxialio, is here to discuss a critical Elixir security tip. Discover why Erlang's binary to term could be your code's hidden enemy and the safer alternative you should use. Don't risk your app's security! #ElixirLang #ElixirTips
(ignore if you're not interested in Phoenix LiveView) I find myself re-using the same "copy to clipboard" logic across my liveview projects. So I wrote a quick gist for how I do it. It's simple + interactive + works across browsers. #elixirtips charlieholtz.com/copy
Very in-depth article on string ilike and similarity searches using Ecto and Postgresql #elixirtips #elixir @elixirstatus @elixirlang peterullrich.com/efficient-name…
When writing @elixirphoenix LiveView apps, make sure your forms have a `phx-change` handler so when your LiveView crashes or reconnects the form state is not lost. This is especially needed for forms with long text areas. #elixirtips #myelixirstatus
July Elixir Tip 15: Use Keyword.get to have easy keyword options for functions. This is a common pattern I use for content-helpers. #myelixirstatus #elixirlang #elixirtips
#elixirtips Elixir text types pack up unicode integers (code points) two ways: iex> ?a 97 iex> <<97, 98, 99>> "abc" iex> [97, 98, 99] 'abc' Charlists ARE lists of integers. Strings ARE binaries, continuous bytes in memory. Charlists are Lists, linked lists. #myelixirstatus
#elixirtips Elixir text types pack up unicode integers (code points) two ways: iex> ?a 97 iex> <<97, 98, 99>> "abc" iex> [97, 98, 99] 'abc' Charlists ARE lists of integers. Strings ARE binaries, continuous bytes in memory. Charlists are Lists, linked lists. #myelixirstatus
Trying to update a function in your #elixirlang project? try `mix xref` to find all the places that it's used #myelixirstatus #elixirtips
Tip of the Week #TipOfTheWeek #ElixirTips #ElixirRealEstate #WeeklyTip #ProTip #LifeHack #AdviceOfTheWeek #QuickTip #WeeklyAdvice #TopTip #SmartTips #ExpertTip #TipForYou #RealEstateAdvice #RealEstateExpert #SmartRealEstate #RealtorTips #RealEstateHelp
#elixirtips Elixir text types pack up unicode integers (code points) two ways: iex> ?a 97 iex> <<97, 98, 99>> "abc" iex> [97, 98, 99] 'abc' Charlists ARE lists of integers. Strings ARE binaries, continuous bytes in memory. Charlists are Lists, linked lists. #myelixirstatus
#ElixirTips La moringa es ideal en jugos, aderezos, ensaladas o espolvoreada en sopas. #superfoods Elixir Juice House
Cuida tu piel! Pasos: Limpia, exfolia, hidrata y protege del sol. #elixirdetox #promotinghealthyliving #elixirtips
July Elixir Tip 15: Use Keyword.get to have easy keyword options for functions. This is a common pattern I use for content-helpers. #myelixirstatus #elixirlang #elixirtips
Something went wrong.
Something went wrong.
United States Trends
- 1. #WWERaw 74.2K posts
- 2. Moe Odum N/A
- 3. Brock 40.1K posts
- 4. Bryce 21K posts
- 5. Panthers 37.5K posts
- 6. Finch 13.9K posts
- 7. Timberwolves 3,782 posts
- 8. Keegan Murray 1,448 posts
- 9. Gonzaga 4,013 posts
- 10. 49ers 41.7K posts
- 11. Canales 13.3K posts
- 12. #GMMTV2026 105K posts
- 13. TOP CALL 8,914 posts
- 14. Niners 5,865 posts
- 15. Penta 10.6K posts
- 16. Malik Monk N/A
- 17. #FTTB 5,872 posts
- 18. Alan Dershowitz 2,425 posts
- 19. Logan Cooley 1,167 posts
- 20. AI Alert 7,654 posts