#ruby #programming #elixir #elixirlang
Avoiding junk-drawer classes in ruby
https://medium.com/@benfindley/https-medium-com-avoiding-junk-drawer-classes-in-ruby-99d8523451f6
Avoiding junk-drawer classes in ruby
https://medium.com/@benfindley/https-medium-com-avoiding-junk-drawer-classes-in-ruby-99d8523451f6
Medium
Avoiding Junk-Drawer Classes in Ruby
Ruby classes bloat over time and become junk-drawers of loosely-related methods…we can avoid it by taking a cue from Elixir
#elixir #httpoison
Download large files with httpoison async requests
https://medium.com/@asusmel/download-large-files-with-httpoison-async-requests-61c24a27021a
Download large files with httpoison async requests
https://medium.com/@asusmel/download-large-files-with-httpoison-async-requests-61c24a27021a
Medium
Download Large Files with HTTPoison Async Requests
With HTTPoison is really easy to do HTTP requests in Elixir. If we need to get the latest BTC-USD exchange rate from the Coinbase API, we just use the HTTPoison.get! passing the url and query…
#elixir #phoenix_framework #plug #upload
Base64-encoded file uploads with phoenix and plug
https://medium.com/@szajbus/base64-encoded-file-uploads-with-phoenix-and-plug-1bfe9d9af97e
Base64-encoded file uploads with phoenix and plug
https://medium.com/@szajbus/base64-encoded-file-uploads-with-phoenix-and-plug-1bfe9d9af97e
Medium
Base64-encoded file uploads with Phoenix and Plug
Base64-encoded files may be a special case in your app, but with little work they can be handled as easily as regular ones uploaded via…
#elixir
Introduction: erlang package manager
https://medium.com/the-complete-guide-to-erlang/introduction-erlang-package-manager-97ac8b1731cf
Introduction: erlang package manager
https://medium.com/the-complete-guide-to-erlang/introduction-erlang-package-manager-97ac8b1731cf
Medium
Introduction: Erlang Package Manager
Hex is a package manager for Erlang. Hex was authored by Eric Meadows-Jönsson and first released December 23, 2013. Hex helps work faster…
#elixir #pattern_matching
The beauty of pattern matching in elixir
https://medium.com/@asusmel/the-beauty-of-pattern-matching-in-elixir-b690a36e19ac
The beauty of pattern matching in elixir
https://medium.com/@asusmel/the-beauty-of-pattern-matching-in-elixir-b690a36e19ac
Medium
The Beauty of Pattern Matching in Elixir
One of the reasons I fell with Elixir is pattern matching and how it can be extensively used all over the code. In this way we bind the variable x to the value 1, using the match operator =, which…
#elixir #clojure #fibonacci #programming #software_development
Clojure vs. elixir, part 2: fibonacci code challenge
https://blog.rentpathcode.com/clojure-vs-elixir-part-2-fibonacci-code-challenge-13f485f48511
Clojure vs. elixir, part 2: fibonacci code challenge
https://blog.rentpathcode.com/clojure-vs-elixir-part-2-fibonacci-code-challenge-13f485f48511
Medium
Clojure vs. Elixir, Part 2: Fibonacci Code Challenge
How do you calculate a Fibonacci number in each language?
#elixir #phoenix #database_migration
The ultimate migration generation checklist
https://medium.com/@tracidini/the-ultimate-migration-generation-checklist-af14b9a080ff
The ultimate migration generation checklist
https://medium.com/@tracidini/the-ultimate-migration-generation-checklist-af14b9a080ff
Medium
The Ultimate Migration Generation Checklist
Maybe it’s a little presumptuous to call this the “ultimate” checklist, but then again, maybe not.
#elixir #ecto #postgresql #ubuntu #default
How validate postgresql credentials in ubuntu or any linux machines?
https://medium.com/@byteshiva/how-validate-postgresql-credentials-in-ubuntu-or-any-linux-machines-478c438b43fe
How validate postgresql credentials in ubuntu or any linux machines?
https://medium.com/@byteshiva/how-validate-postgresql-credentials-in-ubuntu-or-any-linux-machines-478c438b43fe
Medium
How validate postgresql credentials in ubuntu or any linux machines?
I had issues while trying to create databases using postgres db default users in linux environment.
#elixir #coding #programming #web_development
Track-switching in a large elixir web application
https://medium.com/9elements/track-switching-in-a-large-elixir-web-application-31522d5ac457
Track-switching in a large elixir web application
https://medium.com/9elements/track-switching-in-a-large-elixir-web-application-31522d5ac457
Medium
Track-switching in a large Elixir web application
LARGE, CONTINUAL CHANGES MADE POSSIBLE BY USING A FEATURE TOGGLE
#elixir #elm #book
Elixir and elm learning log. reading "elixir and elm tutorial book" part 2.
https://dev.to/antonrich/elixir-and-elm-learning-log-reading-elixir-and-elm-tutorial-book-part-2-5ggc
Elixir and elm learning log. reading "elixir and elm tutorial book" part 2.
https://dev.to/antonrich/elixir-and-elm-learning-log-reading-elixir-and-elm-tutorial-book-part-2-5ggc
The DEV Community
Elixir and Elm learning log. Reading "Elixir and Elm tutorial book" part 2.
2019, 4th February
22:22
When I returned back to the book I haven't started wr...
22:22
When I returned back to the book I haven't started wr...
#internships #web_development #tech #careers #elixir
How to get a summer internship with abletech
https://stories.abletech.nz/how-to-get-a-summer-internship-with-abletech-8c52c1e531e6
How to get a summer internship with abletech
https://stories.abletech.nz/how-to-get-a-summer-internship-with-abletech-8c52c1e531e6
Abletech.nz
How to get a Summer Internship with Abletech
Join our team over summer to experience working as a developer on real projects
#elixir
Keep your readme install instructions up to date
https://dockyard.com/blog/2019/02/22/keep-your-readme-install-instructions-up-to-date
Keep your readme install instructions up to date
https://dockyard.com/blog/2019/02/22/keep-your-readme-install-instructions-up-to-date
DockYard
Keep Your README Install Instructions Up To Date
A simple unit test ensures compatibility between your Elixir app's current version and the version constraint in your README's installation instructions.
#elixir #sockets #genserver
Elixir socket like genserver
https://medium.com/@mrwolf85/elixir-socket-like-genserver-7fadf8ec53b3
Elixir socket like genserver
https://medium.com/@mrwolf85/elixir-socket-like-genserver-7fadf8ec53b3
Medium
Elixir socket like GenServer
In this story I will show you an implementation of socket server through :gen_tcp. Not always that is the right way to implement a socket…
#graphql #absinthe #elixir
Graphql with absinthe: how to map data to different structures
https://dev.to/revent/graphql-with-absinthe-how-to-map-data-to-different-structures-5897
Graphql with absinthe: how to map data to different structures
https://dev.to/revent/graphql-with-absinthe-how-to-map-data-to-different-structures-5897
The DEV Community
GraphQl with absinthe: How to map data to different structures
After starting using graphql with absinthe and discovering some gotchas everyth...