Skip to content

Instantly share code, notes, and snippets.

View mwcz's full-sized avatar
🏠
Working from home

Michael Clayton mwcz

🏠
Working from home
View GitHub Profile
@mwcz
mwcz / pfe-unpkg.html
Created February 14, 2020 17:30
Example of pulling PatternFly Elements into a static HTML page using unpkg.com. Good for toying around with elements without having to set up NPM tooling, build process, etc.
<!-- Pull in pfelement.css -->
<link rel="stylesheet" href="https://unpkg.com/@patternfly/pfelement/dist/pfelement.min.css">
<!-- Add an import statement for each PatternFly Element you want .ES Modules++ -->
<script type="module">
import "https://unpkg.com/@patternfly/pfe-card/dist/pfe-card.min.js";
import "https://unpkg.com/@patternfly/pfe-cta/dist/pfe-cta.min.js";
</script>
@mwcz
mwcz / next-biggest.js
Created March 16, 2020 18:46
My solution to codewars "Next bigger number with the same digits" kata
// write array `a` onto array `b` starting at position `p`
function overlay(a, b, p) {
for (let [i, n] of a.entries()) {
b[p+i] = n;
}
return b;
}
// in an array, swap items at indexes i1 and i2
function swap(arr, i1, i2) {
const { S3Client, ListObjectsV2Command } = require("@aws-sdk/client-s3");
const client = new S3Client({
region: 'us-east-1',
credentials: {
accessKeyId: process.env['EYEBROWSE_S3_ACCESS_KEY'],
secretAccessKey: process.env['EYEBROWSE_S3_SECRET_ACCESS_KEY'],
},
clientSideMonitoring: true
});