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
| ./configure \ | |
| --prefix=/usr \ | |
| --mandir=/usr/share/man \ | |
| --infodir=/usr/share/info \ | |
| --sysconfdir=/private/etc \ | |
| --with-apxs2=/usr/sbin/apxs \ | |
| --enable-cli \ | |
| --with-config-file-path=/etc \ | |
| --with-libxml-dir=/usr \ | |
| --with-openssl=/usr \ |
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
| # Colorful Bash Prompt, inspired by "Extravagant Zsh Prompt" | |
| # Screenshot: http://img.gf3.ca/d54942f474256ec26a49893681c49b5a.png | |
| # A big thanks to \amethyst on Freenode | |
| if [[ $COLORTERM = gnome-* && $TERM = xterm ]] && infocmp gnome-256color >/dev/null 2>&1; then export TERM=gnome-256color | |
| elif infocmp xterm-256color >/dev/null 2>&1; then export TERM=xterm-256color | |
| fi | |
| if tput setaf 1 &> /dev/null; then | |
| tput sgr0 |
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
Show hidden characters
| [ | |
| // hide toggle_side_bar | |
| { "keys": ["ctrl+b"], "command": "toggle_side_bar" }, | |
| { | |
| // Switch on layout (Window) 1 | |
| "keys": ["ctrl+1"], | |
| "command": "set_layout", | |
| "args": | |
| { |
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
| [ | |
| // Hidde Sidebar | |
| { "keys": ["ctrl+b"], "command": "toggle_side_bar" }, | |
| // Switch with one layout | |
| { | |
| "keys": ["ctrl+0"], | |
| "command": "set_layout", | |
| "args": | |
| { |
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
| map b goBack | |
| map w goForward | |
| map s toggleViewSource | |
| map gR goToRoot | |
| Navigating the page | |
| j, <c-e> : Scroll down (scrollDown) | |
| k, <c-y> : Scroll up (scrollUp) |
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
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
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
| // ---- | |
| // Sass (v3.3.8) | |
| // Compass (v1.0.0.alpha.19) | |
| // ---- | |
| @media screen and (min-width: 900px) { | |
| @at-root (with: media) { | |
| body { | |
| background-color: lighten(red, 30%); | |
| } |
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
| <div class="box home"> | |
| <h1>Lorem</h1> | |
| <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Eligendi, nobis!</p> | |
| </div> | |
| <div class="box about"> | |
| <h1>Lorem</h1> | |
| <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Illo, excepturi consequatur ipsa quod doloremque perferendis dolores itaque qui officia vitae architecto sunt laudantium praesentium impedit nam ab nulla vero quos.</p> | |
| </div> | |
| <div class="box contact"> | |
| <H1>Lorem</H1> |
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
| <a href="#" class="btn">btn</a> |
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
| function init() { | |
| var mapCanvas = document.getElementById('map_canvas'); | |
| var mapOptions = { | |
| center: new google.maps.LatLng(find.latitude, find.longitude), | |
| zoom: 17, | |
| scrollwheel: false, | |
| styles: | |
| [ | |
| { | |
| "stylers": [ |
OlderNewer