Skip to content

Instantly share code, notes, and snippets.

View shadow257's full-sized avatar

Tony Burden II shadow257

View GitHub Profile
@shadow257
shadow257 / get-latest-videos.js
Created January 30, 2019 18:32 — forked from AmmarCodes/get-latest-videos.js
Get the latest videos from a YouTube channel with jQuery.
function show_my_videos(data){
html = ['<ul id="videos">'];
$(data.data.items).each(function(item) {
id = item.id;
description = item.title;
html.push('<iframe width="560" height="315" src="//www.youtube.com/embed/'+ id +'" frameborder="0" allowfullscreen></iframe>');
});
$("#videos").html(html.join(''));
}
// Replace [YOUTUBE_CHANNEL] with the channel you want
@shadow257
shadow257 / Dockerfile-author
Created October 17, 2017 18:48 — forked from mikemarr/Dockerfile-author
docker-compose file for dockerized aem
# DOCKER-VERSION 1.0.1
FROM lexmarkweb/docker-aem-author
MAINTAINER YOUR_NAME_HERE