Maru - Elixir RESTful Framework
Maru v0.11.0 has been released. https://github.com/elixir-maru/maru/blob/master/CHANGELOG.md
Video & Slides: Elixir & Phoenix – fast, concurrent and explicit
The video of the talk I gave at Rubyconf Portugal is online along with the slides. It’s a look at Elixir & Phoenix focusing on the explicit part of the title. Namely, how do Elixir and Phoenix make my programming life better apart from just raw speed? The talk is aimed at people not yet too familiar with Elixir & Phoenix and should serve as a good introduction, especially for ruby folks.
Sky - Library with utilities for transforming functions
Sky is a library that exposes functions, macros and operators for dealing with functions.
It is common in elixir to pipe data through functions, and since functions are also data, why not extending the idea?
How to Capture All Errors Returned by a Function Call in Elixir
Error propagation in Elixir follows a different logic from that of mainstream languages. Here’s a blog post showing you how to capture all errors in an Elixir application.
Find out which versions of your elixir libraries people depend upon
I just shipped a feature on https://libraries.io to help library maintainers find out which versions people currently depend on: https://libraries.io/hex/poison/usage
Using Apollo Client with Elixir's Absinthe
Check out how to use the Apollo #GraphQL client in conjunction with Elixir’s Absinthe library. http://www.east5th.co/blog/2016/11/21/using-apollo-client-with-elixirs-absinthe/
Binary data over Phoenix sockets
How to send raw binary data through channels in the Phoenix framework using the MessagePack format to deliver the payload.
https://nerds.stoiximan.gr/2016/11/23/binary-data-over-phoenix-sockets/
Building Widgets for Kitto
The next post in my series on building Kitto dashboard is up. This time on building widgets to display data in your dashboards.
Elixir, Ruby, don’t fight. Talk.
Series of posts, how to talk from elixir to ruby, and vice versa.
Part one: Export / Erlport
https://blog.fazibear.me/elixir-ruby-dont-fight-talk-d83d5abc8898#.kuvsnpkeq
Real Responses from Mock Modules
Follow up to my last post, showing how to use the mock HTTP module in testing. https://medium.com/perplexinomicon-of-philosodad/real-responses-from-mock-modules-56709b536261#.3j0ssrpro
Morphix - A couple of useful utility methods for maps
Morphix 0.0.2 - now handles nested lists when doing a deep atomization of keys in maps.
Elixir Telegram Bot Boilerplate
A simple boilerplate that handles boring stuff when developing bots for telegram like pattern matching commands and pattern matching messages to find where it’s chat ID should be in the map so you can reply.
LodestonerEx: A Library for Parsing Lodestone Profiles (FFXIV)
Final Fantasy XIV is an MMORPG that allows you to look up information on characters and Free Companies via a website. They do not provide an API for this information, so I whipped up this library to parse relevant character and FC statistics for another in progress project. (Ab)uses Floki to rummage through the HTML pages.
Writing Jobs for Kitto
In this post, I talk about the first step to building your Kitto based dashboard: writing jobs to get data. Throughout the post we build a job to pull in information from JIRA and display it in a friendly format.