Categories: Howtos

HOWTOS

How to run your own AI assistant on your PC with Ollama

With ChatGPT or Copilot, you can use very powerful AI assistants thanks to the underlying large language models. The downside is that with the free version, your conversations are used for training purposes. If you want a bit more privacy, it could …

HOWTOS

How to personalize the dock in macOS

From the dock in macOS you can start applications, see which apps are active and which apps you have opened recently. A lot of users nevery modify their dock settings, even though you can set all kinds of options and really make it your own. In this …

HOWTOS

Getting started with Azure Pipelines

Azure DevOps is a SaaS solution for your git repositories, wikis, artifact repository and more. One part of it is Azure Pipelines, for your CI/CD pipelines. We will show you how can quickly build your first pipeline with Azure DevOps. Azure Pipelines …

HOWTOS

Type hints in Python 3

Python has support for type hinting since version 3.5. That’s quite useful, because it makes your code more predictable since you have more information about what types to expect. In this article we will dive deeper into what type hinting exactly is, …

HOWTOS

Getting started with AWS CDK v2

With the AWS CDK you can easily build your infrastructure on AWS as Infrastructure-as-Code. Instead of writing long CloudFormation templates in YML you can write short, to the point code to create an S3 bucket, deploy a Lambda or create a CloudFront …