Skip to content

Instantly share code, notes, and snippets.

View yelper's full-sized avatar
😬
https://streamable.com/qau4s

Alper Sarikaya yelper

😬
https://streamable.com/qau4s
View GitHub Profile
@cavedave
cavedave / genreloud.rmd
Last active December 6, 2019 17:57
Graph of how loud Music Genres are
---
title: "Loudness by Genre"
output: html_notebook
---
An analysis of music by Genre to see if loudness varies
It was believed that online streaming platform have reduced loudness. But does this have the same effect accross all genres of music?
fs = require('fs');
execSync = require('child_process').execSync;
options = {
dir: 'd3-zoom',
file: 'README.md',
prefix: 'https://github.com/d3/d3-zoom/blob/master/',
delimiter: '#L',
suffix: ' ',
updateFile: true
@havenwood
havenwood / chruby_local.sh
Last active June 21, 2023 07:03
Install the latest stable Ruby as a local user (non-root).
##
# A non-root installation of the latest Ruby with chruby
# Install chruby (https://github.com/postmodern/chruby#readme)
mkdir -p $HOME/src
cd $HOME/src
wget -O chruby-0.3.9.tar.gz https://github.com/postmodern/chruby/archive/v0.3.9.tar.gz
tar -xzvf chruby-0.3.9.tar.gz
cd chruby-0.3.9/
PREFIX=$HOME/.chruby make install