Skip to content

Instantly share code, notes, and snippets.

View daveaseeman's full-sized avatar

Dave Seeman daveaseeman

View GitHub Profile
@daveaseeman
daveaseeman / index.html
Created July 14, 2015 19:47
100% Height Divs
<body>
<div class="container">
<div class="green"></div>
<div class="blue"></div>
<div class="purple"></div>
</div>
</body>
@daveaseeman
daveaseeman / showhide.css
Created July 14, 2015 14:13
show/hide div with css
.collapse{
display:inline-block;
}
.collapse + input{
display:none;
}
.collapse + input + *{
display:none;
}
.collapse+ input:checked + *{
<?xml version="1.0" encoding="UTF-8"?>
<opml version="1.0">
<head>
<title>null subscriptions in feedly Cloud</title>
</head>
<body>
<outline text="Design" title="Design">
<outline type="rss" text="Co.Design" title="Co.Design" xmlUrl="http://www.fastcodesign.com/rss.xml" htmlUrl="http://www.fastcodesign.com//www.fastcodesign.com"/>
<outline type="rss" text="Yanko Design" title="Yanko Design" xmlUrl="http://www.yankodesign.com/feed/" htmlUrl="http://www.yankodesign.com"/>
@daveaseeman
daveaseeman / bitly.rb
Last active August 29, 2015 14:20 — forked from jalcine/bitly.rb
##
## @author Jacky Alcine <[email protected]>
## @see [TODO: Add URL to post about bit.ly URLs.]
##
## Add in Bit.ly URL support to pages.
require "bitly"
# Ensure use of new API.
Bitly.use_api_version_3
=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
@daveaseeman
daveaseeman / git_commands.md
Last active August 29, 2015 14:13
Popular git commands and workflows, with instructions

Frequent Git Commands and Workflows

Commit and Push Code

git add -A
git commit -am 'commit message'
git push
@daveaseeman
daveaseeman / crawl_website.rb
Last active August 29, 2015 14:12 — forked from Achillefs/gist:1004409
web crawling example in ruby
%W[rubygems anemone].each {|r| require r}
site_root = "url"
# Create the root folder
folder = URI.parse(site_root).host
FileUtils.mkdir_p(File.join(".",folder))
Anemone.crawl(site_root) do |anemone|
anemone.on_every_page do |page|
@daveaseeman
daveaseeman / import.rb
Last active August 29, 2015 14:10 — forked from ngauthier/import.rb
A more generic import.rb that should work for any xml file if all you need is every "post" from your source. Use this to import posts to Jekyll!
require 'rubygems'
require 'nokogiri'
require 'fileutils'
require 'date'
require 'reverse_markdown'
# usage: ruby import.rb feed.xml
# feed.xml is an file you can download from most websites that support RSS
data = File.read ARGV[0]