Skip to content

Instantly share code, notes, and snippets.

View nathan-muir's full-sized avatar

Nathan Muir nathan-muir

View GitHub Profile
@mogelbrod
mogelbrod / babel.config.js
Last active December 5, 2023 22:18
Prevent core-js polyfills of APIs that should be supported by IE11 for general use (incomplete list)
module.exports = {
presets: [
['@babel/preset-env', {
useBuiltIns: 'usage',
debug: false,
loose: true,
corejs: {
version: 3,
proposals: true,
},
@gboudreau
gboudreau / AuthyToOtherAuthenticator.md
Last active July 24, 2024 23:41 — forked from Ingramz/AuthyToOtherAuthenticator.md
Export TOTP tokens from Authy
@dahnielson
dahnielson / UUID.php
Last active July 18, 2024 08:32
Pure PHP UUID generator
<?php
/**
* UUID class
*
* The following class generates VALID RFC 4122 COMPLIANT
* Universally Unique IDentifiers (UUID) version 3, 4 and 5.
*
* UUIDs generated validates using OSSP UUID Tool, and output
* for named-based UUIDs are exactly the same. This is a pure
* PHP implementation.