Skip to content

Instantly share code, notes, and snippets.

View nrandell's full-sized avatar

Nick Randell nrandell

View GitHub Profile
#! /bin/bash
IMAGE=hertzg/rtl_433:latest
NAME=rtl433-docker
docker pull $IMAGE
docker stop $NAME
docker rm $NAME
docker run \
--detach --restart=always \
@nrandell
nrandell / find-undefined-classes.js
Created November 29, 2022 18:34
Find undefined classes
/*
This script attempts to identify all CSS classes mentioned in HTML but not defined in the stylesheets.
In order to use it, just run it in the DevTools console (or add it to DevTools Snippets and run it from there).
Note that this script requires browser to support `fetch` and some ES6 features (fat arrow, Promises, Array.from, Set). You can transpile it to ES5 here: https://babeljs.io/repl/ .
Known limitations:
- it won't be able to take into account some external stylesheets (if CORS isn't set up)
- it will produce false negatives for classes that are mentioned in the comments.