This file contains 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
Master List: https://gist.github.com/wnelson343/2892c945829b26ae749dc2a10af8133e | |
Air Date: 2018-06-03 | |
TOC: | |
> Playlist Links | |
> Formatted Table | |
> Raw Tab Seperated Table | |
---÷--- | |
::Spotify Playlist Link :: https://open.spotify.com/user/musicallywhatever/playlist/3FguZfBn8ZSCSlkmJc6rxp?si=vNyAHw25SIi3GY5L9ceNTw | |
:: by discord@CosmicDuctTape |
This file contains 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
// Scrapes a twitch streamers schedule and generates an ics | |
const icalToolkit = require('ical-toolkit'); | |
const axios = require('axios'); | |
const fs = require('fs'); | |
var builder = icalToolkit.createIcsFileBuilder(); | |
builder.spacers = true; //Add space in ICS file, better human reading. Default: true | |
builder.NEWLINE_CHAR = '\n'; //Newline char to use. | |
builder.throwError = false; //If true throws errors, else returns error when you do .toString() to generate the file contents. |
This file contains 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 Blaseball | |
// @namespace http://tampermonkey.net/ | |
// @version 0.2 | |
// @description Two column blaseball layout | |
// @author Fugi | |
// @match https://blaseball.com/* | |
// @grant none | |
// ==/UserScript== |