├── .rbenv-version
├── .rvmrc
├── .gitattributes
├── source
├── CNAME
├── _includes
│ ├── footer.html
│ ├── header.html
│ ├── post
│ │ ├── disqus_thread.html
│ │ ├── author.html
│ │ ├── categories.html
│ │ ├── sharing.html
│ │ └── date.html
│ ├── custom
│ │ ├── header.html
│ │ ├── head.html
│ │ ├── footer.html
│ │ ├── navigation.html
│ │ ├── after_footer.html
│ │ ├── asides
│ │ │ └── about.html
│ │ └── category_feed.xml
│ ├── after_footer.html
│ ├── fancybox.html
│ ├── asides
│ │ ├── twitter.html
│ │ ├── recent_posts.html
│ │ ├── googleplus.html
│ │ ├── delicious.html
│ │ ├── pinboard.html
│ │ └── github.html
│ ├── google_plus_one.html
│ ├── facebook_like.html
│ ├── twitter_sharing.html
│ ├── aside.html
│ ├── archive_post.html
│ ├── google_analytics.html
│ ├── banner.html
│ ├── navigation.html
│ ├── disqus.html
│ ├── article.html
│ ├── social.html
│ └── head.html
├── favicon.png
├── assets
│ ├── sean.jpg
│ ├── colin-git.jpg
│ ├── products.jpg
│ ├── jwplayer
│ │ ├── player.swf
│ │ └── glow
│ │ │ ├── dock
│ │ │ └── button.png
│ │ │ ├── playlist
│ │ │ ├── item.png
│ │ │ ├── itemOver.png
│ │ │ ├── sliderCapTop.png
│ │ │ ├── sliderRail.png
│ │ │ ├── sliderThumb.png
│ │ │ └── sliderCapBottom.png
│ │ │ ├── display
│ │ │ ├── muteIcon.png
│ │ │ ├── playIcon.png
│ │ │ ├── background.png
│ │ │ └── bufferIcon.png
│ │ │ ├── controlbar
│ │ │ ├── divider.png
│ │ │ ├── background.png
│ │ │ ├── muteButton.png
│ │ │ ├── playButton.png
│ │ │ ├── blankButton.png
│ │ │ ├── pauseButton.png
│ │ │ ├── unmuteButton.png
│ │ │ ├── muteButtonOver.png
│ │ │ ├── pauseButtonOver.png
│ │ │ ├── playButtonOver.png
│ │ │ ├── timeSliderRail.png
│ │ │ ├── fullscreenButton.png
│ │ │ ├── timeSliderBuffer.png
│ │ │ ├── timeSliderCapLeft.png
│ │ │ ├── unmuteButtonOver.png
│ │ │ ├── fullscreenButtonOver.png
│ │ │ ├── normalscreenButton.png
│ │ │ ├── timeSliderCapRight.png
│ │ │ ├── timeSliderProgress.png
│ │ │ └── normalscreenButtonOver.png
│ │ │ └── sharing
│ │ │ ├── embedIcon.png
│ │ │ ├── shareIcon.png
│ │ │ ├── embedScreen.png
│ │ │ └── shareScreen.png
│ ├── Swift.playground.zip
│ ├── layout-animation.gif
│ ├── Sean-Dougherty-Resume.pdf
│ └── Swift.playground
│ │ ├── timeline.xctimeline
│ │ └── contents.xcplayground
├── images
│ ├── email.png
│ ├── hover.png
│ ├── noise.png
│ ├── rss.png
│ ├── totop.png
│ ├── active.png
│ ├── code_bg.png
│ ├── loading.gif
│ ├── search.png
│ ├── html5css3.png
│ ├── injections.jpg
│ ├── line-tile.png
│ ├── bg-gradient.png
│ ├── bird_32_gray.png
│ ├── retina_dust.png
│ ├── search-dark.png
│ ├── search-white.png
│ ├── social
│ │ ├── Skype.png
│ │ ├── Facebook.png
│ │ ├── Github.png
│ │ ├── GithubH.png
│ │ ├── LastFM.png
│ │ ├── LastFMH.png
│ │ ├── LinkedIn.png
│ │ ├── Picasa.png
│ │ ├── PicasaH.png
│ │ ├── SkypeH.png
│ │ ├── Twitter.png
│ │ ├── TwitterH.png
│ │ ├── Youtube.png
│ │ ├── YoutubeH.png
│ │ ├── FacebookH.png
│ │ └── LinkedInH.png
│ ├── dotted-border.png
│ ├── fancybox
│ │ ├── blank.gif
│ │ ├── fancybox_loading.gif
│ │ └── fancybox_sprite.png
│ ├── loading_pacman.gif
│ └── bird_32_gray_fail.png
├── font
│ ├── Slackey.woff
│ ├── Fjalla-one.woff
│ ├── fontawesome-webfont.eot
│ ├── fontawesome-webfont.ttf
│ ├── fontawesome-webfont.svgz
│ ├── fontawesome-webfont.woff
│ ├── yanonekaffeesatz-regular-webfont.eot
│ ├── yanonekaffeesatz-regular-webfont.ttf
│ └── yanonekaffeesatz-regular-webfont.woff
├── robots.txt
├── blog
│ ├── archives
│ │ └── index.html
│ └── index.html
├── _layouts
│ ├── category_index.html
│ ├── info.html
│ ├── default.html
│ ├── page.html
│ └── post.html
├── search.html
├── _posts
│ ├── 2016-06-22-open-sourcing-ellos-ios-app.markdown
│ ├── 2014-12-30-space-exploration.markdown
│ └── 2016-10-10-fixing-a-commit-to-the-wrong-branch.markdown
├── javascripts
│ ├── ajaxify.js
│ ├── github.js
│ ├── fabric.js
│ ├── pinboard.js
│ ├── jquery-tapir.js
│ └── libs
│ │ └── jXHR.js
├── atom.xml
└── index.markdown
├── .slugignore
├── sass
├── _plugins.scss
├── partials
│ ├── _sidebar.scss
│ ├── sidebar
│ │ ├── _delicious.scss
│ │ ├── _pinboard.scss
│ │ └── _googleplus.scss
│ ├── _sharing.scss
│ ├── _header.scss
│ ├── _footer.scss
│ └── _archive.scss
├── _base.scss
├── custom
│ ├── _color.scss
│ ├── _fonts.scss
│ ├── _layout.scss
│ └── _colors.scss
├── parts
│ ├── _comment.scss
│ ├── _footer.scss
│ ├── _index.scss
│ ├── _twitter.scss
│ ├── _post.scss
│ └── _archive.scss
├── _parts.scss
├── base
│ ├── _color.scss
│ ├── _font.scss
│ ├── _utilities.scss
│ └── _solarized.scss
├── plugins
│ └── _plugins.scss
├── _partials.scss
└── screen.scss
├── .themes
└── classic
│ ├── source
│ ├── _includes
│ │ ├── footer.html
│ │ ├── header.html
│ │ ├── custom
│ │ │ ├── asides
│ │ │ │ └── about.html
│ │ │ ├── after_footer.html
│ │ │ ├── navigation.html
│ │ │ ├── header.html
│ │ │ ├── footer.html
│ │ │ ├── head.html
│ │ │ └── category_feed.xml
│ │ ├── post
│ │ │ ├── disqus_thread.html
│ │ │ ├── author.html
│ │ │ ├── categories.html
│ │ │ ├── sharing.html
│ │ │ └── date.html
│ │ ├── after_footer.html
│ │ ├── asides
│ │ │ ├── recent_posts.html
│ │ │ ├── googleplus.html
│ │ │ ├── delicious.html
│ │ │ ├── pinboard.html
│ │ │ └── github.html
│ │ ├── google_plus_one.html
│ │ ├── facebook_like.html
│ │ ├── archive_post.html
│ │ ├── twitter_sharing.html
│ │ ├── google_analytics.html
│ │ ├── navigation.html
│ │ ├── disqus.html
│ │ ├── article.html
│ │ └── head.html
│ ├── favicon.png
│ ├── images
│ │ ├── rss.png
│ │ ├── email.png
│ │ ├── noise.png
│ │ ├── search.png
│ │ ├── code_bg.png
│ │ ├── line-tile.png
│ │ ├── bird_32_gray.png
│ │ ├── dotted-border.png
│ │ └── bird_32_gray_fail.png
│ ├── robots.txt
│ ├── assets
│ │ └── jwplayer
│ │ │ ├── player.swf
│ │ │ └── glow
│ │ │ ├── dock
│ │ │ └── button.png
│ │ │ ├── playlist
│ │ │ ├── item.png
│ │ │ ├── itemOver.png
│ │ │ ├── sliderRail.png
│ │ │ ├── sliderThumb.png
│ │ │ ├── sliderCapTop.png
│ │ │ └── sliderCapBottom.png
│ │ │ ├── display
│ │ │ ├── muteIcon.png
│ │ │ ├── playIcon.png
│ │ │ ├── background.png
│ │ │ └── bufferIcon.png
│ │ │ ├── sharing
│ │ │ ├── embedIcon.png
│ │ │ ├── shareIcon.png
│ │ │ ├── embedScreen.png
│ │ │ └── shareScreen.png
│ │ │ └── controlbar
│ │ │ ├── divider.png
│ │ │ ├── background.png
│ │ │ ├── blankButton.png
│ │ │ ├── muteButton.png
│ │ │ ├── pauseButton.png
│ │ │ ├── playButton.png
│ │ │ ├── muteButtonOver.png
│ │ │ ├── playButtonOver.png
│ │ │ ├── timeSliderRail.png
│ │ │ ├── unmuteButton.png
│ │ │ ├── fullscreenButton.png
│ │ │ ├── pauseButtonOver.png
│ │ │ ├── timeSliderBuffer.png
│ │ │ ├── unmuteButtonOver.png
│ │ │ ├── normalscreenButton.png
│ │ │ ├── timeSliderCapLeft.png
│ │ │ ├── timeSliderCapRight.png
│ │ │ ├── timeSliderProgress.png
│ │ │ ├── fullscreenButtonOver.png
│ │ │ └── normalscreenButtonOver.png
│ ├── blog
│ │ └── archives
│ │ │ └── index.html
│ ├── _layouts
│ │ ├── category_index.html
│ │ ├── default.html
│ │ ├── page.html
│ │ └── post.html
│ ├── index.html
│ ├── atom.xml
│ └── javascripts
│ │ ├── github.js
│ │ ├── pinboard.js
│ │ └── libs
│ │ └── jXHR.js
│ ├── sass
│ ├── partials
│ │ ├── _sidebar.scss
│ │ ├── sidebar
│ │ │ ├── _delicious.scss
│ │ │ ├── _pinboard.scss
│ │ │ └── _googleplus.scss
│ │ ├── _sharing.scss
│ │ ├── _header.scss
│ │ ├── _footer.scss
│ │ └── _archive.scss
│ ├── _base.scss
│ ├── custom
│ │ ├── _styles.scss
│ │ ├── _fonts.scss
│ │ ├── _layout.scss
│ │ └── _colors.scss
│ ├── _partials.scss
│ ├── plugins
│ │ └── _plugins.scss
│ ├── screen.scss
│ └── base
│ │ ├── _utilities.scss
│ │ └── _solarized.scss
│ └── .editorconfig
├── favicon.png
├── images
├── rss.png
├── code_bg.png
├── email.png
├── noise.png
├── search.png
├── line-tile.png
├── bird_32_gray.png
├── dotted-border.png
└── bird_32_gray_fail.png
├── robots.txt
├── assets
└── jwplayer
│ ├── player.swf
│ └── glow
│ ├── dock
│ └── button.png
│ ├── playlist
│ ├── item.png
│ ├── itemOver.png
│ ├── sliderRail.png
│ ├── sliderThumb.png
│ ├── sliderCapTop.png
│ └── sliderCapBottom.png
│ ├── controlbar
│ ├── divider.png
│ ├── background.png
│ ├── blankButton.png
│ ├── muteButton.png
│ ├── pauseButton.png
│ ├── playButton.png
│ ├── unmuteButton.png
│ ├── muteButtonOver.png
│ ├── playButtonOver.png
│ ├── timeSliderRail.png
│ ├── fullscreenButton.png
│ ├── pauseButtonOver.png
│ ├── timeSliderBuffer.png
│ ├── timeSliderCapLeft.png
│ ├── unmuteButtonOver.png
│ ├── normalscreenButton.png
│ ├── timeSliderCapRight.png
│ ├── timeSliderProgress.png
│ ├── fullscreenButtonOver.png
│ └── normalscreenButtonOver.png
│ ├── display
│ ├── background.png
│ ├── bufferIcon.png
│ ├── muteIcon.png
│ └── playIcon.png
│ └── sharing
│ ├── embedIcon.png
│ ├── shareIcon.png
│ ├── embedScreen.png
│ └── shareScreen.png
├── .travis.yml
├── .powrc
├── .gitignore
├── README.markdown
├── config.rb
├── .editorconfig
├── Gemfile
├── plugins
├── haml.rb
├── titlecase.rb
├── raw.rb
├── config_tag.rb
├── backtick_code_block.rb
├── jsfiddle.rb
├── pygments_code.rb
├── preview_unpublished.rb
├── video_tag.rb
├── include_array.rb
├── pullquote.rb
├── image_tag.rb
├── render_partial.rb
├── include_code.rb
└── blockquote.rb
├── sitemap.xml
├── config.ru
├── javascripts
├── github.js
├── pinboard.js
└── libs
│ └── jXHR.js
├── CHANGELOG.markdown
└── Gemfile.lock
/.rbenv-version:
--------------------------------------------------------------------------------
1 | 2.2.2
2 |
--------------------------------------------------------------------------------
/.rvmrc:
--------------------------------------------------------------------------------
1 | rvm use 1.9.3
2 |
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | * text=auto
2 |
--------------------------------------------------------------------------------
/source/CNAME:
--------------------------------------------------------------------------------
1 | seancdougherty.com
--------------------------------------------------------------------------------
/.slugignore:
--------------------------------------------------------------------------------
1 | plugins
2 | sass
3 | source
4 |
--------------------------------------------------------------------------------
/sass/_plugins.scss:
--------------------------------------------------------------------------------
1 | @import "plugins/fancybox";
--------------------------------------------------------------------------------
/source/_includes/footer.html:
--------------------------------------------------------------------------------
1 | {% include custom/footer.html %}
2 |
--------------------------------------------------------------------------------
/source/_includes/header.html:
--------------------------------------------------------------------------------
1 | {% include custom/header.html %}
2 |
--------------------------------------------------------------------------------
/.themes/classic/source/_includes/footer.html:
--------------------------------------------------------------------------------
1 | {% include custom/footer.html %}
2 |
--------------------------------------------------------------------------------
/.themes/classic/source/_includes/header.html:
--------------------------------------------------------------------------------
1 | {% include custom/header.html %}
2 |
--------------------------------------------------------------------------------
/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/favicon.png
--------------------------------------------------------------------------------
/images/rss.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/images/rss.png
--------------------------------------------------------------------------------
/images/code_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/images/code_bg.png
--------------------------------------------------------------------------------
/images/email.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/images/email.png
--------------------------------------------------------------------------------
/images/noise.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/images/noise.png
--------------------------------------------------------------------------------
/images/search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/images/search.png
--------------------------------------------------------------------------------
/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow:
3 |
4 | Sitemap: http://seancdougherty.com/sitemap.xml
--------------------------------------------------------------------------------
/source/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/favicon.png
--------------------------------------------------------------------------------
/images/line-tile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/images/line-tile.png
--------------------------------------------------------------------------------
/images/bird_32_gray.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/images/bird_32_gray.png
--------------------------------------------------------------------------------
/source/assets/sean.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/sean.jpg
--------------------------------------------------------------------------------
/source/images/email.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/images/email.png
--------------------------------------------------------------------------------
/source/images/hover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/images/hover.png
--------------------------------------------------------------------------------
/source/images/noise.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/images/noise.png
--------------------------------------------------------------------------------
/source/images/rss.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/images/rss.png
--------------------------------------------------------------------------------
/source/images/totop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/images/totop.png
--------------------------------------------------------------------------------
/images/dotted-border.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/images/dotted-border.png
--------------------------------------------------------------------------------
/source/font/Slackey.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/font/Slackey.woff
--------------------------------------------------------------------------------
/source/images/active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/images/active.png
--------------------------------------------------------------------------------
/source/images/code_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/images/code_bg.png
--------------------------------------------------------------------------------
/source/images/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/images/loading.gif
--------------------------------------------------------------------------------
/source/images/search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/images/search.png
--------------------------------------------------------------------------------
/assets/jwplayer/player.swf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/assets/jwplayer/player.swf
--------------------------------------------------------------------------------
/images/bird_32_gray_fail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/images/bird_32_gray_fail.png
--------------------------------------------------------------------------------
/source/assets/colin-git.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/colin-git.jpg
--------------------------------------------------------------------------------
/source/assets/products.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/products.jpg
--------------------------------------------------------------------------------
/source/font/Fjalla-one.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/font/Fjalla-one.woff
--------------------------------------------------------------------------------
/source/images/html5css3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/images/html5css3.png
--------------------------------------------------------------------------------
/source/images/injections.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/images/injections.jpg
--------------------------------------------------------------------------------
/source/images/line-tile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/images/line-tile.png
--------------------------------------------------------------------------------
/source/images/bg-gradient.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/images/bg-gradient.png
--------------------------------------------------------------------------------
/source/images/bird_32_gray.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/images/bird_32_gray.png
--------------------------------------------------------------------------------
/source/images/retina_dust.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/images/retina_dust.png
--------------------------------------------------------------------------------
/source/images/search-dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/images/search-dark.png
--------------------------------------------------------------------------------
/source/images/search-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/images/search-white.png
--------------------------------------------------------------------------------
/source/images/social/Skype.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/images/social/Skype.png
--------------------------------------------------------------------------------
/source/robots.txt:
--------------------------------------------------------------------------------
1 | ---
2 | layout: nil
3 | ---
4 | User-agent: *
5 | Disallow:
6 |
7 | Sitemap: {{ site.url }}/sitemap.xml
--------------------------------------------------------------------------------
/source/assets/jwplayer/player.swf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/jwplayer/player.swf
--------------------------------------------------------------------------------
/source/images/dotted-border.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/images/dotted-border.png
--------------------------------------------------------------------------------
/source/images/fancybox/blank.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/images/fancybox/blank.gif
--------------------------------------------------------------------------------
/source/images/loading_pacman.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/images/loading_pacman.gif
--------------------------------------------------------------------------------
/source/images/social/Facebook.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/images/social/Facebook.png
--------------------------------------------------------------------------------
/source/images/social/Github.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/images/social/Github.png
--------------------------------------------------------------------------------
/source/images/social/GithubH.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/images/social/GithubH.png
--------------------------------------------------------------------------------
/source/images/social/LastFM.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/images/social/LastFM.png
--------------------------------------------------------------------------------
/source/images/social/LastFMH.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/images/social/LastFMH.png
--------------------------------------------------------------------------------
/source/images/social/LinkedIn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/images/social/LinkedIn.png
--------------------------------------------------------------------------------
/source/images/social/Picasa.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/images/social/Picasa.png
--------------------------------------------------------------------------------
/source/images/social/PicasaH.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/images/social/PicasaH.png
--------------------------------------------------------------------------------
/source/images/social/SkypeH.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/images/social/SkypeH.png
--------------------------------------------------------------------------------
/source/images/social/Twitter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/images/social/Twitter.png
--------------------------------------------------------------------------------
/source/images/social/TwitterH.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/images/social/TwitterH.png
--------------------------------------------------------------------------------
/source/images/social/Youtube.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/images/social/Youtube.png
--------------------------------------------------------------------------------
/source/images/social/YoutubeH.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/images/social/YoutubeH.png
--------------------------------------------------------------------------------
/.themes/classic/source/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/favicon.png
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
1 | language: ruby
2 | rvm:
3 | - 1.9.3
4 | - 1.9.2
5 | script: bundle exec rake install; bundle exec rake generate
6 |
--------------------------------------------------------------------------------
/source/assets/Swift.playground.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/Swift.playground.zip
--------------------------------------------------------------------------------
/source/assets/layout-animation.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/layout-animation.gif
--------------------------------------------------------------------------------
/source/font/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/font/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/source/font/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/font/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/source/images/bird_32_gray_fail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/images/bird_32_gray_fail.png
--------------------------------------------------------------------------------
/source/images/social/FacebookH.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/images/social/FacebookH.png
--------------------------------------------------------------------------------
/source/images/social/LinkedInH.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/images/social/LinkedInH.png
--------------------------------------------------------------------------------
/.powrc:
--------------------------------------------------------------------------------
1 | if [ -f "$rvm_path/scripts/rvm" ] && [ -f ".rvmrc" ] ; then
2 | source "$rvm_path/scripts/rvm"
3 | source ".rvmrc"
4 | fi
5 |
--------------------------------------------------------------------------------
/.themes/classic/source/images/rss.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/images/rss.png
--------------------------------------------------------------------------------
/assets/jwplayer/glow/dock/button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/assets/jwplayer/glow/dock/button.png
--------------------------------------------------------------------------------
/assets/jwplayer/glow/playlist/item.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/assets/jwplayer/glow/playlist/item.png
--------------------------------------------------------------------------------
/source/font/fontawesome-webfont.svgz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/font/fontawesome-webfont.svgz
--------------------------------------------------------------------------------
/source/font/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/font/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/.themes/classic/source/images/email.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/images/email.png
--------------------------------------------------------------------------------
/.themes/classic/source/images/noise.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/images/noise.png
--------------------------------------------------------------------------------
/.themes/classic/source/images/search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/images/search.png
--------------------------------------------------------------------------------
/.themes/classic/source/robots.txt:
--------------------------------------------------------------------------------
1 | ---
2 | layout: nil
3 | ---
4 | User-agent: *
5 | Disallow:
6 |
7 | Sitemap: {{ site.url }}/sitemap.xml
--------------------------------------------------------------------------------
/source/assets/Sean-Dougherty-Resume.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/Sean-Dougherty-Resume.pdf
--------------------------------------------------------------------------------
/.themes/classic/source/images/code_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/images/code_bg.png
--------------------------------------------------------------------------------
/.themes/classic/source/images/line-tile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/images/line-tile.png
--------------------------------------------------------------------------------
/assets/jwplayer/glow/controlbar/divider.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/assets/jwplayer/glow/controlbar/divider.png
--------------------------------------------------------------------------------
/assets/jwplayer/glow/display/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/assets/jwplayer/glow/display/background.png
--------------------------------------------------------------------------------
/assets/jwplayer/glow/display/bufferIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/assets/jwplayer/glow/display/bufferIcon.png
--------------------------------------------------------------------------------
/assets/jwplayer/glow/display/muteIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/assets/jwplayer/glow/display/muteIcon.png
--------------------------------------------------------------------------------
/assets/jwplayer/glow/display/playIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/assets/jwplayer/glow/display/playIcon.png
--------------------------------------------------------------------------------
/assets/jwplayer/glow/playlist/itemOver.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/assets/jwplayer/glow/playlist/itemOver.png
--------------------------------------------------------------------------------
/assets/jwplayer/glow/sharing/embedIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/assets/jwplayer/glow/sharing/embedIcon.png
--------------------------------------------------------------------------------
/assets/jwplayer/glow/sharing/shareIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/assets/jwplayer/glow/sharing/shareIcon.png
--------------------------------------------------------------------------------
/source/assets/jwplayer/glow/dock/button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/jwplayer/glow/dock/button.png
--------------------------------------------------------------------------------
/source/images/fancybox/fancybox_loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/images/fancybox/fancybox_loading.gif
--------------------------------------------------------------------------------
/source/images/fancybox/fancybox_sprite.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/images/fancybox/fancybox_sprite.png
--------------------------------------------------------------------------------
/assets/jwplayer/glow/playlist/sliderRail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/assets/jwplayer/glow/playlist/sliderRail.png
--------------------------------------------------------------------------------
/assets/jwplayer/glow/playlist/sliderThumb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/assets/jwplayer/glow/playlist/sliderThumb.png
--------------------------------------------------------------------------------
/assets/jwplayer/glow/sharing/embedScreen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/assets/jwplayer/glow/sharing/embedScreen.png
--------------------------------------------------------------------------------
/assets/jwplayer/glow/sharing/shareScreen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/assets/jwplayer/glow/sharing/shareScreen.png
--------------------------------------------------------------------------------
/source/assets/jwplayer/glow/playlist/item.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/jwplayer/glow/playlist/item.png
--------------------------------------------------------------------------------
/.themes/classic/source/_includes/custom/asides/about.html:
--------------------------------------------------------------------------------
1 |
2 | About Me
3 | A little something about messss.
4 |
5 |
--------------------------------------------------------------------------------
/.themes/classic/source/images/bird_32_gray.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/images/bird_32_gray.png
--------------------------------------------------------------------------------
/.themes/classic/source/images/dotted-border.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/images/dotted-border.png
--------------------------------------------------------------------------------
/assets/jwplayer/glow/controlbar/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/assets/jwplayer/glow/controlbar/background.png
--------------------------------------------------------------------------------
/assets/jwplayer/glow/controlbar/blankButton.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/assets/jwplayer/glow/controlbar/blankButton.png
--------------------------------------------------------------------------------
/assets/jwplayer/glow/controlbar/muteButton.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/assets/jwplayer/glow/controlbar/muteButton.png
--------------------------------------------------------------------------------
/assets/jwplayer/glow/controlbar/pauseButton.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/assets/jwplayer/glow/controlbar/pauseButton.png
--------------------------------------------------------------------------------
/assets/jwplayer/glow/controlbar/playButton.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/assets/jwplayer/glow/controlbar/playButton.png
--------------------------------------------------------------------------------
/assets/jwplayer/glow/controlbar/unmuteButton.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/assets/jwplayer/glow/controlbar/unmuteButton.png
--------------------------------------------------------------------------------
/assets/jwplayer/glow/playlist/sliderCapTop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/assets/jwplayer/glow/playlist/sliderCapTop.png
--------------------------------------------------------------------------------
/sass/partials/_sidebar.scss:
--------------------------------------------------------------------------------
1 | @import "sidebar/base";
2 | @import "sidebar/googleplus";
3 | @import "sidebar/pinboard";
4 | @import "sidebar/delicious";
5 |
--------------------------------------------------------------------------------
/sass/partials/sidebar/_delicious.scss:
--------------------------------------------------------------------------------
1 | .delicious-posts {
2 | a.delicious-link { margin-bottom: .5em; display: block; }
3 | p { font-size: 1em; }
4 | }
5 |
--------------------------------------------------------------------------------
/source/assets/jwplayer/glow/display/muteIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/jwplayer/glow/display/muteIcon.png
--------------------------------------------------------------------------------
/source/assets/jwplayer/glow/display/playIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/jwplayer/glow/display/playIcon.png
--------------------------------------------------------------------------------
/source/font/yanonekaffeesatz-regular-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/font/yanonekaffeesatz-regular-webfont.eot
--------------------------------------------------------------------------------
/source/font/yanonekaffeesatz-regular-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/font/yanonekaffeesatz-regular-webfont.ttf
--------------------------------------------------------------------------------
/.themes/classic/source/assets/jwplayer/player.swf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/assets/jwplayer/player.swf
--------------------------------------------------------------------------------
/assets/jwplayer/glow/controlbar/muteButtonOver.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/assets/jwplayer/glow/controlbar/muteButtonOver.png
--------------------------------------------------------------------------------
/assets/jwplayer/glow/controlbar/playButtonOver.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/assets/jwplayer/glow/controlbar/playButtonOver.png
--------------------------------------------------------------------------------
/assets/jwplayer/glow/controlbar/timeSliderRail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/assets/jwplayer/glow/controlbar/timeSliderRail.png
--------------------------------------------------------------------------------
/assets/jwplayer/glow/playlist/sliderCapBottom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/assets/jwplayer/glow/playlist/sliderCapBottom.png
--------------------------------------------------------------------------------
/sass/_base.scss:
--------------------------------------------------------------------------------
1 | @import "base/utilities";
2 | @import "base/solarized";
3 | @import "base/theme";
4 | @import "base/typography";
5 | @import "base/layout";
6 |
--------------------------------------------------------------------------------
/source/assets/jwplayer/glow/controlbar/divider.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/jwplayer/glow/controlbar/divider.png
--------------------------------------------------------------------------------
/source/assets/jwplayer/glow/display/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/jwplayer/glow/display/background.png
--------------------------------------------------------------------------------
/source/assets/jwplayer/glow/display/bufferIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/jwplayer/glow/display/bufferIcon.png
--------------------------------------------------------------------------------
/source/assets/jwplayer/glow/playlist/itemOver.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/jwplayer/glow/playlist/itemOver.png
--------------------------------------------------------------------------------
/source/assets/jwplayer/glow/sharing/embedIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/jwplayer/glow/sharing/embedIcon.png
--------------------------------------------------------------------------------
/source/assets/jwplayer/glow/sharing/shareIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/jwplayer/glow/sharing/shareIcon.png
--------------------------------------------------------------------------------
/source/font/yanonekaffeesatz-regular-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/font/yanonekaffeesatz-regular-webfont.woff
--------------------------------------------------------------------------------
/.themes/classic/source/images/bird_32_gray_fail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/images/bird_32_gray_fail.png
--------------------------------------------------------------------------------
/assets/jwplayer/glow/controlbar/fullscreenButton.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/assets/jwplayer/glow/controlbar/fullscreenButton.png
--------------------------------------------------------------------------------
/assets/jwplayer/glow/controlbar/pauseButtonOver.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/assets/jwplayer/glow/controlbar/pauseButtonOver.png
--------------------------------------------------------------------------------
/assets/jwplayer/glow/controlbar/timeSliderBuffer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/assets/jwplayer/glow/controlbar/timeSliderBuffer.png
--------------------------------------------------------------------------------
/assets/jwplayer/glow/controlbar/timeSliderCapLeft.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/assets/jwplayer/glow/controlbar/timeSliderCapLeft.png
--------------------------------------------------------------------------------
/assets/jwplayer/glow/controlbar/unmuteButtonOver.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/assets/jwplayer/glow/controlbar/unmuteButtonOver.png
--------------------------------------------------------------------------------
/source/assets/jwplayer/glow/controlbar/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/jwplayer/glow/controlbar/background.png
--------------------------------------------------------------------------------
/source/assets/jwplayer/glow/controlbar/muteButton.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/jwplayer/glow/controlbar/muteButton.png
--------------------------------------------------------------------------------
/source/assets/jwplayer/glow/controlbar/playButton.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/jwplayer/glow/controlbar/playButton.png
--------------------------------------------------------------------------------
/source/assets/jwplayer/glow/playlist/sliderCapTop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/jwplayer/glow/playlist/sliderCapTop.png
--------------------------------------------------------------------------------
/source/assets/jwplayer/glow/playlist/sliderRail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/jwplayer/glow/playlist/sliderRail.png
--------------------------------------------------------------------------------
/source/assets/jwplayer/glow/playlist/sliderThumb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/jwplayer/glow/playlist/sliderThumb.png
--------------------------------------------------------------------------------
/source/assets/jwplayer/glow/sharing/embedScreen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/jwplayer/glow/sharing/embedScreen.png
--------------------------------------------------------------------------------
/source/assets/jwplayer/glow/sharing/shareScreen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/jwplayer/glow/sharing/shareScreen.png
--------------------------------------------------------------------------------
/.themes/classic/sass/partials/_sidebar.scss:
--------------------------------------------------------------------------------
1 | @import "sidebar/base";
2 | @import "sidebar/googleplus";
3 | @import "sidebar/pinboard";
4 | @import "sidebar/delicious";
5 |
--------------------------------------------------------------------------------
/assets/jwplayer/glow/controlbar/normalscreenButton.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/assets/jwplayer/glow/controlbar/normalscreenButton.png
--------------------------------------------------------------------------------
/assets/jwplayer/glow/controlbar/timeSliderCapRight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/assets/jwplayer/glow/controlbar/timeSliderCapRight.png
--------------------------------------------------------------------------------
/assets/jwplayer/glow/controlbar/timeSliderProgress.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/assets/jwplayer/glow/controlbar/timeSliderProgress.png
--------------------------------------------------------------------------------
/source/assets/jwplayer/glow/controlbar/blankButton.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/jwplayer/glow/controlbar/blankButton.png
--------------------------------------------------------------------------------
/source/assets/jwplayer/glow/controlbar/pauseButton.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/jwplayer/glow/controlbar/pauseButton.png
--------------------------------------------------------------------------------
/source/assets/jwplayer/glow/controlbar/unmuteButton.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/jwplayer/glow/controlbar/unmuteButton.png
--------------------------------------------------------------------------------
/.themes/classic/sass/_base.scss:
--------------------------------------------------------------------------------
1 | @import "base/utilities";
2 | @import "base/solarized";
3 | @import "base/theme";
4 | @import "base/typography";
5 | @import "base/layout";
6 |
--------------------------------------------------------------------------------
/.themes/classic/sass/partials/sidebar/_delicious.scss:
--------------------------------------------------------------------------------
1 | .delicious-posts {
2 | a.delicious-link { margin-bottom: .5em; display: block; }
3 | p { font-size: 1em; }
4 | }
5 |
--------------------------------------------------------------------------------
/assets/jwplayer/glow/controlbar/fullscreenButtonOver.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/assets/jwplayer/glow/controlbar/fullscreenButtonOver.png
--------------------------------------------------------------------------------
/assets/jwplayer/glow/controlbar/normalscreenButtonOver.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/assets/jwplayer/glow/controlbar/normalscreenButtonOver.png
--------------------------------------------------------------------------------
/source/_includes/post/disqus_thread.html:
--------------------------------------------------------------------------------
1 | Please enable JavaScript to view the comments powered by Disqus.
2 |
--------------------------------------------------------------------------------
/source/assets/jwplayer/glow/controlbar/muteButtonOver.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/jwplayer/glow/controlbar/muteButtonOver.png
--------------------------------------------------------------------------------
/source/assets/jwplayer/glow/controlbar/pauseButtonOver.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/jwplayer/glow/controlbar/pauseButtonOver.png
--------------------------------------------------------------------------------
/source/assets/jwplayer/glow/controlbar/playButtonOver.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/jwplayer/glow/controlbar/playButtonOver.png
--------------------------------------------------------------------------------
/source/assets/jwplayer/glow/controlbar/timeSliderRail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/jwplayer/glow/controlbar/timeSliderRail.png
--------------------------------------------------------------------------------
/source/assets/jwplayer/glow/playlist/sliderCapBottom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/jwplayer/glow/playlist/sliderCapBottom.png
--------------------------------------------------------------------------------
/.themes/classic/source/assets/jwplayer/glow/dock/button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/assets/jwplayer/glow/dock/button.png
--------------------------------------------------------------------------------
/source/assets/jwplayer/glow/controlbar/fullscreenButton.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/jwplayer/glow/controlbar/fullscreenButton.png
--------------------------------------------------------------------------------
/source/assets/jwplayer/glow/controlbar/timeSliderBuffer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/jwplayer/glow/controlbar/timeSliderBuffer.png
--------------------------------------------------------------------------------
/source/assets/jwplayer/glow/controlbar/timeSliderCapLeft.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/jwplayer/glow/controlbar/timeSliderCapLeft.png
--------------------------------------------------------------------------------
/source/assets/jwplayer/glow/controlbar/unmuteButtonOver.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/jwplayer/glow/controlbar/unmuteButtonOver.png
--------------------------------------------------------------------------------
/.themes/classic/sass/custom/_styles.scss:
--------------------------------------------------------------------------------
1 | // This File is imported last, and will override other styles in the cascade
2 | // Add styles here to make changes without digging in too much
3 |
--------------------------------------------------------------------------------
/.themes/classic/source/assets/jwplayer/glow/playlist/item.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/assets/jwplayer/glow/playlist/item.png
--------------------------------------------------------------------------------
/source/assets/jwplayer/glow/controlbar/fullscreenButtonOver.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/jwplayer/glow/controlbar/fullscreenButtonOver.png
--------------------------------------------------------------------------------
/source/assets/jwplayer/glow/controlbar/normalscreenButton.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/jwplayer/glow/controlbar/normalscreenButton.png
--------------------------------------------------------------------------------
/source/assets/jwplayer/glow/controlbar/timeSliderCapRight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/jwplayer/glow/controlbar/timeSliderCapRight.png
--------------------------------------------------------------------------------
/source/assets/jwplayer/glow/controlbar/timeSliderProgress.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/jwplayer/glow/controlbar/timeSliderProgress.png
--------------------------------------------------------------------------------
/.themes/classic/source/_includes/post/disqus_thread.html:
--------------------------------------------------------------------------------
1 | Please enable JavaScript to view the comments powered by Disqus.
2 |
--------------------------------------------------------------------------------
/.themes/classic/source/assets/jwplayer/glow/display/muteIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/assets/jwplayer/glow/display/muteIcon.png
--------------------------------------------------------------------------------
/.themes/classic/source/assets/jwplayer/glow/display/playIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/assets/jwplayer/glow/display/playIcon.png
--------------------------------------------------------------------------------
/.themes/classic/source/assets/jwplayer/glow/playlist/itemOver.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/assets/jwplayer/glow/playlist/itemOver.png
--------------------------------------------------------------------------------
/.themes/classic/source/assets/jwplayer/glow/sharing/embedIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/assets/jwplayer/glow/sharing/embedIcon.png
--------------------------------------------------------------------------------
/.themes/classic/source/assets/jwplayer/glow/sharing/shareIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/assets/jwplayer/glow/sharing/shareIcon.png
--------------------------------------------------------------------------------
/source/assets/jwplayer/glow/controlbar/normalscreenButtonOver.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/source/assets/jwplayer/glow/controlbar/normalscreenButtonOver.png
--------------------------------------------------------------------------------
/.themes/classic/source/assets/jwplayer/glow/controlbar/divider.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/assets/jwplayer/glow/controlbar/divider.png
--------------------------------------------------------------------------------
/.themes/classic/source/assets/jwplayer/glow/display/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/assets/jwplayer/glow/display/background.png
--------------------------------------------------------------------------------
/.themes/classic/source/assets/jwplayer/glow/display/bufferIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/assets/jwplayer/glow/display/bufferIcon.png
--------------------------------------------------------------------------------
/.themes/classic/source/assets/jwplayer/glow/playlist/sliderRail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/assets/jwplayer/glow/playlist/sliderRail.png
--------------------------------------------------------------------------------
/.themes/classic/source/assets/jwplayer/glow/playlist/sliderThumb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/assets/jwplayer/glow/playlist/sliderThumb.png
--------------------------------------------------------------------------------
/.themes/classic/source/assets/jwplayer/glow/sharing/embedScreen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/assets/jwplayer/glow/sharing/embedScreen.png
--------------------------------------------------------------------------------
/.themes/classic/source/assets/jwplayer/glow/sharing/shareScreen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/assets/jwplayer/glow/sharing/shareScreen.png
--------------------------------------------------------------------------------
/source/assets/Swift.playground/timeline.xctimeline:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/.themes/classic/source/assets/jwplayer/glow/controlbar/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/assets/jwplayer/glow/controlbar/background.png
--------------------------------------------------------------------------------
/.themes/classic/source/assets/jwplayer/glow/controlbar/blankButton.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/assets/jwplayer/glow/controlbar/blankButton.png
--------------------------------------------------------------------------------
/.themes/classic/source/assets/jwplayer/glow/controlbar/muteButton.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/assets/jwplayer/glow/controlbar/muteButton.png
--------------------------------------------------------------------------------
/.themes/classic/source/assets/jwplayer/glow/controlbar/pauseButton.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/assets/jwplayer/glow/controlbar/pauseButton.png
--------------------------------------------------------------------------------
/.themes/classic/source/assets/jwplayer/glow/controlbar/playButton.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/assets/jwplayer/glow/controlbar/playButton.png
--------------------------------------------------------------------------------
/.themes/classic/source/assets/jwplayer/glow/playlist/sliderCapTop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/assets/jwplayer/glow/playlist/sliderCapTop.png
--------------------------------------------------------------------------------
/sass/partials/_sharing.scss:
--------------------------------------------------------------------------------
1 | .sharing {
2 | p.meta + & {
3 | padding: { top: 1em; left: 0; }
4 | background: $img-border top left repeat-x;
5 | }
6 | }
7 |
8 | #fb-root { display: none; }
9 |
--------------------------------------------------------------------------------
/.themes/classic/source/assets/jwplayer/glow/controlbar/muteButtonOver.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/assets/jwplayer/glow/controlbar/muteButtonOver.png
--------------------------------------------------------------------------------
/.themes/classic/source/assets/jwplayer/glow/controlbar/playButtonOver.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/assets/jwplayer/glow/controlbar/playButtonOver.png
--------------------------------------------------------------------------------
/.themes/classic/source/assets/jwplayer/glow/controlbar/timeSliderRail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/assets/jwplayer/glow/controlbar/timeSliderRail.png
--------------------------------------------------------------------------------
/.themes/classic/source/assets/jwplayer/glow/controlbar/unmuteButton.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/assets/jwplayer/glow/controlbar/unmuteButton.png
--------------------------------------------------------------------------------
/.themes/classic/source/assets/jwplayer/glow/playlist/sliderCapBottom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/assets/jwplayer/glow/playlist/sliderCapBottom.png
--------------------------------------------------------------------------------
/source/_includes/custom/header.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | {% if site.subtitle %}
4 | {{ site.subtitle }}
5 | {% endif %}
6 |
7 |
--------------------------------------------------------------------------------
/.themes/classic/source/_includes/custom/after_footer.html:
--------------------------------------------------------------------------------
1 | {% comment %}
2 | Add content to be output at the bottom of each page. (You might use this for analytics scripts, for example)
3 | {% endcomment %}
4 |
--------------------------------------------------------------------------------
/.themes/classic/source/assets/jwplayer/glow/controlbar/fullscreenButton.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/assets/jwplayer/glow/controlbar/fullscreenButton.png
--------------------------------------------------------------------------------
/.themes/classic/source/assets/jwplayer/glow/controlbar/pauseButtonOver.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/assets/jwplayer/glow/controlbar/pauseButtonOver.png
--------------------------------------------------------------------------------
/.themes/classic/source/assets/jwplayer/glow/controlbar/timeSliderBuffer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/assets/jwplayer/glow/controlbar/timeSliderBuffer.png
--------------------------------------------------------------------------------
/.themes/classic/source/assets/jwplayer/glow/controlbar/unmuteButtonOver.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/assets/jwplayer/glow/controlbar/unmuteButtonOver.png
--------------------------------------------------------------------------------
/.themes/classic/source/_includes/custom/navigation.html:
--------------------------------------------------------------------------------
1 |
2 | Blog
3 | Archives
4 |
5 |
--------------------------------------------------------------------------------
/.themes/classic/source/assets/jwplayer/glow/controlbar/normalscreenButton.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/assets/jwplayer/glow/controlbar/normalscreenButton.png
--------------------------------------------------------------------------------
/.themes/classic/source/assets/jwplayer/glow/controlbar/timeSliderCapLeft.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/assets/jwplayer/glow/controlbar/timeSliderCapLeft.png
--------------------------------------------------------------------------------
/.themes/classic/source/assets/jwplayer/glow/controlbar/timeSliderCapRight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/assets/jwplayer/glow/controlbar/timeSliderCapRight.png
--------------------------------------------------------------------------------
/.themes/classic/source/assets/jwplayer/glow/controlbar/timeSliderProgress.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/assets/jwplayer/glow/controlbar/timeSliderProgress.png
--------------------------------------------------------------------------------
/.themes/classic/sass/partials/_sharing.scss:
--------------------------------------------------------------------------------
1 | .sharing {
2 | p.meta + & {
3 | padding: { top: 1em; left: 0; }
4 | background: $img-border top left repeat-x;
5 | }
6 | }
7 |
8 | #fb-root { display: none; }
9 |
--------------------------------------------------------------------------------
/.themes/classic/source/assets/jwplayer/glow/controlbar/fullscreenButtonOver.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/assets/jwplayer/glow/controlbar/fullscreenButtonOver.png
--------------------------------------------------------------------------------
/sass/custom/_color.scss:
--------------------------------------------------------------------------------
1 | // $color-background: #eee;
2 | // $color-main: #258fb8;
3 | // $color-gray01: #666;
4 | // $color-gray02: #999;
5 | // $color-gray03: #ccc;
6 | // $color-gray04: #ddd;
7 | // $color-gray05: #fff;
--------------------------------------------------------------------------------
/sass/parts/_comment.scss:
--------------------------------------------------------------------------------
1 | #comment{
2 | padding: 30px 0;
3 | @include border-shadow();
4 | h2.title{
5 | font-size: 25px;
6 | font-weight: 300;
7 | line-height: 35px;
8 | margin-bottom: 20px;
9 | }
10 | }
--------------------------------------------------------------------------------
/source/_includes/after_footer.html:
--------------------------------------------------------------------------------
1 | {% include disqus.html %}
2 | {% include facebook_like.html %}
3 | {% include google_plus_one.html %}
4 | {% include twitter_sharing.html %}
5 | {% include custom/after_footer.html %}
6 |
--------------------------------------------------------------------------------
/source/_includes/fancybox.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/.themes/classic/source/_includes/custom/header.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | {% if site.subtitle %}
4 | {{ site.subtitle }}
5 | {% endif %}
6 |
7 |
--------------------------------------------------------------------------------
/.themes/classic/source/assets/jwplayer/glow/controlbar/normalscreenButtonOver.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/steam/seancdougherty.com/master/.themes/classic/source/assets/jwplayer/glow/controlbar/normalscreenButtonOver.png
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .bundle
2 | .DS_Store
3 | .sass-cache
4 | .gist-cache
5 | .pygments-cache
6 | _deploy
7 | public
8 | sass.old
9 | source.old
10 | source/_stash
11 | source/stylesheets/screen.css
12 | vendor
13 | node_modules
14 |
--------------------------------------------------------------------------------
/.themes/classic/source/_includes/custom/footer.html:
--------------------------------------------------------------------------------
1 |
2 | Copyright © {{ site.time | date: "%Y" }} - {{ site.author }} -
3 | Powered by Octopress
4 |
5 |
--------------------------------------------------------------------------------
/sass/parts/_footer.scss:
--------------------------------------------------------------------------------
1 | footer{
2 | padding: 20px 0;
3 | text-align: center;
4 | font-size: 0.6em;
5 | color: #666;
6 | }
7 | footer a{
8 | color: #123;
9 | }
10 | footer a:hover{
11 | color: #456;
12 | }
13 |
--------------------------------------------------------------------------------
/.themes/classic/source/_includes/after_footer.html:
--------------------------------------------------------------------------------
1 | {% include disqus.html %}
2 | {% include facebook_like.html %}
3 | {% include google_plus_one.html %}
4 | {% include twitter_sharing.html %}
5 | {% include custom/after_footer.html %}
6 |
--------------------------------------------------------------------------------
/sass/_parts.scss:
--------------------------------------------------------------------------------
1 | @import "parts/header";
2 | @import "parts/index";
3 | @import "parts/article";
4 | @import "parts/post";
5 | @import "parts/archive";
6 | @import "parts/comment";
7 | @import "parts/footer";
8 | @import "parts/syntax";
9 | @import "parts/twitter";
--------------------------------------------------------------------------------
/sass/base/_color.scss:
--------------------------------------------------------------------------------
1 | $color-background: #eee !default;
2 | $color-main: #258fb8 !default;
3 | $color-gray01: #666 !default;
4 | $color-gray02: #999 !default;
5 | $color-gray03: #ccc !default;
6 | $color-gray04: #ddd !default;
7 | $color-gray05: #fff !default;
8 |
--------------------------------------------------------------------------------
/sass/plugins/_plugins.scss:
--------------------------------------------------------------------------------
1 | /*
2 | Add plugin stylesheets to this directory and they will be automatically
3 | Imported. Load order is alphabetical and styles can be overriden in
4 | custom/_style.scss which is loaded after all plugin stylesheets.
5 | */
6 |
7 |
--------------------------------------------------------------------------------
/sass/_partials.scss:
--------------------------------------------------------------------------------
1 | @import "partials/header";
2 | @import "partials/navigation";
3 | @import "partials/blog";
4 | @import "partials/sharing";
5 | @import "partials/syntax";
6 | @import "partials/archive";
7 | @import "partials/sidebar";
8 | @import "partials/footer";
9 |
--------------------------------------------------------------------------------
/sass/screen.scss:
--------------------------------------------------------------------------------
1 | @import "compass";
2 | @include global-reset;
3 |
4 | @import "custom/colors";
5 | @import "custom/fonts";
6 | @import "custom/layout";
7 | @import "base";
8 | @import "partials";
9 | @import "plugins/**/*";
10 | @import "custom/styles";
11 |
--------------------------------------------------------------------------------
/.themes/classic/sass/_partials.scss:
--------------------------------------------------------------------------------
1 | @import "partials/header";
2 | @import "partials/navigation";
3 | @import "partials/blog";
4 | @import "partials/sharing";
5 | @import "partials/syntax";
6 | @import "partials/archive";
7 | @import "partials/sidebar";
8 | @import "partials/footer";
9 |
--------------------------------------------------------------------------------
/.themes/classic/sass/plugins/_plugins.scss:
--------------------------------------------------------------------------------
1 | /*
2 | Add plugin stylesheets to this directory and they will be automatically
3 | Imported. Load order is alphabetical and styles can be overriden in
4 | custom/_style.scss which is loaded after all plugin stylesheets.
5 | */
6 |
7 |
--------------------------------------------------------------------------------
/.themes/classic/sass/screen.scss:
--------------------------------------------------------------------------------
1 | @import "compass";
2 | @include global-reset;
3 | @include reset-html5;
4 |
5 | @import "custom/colors";
6 | @import "custom/fonts";
7 | @import "custom/layout";
8 | @import "base";
9 | @import "partials";
10 | @import "plugins/**/*";
11 | @import "custom/styles";
12 |
--------------------------------------------------------------------------------
/source/_includes/custom/head.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/sass/partials/sidebar/_pinboard.scss:
--------------------------------------------------------------------------------
1 | #pinboard_linkroll {
2 | .pin-title, .pin-description {
3 | display: block;
4 | margin-bottom: .5em;
5 | }
6 | .pin-tag {
7 | @include hover-link;
8 | @extend .aside-alt-link;
9 | &:after { content: ','; }
10 | &:last-child:after { content: ''; }
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/source/assets/Swift.playground/contents.xcplayground:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/source/_includes/post/author.html:
--------------------------------------------------------------------------------
1 | {% if post.author %}
2 | {% assign author = post.author %}
3 | {% elsif page.author %}
4 | {% assign author = page.author %}
5 | {% else %}
6 | {% assign author = site.author %}
7 | {% endif %}
8 | {% if author %}Posted by {{ author }} {% endif %}
9 |
--------------------------------------------------------------------------------
/.themes/classic/sass/partials/sidebar/_pinboard.scss:
--------------------------------------------------------------------------------
1 | #pinboard_linkroll {
2 | .pin-title, .pin-description {
3 | display: block;
4 | margin-bottom: .5em;
5 | }
6 | .pin-tag {
7 | @include hover-link;
8 | @extend .aside-alt-link;
9 | &:after { content: ','; }
10 | &:last-child:after { content: ''; }
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/.themes/classic/source/_includes/post/author.html:
--------------------------------------------------------------------------------
1 | {% if post.author %}
2 | {% assign author = post.author %}
3 | {% elsif page.author %}
4 | {% assign author = page.author %}
5 | {% else %}
6 | {% assign author = site.author %}
7 | {% endif %}
8 | {% if author %}Posted by {{ author }} {% endif %}
9 |
--------------------------------------------------------------------------------
/.themes/classic/source/_includes/custom/head.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/source/_includes/custom/footer.html:
--------------------------------------------------------------------------------
1 |
2 | Copyright © {{ site.time | date: "%Y" }} - {{ site.author }}
3 | This site is Open Source , feel free to open an issue or submit a pull request .
4 |
5 |
--------------------------------------------------------------------------------
/source/_includes/custom/navigation.html:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/source/_includes/asides/twitter.html:
--------------------------------------------------------------------------------
1 | {% if site.twitter_user %}
2 |
8 | {% endif %}
--------------------------------------------------------------------------------
/source/_includes/asides/recent_posts.html:
--------------------------------------------------------------------------------
1 |
11 |
--------------------------------------------------------------------------------
/sass/partials/_header.scss:
--------------------------------------------------------------------------------
1 | body > header {
2 | background: $header-bg;
3 | h1 {
4 | display: inline-block;
5 | margin: 0;
6 | a, a:visited, a:hover {
7 | color: $title_color;
8 | text-decoration: none;
9 | }
10 | }
11 | h2 {
12 | margin: .2em 0 0;
13 | @extend .sans;
14 | font-size: 1em;
15 | color: $subtitle-color;
16 | font-weight: normal;
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/.themes/classic/source/_includes/asides/recent_posts.html:
--------------------------------------------------------------------------------
1 |
11 |
--------------------------------------------------------------------------------
/.themes/classic/sass/partials/_header.scss:
--------------------------------------------------------------------------------
1 | body > header {
2 | background: $header-bg;
3 | h1 {
4 | display: inline-block;
5 | margin: 0;
6 | a, a:visited, a:hover {
7 | color: $title_color;
8 | text-decoration: none;
9 | }
10 | }
11 | h2 {
12 | margin: .2em 0 0;
13 | @extend .sans;
14 | font-size: 1em;
15 | color: $subtitle-color;
16 | font-weight: normal;
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/source/_includes/asides/googleplus.html:
--------------------------------------------------------------------------------
1 | {% if site.googleplus_user %}
2 |
10 | {% endif %}
11 |
12 |
--------------------------------------------------------------------------------
/README.markdown:
--------------------------------------------------------------------------------
1 | ## https://github.com/steam/steam.github.io is the repo for the website seancdougherty.com
2 |
3 | https://github.com/steam/seancdoughert.com is the octopress project for http://seancdougherty.com
4 |
5 | Write posts and modify content in seancdougherty.com, run the rake deploy task and then copy the files into steam.github.io and push.
6 |
7 | The files will not be created automatically in steam.github.io, you need to copy and push.
8 |
--------------------------------------------------------------------------------
/source/_includes/google_plus_one.html:
--------------------------------------------------------------------------------
1 | {% if site.google_plus_one %}
2 |
9 | {% endif %}
10 |
--------------------------------------------------------------------------------
/source/_includes/post/categories.html:
--------------------------------------------------------------------------------
1 | {% capture category %}{% if post %}{{ post.categories | category_links | size }}{% else %}{{ page.categories | category_links | size }}{% endif %}{% endcapture %}
2 | {% unless category == '0' %}
3 |
4 | {% if post %}
5 | {{ post.categories | category_links }}
6 | {% else %}
7 | {{ page.categories | category_links }}
8 | {% endif %}
9 |
10 | {% endunless %}
11 |
--------------------------------------------------------------------------------
/.themes/classic/source/_includes/asides/googleplus.html:
--------------------------------------------------------------------------------
1 | {% if site.googleplus_user %}
2 |
10 | {% endif %}
11 |
12 |
--------------------------------------------------------------------------------
/source/_includes/asides/delicious.html:
--------------------------------------------------------------------------------
1 | {% if site.delicious_user %}
2 |
8 | {% endif %}
--------------------------------------------------------------------------------
/.themes/classic/source/_includes/google_plus_one.html:
--------------------------------------------------------------------------------
1 | {% if site.google_plus_one %}
2 |
9 | {% endif %}
10 |
--------------------------------------------------------------------------------
/.themes/classic/source/_includes/post/categories.html:
--------------------------------------------------------------------------------
1 | {% capture category %}{% if post %}{{ post.categories | category_links | size }}{% else %}{{ page.categories | category_links | size }}{% endif %}{% endcapture %}
2 | {% unless category == '0' %}
3 |
4 | {% if post %}
5 | {{ post.categories | category_links }}
6 | {% else %}
7 | {{ page.categories | category_links }}
8 | {% endif %}
9 |
10 | {% endunless %}
11 |
--------------------------------------------------------------------------------
/config.rb:
--------------------------------------------------------------------------------
1 | require 'sass-globbing'
2 |
3 | # Require any additional compass plugins here.
4 | project_type = :stand_alone
5 |
6 | # Publishing paths
7 | http_path = "/"
8 | http_images_path = "/images"
9 | http_fonts_path = "/fonts"
10 | css_dir = "public/stylesheets"
11 |
12 | # Local development paths
13 | sass_dir = "sass"
14 | images_dir = "source/images"
15 | fonts_dir = "source/fonts"
16 |
17 | line_comments = false
18 | output_style = :compressed
19 |
--------------------------------------------------------------------------------
/.themes/classic/source/_includes/asides/delicious.html:
--------------------------------------------------------------------------------
1 | {% if site.delicious_user %}
2 |
8 | {% endif %}
--------------------------------------------------------------------------------
/source/blog/archives/index.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: page
3 | title: Blog Archive
4 | footer: false
5 | ---
6 |
7 |
8 | {% for post in site.posts reverse %}
9 | {% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
10 | {% unless year == this_year %}
11 | {% assign year = this_year %}
12 |
{{ year }}
13 | {% endunless %}
14 |
15 | {% include archive_post.html %}
16 |
17 | {% endfor %}
18 |
19 |
--------------------------------------------------------------------------------
/source/_includes/facebook_like.html:
--------------------------------------------------------------------------------
1 | {% if site.facebook_like %}
2 |
3 |
10 | {% endif %}
11 |
--------------------------------------------------------------------------------
/source/_layouts/category_index.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: page
3 | footer: false
4 | ---
5 |
6 |
7 | {% for post in site.categories[page.category] %}
8 | {% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
9 | {% unless year == this_year %}
10 | {% assign year = this_year %}
11 |
{{ year }}
12 | {% endunless %}
13 |
14 | {% include archive_post.html %}
15 |
16 | {% endfor %}
17 |
18 |
--------------------------------------------------------------------------------
/.editorconfig:
--------------------------------------------------------------------------------
1 | ; This file is for unifying the coding style for different editors and IDEs.
2 | ; More information at http://EditorConfig.org
3 |
4 | root = true
5 |
6 | ; Use 2 spaces for indentation in all Ruby files
7 |
8 | [*.rb]
9 | indent_style = space
10 | indent_size = 2
11 |
12 | [Rakefile]
13 | indent_style = space
14 | indent_size = 2
15 |
16 | [Gemfile*]
17 | indent_style = space
18 | indent_size = 2
19 |
20 | [config.ru]
21 | indent_style = space
22 | indent_size = 2
23 |
--------------------------------------------------------------------------------
/.themes/classic/source/blog/archives/index.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: page
3 | title: Blog Archive
4 | footer: false
5 | ---
6 |
7 |
8 | {% for post in site.posts reverse %}
9 | {% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
10 | {% unless year == this_year %}
11 | {% assign year = this_year %}
12 |
{{ year }}
13 | {% endunless %}
14 |
15 | {% include archive_post.html %}
16 |
17 | {% endfor %}
18 |
19 |
--------------------------------------------------------------------------------
/.themes/classic/source/_includes/facebook_like.html:
--------------------------------------------------------------------------------
1 | {% if site.facebook_like %}
2 |
3 |
10 | {% endif %}
11 |
--------------------------------------------------------------------------------
/.themes/classic/source/_layouts/category_index.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: page
3 | footer: false
4 | ---
5 |
6 |
7 | {% for post in site.categories[page.category] %}
8 | {% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
9 | {% unless year == this_year %}
10 | {% assign year = this_year %}
11 |
{{ year }}
12 | {% endunless %}
13 |
14 | {% include archive_post.html %}
15 |
16 | {% endfor %}
17 |
18 |
--------------------------------------------------------------------------------
/Gemfile:
--------------------------------------------------------------------------------
1 | source "http://rubygems.org"
2 |
3 | group :development do
4 | gem 'rake', '~> 0.9'
5 | gem 'jekyll', '~> 0.12'
6 | gem 'rdiscount', '~> 2.0.7'
7 | gem 'pygments.rb', '~> 0.3.4'
8 | gem 'RedCloth', '~> 4.2.9'
9 | gem 'haml', '~> 3.1.7'
10 | gem 'compass', '~> 0.12.2'
11 | gem 'sass-globbing', '~> 1.0.0'
12 | gem 'rubypants', '~> 0.2.0'
13 | gem 'rb-fsevent', '~> 0.9'
14 | gem 'stringex', '~> 1.4.0'
15 | gem 'liquid', '~> 2.3.0'
16 | end
17 |
18 | gem 'sinatra', '~> 1.4.2'
19 |
--------------------------------------------------------------------------------
/source/_includes/twitter_sharing.html:
--------------------------------------------------------------------------------
1 | {% if site.twitter_follow_button or site.twitter_tweet_button %}
2 |
11 | {% endif %}
12 |
--------------------------------------------------------------------------------
/plugins/haml.rb:
--------------------------------------------------------------------------------
1 | module Jekyll
2 | require 'haml'
3 | class HamlConverter < Converter
4 | safe true
5 | priority :low
6 |
7 | def matches(ext)
8 | ext =~ /haml/i
9 | end
10 |
11 | def output_ext(ext)
12 | ".html"
13 | end
14 |
15 | def convert(content)
16 | begin
17 | engine = Haml::Engine.new(content)
18 | engine.render
19 | rescue StandardError => e
20 | puts "!!! HAML Error: " + e.message
21 | end
22 | end
23 | end
24 | end
25 |
--------------------------------------------------------------------------------
/.themes/classic/source/_includes/archive_post.html:
--------------------------------------------------------------------------------
1 | {% capture category %}{{ post.categories | size }}{% endcapture %}
2 |
3 | {{ post.date | date: "%b %d %Y "}}
4 | {% if category != '0' %}
5 |
6 | posted in {{ post.categories | category_links }}
7 |
8 | {% endif %}
9 |
--------------------------------------------------------------------------------
/.themes/classic/source/_includes/twitter_sharing.html:
--------------------------------------------------------------------------------
1 | {% if site.twitter_follow_button or site.twitter_tweet_button %}
2 |
11 | {% endif %}
12 |
--------------------------------------------------------------------------------
/sass/custom/_fonts.scss:
--------------------------------------------------------------------------------
1 | // Here you can easily change font faces which are used in your site.
2 | // To give it a try, uncomment some of the lines below rebuild your blog, and see how it works. your sites's.
3 | // If you love to use Web Fonts, you also need to add some lines to source/_includes/custom/head.html
4 |
5 | $sans: "Open Sans", sans-serif;
6 | $serif: "Noto Serif", serif;
7 | //$mono: "Courier", monospace;
8 | $heading-font-family: $sans;
9 | //$header-title-font-family: "Futura", sans-serif;
10 | //$header-subtitle-font-family: "Futura", sans-serif;
11 |
--------------------------------------------------------------------------------
/source/_includes/aside.html:
--------------------------------------------------------------------------------
1 |
16 |
--------------------------------------------------------------------------------
/source/_includes/archive_post.html:
--------------------------------------------------------------------------------
1 | {% capture category %}{{ post.categories | size }}{% endcapture %}
2 |
3 | {{ post.date | date: "%b %d %Y "}}
4 | {% if category != '0' %}
5 |
6 | posted in {{ post.categories | category_links }}
7 |
8 | {% endif %}
9 |
--------------------------------------------------------------------------------
/source/_includes/post/sharing.html:
--------------------------------------------------------------------------------
1 |
2 | {% if site.twitter_tweet_button %}
3 |
4 | {% endif %}
5 | {% if site.google_plus_one %}
6 |
7 | {% endif %}
8 | {% if site.facebook_like %}
9 |
10 | {% endif %}
11 |
12 |
--------------------------------------------------------------------------------
/.themes/classic/sass/custom/_fonts.scss:
--------------------------------------------------------------------------------
1 | // Here you can easily change font faces which are used in your site.
2 | // To give it a try, uncomment some of the lines below rebuild your blog, and see how it works. your sites's.
3 | // If you love to use Web Fonts, you also need to add some lines to source/_includes/custom/head.html
4 |
5 | //$sans: "Optima", sans-serif;
6 | //$serif: "Baskerville", serif;
7 | //$mono: "Courier", monospace;
8 | //$heading-font-family: "Verdana", sans-serif;
9 | //$header-title-font-family: "Futura", sans-serif;
10 | //$header-subtitle-font-family: "Futura", sans-serif;
11 |
--------------------------------------------------------------------------------
/.themes/classic/source/_includes/post/sharing.html:
--------------------------------------------------------------------------------
1 |
2 | {% if site.twitter_tweet_button %}
3 |
4 | {% endif %}
5 | {% if site.google_plus_one %}
6 |
7 | {% endif %}
8 | {% if site.facebook_like %}
9 |
10 | {% endif %}
11 |
12 |
--------------------------------------------------------------------------------
/sass/partials/sidebar/_googleplus.scss:
--------------------------------------------------------------------------------
1 | .googleplus {
2 | h1 {
3 | -moz-box-shadow: none !important;
4 | -webkit-box-shadow: none !important;
5 | -o-box-shadow: none !important;
6 | box-shadow: none !important;
7 | border-bottom: 0px none !important;
8 | }
9 | a {
10 | text-decoration: none;
11 | white-space: normal !important;
12 | line-height: 32px;
13 |
14 | img {
15 | float: left;
16 | margin-right: 0.5em;
17 | border: 0 none;
18 | }
19 | }
20 | }
21 |
22 | .googleplus-hidden {
23 | position: absolute;
24 | top: -1000em;
25 | left: -1000em;
26 | }
27 |
--------------------------------------------------------------------------------
/sass/partials/_footer.scss:
--------------------------------------------------------------------------------
1 | body > footer {
2 | @extend .sans;
3 | font-size: .8em;
4 | color: $footer-color;
5 | text-shadow: lighten($footer-bg, 5) 0 1px;
6 | background-color: $footer-bg;
7 | @include background($footer-bg-front, $footer-bg-back);
8 | border-top: 1px solid $footer-border-top;
9 | position: relative;
10 | padding-top: 1em;
11 | padding-bottom: 1em;
12 | margin-bottom: 3em;
13 | @include border-bottom-radius(.4em);
14 | z-index: 1;
15 | a {
16 | @include link-colors($footer-link-color, $footer-link-color-hover, $visited: $footer-link-color);
17 | }
18 | p:last-child { margin-bottom: 0; }
19 | }
20 |
--------------------------------------------------------------------------------
/.themes/classic/sass/partials/sidebar/_googleplus.scss:
--------------------------------------------------------------------------------
1 | .googleplus {
2 | h1 {
3 | -moz-box-shadow: none !important;
4 | -webkit-box-shadow: none !important;
5 | -o-box-shadow: none !important;
6 | box-shadow: none !important;
7 | border-bottom: 0px none !important;
8 | }
9 | a {
10 | text-decoration: none;
11 | white-space: normal !important;
12 | line-height: 32px;
13 |
14 | img {
15 | float: left;
16 | margin-right: 0.5em;
17 | border: 0 none;
18 | }
19 | }
20 | }
21 |
22 | .googleplus-hidden {
23 | position: absolute;
24 | top: -1000em;
25 | left: -1000em;
26 | }
27 |
--------------------------------------------------------------------------------
/source/_includes/google_analytics.html:
--------------------------------------------------------------------------------
1 | {% if site.google_analytics_tracking_id %}
2 |
13 | {% endif %}
14 |
--------------------------------------------------------------------------------
/source/_layouts/info.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | ---
4 |
5 |
6 |
7 | {% if page.title %}
8 |
9 | {% if site.titlecase %}{{ page.title | titlecase }}{% else %}{{ page.title }}{% endif %}
10 |
11 | {% endif %}
12 | {{ content }}
13 | {% unless page.footer == false %}
14 |
15 | {% unless page.sharing == false %}
16 | {% include post/sharing.html %}
17 | {% endunless %}
18 |
19 | {% endunless %}
20 |
21 |
22 | {% unless page.sidebar == false %}
23 | {% include aside.html %}
24 | {% endunless %}
25 |
--------------------------------------------------------------------------------
/source/search.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | ---
4 | Search Results
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
19 |
20 |
--------------------------------------------------------------------------------
/.themes/classic/sass/partials/_footer.scss:
--------------------------------------------------------------------------------
1 | body > footer {
2 | @extend .sans;
3 | font-size: .8em;
4 | color: $footer-color;
5 | text-shadow: lighten($footer-bg, 5) 0 1px;
6 | background-color: $footer-bg;
7 | @include background($footer-bg-front, $footer-bg-back);
8 | border-top: 1px solid $footer-border-top;
9 | position: relative;
10 | padding-top: 1em;
11 | padding-bottom: 1em;
12 | margin-bottom: 3em;
13 | @include border-bottom-radius(.4em);
14 | z-index: 1;
15 | a {
16 | @include link-colors($footer-link-color, $footer-link-color-hover, $visited: $footer-link-color);
17 | }
18 | p:last-child { margin-bottom: 0; }
19 | }
20 |
--------------------------------------------------------------------------------
/.themes/classic/source/_includes/google_analytics.html:
--------------------------------------------------------------------------------
1 | {% if site.google_analytics_tracking_id %}
2 |
13 | {% endif %}
14 |
--------------------------------------------------------------------------------
/source/_includes/banner.html:
--------------------------------------------------------------------------------
1 | {% if site.twitter_user and site.twitter_tweet_count > 0 %}
2 |
9 |
10 |
15 | {% endif %}
--------------------------------------------------------------------------------
/sass/custom/_layout.scss:
--------------------------------------------------------------------------------
1 | // Here you can easily change your sites's layout.
2 | // To give it a try, uncomment some of the lines below, make changes, rebuild your blog, and see how it works.
3 |
4 | //$header-font-size: 1em;
5 | //$header-padding-top: 1.5em;
6 | //$header-padding-bottom: 1.5em;
7 |
8 | //$max-width: 1350px;
9 | //$indented-lists: true;
10 |
11 | // Padding used for layout margins
12 | //$pad-min: 18px;
13 | //$pad-narrow: 25px;
14 | //$pad-medium: 35px;
15 | //$pad-wide: 55px;
16 |
17 | // Sidebar widths used in media queries
18 | //$sidebar-width-medium: 240px;
19 | //$sidebar-pad-medium: 15px;
20 | //$sidebar-pad-wide: 20px;
21 | //$sidebar-width-wide: 300px;
22 |
--------------------------------------------------------------------------------
/.themes/classic/sass/custom/_layout.scss:
--------------------------------------------------------------------------------
1 | // Here you can easily change your sites's layout.
2 | // To give it a try, uncomment some of the lines below, make changes, rebuild your blog, and see how it works.
3 |
4 | //$header-font-size: 1em;
5 | //$header-padding-top: 1.5em;
6 | //$header-padding-bottom: 1.5em;
7 |
8 | //$max-width: 1350px;
9 | //$indented-lists: true;
10 |
11 | // Padding used for layout margins
12 | //$pad-min: 18px;
13 | //$pad-narrow: 25px;
14 | //$pad-medium: 35px;
15 | //$pad-wide: 55px;
16 |
17 | // Sidebar widths used in media queries
18 | //$sidebar-width-medium: 240px;
19 | //$sidebar-pad-medium: 15px;
20 | //$sidebar-pad-wide: 20px;
21 | //$sidebar-width-wide: 300px;
22 |
--------------------------------------------------------------------------------
/source/blog/index.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | ---
4 |
5 |
6 | {% assign index = true %}
7 | {% for post in paginator.posts %}
8 | {% assign content = post.content %}
9 |
10 | {% include article.html %}
11 |
12 | {% endfor %}
13 |
22 |
23 | {% include aside.html %}
24 |
--------------------------------------------------------------------------------
/source/_includes/custom/after_footer.html:
--------------------------------------------------------------------------------
1 | {% comment %}
2 | Add content to be output at the bottom of each page. (You might use this for analytics scripts, for example)
3 | {% endcomment %}
4 |
25 |
--------------------------------------------------------------------------------
/sitemap.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | http://seancdougherty.com/blog/2013/05/22/ios-data-security/
5 | 2013-05-23T11:39:42-06:00
6 |
7 |
8 | http://seancdougherty.com/blog/archives/
9 | 2013-05-23T11:39:42-06:00
10 |
11 |
12 | http://seancdougherty.com/
13 | 2013-05-23T11:39:42-06:00
14 |
15 |
16 | http://seancdougherty.com/robots.txt
17 | 2013-05-22T13:39:05-06:00
18 |
19 |
--------------------------------------------------------------------------------
/config.ru:
--------------------------------------------------------------------------------
1 | require 'bundler/setup'
2 | require 'sinatra/base'
3 |
4 | # The project root directory
5 | $root = ::File.dirname(__FILE__)
6 |
7 | class SinatraStaticServer < Sinatra::Base
8 |
9 | get(/.+/) do
10 | send_sinatra_file(request.path) {404}
11 | end
12 |
13 | not_found do
14 | send_file(File.join(File.dirname(__FILE__), 'public', '404.html'), {:status => 404})
15 | end
16 |
17 | def send_sinatra_file(path, &missing_file_block)
18 | file_path = File.join(File.dirname(__FILE__), 'public', path)
19 | file_path = File.join(file_path, 'index.html') unless file_path =~ /\.[a-z]+$/i
20 | File.exist?(file_path) ? send_file(file_path) : missing_file_block.call
21 | end
22 |
23 | end
24 |
25 | run SinatraStaticServer
26 |
--------------------------------------------------------------------------------
/source/_layouts/default.html:
--------------------------------------------------------------------------------
1 | {% capture root_url %}{{ site.root | strip_slash }}{% endcapture %}
2 | {% include head.html %}
3 |
4 | {% include header.html %}
5 | {% include navigation.html %}
6 |
7 |
8 | {{ content | expand_urls: root_url }}
9 |
10 |
11 | {% include footer.html %}
12 | {% include after_footer.html %}
13 |
14 |