Skip to content

Instantly share code, notes, and snippets.

@b8jdkal
b8jdkal / random_test.js
Created March 19, 2018 05:34
Random Collision Test
const crypto = require('crypto');
var count = 0;
var total = 0;
function getDt(){
var dt = (new Date()).toString()
var p = /\d+:\d+:\d+/.exec(dt);
if(p.length > 0){
return dt = p[0];
}
}
@b8jdkal
b8jdkal / DesmosPlayer.user.js
Created January 28, 2022 04:51 — forked from jason-woolf/DesmosPlayer.user.js
Programmatically control a Desmos graph
// ==UserScript==
// @name desmosPlayer
// @namespace http://github.com/jason-woolf
// @version 1.0.0
// @description Program a series of graph changes to create animation
// @author Jason Woolf (MathyJaphy)
// @match https://www.desmos.com/calculator*
// @grant none
// @run-at document-idle
// ==/UserScript==
@b8jdkal
b8jdkal / README.md
Created May 18, 2023 00:58 — forked from lopspower/README.md
Publish AAR to jCenter and Maven Central

Publish AAR to jCenter and Maven Central

Twitter

EDIT: You can find this same updated tutorial here -> Medium

Now I'm going to list how to publish an Android libray to jCenter and then syncronize it with Maven Central:

  1. I use "Android Studio" and I have this simple android lib that I would like to be available on maven: CircularImageView