- Create a folder at the root of your user home folder
(Example:
C:/Users/uname/
) called.ssh
. - Create the following files if they do not already exist (paths begin from the root of your user home folder):
.ssh/config
[branch] | |
autosetuprebase = always | |
[core] | |
autocrlf = false | |
ignorecase = false | |
[push] | |
default = simple | |
[pull] | |
default = simple |
details summary { | |
cursor: pointer; | |
outline: none !important; | |
display: inline-block; | |
padding: 8px 12px; | |
padding-top: 10px; | |
border-radius: 4px; | |
overflow: hidden; | |
background: #F09825; | |
color: white; |
# ------------------------------------------------------------------- | |
# Information | |
alias ll='ls -la' | |
alias version='java -version && mvn -version && git --version && node --version && npm version && ruby -v && gem li' | |
alias npmls='npm -g list -depth=0' | |
# Git Bash | |
alias update='git reset --hard && git pull' | |
alias amend='git add . && git commit --amend && git push' |
// " Make IE Better Compatible " | |
// IE CSS Hacks All - IE6, 7, 8, 9, 10, 11, Edge | |
// <!--[if IE]> | |
// <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> | |
// <![endif]--> | |
// ================== | |
// IE6 Only | |
// ================== |
#!/bin/bash | |
# Functions ============================================== | |
# return 1 if global command line program installed, else 0 | |
# example | |
# echo "node: $(program_is_installed node)" | |
function program_is_installed { | |
# set to 1 initially | |
local return_=1 |
$z-indexes: ( | |
main: ( | |
above-inherit: (), | |
nested: ( | |
low, | |
middle, | |
high | |
), | |
tooltip: () | |
), |
module.exports = { | |
extends: [ | |
'stylelint-config-recommended', | |
'stylelint-config-recommended-scss' | |
], | |
plugins: ['stylelint-order'], | |
rules: { | |
'indentation': 2, | |
'no-eol-whitespace': true, | |
'color-named': 'never', |
// ---- | |
// libsass (v3.3.6) | |
// ---- | |
// ========================================================================= | |
// | |
// PRECISE CONTROL OVER RESPONSIVE TYPOGRAPHY FOR SASS | |
// --------------------------------------------------- | |
// Indrek Paas @indrekpaas | |
// |