Geoffrey (“Geo”) has been breaking computers since he tinkered around on his family’s 286 in the 1980s. He’s developed software professionally in many languages over the years (PHP, Perl, Javascript, Ruby, Elixir) but Elixir is his favorite by far. By day, he’s a principal developer at Symbolic.ai marrying Elixir and AI. By night, he likes to dabble in various hobbies including sim racing, modular synthesizers, embedded hardware, music, and hanging out with his family. If there’s something new to learn, he’s probably interested!
On top of that he’s the author of Phoenix in Action (published by Manning Publications), released Build It With Phoenix (a video course on Elixir and Phoenix at https://builditwithphoenix.com), and a speaker at many conferences (including 4 previous ElixirConfs and a Lonestar ElixirConf).
At the lowest level of every computer, the machine is controlled by 1s and 0s—also known as bits. When you compile your Elixir program, it is also compiled down to 1s and 0s. While the vast majority of us never need to know or care about where each 1 or 0 is used, Elixir has some amazing tools to help us work with those bits when we need to harness their power.
In this intermediate-level talk, we will do some deep dives into all the powerful ways Elixir helps us work with bits—1s and 0s. Learn to leverage the <<>>
syntax for pattern matching bitstrings, use bitwise operations with the Bitwise module, and work with the :binary module for performance-critical operations. Through live coding demonstrations, we’ll tackle some real-world examples including (but not limited to):
You’ll walk out with practical knowledge of when and how to use Elixir’s binary manipulation tools, enabling you to tackle new and unexpected challenges at the lowest levels of computing while maintaining the expressiveness and reliability that make Elixir great.
Key Takeaways:
Some of these can be added to or reduced based on whether it is a 20 or 40 minute talk.
Target Audience: