Skip to content

Instantly share code, notes, and snippets.

@raicerk
raicerk / .zshrc
Created March 11, 2020 03:50
Run Studio 3T 2019.6.0 on Mac without a license
studio3t() {
nohup java -XstartOnFirstThread -cp /Applications/Studio\ 3T.app/Contents/Resources/app/data-man-mongodb-ent-2019.6.0.jar t3.dataman.mongodb.app.ad >/dev/null 2>&1 &
disown
}
@invmatt
invmatt / functionality.js
Last active May 7, 2019 14:03
Medium style image loading.
window.onload = function() {
var placeholder = $('.progressive-media'),
small = $('.progressive-media__small');
var img = new Image();
img.src = small.src;
img.onload = function () {
small.classList.add('loaded');
};