Code modified from http://jsfiddle.net/4E2bV/1/
A Pen by InSuperposition on CodePen.
| #Ctrl-a :source .screenrc# I use control+a for beginning-of-line, this remaps it to the tick/tilda key# #escape `` | |
| # Bind tick+e to show the tick character since tick+tick is too convenient to toggle windows | |
| # escape `e | |
| # Sets scrollback buffer to x lines | |
| defscrollback 10000 | |
| # Enables ability to use scrollbar to scrollback | |
| termcapinfo xterm* ti@:te@ | |
| # Turn off start up message can view message with Ctrl-a . startup_message off | |
| # Turn off visual alert | |
| vbell off |
Code modified from http://jsfiddle.net/4E2bV/1/
A Pen by InSuperposition on CodePen.
| // ---- | |
| // Sass (v3.2.14) | |
| // Compass (v0.12.2) | |
| // ---- | |
| /*! | |
| Video.js Default Styles (http://videojs.com) | |
| Version GENERATED_AT_BUILD | |
| Create your own skin at http://designer.videojs.com | |
| */ |
| <div class="container"> | |
| <div class="boundry"> | |
| <div class="block">1</div> | |
| </div> | |
| <div class="boundry"> | |
| <div class="block">2</div> | |
| </div> | |
| <div class="boundry"> | |
| <div class="block">3</div> | |
| </div><!-- |
| // ---- | |
| // Sass (v3.3.4) | |
| // Compass (v1.0.0.alpha.18) | |
| // ---- | |
| /*! | |
| Video.js Default Styles (http://videojs.com) | |
| Version GENERATED_AT_BUILD | |
| Create your own skin at http://designer.videojs.com | |
| */ |
| <div class="container"> | |
| <!--<nav class="side">Side Menu</nav>--> | |
| <nav class="top">Top Menu</nav> | |
| <header>Hero</header> | |
| <main> | |
| <article>1</article> | |
| <article>2</article> | |
| <article>3</article> | |
| <article>4</article> |
| { | |
| // -------------------------------------------------------------------- | |
| // JSHint Configuration, Strict Edition | |
| // -------------------------------------------------------------------- | |
| // | |
| // This is a options template for [JSHint][1], using [JSHint example][2] | |
| // and [Ory Band's example][3] as basis and setting config values to | |
| // be most strict: | |
| // | |
| // * set all enforcing options to true |
| The MIT License (MIT) | |
| Copyright (c) 2014 Tomas Kafka | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| copies of the Software, and to permit persons to whom the Software is | |
| furnished to do so, subject to the following conditions: |
| # From http://www.iyware.com/osx-yosemite-mamp-homebrew-development-setup/ | |
| # Install Homebrew | |
| xcode-select --install | |
| ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
| brew doctor | |
| # Tap Repos | |
| brew tap homebrew/dupes | |
| brew tap homebrew/versions |