Posts by Hammad
06
Oct
While experimenting in IEx, I stumbled upon a confusing error that didn’t make sense at first. I wrote what I thought was harmless code...
06
Oct
How to Fix the Erlang “Received Unexpected TCP Data on #Port” Error When Using httpc:request
Recently, I was working on a small Erlang script to fetch the content of a web page using the built-in httpc module. Everything seemed ...
26
Sep
How to Fix an Erlang Fail to Resolve IPv6 Address Using Parameters from RabbitMQ
When I first deployed a RabbitMQ cluster on Kubernetes (K8s) with only pure IPv6 addresses, I ran into an unexpected problem: RabbitMQ ...
26
Sep
How to Fix a Error Emit Tuples From Erlang Views In CouchDB
When I first started experimenting with CouchDB 0.10.0 and native Erlang views, I thought it would be a good idea to emit Erlang tuples...
22
Apr
How To Debug Undef Errors And Add Functionality In An Erlang Chat App?
I’m working on a simple Erlang chat app that runs across multiple shells. My goal is to let people connect, send messages, and cleanly ...
22
Apr
How Fix RabbitMQ Server Installation on CentOS Erlang Error
If you're trying to install RabbitMQ on CentOS 6 using an RPM file and you're encountering an error, don't worry it's a common issue. T...
12
Mar
How to Extending Practical Functionality with an Erlang Module
Beyond understanding the startup flags erlang, you might want to inspect these settings programmatically or even extend the runtime int...
12
Mar
How do I Connect to Remote Shell Not Working Erlang
Erlang, a powerful concurrent programming language designed for building distributed and fault-tolerant systems, provides various tools...
05
Nov
Fix Erlang Send Error in Prime Number
I'm experimenting with creating an Erlang program to identify prime numbers using processes sure, it might not be the most efficient wa...
05
Nov
Solve Erlang Badmatch Error Assigning Lists to Records
I’m trying to assign the ConnectedAtoms list to the connectedatoms field inside a newly created server_st record, but I keep running in...