Skip to content

Instantly share code, notes, and snippets.

@krazyjakee
krazyjakee / DownloadMixamoByJakeCattrall.js
Last active March 24, 2025 19:00 — forked from TheLouisHong/DownloadMixamoByLouisHong.js
Downloads all the free Mixamo Animations
function trigger(el, eventType) {
if (typeof eventType === 'string' && typeof el[eventType] === 'function') {
el[eventType]();
} else {
const event =
eventType === 'string'
? new Event(eventType, {bubbles: true})
: eventType;
el.dispatchEvent(event);
}
#!/usr/bin/julia
using Dates
import Base.read
import Base.:<
import Base.:>
import Base.isapprox
struct Clipboard
name :: String
read :: Cmd