Skip to content

Instantly share code, notes, and snippets.

View fsschmitt's full-sized avatar

Felipe Schmitt fsschmitt

View GitHub Profile
Problem description
On the latest update of systemd for Ubuntu 18.04 the underlying OS for AKS the following bug surfaced : https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1988119
The affected version being : 237-3ubuntu10.54
Below are some ALTERNATIVE suggestions how to fix it, besides the official response from Microsoft : https://status.azure.com/en-us/status
1. Fixing it with the az vmss run-command:
```
@fsschmitt
fsschmitt / SimilarityUtils.js
Last active September 5, 2016 16:58
SimilaryUtils Library, compares two strings and based on the Sørensen–Dice coefficient it calculates the % of similarity between both strings.
/**
* SimilarityUtils Library
* Compares two strings and based on the Sørensen–Dice coefficient it calculates the % of similarity between both strings.
*
* Usage:
* SimilarityUtils.compare("string","stringg").toFixed(2);
***/
var SimilarityUtils = {
/**
/*
* Crockford's Supplant method with support to string, numbers and booleans
*
* var myObj = { name: "John Doe", age: 27 }
* console.log("Hi my name is {name} and I am {age} years old.".supplant(myObj));
*
* // Output: Hi my name is John Doe and I am 27 years old.
*/
@PurpleBooth
PurpleBooth / README-Template.md
Last active May 6, 2024 07:22
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites