Papers We Love - Elixir Edition
Elixir is a modern programming language built for concurrency, robustness, and maintainability. Although the Elixir team comes from “industry” backgrounds, the history of Elixir is full of cases where the team has reached for existing research in order to solve problems arising with the language. For example, we based our implementation of a code formatter on a series of papers on pretty printing and formatting code. In this talk, I’d like to go share our learnings and experiences as a bunch of industry folks getting help from academia to approach and tackle real-world problems and come up with real-world solutions.
Outline/Structure of the Talk
I'll talk about different papers that heavily influenced the design and implementation of parts of the Elixir programming language.
Learning Outcome
Show attendees how we practically used existing research to avoid having to reinvent the wheel when working on some areas of Elixir.
Target Audience
Any software developer
Prerequisites for Attendees
Not really any.
Video
schedule Submitted 3 years ago
People who liked this proposal, also liked:
-
keyboard_arrow_down
Andrea Leopardi - BEAM Architecture Handbook
45 Mins
Talk
Intermediate
If you are writing a stateless web application backed up by a database, there is a good chance Elixir is a great fit. However, this is not where it shines. In this talk, we will discuss how to architect Elixir applications in order to leverage the features of the language and of its runtime.
We will look at this both from a lower level, talking about the architecture of processes inside an Elixir application, as well as from a higher perspective of writing Elixir services and architecting systems to play to Elixir's strengths. We will see practical use cases and discuss design patterns. -
keyboard_arrow_down
Andrea Leopardi - Building a real-time, reliable, resilient web application in one day with Elixir and Phoenix
480 Mins
Workshop
Beginner
We'll explore how to built connected, real-time web applications using Elixir and the Phoenix framework.
- Look at the basics of Elixir, or rather the things we need to dive into the workshop
- Get started with the basics of Phoenix and how to build simple HTML web applications with it
- Introduce channels and learn how to use them in order to communicate with clients in real time
- Talk about distribution and how to work with Phoenix on multiple servers
- Talk about LiveView and learn how to update data on a page from the server without any JavaScript
-
keyboard_arrow_down
Karthik Venkateswaran - Building a simple GraphQL client in Elm for Elm
45 Mins
Talk
Intermediate
Elm is a functional programming language for creating web applications. Elm is commonly known for its static type checking abilities and Elm architecture (out of many other amazing things) which is a simple pattern for architecting webapps.
GraphQL is a query language spec for APIs defined by Facebook. It has changed the dynamics of front-end development with an array of powerful features. One such feature is declarative data fetching where you define what you would like to fetch and server responds with the data in the same format it is requested.
In this talk, we will look at
- Sneak peek into Elm Type System
- What is GraphQL and benefits of it over other data fetching methods.
- Demo on how to write queries without custom DSL
- Writing types to make the above process little neat and fun