I hereby claim:
- I am truefurby on github.
- I am truefurby (https://keybase.io/truefurby) on keybase.
- I have a public key ASC9j2B6v076QjAUbCJYTR0EuDhKzk7gswF3hHlpKiKSWgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
function dateToString(d) { | |
var D = d.getDate().toString().replace(/^(\d)$/, '0$1'); | |
var M = (d.getMonth() + 1).toString().replace(/^(\d)$/, '0$1'); | |
var Y = d.getFullYear(); | |
var h = d.getHours().toString().replace(/^(\d)$/, '0$1'); | |
var m = d.getMinutes().toString().replace(/^(\d)$/, '0$1'); | |
var s = d.getSeconds().toString().replace(/^(\d)$/, '0$1'); | |
return '[' + Y + '-' + M + '-' + D + ' ' + h + ':' + m + ':' + s + ']'; | |
} |
# Regular expression to replace list of links | |
find: `* [NAME](https://github.com/USER/REPO)` | |
``` | |
\* \[([^\!][^\]]*)\]\((https?\:\/\/github\.com\/([^\/]+\/[^\/\)]+)\/?[^\)]*)\) | |
``` | |
replace with: `* [](LINK)` |
#!/bin/bash | |
# ================================================================== | |
# | |
# server-status.sh | |
# | |
# Retrieves current status of the server and sends it to Slack. | |
# | |
# https://github.com/TrueFurby/f48cc2acb58370bd1109ec55c9820439 | |
# |
<table class="pricing-table pricing-table-responsive f5 mb-5">
<thead>
<tr>
<th></th>
<th class="text-normal border-left bg-gray-light f4">
<a href="/pricing/developer">Developer</a>
// ==UserScript== | |
// @name Github HideFiles | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description hide files | |
// @author TrueFurby | |
// @match https://github.com/* | |
// @grant none | |
// @require http://code.jquery.com/jquery-latest.js | |
// ==/UserScript== |
Following guide will allow you to run any kubectl
commands on your local machine to access clusters running remotely (on AWS.. etc) without need to setup any public access to the cluster.
Instead of ssh
-ing into remote host to run kubectl
commands you can use SSH port forwarding for the port on the remote cluster where your Kubernetes API is listening and use same kubeconfig as the one on the remote machine.