Skip to content

Instantly share code, notes, and snippets.

@rebhichaouki
rebhichaouki / leech.php
Created June 4, 2017 18:12 — forked from bigcalm/leech.php
Soundcloud playlist download
<?php
$baseDir = "mp3s";
$soundcloudURL = "http://soundcloud.com/ninja-tune/sets/solid-steel-radio-shows/";
$urlBits = str_replace('http://', '', $soundcloudURL);
$urlBits = preg_replace('@/$@', '', $urlBits);
$urlBits = explode("/", $urlBits);
/**
* http://soundcloud.com/ninja-tune/sets/solid-steel-radio-shows/
@rebhichaouki
rebhichaouki / us.html
Created June 4, 2017 18:11 — forked from danielribeiro/us.html
soundcloud us
<!DOCTYPE html>
<html>
<head>
<script src="underscore-min.js"></script>
<script src="http://connect.soundcloud.com/sdk.js"></script>
</head>
<body>
<h1>My Amazing Underscore project</h1>
<div id="timeline-container">
<div id="my-timeline"></div>
</div>
<!-- always load the CSS -->
<link rel="stylesheet" type="text/css" href="http://cdn.knightlab.com/libs/timeline/latest/css/themes/dark.css">
<!-- but no need for both -->
@rebhichaouki
rebhichaouki / Day54: WebGL Particle Animation..markdown
Created June 30, 2015 21:45
Day54: WebGL Particle Animation.
@rebhichaouki
rebhichaouki / Youtube-like loading bar with pure CSS.markdown
Created June 29, 2015 14:49
Youtube-like loading bar with pure CSS

Youtube-like loading bar with pure CSS

Using the Youtube loading bar as a concept, and tweaking with some finesse.

A Pen by Ash Durham on CodePen.

License.