Skip to content

Instantly share code, notes, and snippets.

View raugustin93's full-sized avatar

Rudson Augustin raugustin93

  • Augusta, GA
View GitHub Profile
@raugustin93
raugustin93 / download.all.adp.paystubs.js
Created January 2, 2021 19:51 — forked from azagniotov/download.all.adp.paystubs.js
Downloads all pay-slips from ADP website
/*
This has been tested in Chrome v55.0.2883.95 (64-bit)
1. Log into ADP website using the URL: https://my.adp.com/static/redbox/login.html (Make sure you are NOT in Incognito mode)
2. Open Developer Tools console
3. Run the following code in the console:
*/
var xhr = new XMLHttpRequest();
xhr.open('GET', 'https://my.adp.com/v1_0/O/A/payStatements?adjustments=yes&numberoflastpaydates=300');
@raugustin93
raugustin93 / webstoemp-gulpfile.js
Created November 14, 2019 23:23 — forked from jeromecoupe/webstoemp-gulpfile.js
Gulp 4 sample gulpfile.js. For a full explanation, have a look at https://www.webstoemp.com/blog/switching-to-gulp4/
"use strict";
// Load plugins
const autoprefixer = require("autoprefixer");
const browsersync = require("browser-sync").create();
const cp = require("child_process");
const cssnano = require("cssnano");
const del = require("del");
const eslint = require("gulp-eslint");
const gulp = require("gulp");