Skeleton

Create a simple skeleton with minimal components to test the basic pieces

  • github repository
  • firebase project
  • angular SPA
  • material components

JobSearchLog

JobSearchLog is a SPA application written in Angular 6 with a material interface using Google Firebase as a backend.

The application can track job applications, interviews, multiple copy of the resume and cover letters and all the stuff that is usually done when searching for a new job.

  1. Skeleton
  2. Securing
  3. Job
  4. Resume

VSTS minimal docker build agent

The default visual studio team service build agent image is too big. By removing some unused tools let's see if we can limit the size.

The official standard image with all the tools is 4Gb compressed and it is really too big for my tiny VPS server. The image includes a lot of tools that I don’t use so I will remove those tools and see ho much disk space I can save.

[Read More]

VSTS personal build agent on Docker

Using a personal build agent running on docker to speed up compilation times

Visual Studio Team Services has a very good build agent: free and with high availability. The only problem is that it is a bit slow because every time you run a build it will start from scratch and download everything. A custom build agent will cache stuff and speed up build times a lot.

[Read More]