Skip to content

Instantly share code, notes, and snippets.

View bvanpeski's full-sized avatar

Brian Van Peski bvanpeski

View GitHub Profile
@bvanpeski
bvanpeski / download_paystubs.md
Created December 29, 2020 19:20
Download all ADP Paystubs

From https://gist.github.com/azagniotov/210c31540712c10206484d5297616842#gistcomment-2862672

In Vivaldi (chromium engine) this stops after 10. It looks like there's some sort of block to prevent excessive downloads. You need to await the downloads to get past this.

var xhr = new XMLHttpRequest();
xhr.open('GET', 'https://my.adp.com/v1_0/O/A/payStatements?adjustments=yes&numberoflastpaydates=999');
xhr.setRequestHeader("Access-Control-Allow-Origin", "*"); // CORS policy
xhr.onload = async function() {
    if (xhr.status === 200) {
iMac:~ root# sqlite3 "/Library/Application Support/Apple/AssetCache/Data/AssetInfo.db" 'select * from ZASSET;'
57|2|1|0|1288412482|581460272.934065|581460272.934068||B3DE88F2-DC94-4945-98AA-4C50C655379B||Thu, 09 May 2019 07:42:00 GMT||/2019SpringFCS/patches/041-6
2031/64310B52-722D-11E9-B30B-80F709B920CB/com_apple_MobileAsset_SoftwareUpdate/1365d156a39f2873c6286ea051c6d51a4a1aeaa0.zip|
58|2|1|0|1285961624|581460407.402026|581460407.402033||09DEB32F-24E9-40E0-A5E3-4308328C7B8E||Thu, 09 May 2019 04:23:49 GMT||/2019SpringFCS/patches/041-6
1881/F7FF48A2-7210-11E9-B175-CB7460953268/com_apple_MobileAsset_SoftwareUpdate/e02c712e0c65733441e569187234174464551a13.zip|
59|2|1|0|761182374|581460449.222957|581460449.222962||68CB2CED-AFC5-4FC5-BEE2-66084E984263||Thu, 09 May 2019 04:21:49 GMT||/2019SpringFCS/patches/041-62
083/9D311380-720E-11E9-A52E-86D219A16E1B/com_apple_MobileAsset_SoftwareUpdate/56e42d6c88860533dfb8cf7ee14ce7c23e8
iMac:~ root# sqlite3 "/Library/Application Support/Apple/AssetCache/Data/AssetInfo.db" 'select * from ZASSET;'
57|2|1|0|1288412482|581460272.934065|581460272.934068||B3DE88F2-DC94-4945-98AA-4C50C655379B||Thu, 09 May 2019 07:42:00 GMT||//2019SpringFCS/patches/041-6
2031/64310B52-722D-11E9-B30B-80F709B920CB/com_apple_MobileAsset_SoftwareUpdate/1365d156a39f2873c6286ea051c6d51a4a1aeaa0.zip|
58|2|1|0|1285961624|581460407.402026|581460407.402033||09DEB32F-24E9-40E0-A5E3-4308328C7B8E||Thu, 09 May 2019 04:23:49 GMT||//2019SpringFCS/patches/041-6
1881/F7FF48A2-7210-11E9-B175-CB7460953268/com_apple_MobileAsset_SoftwareUpdate/e02c712e0c65733441e569187234174464551a13.zip|
59|2|1|0|761182374|581460449.222957|581460449.222962||68CB2CED-AFC5-4FC5-BEE2-66084E984263||Thu, 09 May 2019 04:21:49 GMT||//2019SpringFCS/patches/041-62
083/9D311380-720E-11E9-A52E-86D219A16E1B/com_apple_MobileAsset_SoftwareUpdate/56e42d6c88860533dfb8cf7ee14ce7c2
@bvanpeski
bvanpeski / drip_newslettersignup
Created June 22, 2017 23:19
Drip Newsletter Embed
<form action="https://www.getdrip.com/forms/42168520/submissions" method="post" data-drip-embedded-form="42168520">
<h3 data-drip-attribute="headline">Sign up for our Newsletter!</h3>
<div data-drip-attribute="description">Get updated when a new blog post or podcast episode drops and stay up to date with tips, tricks, and new products!</div>
<div>
<label for="fields[email]">Email Address</label><br />
<input type="email" name="fields[email]" value="" />
</div>
<div>
<label for="fields[blog_podcast_updates]">Blog and Podcast Updates</label><br />
<input type=“hidden” name="fields[blog_podcast_updates]" value=“false” />