Skip to content

Instantly share code, notes, and snippets.

@katspaugh
katspaugh / main.js
Last active February 15, 2022 23:15
A script to convert wav-files to mp3 + waveform JSONs.
$(function () {
var wavesurfer = Object.create(WaveSurfer);
var container = document.querySelector('#wave');
container.innerHTML = '';
wavesurfer.init({
container: container,
backend: 'MediaElement',
height: 40,
@makmanalp
makmanalp / comparison.md
Last active March 14, 2023 14:58
Angular vs Backbone vs React vs Ember notes

Note: these are pretty rough notes I made for my team on the fly as I was reading through some pages. Some could be mildly inaccurate but hopefully not terribly so. I might resort to convenient fiction & simplification sometimes.

My top contenders, mostly based on popularity / community etc:

  • Angular
  • Backbone
  • React
  • Ember

Mostly about MVC (or derivatives, MVP / MVVM).