Developer Tests
- Unit tests:
yarn unit-test [-u]
- Intergration tests:
yarn int-test [-u]
- Browser integration tests:
cypress run
-u
: flag to update snapshots.
// ==UserScript== | |
// @name remove-title-notifications | |
// @namespace distractions | |
// @version 0.1 | |
// @description Tampermonkey script to remove unread notification count from tab titles | |
// @author Viswanath Sivakumar | |
// @match */* | |
// @grant none | |
// ==/UserScript== |
import pandas as pd | |
# Visualisation | |
import matplotlib as mpl | |
import matplotlib.pyplot as plt | |
import matplotlib.dates as mdates | |
# Configure visualisations | |
%matplotlib inline | |
mpl.style.use( 'ggplot' ) |
/** | |
* Instagram web unfollow script | |
* | |
* WHAT IS IT? | |
* A script to unfollow people in the instagram website | |
* | |
* WHY? | |
* I needed to clean my account so I quickly did this | |
* | |
* HOW TO USE: |