Hacking with Swift Cleanup

Remove sections that clutter the website

// ==UserScript==
// @name         Hacking with Swift Cleanup
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Remove sections that clutter the website
// @author       iczman
// @match        https://*.hackingwithswift.com/*
// @grant        none
// @require      http://code.jquery.com/jquery-latest.js
// ==/UserScript==

(function() {
    'use strict';

    $("#latestTutorial").remove();
})();