Getting Started with Azure

I’ve already learned quite some stuff about Azure networking on my way to become Azure Solution Architect. Reading is great, but hands on experience is really helpful to strengthen the knowledge. But how to start? Luckily there is an Azure Free Account. Subscribing to it is very easy and you get a bit of play… Continue reading Getting Started with Azure

Published
Categorized as Cloud

Typolino – Add animations

I never used animations with Angular. Funny as I remember having used the AngularJS variant quite excessively. So why not try it out. I’m pretty sure there is a cleverer way of doing it but maybe I just need to get used to the system first. Seems as if one can simply define the animations… Continue reading Typolino – Add animations

Typolino – Web Worker

Just for fun I was thinking to add web workers to fetch the image download URLs and also the images in a web worker. If the URL is already there, perfect, if not wait for the web worker to complete its task. Actually web workers are quite well supported and it is super simple to… Continue reading Typolino – Web Worker

Typolino – Prefetching Assets

Caching has a big effect. But a first time visitor might still have to wait for certain resources to download. To improve the experience for the users we can try to prefetch resources that we most probably will need later (e.g. after the login). In our example application Typolino the candidates are found easily: the… Continue reading Typolino – Prefetching Assets

Typolino – Cache Control

To improve the UX it is important to serve content as fast as possible. The Firebase hosting is pretty clever, but the images we serve from the storage has a default cache configuration that disallows caching the content. We can control the cache-control header when uploading the images. This will allow caching the content for… Continue reading Typolino – Cache Control