Skip to content

Instantly share code, notes, and snippets.

@undrafted
undrafted / *setup.md
Created March 18, 2021 14:27 — forked from leoherzog/*setup.md
Google Doc Clean HTML Output, powered by Apps Script

Google Doc Clean HTML Output, powered by Apps Script

Add this function to your Apps Script project and feed it an ID to a Google Doc.

If you need this on a lot of Docs, you may want to make a new Apps Script project to use as a library. Simply copy and paste this code to the new project, go to the script that's tied to your Doc, add your new Library (the script ID), and call var html = *NameOfYourLibraryProject*.getContent(DocumentApp.getActiveDocument().getId());

@undrafted
undrafted / lint-only-changed-files.MD
Created August 20, 2021 10:48 — forked from seeliang/lint-only-changed-files.MD
How to lint only changed files?

find out the differences

use git diff to generate file list

git diff --name-only master

limited to certain file types

add ext filter

git diff --name-only master | grep -E "(.js$|.ts$|.tsx$)"

@undrafted
undrafted / delete-pods.sh
Last active October 15, 2021 09:26 — forked from zparnold/one_liner.sh
A simple script to delete all failed pods from Kubernetes
kubectl get pods --all-namespaces | grep Evicted | awk '{print $2 " --namespace=" $1}' | xargs kubectl delete pod
window.addEventListener('beforeunload', function(e) {
e.returnValue = 'Are you sure?';
return e.returnValue;
});
If you have made these changes on your machine. (I'm assuming you have)
Run a build of the package that you changed.
run npm pack from that package's root folder. This creates a .tgz zip file of your package with your custom modifications.
copy that file into the root (you could put it wherever but root makes things easy) of your project.
in your package.json replace the version number ngx mask to the following "your-package": "file:my-packed-file.tgz"