Close

Keith Harrison

Keith Harrison is the Head Of Software Development at Nude.

Creating a Culture of Software Craftsmanship

Keith Harrison - Creating a Culture of Software Craftsmanship

Creating a Culture of Software Craftsmanship[EuroPython 2018 – Talk – 2018-07-27 – Moorfoot][Edinburgh, UK] By Keith Harrison This time it’ll be different. It’s a green field project and you’ve learned from your mistakes. You’re not going to make the same ones again. Fast forward several months and you’re in a […]

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

Distributed Agile: Tips and Best Practices for Global Teams

Distributed Agile: Tips and Best Practices for Global Teams

A distributed team enables you to draw from a much larger talent pool but can come with challenges, especially in an Agile environment. Use these tips to improve collaboration and efficiency while building psychological safety and rapport on your team. With today’s modern technology, people can easily collaborate across the […]

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

Natural Language Processing in Python

natural language processing

Natural language processing (NLP) is an exciting branch of artificial intelligence (AI) that allows machines to break down and understand human language. As a data scientist, I often use NLP techniques to interpret text data I’m working with for my analysis. During this tutorial, I plan to walk through text […]

Devamını Oku