Close

Hexagonal Architecture

The hexagonal architecture, or ports and adapters architecture, is an architectural pattern used in software design.

RSA Key Generation, Signatures, and Encryption using OpenSSL | Encryption Decryption using openSSL

RSA Key Generation, Signatures, and Encryption using OpenSSL | Encryption Decryption using openSSL

Demonstration of using OpenSSL to create RSA public/private key pair, sign and encrypt messages using those keys, and then decrypt and verify the received messages. Commands used: OpenSSL. Encryption And Decryption Encryption is converting data into an unreadable form by unauthorized parties. This is done by using a mathematical algorithm […]

Devamını Oku

Onion Architecture – Software Design Patterns Explained

Onion Architecture - Software Design Patterns Explained

Onion Architecture is a design approach that aims to create a separation of concerns within the layers of an application. It is called “onion” architecture because the design is layered, with the core domain logic at the center and the outer layers representing services and infrastructure. The layers of an […]

Devamını Oku

ElasticSearch From Bottom Up

ElasticSearch From Bottom Up

Elasticsearch is built on top of the Apache Lucene search library, and it inherits much of Lucene’s architecture. Here is a brief overview of the architecture of Elasticsearch and Lucene: Lucene Architecture: Lucene is a Java-based, open-source search library that provides full-text search capabilities. It is a low-level library that […]

Devamını Oku

Cloud Kitchens, The New Age Restaurant Industry Boom

Cloud Kitchens, The New Age Restaurant Industry Boom

The Rise of Cloud Kitchens The restaurant industry is undergoing a significant transformation. In recent years, we have seen the rise of cloud kitchens, which are delivery-only restaurants that do not have a physical dining room. Cloud kitchens are becoming increasingly popular as they offer several advantages over traditional restaurants. […]

Devamını Oku

Driving Innovation: Unleashing the Potential of Iterative and Agile Management

Driving Innovation: Unleashing the Potential of Iterative and Agile Management

Iterative and Agile management are two project management methodologies recently gaining popularity. While they have different focuses, they can be used together to provide a robust framework for delivering successful projects. Iterative management is breaking down a large project into smaller, manageable chunks. This allows teams to identify and address […]

Devamını Oku

Infrastructure as Code with AWS CloudFormation and Terraform

Infrastructure as Code with AWS CloudFormation and Terraform

Automate your infrastructure provisioning and management. Infrastructure as Code (IaC) is a practice of managing and provisioning infrastructure through code. This means that the infrastructure, such as servers, networks, and storage, is defined in regulation and then used to create and manage the infrastructure. Overview of IaC: IaC can help […]

Devamını Oku

RELU Fonksiyonu Nedir?

RELU Fonksiyonu Nedir?

Doğrultulmuş lineer birim (rectified linear unit- RELU) doğrusal olmayan bir fonksiyondur. ReLU fonksiyonu negatif girdiler için 0 değerini alırken, x pozitif girdiler için x değerini almaktadır. Python kodlaması aşağıdaki gibi olabilir. def relu(x): return np.maximum(0, x)

Devamını Oku