This file contains 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 id="page-wrapper"> | |
<section> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-md-12"> | |
<div class="main-logo mobile"> | |
<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid" viewBox="0 0 308.969 89.688"> | |
<defs> | |
<style>.cls-1 { |
This file contains 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
// ==UserScript== | |
// @author mungushume | |
// @version 1.7.1 | |
// @name GoogleMonkeyR | |
// @namespace http://www.monkeyr.com | |
// @description Google - Multiple columns of results, Remove "Sponsored Links", Number results, Auto-load more results, Remove web search dialogues, Open external links in a new tab, self updating and all configurable from a simple user dialogue. | |
// @include http://www.google.*/webhp?* | |
// @include http://www.google.*/search?* | |
// @include http://www.google.*/ig?* | |
// @include http://www.google.*/ |
This file contains 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
group :development, :test do | |
source 'https://rubygems.org' | |
gem 'rb-fsevent', :require => false if RUBY_PLATFORM =~ /darwin/i | |
gem 'guard-livereload' | |
gem 'rb-readline' | |
end |
This file contains 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 sample Guardfile | |
# More info at https://github.com/guard/guard#readme | |
guard 'livereload' do | |
watch(%r{app/views/.+\.(erb|haml|slim)$}) | |
watch(%r{app/helpers/.+\.rb}) | |
watch(%r{.+\.(css|js|html|php|scss)}) | |
watch(%r{public/.+\.(css|js|html)}) | |
watch(%r{config/locales/.+\.yml}) | |
# Rails Assets Pipeline |
This file contains 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
----- Esc ----- | |
Quick change directory: Esc + c | |
Quick change directory history: Esc + c and then Esc + h | |
Quick change directory previous entry: Esc + c and then Esc + p | |
Command line history: Esc + h | |
Command line previous command: Esc + p | |
View change: Esc + t (each time you do this shortcut a new directory view will appear) | |
Print current working directory in command line: Esc + a | |
Search/Go to directory in active panel: Esc + s / Ctrl + s then start typing directory name | |
Open same working directory in the inactive panel: Esc + i |
This file contains 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
#!/bin/bash | |
repos=.git/config | |
gito=`grep 'gitorious' .git/config` | |
hub=`grep 'github' .git/config` | |
if [ -n "$1" ] | |
then | |
if [ -n "$gito" ] | |
then | |
echo "Gitorius already mirrored." |
This file contains 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#ciccio{ | |
background-image:url("http://i117.photobucket.com/albums/o60/alexrah/eBay/back.png"); | |
} | |
ul#gallery, ul#gallery li{ | |
margin:0 auto; | |
padding:0; | |
list-style:none; | |
} | |
ul#gallery{ | |
width:600px; |
This file contains 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
#!/bin/bash | |
pastelVim='{ | |
"Ansi 0 Color" = { | |
"Blue Component" = 0.1490200; | |
"Green Component" = 0.1490200; | |
"Red Component" = 0.1490200; | |
}; | |
"Ansi 1 Color" = { | |
"Blue Component" = 0.3764706; |