SlideShare a Scribd company logo
1 of 14
Download to read offline
Quantum Fax Machine
QFM010: Elixir Reading List March
2024
quantumfaxmachine.com
1
QFM010: Elixir Reading List March
2024
Here is everything I found interesting about Elixir Programming Ecosytem during March 2024.
The March Edition Quantum Fax Machine's Elixir Reading List starts with a discussion on the Doctest
Formatter plugin for enhancing code readability, then dives into practical solutions for developers, such
as managing environment-specific configurations efficiently without external dependencies as
discussed in Simple .env-like configuration in Elixir.
We then look at Elixir's GenServer in What is Elixir GenServer?, reflecting on the language's capabilities
handling complex asynchronous operations. We also take a look at architectural principles, comparing
the Phoenix and Rails frameworks in "Phoenix is not your application (unlike Rails)".
We also look at error handling within Elixir projects as well as integration with large language models
(LLMs) through the thmsmlr / instructor_ex library, which makes generating regular and
programmatically workable output from LLMs much easier.
Security practices and tools like Semgrep are discussed, offering insights into protecting Elixir code,
highlighted by a Fireside chat with Holden Oullette on secure coding practices. We take a quick look at
Credo for static analysis, linting, and code quality improvements in "Credo rules you’ve been sleeping on".
Among other links, this month's collection also looks at a very practical guide for integrating GraphQL
with the Phoenix Framework via Absinthe.
As always, the Quantum Fax Machine Propellor Hat Key will guide your browsing. Enjoy!
Key:
: Mentions Elixir and related technologies
: Talks about the Elixir ecosystem in real-world use cases
: Talks about technical details of Elixir ecosystem components
: Using and working with Elixir ecosystem technologies in software
: Programming new Elixir technology concepts and implementations
Source: Photo by Michael Dziedzic on Unsplash
2
How to format Elixir doctests?: The article
introduces "Doctest Formatter," a plugin
created to format Elixir doctests within
documentation, making it easier to maintain
clean and readable code examples. It details
installation instructions, usage for
formatting .ex files and doctests, and mentions
the plugin's compatibility requirements with
Elixir version 1.13.2 or higher. The formatter
also standardizes the appearance of iex>
prompts in doctests, adhering to best practices
recommended in Elixir documentation.
#Elixir #DoctestFormatter
#CodeFormatting #ElixirProgramming
#DevelopmentTools
3
Simple .env-like configuration in Elixir: The
article outlines a method for managing
environment-specific configurations in
Elixir projects without external
dependencies, by leveraging plain Elixir
scripts (.exs files) for setting environment
variables, thereby simplifying the
development and testing process.
#Elixir #EnvConfig
#DevelopmentBestPractices
#ElixirProgramming
#NoExternalDependencies
4
What is Elixir GenServer?: This article
describes Elixir's GenServer as a behavior
module for building concurrent and stateful
processes in a more idiomatic and user-
friendly way than its Erlang counterpart. It
provides an overview of implementing
GenServer with practical examples and
discusses when to use or not use it for
specific applications.
#Elixir #GenServer
`#ConcurrentProgramming #ErlangOTP
#FunctionalProgramming
5
Phoenix is not your application (unlike
Rails): The article contrasts the
architectural philosophies of Ruby on Rails
and Phoenix, highlighting that while Rails
often becomes tightly coupled with
applications, Phoenix encourages a clear
separation between the web layer and the
core business logic. This distinction allows
developers to build more modular,
maintainable applications with Phoenix.
#WebDevelopment #PhoenixFramework
#RubyOnRails
#SoftwareArchitecture #ElixirLang
6
Safer Error Systems in Elixir: This article
discusses improving error handling in Elixir
by merging the clarity of strings with the
simplicity of atoms for more manageable
and insightful errors, and introduces the
ErrorMessage library to standardise and
simplify error representation, making
debugging and user experience better.
#ElixirLang #ErrorHandling
#CodingBestPractices
#ErrorMessageLibrary
#SoftwareDevelopment
7
thmsmlr / instructor_ex: instructor_ex is an
Elixir library designed for structured, Ecto-based
outputs with OpenAI and other open-source large
language models (LLMs), facilitating JSON
mapping to Ecto schemas for more structured
responses than traditional unstructured text
outputs. It highlights ease of use, adaptability to
various models, and potential for automated
prompt retrying upon validation failure. This
library adds a missing layer that makes working
with LLMs much more controllable, robust, and
reliable. Here is a really good video that explains
Instructor in practice: Thomas Millar, Instructor -
The bridge between Elixir and AI.
#Elixir #OpenAI #StructuredData
#LanguageModels #EctoSchema
8
exliris-haystack / Haystack: This is an Elixir
library that offers a simple, extendable full-
text search engine, facilitating the creation
and management of search indexes with
customisable fields and storage, and
enabling easy querying of those indexes.
#Haystack #ElixirLibrary
#FullTextSearch
#SoftwareDevelopment
#TextIndexing
9
How to secure Elixir codebases: Fireside
chat with Holden Oullette: This webinar
features Holden Oullette, a key member of
the Elixir community and maintainer of
Sobelow, discussing secure coding
practices in Elixir, his contributions to
Semgrep for Elixir, and his visions for the
language and community's future.
Semgrep is highlighted as a scalable code
security tool for organizations.
#Elixir #CodingSecurity #Sobelow
#Semgrep #ElixirCommunity
10
Credo rules you’ve been sleeping on: This
article discusses optimising Elixir projects
by adjusting Credo settings for better code
quality, highlighting enabling strict mode,
disabling certain checks like AliasOrder,
and activating others like MixEnv and
PassAsyncInTestCases. It suggests a
balanced approach to using Credo for
linting/static analysis in Phoenix projects.
#Elixir #Credo #CodeQuality
#PhoenixFramework
#SoftwareDevelopment
11
Absinthe with Phoenix Framework - a
guide to properly get started with GraphQL
using Elixir: This article is a comprehensive
tutorial on setting up a GraphQL server
using the Elixir Phoenix Framework with
Absinthe, covering everything from basic
setup and configuration to defining
queries, mutations, and subscriptions. It
assumes basic knowledge of Phoenix and
GraphQL.
#Absinthe #PhoenixFramework
#GraphQL #Elixir #APIDevelopment
12
Implementing Natural Conversational Agents
with Elixir: This article details the author's
efforts to improve a conversational agent
named Nero by implementing an "always
on" recording feature and refining the end-
to-end conversation flow using Elixir,
focusing on natural interaction and reducing
latency for a more seamless user experience.
Part 1 where Sean builds the first version of
his Nero home assistant is here.
#ConversationalAI
#ElixirProgramming #VoiceTech
#NaturalLanguageProcessing
#TechInnovation
13
Thankyou!
hello@matthewsinclair.com
matthewsinclair.com
masto.ai/@matthewsinclair
medium.com/@matthewsinclair
twitter.com/@matthewsinclair
Originally published on
quantumfaxmachine.com
If you’d like to sign up for this content as an
email, click here to join the mailing list.
Image: Photo by Austin Chan on Unsplash
14

More Related Content

Similar to 20240412 QFM010 Elixir Reading List March 2024

CLR_via_CSharp_(Jeffrey_Richter_4th_Edition).pdf
CLR_via_CSharp_(Jeffrey_Richter_4th_Edition).pdfCLR_via_CSharp_(Jeffrey_Richter_4th_Edition).pdf
CLR_via_CSharp_(Jeffrey_Richter_4th_Edition).pdfssuserbe139c
 
Introduction to vb.net
Introduction to vb.netIntroduction to vb.net
Introduction to vb.netsuraj pandey
 
An overview of the architecture of electron.js
An overview of the architecture of electron.jsAn overview of the architecture of electron.js
An overview of the architecture of electron.jsMoon Technolabs Pvt. Ltd.
 
All the amazing features of asp.net core
All the amazing features of asp.net coreAll the amazing features of asp.net core
All the amazing features of asp.net coreGrayCell Technologies
 
Security & fault tolerance in fresco
Security & fault tolerance in frescoSecurity & fault tolerance in fresco
Security & fault tolerance in frescoAmit Lanjewar
 
dotNET frameworks
dotNET frameworksdotNET frameworks
dotNET frameworksnawal saad
 
OOP Comparative Study
OOP Comparative StudyOOP Comparative Study
OOP Comparative StudyDarren Tan
 
#Epicor #ERP 10 Architected for Efficiency
#Epicor #ERP 10 Architected for Efficiency#Epicor #ERP 10 Architected for Efficiency
#Epicor #ERP 10 Architected for EfficiencyIndex InfoTech
 
AbusingExploitingAndPWN-ingWithFirefoxAdd-Ons
AbusingExploitingAndPWN-ingWithFirefoxAdd-OnsAbusingExploitingAndPWN-ingWithFirefoxAdd-Ons
AbusingExploitingAndPWN-ingWithFirefoxAdd-Onsachettih
 
Net Fundamentals
Net FundamentalsNet Fundamentals
Net FundamentalsAli Taki
 
basic of .net programming in computer language
basic of .net programming in computer languagebasic of .net programming in computer language
basic of .net programming in computer languagePGopinath3
 
Epicor 10-architected-for-efficiency-whitepaper
Epicor 10-architected-for-efficiency-whitepaperEpicor 10-architected-for-efficiency-whitepaper
Epicor 10-architected-for-efficiency-whitepaperLe Quoc Vuong
 
Office OpenXML: a technical approach for OOo.
Office OpenXML: a technical approach for OOo.Office OpenXML: a technical approach for OOo.
Office OpenXML: a technical approach for OOo.Alexandro Colorado
 
Introduction Java Web Framework and Web Server.
Introduction Java Web Framework and Web Server.Introduction Java Web Framework and Web Server.
Introduction Java Web Framework and Web Server.suranisaunak
 
Elixir in a nutshell - Ecosystem (session 1)
Elixir in a nutshell - Ecosystem (session 1)Elixir in a nutshell - Ecosystem (session 1)
Elixir in a nutshell - Ecosystem (session 1)Héla Ben Khalfallah
 
Flex and .NET Integration
Flex and .NET IntegrationFlex and .NET Integration
Flex and .NET Integrationicaraion
 

Similar to 20240412 QFM010 Elixir Reading List March 2024 (20)

CLR_via_CSharp_(Jeffrey_Richter_4th_Edition).pdf
CLR_via_CSharp_(Jeffrey_Richter_4th_Edition).pdfCLR_via_CSharp_(Jeffrey_Richter_4th_Edition).pdf
CLR_via_CSharp_(Jeffrey_Richter_4th_Edition).pdf
 
Introduction to vb.net
Introduction to vb.netIntroduction to vb.net
Introduction to vb.net
 
An overview of the architecture of electron.js
An overview of the architecture of electron.jsAn overview of the architecture of electron.js
An overview of the architecture of electron.js
 
All the amazing features of asp.net core
All the amazing features of asp.net coreAll the amazing features of asp.net core
All the amazing features of asp.net core
 
Security & fault tolerance in fresco
Security & fault tolerance in frescoSecurity & fault tolerance in fresco
Security & fault tolerance in fresco
 
dotNET frameworks
dotNET frameworksdotNET frameworks
dotNET frameworks
 
Visual studio
Visual studioVisual studio
Visual studio
 
c#.pptx
c#.pptxc#.pptx
c#.pptx
 
OOP Comparative Study
OOP Comparative StudyOOP Comparative Study
OOP Comparative Study
 
Elixir紹介
Elixir紹介Elixir紹介
Elixir紹介
 
#Epicor #ERP 10 Architected for Efficiency
#Epicor #ERP 10 Architected for Efficiency#Epicor #ERP 10 Architected for Efficiency
#Epicor #ERP 10 Architected for Efficiency
 
AbusingExploitingAndPWN-ingWithFirefoxAdd-Ons
AbusingExploitingAndPWN-ingWithFirefoxAdd-OnsAbusingExploitingAndPWN-ingWithFirefoxAdd-Ons
AbusingExploitingAndPWN-ingWithFirefoxAdd-Ons
 
Net Fundamentals
Net FundamentalsNet Fundamentals
Net Fundamentals
 
basic of .net programming in computer language
basic of .net programming in computer languagebasic of .net programming in computer language
basic of .net programming in computer language
 
Epicor 10-architected-for-efficiency-whitepaper
Epicor 10-architected-for-efficiency-whitepaperEpicor 10-architected-for-efficiency-whitepaper
Epicor 10-architected-for-efficiency-whitepaper
 
dot NET Framework
dot NET Frameworkdot NET Framework
dot NET Framework
 
Office OpenXML: a technical approach for OOo.
Office OpenXML: a technical approach for OOo.Office OpenXML: a technical approach for OOo.
Office OpenXML: a technical approach for OOo.
 
Introduction Java Web Framework and Web Server.
Introduction Java Web Framework and Web Server.Introduction Java Web Framework and Web Server.
Introduction Java Web Framework and Web Server.
 
Elixir in a nutshell - Ecosystem (session 1)
Elixir in a nutshell - Ecosystem (session 1)Elixir in a nutshell - Ecosystem (session 1)
Elixir in a nutshell - Ecosystem (session 1)
 
Flex and .NET Integration
Flex and .NET IntegrationFlex and .NET Integration
Flex and .NET Integration
 

More from Matthew Sinclair

20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
20240507 QFM013 Machine Intelligence Reading List April 2024.pdfMatthew Sinclair
 
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdfMatthew Sinclair
 
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
20240510 QFM016 Irresponsible AI Reading List April 2024.pdfMatthew Sinclair
 
20240413 QFM011 Engineering Leadership Reading List March 2024
20240413 QFM011 Engineering Leadership Reading List March 202420240413 QFM011 Engineering Leadership Reading List March 2024
20240413 QFM011 Engineering Leadership Reading List March 2024Matthew Sinclair
 
20240414 QFM012 Irresponsible AI Reading List March 2024
20240414 QFM012 Irresponsible AI Reading List March 202420240414 QFM012 Irresponsible AI Reading List March 2024
20240414 QFM012 Irresponsible AI Reading List March 2024Matthew Sinclair
 
20240411 QFM009 Machine Intelligence Reading List March 2024
20240411 QFM009 Machine Intelligence Reading List March 202420240411 QFM009 Machine Intelligence Reading List March 2024
20240411 QFM009 Machine Intelligence Reading List March 2024Matthew Sinclair
 
20240302 QFM005 Machine Intelligence Reading List February 2024
20240302 QFM005 Machine Intelligence Reading List February 202420240302 QFM005 Machine Intelligence Reading List February 2024
20240302 QFM005 Machine Intelligence Reading List February 2024Matthew Sinclair
 
20240304 QFM007 Engineering Leadership Reading List February 2024
20240304 QFM007 Engineering Leadership Reading List February 202420240304 QFM007 Engineering Leadership Reading List February 2024
20240304 QFM007 Engineering Leadership Reading List February 2024Matthew Sinclair
 
20240305 QFM008 Irresponsible AI Reading List February 2024
20240305 QFM008 Irresponsible AI Reading List February 202420240305 QFM008 Irresponsible AI Reading List February 2024
20240305 QFM008 Irresponsible AI Reading List February 2024Matthew Sinclair
 
FinovateEurope 2024 Summary Insights Demos
FinovateEurope 2024 Summary Insights DemosFinovateEurope 2024 Summary Insights Demos
FinovateEurope 2024 Summary Insights DemosMatthew Sinclair
 

More from Matthew Sinclair (10)

20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
 
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
 
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
 
20240413 QFM011 Engineering Leadership Reading List March 2024
20240413 QFM011 Engineering Leadership Reading List March 202420240413 QFM011 Engineering Leadership Reading List March 2024
20240413 QFM011 Engineering Leadership Reading List March 2024
 
20240414 QFM012 Irresponsible AI Reading List March 2024
20240414 QFM012 Irresponsible AI Reading List March 202420240414 QFM012 Irresponsible AI Reading List March 2024
20240414 QFM012 Irresponsible AI Reading List March 2024
 
20240411 QFM009 Machine Intelligence Reading List March 2024
20240411 QFM009 Machine Intelligence Reading List March 202420240411 QFM009 Machine Intelligence Reading List March 2024
20240411 QFM009 Machine Intelligence Reading List March 2024
 
20240302 QFM005 Machine Intelligence Reading List February 2024
20240302 QFM005 Machine Intelligence Reading List February 202420240302 QFM005 Machine Intelligence Reading List February 2024
20240302 QFM005 Machine Intelligence Reading List February 2024
 
20240304 QFM007 Engineering Leadership Reading List February 2024
20240304 QFM007 Engineering Leadership Reading List February 202420240304 QFM007 Engineering Leadership Reading List February 2024
20240304 QFM007 Engineering Leadership Reading List February 2024
 
20240305 QFM008 Irresponsible AI Reading List February 2024
20240305 QFM008 Irresponsible AI Reading List February 202420240305 QFM008 Irresponsible AI Reading List February 2024
20240305 QFM008 Irresponsible AI Reading List February 2024
 
FinovateEurope 2024 Summary Insights Demos
FinovateEurope 2024 Summary Insights DemosFinovateEurope 2024 Summary Insights Demos
FinovateEurope 2024 Summary Insights Demos
 

Recently uploaded

UiPath manufacturing technology benefits and AI overview
UiPath manufacturing technology benefits and AI overviewUiPath manufacturing technology benefits and AI overview
UiPath manufacturing technology benefits and AI overviewDianaGray10
 
AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)
AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)
AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)Samir Dash
 
Continuing Bonds Through AI: A Hermeneutic Reflection on Thanabots
Continuing Bonds Through AI: A Hermeneutic Reflection on ThanabotsContinuing Bonds Through AI: A Hermeneutic Reflection on Thanabots
Continuing Bonds Through AI: A Hermeneutic Reflection on ThanabotsLeah Henrickson
 
Tales from a Passkey Provider Progress from Awareness to Implementation.pptx
Tales from a Passkey Provider  Progress from Awareness to Implementation.pptxTales from a Passkey Provider  Progress from Awareness to Implementation.pptx
Tales from a Passkey Provider Progress from Awareness to Implementation.pptxFIDO Alliance
 
Event-Driven Architecture Masterclass: Challenges in Stream Processing
Event-Driven Architecture Masterclass: Challenges in Stream ProcessingEvent-Driven Architecture Masterclass: Challenges in Stream Processing
Event-Driven Architecture Masterclass: Challenges in Stream ProcessingScyllaDB
 
State of the Smart Building Startup Landscape 2024!
State of the Smart Building Startup Landscape 2024!State of the Smart Building Startup Landscape 2024!
State of the Smart Building Startup Landscape 2024!Memoori
 
Introduction to FIDO Authentication and Passkeys.pptx
Introduction to FIDO Authentication and Passkeys.pptxIntroduction to FIDO Authentication and Passkeys.pptx
Introduction to FIDO Authentication and Passkeys.pptxFIDO Alliance
 
CORS (Kitworks Team Study 양다윗 발표자료 240510)
CORS (Kitworks Team Study 양다윗 발표자료 240510)CORS (Kitworks Team Study 양다윗 발표자료 240510)
CORS (Kitworks Team Study 양다윗 발표자료 240510)Wonjun Hwang
 
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...TrustArc
 
Microsoft BitLocker Bypass Attack Method.pdf
Microsoft BitLocker Bypass Attack Method.pdfMicrosoft BitLocker Bypass Attack Method.pdf
Microsoft BitLocker Bypass Attack Method.pdfOverkill Security
 
AI in Action: Real World Use Cases by Anitaraj
AI in Action: Real World Use Cases by AnitarajAI in Action: Real World Use Cases by Anitaraj
AI in Action: Real World Use Cases by AnitarajAnitaRaj43
 
Simplifying Mobile A11y Presentation.pptx
Simplifying Mobile A11y Presentation.pptxSimplifying Mobile A11y Presentation.pptx
Simplifying Mobile A11y Presentation.pptxMarkSteadman7
 
Design and Development of a Provenance Capture Platform for Data Science
Design and Development of a Provenance Capture Platform for Data ScienceDesign and Development of a Provenance Capture Platform for Data Science
Design and Development of a Provenance Capture Platform for Data SciencePaolo Missier
 
WebRTC and SIP not just audio and video @ OpenSIPS 2024
WebRTC and SIP not just audio and video @ OpenSIPS 2024WebRTC and SIP not just audio and video @ OpenSIPS 2024
WebRTC and SIP not just audio and video @ OpenSIPS 2024Lorenzo Miniero
 
Vector Search @ sw2con for slideshare.pptx
Vector Search @ sw2con for slideshare.pptxVector Search @ sw2con for slideshare.pptx
Vector Search @ sw2con for slideshare.pptxjbellis
 
“Iamnobody89757” Understanding the Mysterious of Digital Identity.pdf
“Iamnobody89757” Understanding the Mysterious of Digital Identity.pdf“Iamnobody89757” Understanding the Mysterious of Digital Identity.pdf
“Iamnobody89757” Understanding the Mysterious of Digital Identity.pdfMuhammad Subhan
 
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptx
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptxHarnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptx
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptxFIDO Alliance
 
Introduction to use of FHIR Documents in ABDM
Introduction to use of FHIR Documents in ABDMIntroduction to use of FHIR Documents in ABDM
Introduction to use of FHIR Documents in ABDMKumar Satyam
 
Portal Kombat : extension du réseau de propagande russe
Portal Kombat : extension du réseau de propagande russePortal Kombat : extension du réseau de propagande russe
Portal Kombat : extension du réseau de propagande russe中 央社
 
Navigating the Large Language Model choices_Ravi Daparthi
Navigating the Large Language Model choices_Ravi DaparthiNavigating the Large Language Model choices_Ravi Daparthi
Navigating the Large Language Model choices_Ravi DaparthiRaviKumarDaparthi
 

Recently uploaded (20)

UiPath manufacturing technology benefits and AI overview
UiPath manufacturing technology benefits and AI overviewUiPath manufacturing technology benefits and AI overview
UiPath manufacturing technology benefits and AI overview
 
AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)
AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)
AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)
 
Continuing Bonds Through AI: A Hermeneutic Reflection on Thanabots
Continuing Bonds Through AI: A Hermeneutic Reflection on ThanabotsContinuing Bonds Through AI: A Hermeneutic Reflection on Thanabots
Continuing Bonds Through AI: A Hermeneutic Reflection on Thanabots
 
Tales from a Passkey Provider Progress from Awareness to Implementation.pptx
Tales from a Passkey Provider  Progress from Awareness to Implementation.pptxTales from a Passkey Provider  Progress from Awareness to Implementation.pptx
Tales from a Passkey Provider Progress from Awareness to Implementation.pptx
 
Event-Driven Architecture Masterclass: Challenges in Stream Processing
Event-Driven Architecture Masterclass: Challenges in Stream ProcessingEvent-Driven Architecture Masterclass: Challenges in Stream Processing
Event-Driven Architecture Masterclass: Challenges in Stream Processing
 
State of the Smart Building Startup Landscape 2024!
State of the Smart Building Startup Landscape 2024!State of the Smart Building Startup Landscape 2024!
State of the Smart Building Startup Landscape 2024!
 
Introduction to FIDO Authentication and Passkeys.pptx
Introduction to FIDO Authentication and Passkeys.pptxIntroduction to FIDO Authentication and Passkeys.pptx
Introduction to FIDO Authentication and Passkeys.pptx
 
CORS (Kitworks Team Study 양다윗 발표자료 240510)
CORS (Kitworks Team Study 양다윗 발표자료 240510)CORS (Kitworks Team Study 양다윗 발표자료 240510)
CORS (Kitworks Team Study 양다윗 발표자료 240510)
 
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
 
Microsoft BitLocker Bypass Attack Method.pdf
Microsoft BitLocker Bypass Attack Method.pdfMicrosoft BitLocker Bypass Attack Method.pdf
Microsoft BitLocker Bypass Attack Method.pdf
 
AI in Action: Real World Use Cases by Anitaraj
AI in Action: Real World Use Cases by AnitarajAI in Action: Real World Use Cases by Anitaraj
AI in Action: Real World Use Cases by Anitaraj
 
Simplifying Mobile A11y Presentation.pptx
Simplifying Mobile A11y Presentation.pptxSimplifying Mobile A11y Presentation.pptx
Simplifying Mobile A11y Presentation.pptx
 
Design and Development of a Provenance Capture Platform for Data Science
Design and Development of a Provenance Capture Platform for Data ScienceDesign and Development of a Provenance Capture Platform for Data Science
Design and Development of a Provenance Capture Platform for Data Science
 
WebRTC and SIP not just audio and video @ OpenSIPS 2024
WebRTC and SIP not just audio and video @ OpenSIPS 2024WebRTC and SIP not just audio and video @ OpenSIPS 2024
WebRTC and SIP not just audio and video @ OpenSIPS 2024
 
Vector Search @ sw2con for slideshare.pptx
Vector Search @ sw2con for slideshare.pptxVector Search @ sw2con for slideshare.pptx
Vector Search @ sw2con for slideshare.pptx
 
“Iamnobody89757” Understanding the Mysterious of Digital Identity.pdf
“Iamnobody89757” Understanding the Mysterious of Digital Identity.pdf“Iamnobody89757” Understanding the Mysterious of Digital Identity.pdf
“Iamnobody89757” Understanding the Mysterious of Digital Identity.pdf
 
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptx
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptxHarnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptx
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptx
 
Introduction to use of FHIR Documents in ABDM
Introduction to use of FHIR Documents in ABDMIntroduction to use of FHIR Documents in ABDM
Introduction to use of FHIR Documents in ABDM
 
Portal Kombat : extension du réseau de propagande russe
Portal Kombat : extension du réseau de propagande russePortal Kombat : extension du réseau de propagande russe
Portal Kombat : extension du réseau de propagande russe
 
Navigating the Large Language Model choices_Ravi Daparthi
Navigating the Large Language Model choices_Ravi DaparthiNavigating the Large Language Model choices_Ravi Daparthi
Navigating the Large Language Model choices_Ravi Daparthi
 

20240412 QFM010 Elixir Reading List March 2024

  • 1. Quantum Fax Machine QFM010: Elixir Reading List March 2024 quantumfaxmachine.com 1
  • 2. QFM010: Elixir Reading List March 2024 Here is everything I found interesting about Elixir Programming Ecosytem during March 2024. The March Edition Quantum Fax Machine's Elixir Reading List starts with a discussion on the Doctest Formatter plugin for enhancing code readability, then dives into practical solutions for developers, such as managing environment-specific configurations efficiently without external dependencies as discussed in Simple .env-like configuration in Elixir. We then look at Elixir's GenServer in What is Elixir GenServer?, reflecting on the language's capabilities handling complex asynchronous operations. We also take a look at architectural principles, comparing the Phoenix and Rails frameworks in "Phoenix is not your application (unlike Rails)". We also look at error handling within Elixir projects as well as integration with large language models (LLMs) through the thmsmlr / instructor_ex library, which makes generating regular and programmatically workable output from LLMs much easier. Security practices and tools like Semgrep are discussed, offering insights into protecting Elixir code, highlighted by a Fireside chat with Holden Oullette on secure coding practices. We take a quick look at Credo for static analysis, linting, and code quality improvements in "Credo rules you’ve been sleeping on". Among other links, this month's collection also looks at a very practical guide for integrating GraphQL with the Phoenix Framework via Absinthe. As always, the Quantum Fax Machine Propellor Hat Key will guide your browsing. Enjoy! Key: : Mentions Elixir and related technologies : Talks about the Elixir ecosystem in real-world use cases : Talks about technical details of Elixir ecosystem components : Using and working with Elixir ecosystem technologies in software : Programming new Elixir technology concepts and implementations Source: Photo by Michael Dziedzic on Unsplash 2
  • 3. How to format Elixir doctests?: The article introduces "Doctest Formatter," a plugin created to format Elixir doctests within documentation, making it easier to maintain clean and readable code examples. It details installation instructions, usage for formatting .ex files and doctests, and mentions the plugin's compatibility requirements with Elixir version 1.13.2 or higher. The formatter also standardizes the appearance of iex> prompts in doctests, adhering to best practices recommended in Elixir documentation. #Elixir #DoctestFormatter #CodeFormatting #ElixirProgramming #DevelopmentTools 3
  • 4. Simple .env-like configuration in Elixir: The article outlines a method for managing environment-specific configurations in Elixir projects without external dependencies, by leveraging plain Elixir scripts (.exs files) for setting environment variables, thereby simplifying the development and testing process. #Elixir #EnvConfig #DevelopmentBestPractices #ElixirProgramming #NoExternalDependencies 4
  • 5. What is Elixir GenServer?: This article describes Elixir's GenServer as a behavior module for building concurrent and stateful processes in a more idiomatic and user- friendly way than its Erlang counterpart. It provides an overview of implementing GenServer with practical examples and discusses when to use or not use it for specific applications. #Elixir #GenServer `#ConcurrentProgramming #ErlangOTP #FunctionalProgramming 5
  • 6. Phoenix is not your application (unlike Rails): The article contrasts the architectural philosophies of Ruby on Rails and Phoenix, highlighting that while Rails often becomes tightly coupled with applications, Phoenix encourages a clear separation between the web layer and the core business logic. This distinction allows developers to build more modular, maintainable applications with Phoenix. #WebDevelopment #PhoenixFramework #RubyOnRails #SoftwareArchitecture #ElixirLang 6
  • 7. Safer Error Systems in Elixir: This article discusses improving error handling in Elixir by merging the clarity of strings with the simplicity of atoms for more manageable and insightful errors, and introduces the ErrorMessage library to standardise and simplify error representation, making debugging and user experience better. #ElixirLang #ErrorHandling #CodingBestPractices #ErrorMessageLibrary #SoftwareDevelopment 7
  • 8. thmsmlr / instructor_ex: instructor_ex is an Elixir library designed for structured, Ecto-based outputs with OpenAI and other open-source large language models (LLMs), facilitating JSON mapping to Ecto schemas for more structured responses than traditional unstructured text outputs. It highlights ease of use, adaptability to various models, and potential for automated prompt retrying upon validation failure. This library adds a missing layer that makes working with LLMs much more controllable, robust, and reliable. Here is a really good video that explains Instructor in practice: Thomas Millar, Instructor - The bridge between Elixir and AI. #Elixir #OpenAI #StructuredData #LanguageModels #EctoSchema 8
  • 9. exliris-haystack / Haystack: This is an Elixir library that offers a simple, extendable full- text search engine, facilitating the creation and management of search indexes with customisable fields and storage, and enabling easy querying of those indexes. #Haystack #ElixirLibrary #FullTextSearch #SoftwareDevelopment #TextIndexing 9
  • 10. How to secure Elixir codebases: Fireside chat with Holden Oullette: This webinar features Holden Oullette, a key member of the Elixir community and maintainer of Sobelow, discussing secure coding practices in Elixir, his contributions to Semgrep for Elixir, and his visions for the language and community's future. Semgrep is highlighted as a scalable code security tool for organizations. #Elixir #CodingSecurity #Sobelow #Semgrep #ElixirCommunity 10
  • 11. Credo rules you’ve been sleeping on: This article discusses optimising Elixir projects by adjusting Credo settings for better code quality, highlighting enabling strict mode, disabling certain checks like AliasOrder, and activating others like MixEnv and PassAsyncInTestCases. It suggests a balanced approach to using Credo for linting/static analysis in Phoenix projects. #Elixir #Credo #CodeQuality #PhoenixFramework #SoftwareDevelopment 11
  • 12. Absinthe with Phoenix Framework - a guide to properly get started with GraphQL using Elixir: This article is a comprehensive tutorial on setting up a GraphQL server using the Elixir Phoenix Framework with Absinthe, covering everything from basic setup and configuration to defining queries, mutations, and subscriptions. It assumes basic knowledge of Phoenix and GraphQL. #Absinthe #PhoenixFramework #GraphQL #Elixir #APIDevelopment 12
  • 13. Implementing Natural Conversational Agents with Elixir: This article details the author's efforts to improve a conversational agent named Nero by implementing an "always on" recording feature and refining the end- to-end conversation flow using Elixir, focusing on natural interaction and reducing latency for a more seamless user experience. Part 1 where Sean builds the first version of his Nero home assistant is here. #ConversationalAI #ElixirProgramming #VoiceTech #NaturalLanguageProcessing #TechInnovation 13
  • 14. Thankyou! hello@matthewsinclair.com matthewsinclair.com masto.ai/@matthewsinclair medium.com/@matthewsinclair twitter.com/@matthewsinclair Originally published on quantumfaxmachine.com If you’d like to sign up for this content as an email, click here to join the mailing list. Image: Photo by Austin Chan on Unsplash 14