Skip to content

Instantly share code, notes, and snippets.

View 1415926535's full-sized avatar
🙊

charlyRoot 1415926535

🙊
  • 96 Products
  • Pawleys Island, SC
View GitHub Profile
@1415926535
1415926535 / .aliases
Last active August 27, 2020 17:05 — forked from yaoyunchen/.aliases
Aliases (~/.aliases)
# Docker
alias d='docker'
# alias da='docker attach'
alias dr='docker restart'
alias dimg='docker images'
alias dps='docker ps'
alias dvol='docker volume ls'
# alias dclearimg='docker rmi $(docker images --quiet --filter "dangling=true")'
# alias dclearps='docker ps --filter status=dead --filter status=exited -aq | xargs docker rm -v'
# alias dclearvol='docker volume rm $(docker volume ls -qf dangling=true)'
@ur0n2
ur0n2 / Doskey_Alias_Setting.cmd
Last active April 1, 2020 23:56
Doskey_Alias_Setting.cmd
::2017. 03. 10
::LeeJunHwan
::This commands make to linux environment on Windows OS
::But, We have powershell... and bash shell on windows 10
::Just For Fun!!!
@echo off
doskey ls = dir /W /P $*
doskey ll = dir /A /P $*
doskey cp = copy $*
@paulmelnikow
paulmelnikow / shadows.scss
Last active August 22, 2022 15:35
Sass Mixin: Google Material Design Shadow
/**
* A mixin which helps you to add depth to elements according to the Google Material Design spec:
* http://www.google.com/design/spec/layout/layout-principles.html#layout-principles-dimensionality
*
* Please note that the values given in the specification cannot be used as is. To create the same visual experience
* the blur parameter has to be doubled.
*
* Adapted from a LESS version at https://medium.com/@Florian/freebie-google-material-design-shadow-helper-2a0501295a2d
*
* Original Author: Florian Kutschera (@gefangenimnetz), Conceptboard GmbH (@conceptboardapp)