Skip to content

Instantly share code, notes, and snippets.

View daveaseeman's full-sized avatar

Dave Seeman daveaseeman

View GitHub Profile
@keithweaver
keithweaver / split-video-by-frame.py
Created May 10, 2017 19:30
Using OpenCV takes a mp4 video and produces a number of images.
'''
Using OpenCV takes a mp4 video and produces a number of images.
Requirements
----
You require OpenCV 3.2 to be installed.
Run
----
Open the main.py and edit the path to the video. Then run:
@matt-west
matt-west / postachio-categories-3.html
Created May 6, 2014 13:15
Postach.io Categories Header Links
<div class="nav-collapse collapse">
<ul class="nav pull-right">
<li><a href="/">Blog</a></li>
<!-- Categories -->
<li><a href="/tag/design" class="{{ set_active('/tag/design') }}">Design</a></li>
<li><a href="/tag/web" class="{{ set_active('/tag/web') }}">Web</a></li>
<li><a href="/tag/ios" class="{{ set_active('/tag/ios') }}">iOS</a></li>
<li><a href="/tag/android" class="{{ set_active('/tag/android') }}">Android</a></li>
<!-- END Categories -->
=begin
Jekyll tag to include Markdown text from _includes directory preprocessing with Liquid.
Usage:
{% markdown <filename> %}
=end
module Jekyll
class MarkdownTag < Liquid::Tag
def initialize(tag_name, text, tokens)
super
@text = text.strip
@CristinaSolana
CristinaSolana / gist:1885435
Created February 22, 2012 14:56
Keeping a fork up to date

1. Clone your fork:

git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git

2. Add remote from original repository in your forked repository:

cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream