Category Archives: Gnu/Linux

Falcon API Framework on Docker – 2

In this article, we will need to build an API by using the Falcon API Framework in Python. We’re going to cover some hints and methods to request. This article is part of a series: 1) Bootstrapping Falcon API Framework on Docker 2) Creating an API by using individual Falcon methods. (You’re here.) You had better… Read More »

Falcon API Framework on Docker

We’re going to adjust the Falcon API Framework on Docker. In this way, we’ll able to build our APIs. There are 2 kinds of frameworks, full-featured and bare frameworks. If you would rather develop a RESTFul API for your projects with Python, in general, you consider structure the following. 1) Flask with Flask-RESTFul 2) Django… Read More »

Automating Git Events with Github Webhook

Webhooks allow you to build or set up integrations which subscribe to certain actions on GitHub.com. When one of those events is triggered, Github sends a HTTP POST payload to the webhook’s configured URL. Webhooks can be used to update an external issue tracker, trigger CI builds, update a backup mirror, or even deploy to… Read More »

An Introduction to the Kubernetes

In this article, my goal is to get purpose of Kubernetes, to understand philosophy. If i need to tell a little bit, The all ways lead the dependencies. Imagine that, you’ve a software project. All classes are depend on each other. At this point, Dependency Injection might be solution well. Let’s look from out of the box… Read More »

Kong Microservices Api Gateway with Docker

In recent years, all of us mention about the microservices, try to refer this way in our companies. To refer the microservices, there are plenty of topics to manage our services. They’re authentication, security, logging, cache systems, proxy services, response rate limiting, request size limiting etc. For these plugins, The Kong microservices api gateway is… Read More »

Symfony 4 Running on Docker Compose

I am developing an application to improve vocabulary. You will enter in this application the words you learned. Then, this application asks you randomly. For this, i need to establish the workspace. The workspace will become Symfony 4 on Docker Compose. It dependent Nginx, Php-Fpm and Mysql containers. Firstly, i will adjust docker-compose.yml file. Mysql is simple… Read More »

Logic of the JWT(JSON Web Tokens)

In this post, we will learn what is the JWT and logic of the JWT. The IETF is designed as a standard token format. Such as validation, user identification, data integrity and information security each other multiple points. JWT consists of 3 separate JSON pieces encoded in Base64 format. The pieces are separated by a… Read More »