#elixir #erlang #compilation #c_language #erlang_nif
Bundlex — compiling c with elixir made easy
https://blog.swmansion.com/bundlex-compiling-c-with-elixir-made-easy-9ac5d7d24da5
Bundlex — compiling c with elixir made easy
https://blog.swmansion.com/bundlex-compiling-c-with-elixir-made-easy-9ac5d7d24da5
Software Mansion
Bundlex — compiling C with Elixir made easy
In this article we describe our solution for effective managing C code in Elixir projects.
#elixir #absinthe #graphql #api #programming
Aliasing fields on ecto associations in absinthe for graphql
https://tech.offgrid-electric.com/aliasing-fields-on-ecto-associations-in-absinthe-for-graphql-abcaad92b9b4
Aliasing fields on ecto associations in absinthe for graphql
https://tech.offgrid-electric.com/aliasing-fields-on-ecto-associations-in-absinthe-for-graphql-abcaad92b9b4
Power the People
Aliasing Fields on Ecto Associations in Absinthe for GraphQL
How do we maintain the consistency of our GraphQL APIs over time, while the underlying data structures change? Let’s take a look!
#elixir #vector #lists #data_structures #erlang
Why doesn’t vector exist in elixir natively?
https://medium.com/@bruteforcecat/why-doesnt-vector-exist-in-elixir-natively-b0aff4b51630
Why doesn’t vector exist in elixir natively?
https://medium.com/@bruteforcecat/why-doesnt-vector-exist-in-elixir-natively-b0aff4b51630
Medium
Why Doesn’t Vector Exist in Elixir Natively?
A Vector(array with adjustable size) is a collection of values indexed by contiguous integers and it is a very commonly used collection…
#elixir #erlang
A brief history of erlang and elixir
https://medium.com/wttj-tech/a-brief-history-of-erlang-and-elixir-e8f166403b5a
A brief history of erlang and elixir
https://medium.com/wttj-tech/a-brief-history-of-erlang-and-elixir-e8f166403b5a
Medium
A brief history of Erlang and Elixir
As a web developer, you run into issues you probably didn’t know had been resolved twenty years ago. Telecommunications and the web worked…
#elixir
Migrations in databases with large amount of data
http://blog.plataformatec.com.br/2019/02/migrations-in-databases-with-large-amount-of-data/
Migrations in databases with large amount of data
http://blog.plataformatec.com.br/2019/02/migrations-in-databases-with-large-amount-of-data/
blog.plataformatec.com.br
Migrations in databases with large amount of data « Plataformatec Blog
There is a discussion that always comes up when dealing with database migrations. Should I use the migrations to also migrate data? I mean, I've already altered
#elixir #ecto #many_to_many
Many to many relationships with ecto
https://medium.com/coletiv-stories/ecto-elixir-many-to-many-relationships-66403933f8c1
Many to many relationships with ecto
https://medium.com/coletiv-stories/ecto-elixir-many-to-many-relationships-66403933f8c1
Medium
Many to many relationships with Ecto
A University of College London study discovered something we all knew: humans are lazy. Meaning that, most of the times, when we have a…
#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?