Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View drumnation's full-sized avatar

David Mieloch drumnation

View GitHub Profile
@drumnation
drumnation / fizzBuzz.js
Last active January 23, 2018 18:03
Quick solution to fizz buzz
for (let i = 1; i < 100; i++) {
const fizz = i % 3 === 0;
const buzz = i % 5 === 0;
if (fizz && buzz) console.log("fizz buzz");
else if (fizz) console.log("fizz");
else if (buzz) console.log("buzz");
else console.log(i);
}
// console output
@drumnation
drumnation / album.json
Created January 19, 2019 21:11
Slaughter of the Soul - Album Data
{
"album_type": "album",
"artists": [
{
"external_urls": {
"spotify": "https://open.spotify.com/artist/6YXarbjg36ODFPez0PnOlD"
},
"href": "https://api.spotify.com/v1/artists/6YXarbjg36ODFPez0PnOlD",
"id": "6YXarbjg36ODFPez0PnOlD",
"name": "At The Gates",
@drumnation
drumnation / artist.json
Created January 19, 2019 21:13
At the Gates Artist Data
{
"external_urls": {
"spotify": "https://open.spotify.com/artist/6YXarbjg36ODFPez0PnOlD"
},
"followers": {
"href": null,
"total": 111477
},
"genres": [
"brutal death metal",
@drumnation
drumnation / track.json
Created January 19, 2019 21:14
Suicide Nation by At the Gates Data
{
"album": {
"album_type": "album",
"artists": [
{
"external_urls": {
"spotify": "https://open.spotify.com/artist/6YXarbjg36ODFPez0PnOlD"
},
"href": "https://api.spotify.com/v1/artists/6YXarbjg36ODFPez0PnOlD",
"id": "6YXarbjg36ODFPez0PnOlD",
@drumnation
drumnation / audio-analysis.json
Created January 20, 2019 20:58
Audio Analysis of Suicide Nation by At the Gates
{
"meta": {
"analyzer_version": "4.0.0",
"platform": "Linux",
"detailed_status": "OK",
"status_code": 0,
"timestamp": 1441871585,
"analysis_time": 9.94627,
"input_process": "libvorbisfile L+R 44100->22050"
},
@drumnation
drumnation / audio-features.json
Created January 20, 2019 22:07
Audio Features for Suicide Nation from Spotify API
{
"danceability": 0.245,
"energy": 0.981,
"key": 7,
"loudness": -7.555,
"mode": 1,
"speechiness": 0.17,
"acousticness": 0.00000242,
"instrumentalness": 0.936,
"liveness": 0.222,
@drumnation
drumnation / metal-category-playlists.json
Created January 20, 2019 22:39
Spotify Metal Category Playlists
{
"playlists": {
"href": "https://api.spotify.com/v1/browse/categories/metal/playlists?offset=0&limit=20",
"items": [
{
"collaborative": false,
"external_urls": {
"spotify": "https://open.spotify.com/playlist/37i9dQZF1DWTcqUzwhNmKv"
},
"href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWTcqUzwhNmKv",
@drumnation
drumnation / single-browse-category.json
Created January 20, 2019 22:43
Spotify single browse category
{
"href": "https://api.spotify.com/v1/browse/categories/metal",
"icons": [
{
"height": 274,
"url": "https://t.scdn.co/media/original/metal_27c921443fd0a5ba95b1b2c2ae654b2b_274x274.jpg",
"width": 274
}
],
"id": "metal",
@drumnation
drumnation / get-users-profile.json
Last active January 20, 2019 22:46
Spotify Get User Profile
{
"birthdate": "1983-03-31",
"country": "US",
"display_name": "David Miles",
"email": "davidmiles@milk.com",
"external_urls": {
"spotify": "https://open.spotify.com/user/128455501"
},
"followers": {
"href": null,
@drumnation
drumnation / user-top-artist-track.json
Created January 20, 2019 22:48
Get User's Top Artists and tracks
{
"items": [
{
"album": {
"album_type": "ALBUM",
"artists": [
{
"external_urls": {
"spotify": "https://open.spotify.com/artist/5akVqMzdZOdbMYbE4vNZWD"
},