Inspiration: Dies Commit Style Guide*
I often quote Dies in sections below.
NOTE - Dies took their style guide from CoreOS who took it from Angular. Will be updating with proper attribution soon.
#!/usr/bin/env bash | |
set -o errexit | |
set -o nounset | |
set -o pipefail | |
### These initial steps are hacks to get around certificate issues ### | |
# extract the URL we need in the route's hostname | |
cluster_url="$(oc whoami --show-server | cut -f 2 -d ':' | cut -f 3 -d '/' | sed 's/-api././')" |
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDTzwOd6vfwCysO1bCfkzohIvzB37K37TmigSbTtZKRjiot4DuskkI3px8uBZvFpW8EMjOfdTCo0vgH3wu+mmWmLW/pb8WabcoYjV44slhm6yAEHjseN8W26thPUSzkaXGlvoOHGjuK75+/xa9tbfSpFvhqLi5UtEaoaPrqlC6ft1nSHgW/AueR8mHtIKY2CLA0Zr37e6NnmediXeyTx4WbZXX5MDDYMQy+uif1N247K643MqDjmBjvdnXUNv7e4P9/uvYyVcFNh6hvgHR8PSAqFylDuic28doZ7GLDqk4XVWyusqIjrqz4CdEcUNZUeUchkOiFUewKAKx73dZrjks9wwGX+FCfCOxi3L0UNaPmDhTOAvuQ1SanYppJqy2zUWP80X75QRjrFNov4tigLnbSyiP9ykB1/Cn1CPrnTTwyvt7T6EGaNA0XKaiTCo+m4rA5GkDYzxFjtph/05sxUvfV1IMsepE0b5jhR+UBYvwJb56cioyrGP0rRKvdhYEZew1mWbS2S2lqTPMqEcYhPfiaBPhuk4b26L5HS/5qfDqItlEpcm8eWDm50T8fltVHrSlQJdBwlyYjCOjFuq+W7tf+zZnaib9+7eK64H5gl1Ao3W+nAQbFl2qaqroAxmgPbI6hSrN8/kMAqRsdeVudPk0qrHa//mwa/NV1XlpKArb8xQ== [email protected] |
#!/bin/sh | |
echo "What should the Application be called (no spaces allowed e.g. GCal)?" | |
read inputline | |
name="$inputline" | |
echo "What is the url (e.g. https://www.google.com/calendar/render)?" | |
read inputline | |
url="$inputline" |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Ansi 0 Color</key> | |
<dict> | |
<key>Blue Component</key> | |
<real>0.20000000298023224</real> | |
<key>Green Component</key> | |
<real>0.20000000298023224</real> |
<section> | |
<section id="kubernetes-hands-on"> | |
<h1>Intro to Kubernetes</h1> | |
<h2>Workshop</h2> | |
<br/> | |
<p>TECH(K)NOW DAY - London, UK - Tue 9 Oct 2018</p> | |
<p><a href="http://bit.ly/wwg-k8s">bit.ly/wwg-k8s</a></p> | |
</section> | |
<section data-state='blackout' data-background-color="#000000" id='presented-by'> | |
<p>Hi! I'm Erica von Buelow.</p> |
;; ========================================================================== ;; | |
;; Emacs Initialization File ;; | |
;; ========================================================================== ;; | |
;; -------------------------------------------------------------------------- ;; | |
;; Package Management and Marmalade ;; | |
;; -------------------------------------------------------------------------- ;; |
Inspiration: Dies Commit Style Guide*
I often quote Dies in sections below.
NOTE - Dies took their style guide from CoreOS who took it from Angular. Will be updating with proper attribution soon.
I hereby claim:
To claim this, I am signing this object:
test1 = (cb) -> | |
count = 0 | |
for i in [0..4] | |
setTimeout(-> | |
console.log(i) | |
count++ | |
if count >= 4 | |
cb() |
????
https://github.com/Clever/clever-dashboard/pull/???
TO DO