Featured image of post Python NLP Libraries: A Comprehensive Overview

Python NLP Libraries: A Comprehensive Overview

Python has a rich support of libraries for Natural Language Processing. Starting from text processing, tokenizing texts and determining their lemma, to syntactic analysis, parsing a text and assign syntactic roles, to semantic processing, e.g. recognizing named entities, sentiment analysis and document classification, everything is offered by at least one library. So, where do you start?

Featured image of post An Introduction to Natural Language Processing

An Introduction to Natural Language Processing

Natural Language Processing, or short NLP, is the computer science discipline of processing and transforming texts. It consists of several tasks that start with tokenization, separating a text into individual units of meaning, applying syntactic and semantic analysis to generate an abstract knowledge representation, and then to transform this representation into text again for purposes such as translation, question answering or dialogue.

Featured image of post Kubernetes with K3S: How I Upgraded a Production Cluster from v1.17 to v1.25

Kubernetes with K3S: How I Upgraded a Production Cluster from v1.17 to v1.25

Since its inception in 2020, my Kubernetes stack happily serves this blog and my [lighthouse service](https://lighthouse.admantium.com/). While I updated the application code base, I did stay with the Kubernetes version installed at that date and time: v1.17. It’s time to change that, and upgrade stepwise to a most recent version. The upgrade seemed to be challengingly, and so I made some notes which ultimately led to this blog post.

Featured image of post Terraform Workshop: Automated Account and S3 Bucket Creation on AWS

Terraform Workshop: Automated Account and S3 Bucket Creation on AWS

Terraform is an infrastructure-as-code tool that helps you to manage different resources declaratively. Providers that offer an API for resource managing can be used out of the box, for example for the Hetzner cloud as shown in my last article. When using AWS, this is different: You need to install and configure and AWS cli tool which will then be used by Terraform to create and manage the resources.

Featured image of post Terraform Language Compendium

Terraform Language Compendium

Terraform is an infrastructure configuration language. It supports the declarative, stateful definition of abstractions ranging from compute resources, server configuration, certificates, secrets, and much more. In addition to a powerful set of CLI commands, the configuration language itself provides several powerful abstractions that can be used to structure complex projects as required.

Featured image of post Terraform: Modules and Workspaces

Terraform: Modules and Workspaces

Terraform is an infrastructure provisioning tool. At its core, you define a declarative manifest of resources that represent concrete computing instances, system configuration such as networks, firewalls, and infrastructure configuration. Terraform adheres to the concept of immutable infrastructure: Resources should match the state as expressed in the manifests, and any difference between the concrete objects and the manifests are resolved by changing the conrete object or recreate it.

Featured image of post Terraform: Advanced Commands Overview

Terraform: Advanced Commands Overview

Terraform is an infrastructure provisioning tool. From a declarative resource description, concrete infrastructure objects are created. In my last articles, you learned about Terraform projects, i.e.how to configure providers and resources and the recommended file structure. Also, you learned about the Terraform workflow consisting of a one-time initialization, followed by iterative phases of writing, planning, and applying.

Featured image of post Terraform: A gentle Introduction

Terraform: A gentle Introduction

Terraform is an infrastructure configuration language. It supports the declarative, stateful definition of abstractions ranging from compute resources, network components, server configuration, and user accounts and permissions. With a wide range of provisioners - environments and scripts that facilitate the creation of these abstraction - it has a strong position in DevOps operations.