12 Mar Erlang How to Extending Practical Functionality with an Erlang Module March 12, 2025 By Hammad 0 comments Beyond understanding the startup flags erlang, you might want to inspect these settings programmatically or even extend the runtime int... Continue reading
12 Mar Erlang How do I Connect to Remote Shell Not Working Erlang March 12, 2025 By Hammad 0 comments Erlang, a powerful concurrent programming language designed for building distributed and fault-tolerant systems, provides various tools... Continue reading
11 Mar Ruby How to Link Metrics Data with Traces Using Exemplars in Ruby? March 11, 2025 By Shaheen Ullah 0 comments Linking metrics data with traces is a powerful technique for enhancing observability in distributed systems. It allows developers and D... Continue reading
11 Mar Ruby How Would I test Ruby Rails Constants Using Minitest? March 11, 2025 By Shaheen Ullah 0 comments As a developer who’s been burned by unexpected constant-related bugs more times than I’d like to admit, I’ve become militant about test... Continue reading
10 Mar PHP How to Convert Command Line curl into PHP curl March 10, 2025 By MALIK SHAFI 0 comments I’ve been working on a project that involves converting a command-line curl command into a PHP curl request. I’ll walk you through my p... Continue reading
10 Mar PHP How to Run the PHP Inside an XML File March 10, 2025 By MALIK SHAFI 0 comments I’ve recently been diving into an interesting project where I had to work with PHP code embedded inside an XML file a setup that at fir... Continue reading
08 Mar Ruby How Does The Module Inclusion Pollutes Your Interface March 8, 2025 By Umair 0 comments Suppose you’re building a helper module inclusion pollutes your interface in Rails and want to use form_for from ActionView::Helpers::F... Continue reading
08 Mar Ruby How Do You Concatenate Heredoc Strings in Ruby? March 8, 2025 By Shaheen Ullah 0 comments If you're working with SQL queries or other multi-line strings in Ruby, you might prefer using heredoc syntax (<<-SQL) ... Continue reading
07 Mar Python How do I Calculate a Hash of a File Using Python March 7, 2025 By Daniyal Ahmed 0 comments I am excited to share with you one of my favorite little projects a simple Python script that calculates the SHA-256 hash of a file. Ha... Continue reading
07 Mar Python How to Create Pie Charts with Matplotlib March 7, 2025 By Daniyal Ahmed 0 comments Hey there! Today, I’m diving into one of the most popular (and delicious) tools for data visualization: the pie chart. Whether you... Continue reading