Skip to content

Blog

Members Public

[Capacitorjs | Azure Devops Pipeline] Ignore Pods at Signing

Today I stumbled over a problem in my capacitorjs azure devops build pipeline. I switched to manual signing for some internal reasons but then I was faced with the error "X does not support provisioning profiles". I invested some time to find a solution for the problem and

[Capacitorjs | Azure Devops Pipeline] Ignore Pods at Signing
Members Public

[Angular | Capacitor] Interact With Your Native Calendar

Recently I had do to implement a simple task: When the user presses the 'save appointment' button, the app should add this event to the native calendar. My first thought was saving an .ical file and open it, till i recognized that this isn't the most

[Angular | Capacitor] Interact With Your Native Calendar
Members Public

[Angular] Native iOS and Android App - Capacitor

In this blog post we will go through the initial process of how to convert an existing angular project into a cross-platform project. Our focus is on iOS and Android. In addition to this, I show you how to speed up developing and especially testing the app. Setup * Code Editor

[Angular] Native iOS and Android App - Capacitor
Members Public

[Angular | nx.dev] Adding NGRX - State Management

Recently I uploaded a post about creating a single project workspace structure using nx.dev and angular. Now it's time to add ngrx [ngrx.io] to our newly created project. I will continue with the project structure from the previous post. [Angular | nx.dev] Single Project Workspace StructureThe

[Angular | nx.dev] Adding NGRX - State Management
Members Public

[nx.dev | Angular] Libraries as Git Submodule - DRY Principle

Recently I published a post about my single project workspace structure using nx.dev. I mention that we are able to stick to the DRY principle even if we don't use nx.dev as a mono repo! [Angular | nx.dev] Single Project Workspace StructureThe concept of a monorepo

[nx.dev | Angular] Libraries as Git Submodule - DRY Principle
Members Public

[Angular | nx.dev] Single Project Workspace Structure

The concept of a monorepo is great but not always doable because of all sorts of circumstances. For me the critical point always is git - I want each project to have its own repository! But this doesn't mean you can't use a monorepo framework for

[Angular | nx.dev] Single Project Workspace Structure
Members Public

[Angular] Hosting with IONOS

Update: [ASP.NET Core 6.0 | Angular] - Hosting with IonosUpdate for my previous posts about hosting an angular frontend and ASP.NET Core 6 backend. Prerequirements: * active ionos windows hosting subscription * asp.net core 6 project * buildable angular project Ionos Setup Open up your favorite FTP client and connect

[Angular] Hosting with IONOS
Members Public

[Angular] Sass/Scss import/use clean up

Here is a quick hint for importing scss files in another scss file in angular. Normally you have to write the full file path into the import statement: --import @import 'apps/blog-hub-landing/src/styles/core/colors'; @import 'apps/blog-hub-landing/src/styles/core/variables'; --use @use '

[Angular] Sass/Scss import/use clean up
Members Public

[Angular | Capacitor] How to save and/or open file

In this short tutorial, I will show you how to save and open files in a capacitor app.

[Angular | Capacitor] How to save and/or open file
Members Public

[Angular Material] Dynamic Dialog Component

You know the struggle with angular dialog components when you create mainstream business software. Sometimes I feel like I'm just doing the same for each page again and again. Place a header, some type of grid and finally add all dialogs to it - like "Do you

[Angular Material] Dynamic Dialog Component