Skip to content

Instantly share code, notes, and snippets.

View srikanthlavudia's full-sized avatar

Srikanth Lavudia srikanthlavudia

  • Melbourne Australia
View GitHub Profile
@srikanthlavudia
srikanthlavudia / WordPress Youtube Playlist Widget.md
Last active September 10, 2015 13:49
WordPress Youtube Playlist Widget

This plugin loads the list of videos from a given plublic youtube playlist ID using google API. To get started: 1) Click the "Activate" link to the left of this description, 2) Create your Google API key, and 3) Go to https://www.youtube.com/ page, and get any public playlist that you like to show on the website sidebar and save to the widget configuration box.

Major features in WordPress Youtube Playlist Widget include:

  1. Automatically loads the list of videos based on the public Youtube Playlist ID once the configuration is stored into the widget box.

  2. When a particular video link is clicked by the user, they don't have to leave your website to watch the video, instead this plugin allows them to watch the video in a JQuery dialog box.

  3. After installing this plugin you can use the widget multiple times on multiple locations within the same page for showing different set of youtube videos by using different Youtube Playlist ID's.

@mkchandler
mkchandler / Setting up SourceGear DiffMerge for Git.md
Last active January 13, 2022 10:44
Setup guide for making Git recognize and use SourceGear DiffMerge.
  1. Download SourceGear DiffMerge: http://sourcegear.com/diffmerge/index.html

  2. Add the following to your global .gitconfig file:

     [diff]
         tool = DiffMerge
     [difftool "DiffMerge"]
         cmd = 'C:/Program Files/SourceGear/Common/DiffMerge/sgdm.exe' "$LOCAL" "$REMOTE"
     [merge]
    

tool = DiffMerge