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
data:text/html,<script>i=0;setInterval(function(){i=(i+100)%252000;document.querySelector('div').style.backgroundPositionX='-'+i+'px';},30);</script><div%20style="width:100px;height:100px;background:url(https://goo.gl/6nq9n5)"> |
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
@mixin make-col($ref, $margin, $col, $reverse: false) { | |
$marginSum: $margin*($col - 1); | |
$itemWidth: floor(($ref -$marginSum)/$col); | |
width: percentage($itemWidth/$ref); | |
@if ($reverse == true) { | |
float: right; | |
margin-left: percentage($margin/$ref); | |
&:last-child { | |
margin-left: 0; |
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
# Init Antigen https://github.com/zsh-users/antigen zsh plugin manager | |
source ~/.antigen.zsh | |
# Init Nvm https://github.com/creationix/nvm node version manager | |
export NVM_DIR="$HOME/.nvm" | |
. "/usr/local/opt/nvm/nvm.sh" | |
# Init Pure https://github.com/sindresorhus/pure zsh prompt | |
autoload -U promptinit; promptinit | |
prompt pure |
OlderNewer