This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
const nats = require('nats'); | |
const config = require('./config/nats.json'); | |
const natsClient = nats.connect(config.connection); | |
const killServer = () => { | |
setTimeout(() => { | |
natsClient.options.timeout = 1; | |
console.log('😈 Killing connection and breaking timeout', natsClient.options.timeout); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name OK COVID-19 Vaccine Finder | |
// @namespace http://tampermonkey.net/ | |
// @version 1.0 | |
// @description Hides Oklahoma COVID-19 Vaccine search results for clinic locations without any bookings | |
// @author Jonathan Yarbor | |
// @match https://vaccinate.oklahoma.gov/en-US/covidvaccine-location-map/ | |
// @grant none | |
// ==/UserScript== |
OlderNewer