Close

Mike Amundsen

Mike Amundsen is an internationally known author and speaker. He travels the world consulting and talking about network architecture, Web development, and the intersection of technology and society.

Fostering a Microservices Culture

Fostering a Microservices Culture

In this video, Mike Amundsen of the API Academy applies theories from computing and anthropology to define the right organizational approach to Microservices. Fostering a microservices culture within an organization involves promoting the principles and practices of designing and building software as a collection of small, independently-deployable services. This includes […]

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

How Technology is Solving the Big Problem of the Shortest Transportation Leg

How Technology is Solving the Big Problem of the Shortest Transportation Leg

The last mile is the final leg of a product’s journey from a warehouse or distribution center to the customer’s doorstep. It is often the most costly, complex, and critical step in the retail supply chain. This is because it involves various factors, including traffic congestion, parking availability, and customer […]

Devamını Oku

DevOps: A New Approach to Software Development

DevOps: A New Approach to Software Development

How to improve software development by breaking down silos and automating processes DevOps is a set of practices that combines software development (Dev) and IT operations (Ops). DevOps aims to shorten the systems development life cycle and provide continuous delivery with high quality. Overview of DevOps Philosophy DevOps is based […]

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