Skip to content

Instantly share code, notes, and snippets.

View Jobayer-Ahmed's full-sized avatar

Jobayer Ahmed Mickey Jobayer-Ahmed

View GitHub Profile
@ramonvictor
ramonvictor / get-youtube-info.js
Last active December 9, 2020 15:43
Javascript/jQuery function to get youtube video information by passing video url.
var getYoutubeIdByUrl = function( url ){
var regExp = /^.*((youtu.be\/)|(v\/)|(\/u\/\w\/)|(embed\/)|(watch\?))\??v?=?([^#\&\?]*).*/;
var match = url.match(regExp);
if(match&&match[7].length==11){
return match[7];
}
return false;
};

Some GitHub Extensions that I use. They may also enable you to improve your productivity on GitHub.

  1. Octotree allows easy exploration of the source code within the browser through a panel on the left.

chrome-github

2 github-dashboard provides the ability to filter events on the Github.com activity dashboard.

i