Skip to content

Instantly share code, notes, and snippets.

View mcginty's full-sized avatar
🖤
strange sensation to feel alive

Jake McGinty mcginty

🖤
strange sensation to feel alive
  • in between kate bush albums
View GitHub Profile
const puppeteer = require('puppeteer');
function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
(async () => {
const browser = await puppeteer.launch({headless: false});
// const browser = await puppeteer.launch();
@mcginty
mcginty / material_colors.xml
Last active March 17, 2022 04:09
Android XML resource with the full material color palette. Source: http://www.google.com/design/spec/style/color.html#color-color-palette
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="material_red50">#ffffebee</color>
<color name="material_red100">#ffffcdd2</color>
<color name="material_red200">#ffef9a9a</color>
<color name="material_red300">#ffe57373</color>
<color name="material_red400">#ffef5350</color>
<color name="material_red500">#fff44336</color>
<color name="material_red600">#ffe53935</color>
<color name="material_red700">#ffd32f2f</color>
@mcginty
mcginty / index.html
Created February 3, 2024 06:25
Pile of Holidays
<link href="https://api.fontshare.com/css?f[]=satoshi@400,700&display=swap" rel="stylesheet">
<!-- days sourced from: https://nationaldaycalendar.com/february/ -->
<h1>February 2022</h1>
<p>Holidays and Daily Observances in the United States. Try clicking one!</a>
<div class="previewImage"></div>
<div class="container">
<div class="physicsDiv dayContainer g1"><time datetime="2022-02-01">🍫</time>
<div class="dayDescription"></div>
</div>