E M R

Testing HTTP servers in Go

These days writing automated tests for your software is just as important as any other phase in the development life cycle. In this article, we will go over how I write unit tests for HTTP servers in Go.

  • go
  • net/http
  • testing
Testing Flask apps with Pytest

Testing is just as important as any other phase of the software development life cycle, yet many developers tend to neglect it. In this article, I’ll go through the implementation of some unit tests for a small Flask application.

  • flask
  • pytest
  • unit-testing
The maths behind linear regression

Ever wondered how linear regression works? In this article, we'll explore linear regression from a mathematical perpesctive.

  • ML
  • regression
HTTP middlewares in GO

HTTP middlewares provide an elegant way to inspect or filter out certain incoming HTTP requests. In this article, we will go through the GO implementation of middlewares with examples that you can make use of in your next application.

  • go
  • net/http
Flask custom commands

Flask implements a set of useful commands that make it easier to handle some development-related tasks elegantly. Let's explore how to implement our own commands to solve some common problems.

  • python
  • flask
  • cli
Flask request body schema validation

We'll be using Schema which is a library for validating Python data structures, to make sure the body of the requets object is conform to some constraints that we'll set.

  • Python
  • Flask