- this
- is
- my
- list
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[params] | |
# Used when a given page doesn't set its own. | |
defaultDescription = "A post by Rick Cogley" | |
defaultKeywords = "cogley,post" | |
categoriescss = "/css/categories.css" | |
sidebartitle = "Rick Cogley Central" | |
sidebartagline = "Don't just consume. Use the power at your fingertips to create something useful." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Modal Trigger --> | |
<a class="waves-effect waves-light btn modal-trigger" href="#modal1">View Intro Video</a> | |
<!-- Modal Structure --> | |
<div id="modal1" class="modal green-text"> | |
<div class="modal-content"> | |
<h4>Modal Header</h4> | |
<p><div class="video-container"> | |
<iframe width="1102" height="620" src="https://www.youtube.com/embed/VH26lrd6LSY?rel=0&showinfo=0" frameborder="0" allowfullscreen></iframe> | |
</div></p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git ls-tree -r master --name-only | xargs -I {} git blame --line-porcelain {} | sed -n 's/^author //p' | sort | uniq -c | sort -rn | |
5589 spf13 - OK | |
2250 Anthony Fok - OK | |
2200 bep - OK | |
1287 Michael Henderson - OK | |
442 Rick Cogley - OK | |
323 Joel Scoble - OK | |
299 Austin Ziegler - OK | |
255 Arjen Schwarz - OK |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# | |
# Installs GCC. Run this in a screen session. | |
# | |
mkdir -p $HOME/bin $HOME/gcc/src $HOME/gcc/bin $HOME/gcc/lib | |
ln -s $HOME/gcc/lib $HOME/gcc/lib64 # only needed if we're on a 64-bit server. | |
# we don't want to maintain two directories, and we're not using multilib. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0 info it worked if it ends with ok | |
1 verbose cli [ '/home/sai/webapps/hubot_01/bin/node', | |
1 verbose cli '/home/sai/webapps/hubot_01/bin/npm', | |
1 verbose cli 'install', | |
1 verbose cli '--save', | |
1 verbose cli 'hubot-hipchat' ] | |
2 info using [email protected] | |
3 info using [email protected] | |
4 silly loadCurrentTree Starting | |
5 silly install loadCurrentTree |
- Entity: Person
- Category: Design
- Name: Behance
- Address: https://www.behance.net/search?content=projects&sort=appreciations&time=week&search=<$model.firstname.encodedForURL$>%20<$model.lastname.encodedForURL$>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.inline-code{display:inline-block;vertical-align:text-bottom;margin:0 .15em;border-radius:.2em;padding:.17em .4em .25em;font-size:85%;line-height:1;color:#fff;color:hsla(0,0%,100%,.9);background-color:#000;background-color:rgba(0,0,0,.65)}.inline-code svg{position:relative;bottom:.02em;display:inline-block;vertical-align:middle;width:.85em;height:.85em;fill:currentColor}@media (min-width:500px){.intro{padding:2.5em}}@media (min-width:800px){.intro{padding:4em}}.intro{padding:1.5em;text-align:center;font-size:18px;line-height:1.5;color:#404040;background-color:#fff}@media(min-width:500px){.intro{padding:2.5em}}@media(min-width:800px){.intro{padding:4em}}.intro .logo{display:inline-block;max-width:75%}.intro img{display:block;max-width:100%}.intro .details{max-width:52em;margin:auto;text-align:left}.intro .details ol{margin-top:1.8em;margin-bottom:2.2em}.intro .details li{margin-top:.8em}html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grays |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* eslint-env node */ | |
var concat = require('gulp-concat'), | |
atImport = require('postcss-import'), | |
/* mqpacker = require('css-mqpacker'), */ | |
cssnano = require('cssnano'), | |
cssnext = require('postcss-cssnext'), | |
gulp = require('gulp'), | |
postcss = require('gulp-postcss'), | |
sourcemaps = require('gulp-sourcemaps'), |