Skip to content

Instantly share code, notes, and snippets.

View michaeljohnbennett's full-sized avatar
🤖
programming

MB michaeljohnbennett

🤖
programming
  • Freelance
  • Sydney, AU
View GitHub Profile
@michaeljohnbennett
michaeljohnbennett / socket_orderbook.js
Created November 1, 2018 22:19 — forked from hitbtc-com/socket_orderbook.js
Socket API example with orderbook
if (typeof WebSocket !== 'function') {
// for node.js install ws package
WebSocket = require('ws');
}
const logger = {
debug: (...arg) => {
// console.log((new Date).toISOString(), 'DEBUG', ...arg)
},
info: (...arg) => {
@michaeljohnbennett
michaeljohnbennett / Mixamo.js
Last active August 9, 2022 22:01 — forked from kimdwkimdw/Mixamo.js
Script which downloads all mixamo animations for one character.
// Mixamo Animation downloadeer
// The following script make use of mixamo2 API to download all anims for a single character that you choose.
// The animations are saved with descriptive long names instead of the short ones used by default by mixamo UI.
//
// This script has been written by gnuton@gnuton.org and the author is not responsible of its usage
//
// How to use this script
// 1. Browse mixamo.com
// 2. Log in
// 3. Open JS console (F12 on chrome)