- Statistics on Kubernetes as premium energy in DCs https://www.nextplatform.com/2018/12/14/the-vital-engines-of-commerce/
- What's the dev workflow with k8s on the local machine? https://www.reddit.com/r/kubernetes/comments/aapysv/whats_the_dev_workflow_with_k8s_on_the_local/
- “An illustrated guide to X”
- How to size a cluster? How many dev env, size of the boxes, etc.
- Smaller docker images v2
- Node on windows (Kubernetes with windows nodes & containers)
- azure app service vs AKS
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
<div></div><hr><h4>Page 2</h4><body class="logged-out env-production page-responsive"> <include-fragment class="js-notification-shelf-include-fragment"></include-fragment> <div class="application-main "> </div> <p id="ajax-error-message" class="ajax-error-message"> <svg class="octicon octicon-alert" width="16" height="16"><path/></svg> You can’t perform that action at this time. </p> <p class="js-stale-session-flash"> <svg class="octicon octicon-alert" width="16" height="16"><path/></svg> <span class="js-stale-session-flash-signed-in">You signed in with another tab or window. <a href>Reload</a> to refresh your session.</span> <span class="js-stale-session-flash-signed-out">You signed out in another tab or window. <a href>Reload</a> to refresh your session.</span> </p> <template id="site-details-dialog"> <details class="details-reset details-overlay details-overlay-dark lh-default text-gray-dark hx_rsm"> <summary></summary> <details-dialog class="Box Box--overlay d-flex flex-column anim-fade-in fast hx_ |
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
Homebrew build logs for gstreamer on macOS 10.14.6 | |
Build date: 2020-03-22 10:19:14 |
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
Homebrew build logs for gst-plugins-good on macOS 10.14.6 | |
Build date: 2020-03-22 10:21:10 |
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
BOX_IMAGE = "bento/ubuntu-18.04" | |
KUBEADM_VERSION = "1.13.5-00" | |
Vagrant.configure("2") do |config| | |
config.vm.provider :virtualbox do |v| | |
v.memory = 1024 | |
v.cpus = 1 | |
end | |
config.vm.provision :shell, privileged: true, inline: $install_common_tools |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Cap</title> | |
<link rel="stylesheet" href="https://unpkg.com/[email protected]/css/tachyons.min.css" /> | |
<style> | |
@media print { | |
html { |
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
apiVersion: v1 | |
kind: Namespace | |
metadata: | |
name: ingress-nginx | |
labels: | |
app.kubernetes.io/name: ingress-nginx | |
app.kubernetes.io/part-of: ingress-nginx | |
--- | |
kind: ConfigMap | |
apiVersion: v1 |
- We should serve the web map from Drupal
- We can use Drupal custom content types to store policies
- We can use the Drupal REST API to consume policies (it's unclear the link, perhaps the code)
- It's worth investigating what happens with the domain name. Is it pointing directly to Acquia?
- We can store layers as content (each layer has its page and pages can be nested). However this work should be deprioritised as deemed not critical.
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
import marked, { MarkedOptions } from 'marked' | |
import { cat } from 'shelljs' | |
const content = cat('src/architecture/03_bootstrap.md').toString() | |
function code(lang: string) { | |
return (token: marked.Token) => { | |
return token.type === 'code' && token.lang === lang | |
} | |
} |
- Write custom checks in Ruby (+ Danger) https://krausefx.com/blog/writing-automated-tests-for-your-documentation
- Best looking documentation (Django) https://docs.djangoproject.com/en/2.0/topics/http/urls/
- Pandoc, Gumroad, https://thorstenball.com/blog/2018/09/04/the-tools-i-use-to-write-books/
- Serial book writers. They have a tool to inline code as part of code fence. Process is brilliant https://www.fullstack.io/write-a-book/ tool: https://github.com/fullstackio/cq/blob/master/packages/cq/doc/readme/README.cq.md
Note for my future self:
- The easiest thing to do is to stick to md. It’s easy to use, you can use any program to view it and can easily be processed.
- However, markdown is too simple. If you want to augment md, use the same technique of r markdown. Use code snippets to include code and write a md -> to -> md converter. Or just render to text directly.
- MDX is not portable or easy to use. R markdown works with python only.
- You might be tempted to include snippets of code dynamically like