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
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
# SSH - Windows | |
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
# Start the SSH agent and init temp $env | |
env=~/.ssh/agent.env | |
agent_load_env () { test -f "$env" && . "$env" >| /dev/null ; } | |
agent_start () { |
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
# Crontab | |
# Edit this file to allow for cron jobs to run | |
# Checkout https://crontab.guru for more info | |
# | |
# If you wish to create a new cronjob you can | |
# create using the sintax MIN HOUR DAY MONTH DAY_OF_WEEK | |
# * => any value | |
# , => value list separator | |
# - => range of values |
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
<template> | |
<div class="loader"> | |
<div class="dotRow" v-for="(n, i) in dotColumns"> | |
<div class="dot" v-for="(n, j) in dotCount" :style="breath(i,j)"></div> | |
</div> | |
</div> | |
</template> | |
<script> |