Installation
gem install rmagick # you'll need ImageMagick & Ruby first
gem install colormath
gem install micro-optparse
/* ======================================================== | |
* bootstrap-tabs.js v1.3.0 | |
* http://twitter.github.com/bootstrap/javascript.html#tabs | |
* ======================================================== | |
* Copyright 2011 Twitter, Inc. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* |
.gist-highlight { | |
border-left: 3ex solid #eee; | |
position: relative; | |
} | |
.gist-highlight pre { | |
counter-reset: linenumbers; | |
} | |
.gist-highlight pre div:before { |
function slugify(text) | |
{ | |
return text.toString().toLowerCase() | |
.replace(/\s+/g, '-') // Replace spaces with - | |
.replace(/[^\w\-]+/g, '') // Remove all non-word chars | |
.replace(/\-\-+/g, '-') // Replace multiple - with single - | |
.replace(/^-+/, '') // Trim - from start of text | |
.replace(/-+$/, ''); // Trim - from end of text | |
} |
@media only screen and (min-width: 320px) { | |
/* Small screen, non-retina */ | |
} | |
@media | |
only screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 320px), | |
only screen and ( min--moz-device-pixel-ratio: 2) and (min-width: 320px), | |
only screen and ( -o-min-device-pixel-ratio: 2/1) and (min-width: 320px), |
(function(angular) { | |
'use strict'; | |
var directives = angular.module('app.directives', []); | |
directives.directive('ngTap', function() { | |
return function(scope, element, attrs) { | |
var tapping; | |
tapping = false; | |
element.bind('touchstart', function(e) { |
@media all and (max-width: 800px) and (orientation: portrait) { | |
.global-toc .global-toc-featured-story .x-innerhtml { | |
border: 1px solid #00F; | |
} | |
} | |
SOURCE: http://mmb.pcb.ub.es/~carlesfe/unix/tricks.txt (I`ve just formatted it for easy reading)
I have marked with a * those which I think are absolutely essential Items for each section are sorted by oldest to newest. Come back soon for more!
ctrl-r
searches your command history as you typecommand < file.in
with command <<< "some input text"
// Copyright 2017 Palantir Technologies, Inc. All rights reserved. | |
// Licensed under the BSD-3 License as modified (the “License”); you may obtain a copy | |
// of the license at https://github.com/palantir/blueprint/blob/master/LICENSE | |
// and https://github.com/palantir/blueprint/blob/master/PATENTS | |
@import "~@blueprintjs/core/src/components/forms/common"; | |
@import "./common"; | |
// ReactSelect does not conform to our naming scheme | |
// stylelint-disable selector-class-pattern |