Skip to content

Instantly share code, notes, and snippets.

View kevmul's full-sized avatar

Kevin Mulholland kevmul

View GitHub Profile
@kevmul
kevmul / ssh key add
Last active September 22, 2022 03:39
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# 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 () {
@kevmul
kevmul / New crontab file
Created June 9, 2022 13:39
When creating a new Crontab
# 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
@kevmul
kevmul / dotLoader
Last active March 30, 2018 18:57
This is a little toy loader built in Vue. Please try it out! Issues : The first column does not follow the correct timing If anyone has any ideas, let me know! :)
<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>