VMWare Fusion 13 is now released. Read Vagrant and VMWare Fusion 13 Player on Apple M1 Pro for the latest.
This document summarizes notes taken while to make the VMWare Tech preview work on Apple M1 Pro, it originated
from Bit import bit_length | |
from String import String | |
from Vector import DynamicVector, UnsafeFixedVector | |
from List import VariadicList | |
struct FibyTree[T: AnyType, cmp: fn(T, T)->Int, to_str: fn(T) -> String]: | |
alias Union = 0 | |
alias Intersection = 1 | |
alias Difference = 2 | |
alias SymetricDifference = 3 |
VMWare Fusion 13 is now released. Read Vagrant and VMWare Fusion 13 Player on Apple M1 Pro for the latest.
This document summarizes notes taken while to make the VMWare Tech preview work on Apple M1 Pro, it originated
gunicorn run:app --workers=9
gunicorn run:app --workers=9 --worker-class=meinheld.gmeinheld.MeinheldWorker
Macbook Pro 2015 Python 3.7
Framework | Server | Req/s | Max latency | +/- Stdev |
---|
// Copyright 2016 Prometheus Team | |
// Licensed under the Apache License, Version 2.0 (the "License"); | |
// you may not use this file except in compliance with the License. | |
// You may obtain a copy of the License at | |
// | |
// http://www.apache.org/licenses/LICENSE-2.0 | |
// | |
// Unless required by applicable law or agreed to in writing, software | |
// distributed under the License is distributed on an "AS IS" BASIS, | |
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
Route all traffic with a raspberry pi like a VPN.
def _callback(event, args): | |
# switch and throw both switch the active greenlet from origin to target | |
if event not in set(['switch', 'throw']): | |
return | |
origin, target = args | |
# record last switch (time and CPU tick) | |
global __last_switch_time_ms, __last_switch_cpu_tick |
Use a Raspberry Pi as a bridge into my home LAN. The pi is plugged into a switch, which is plugged into an airport express, which is plugged into a cable modem; Nothing fancy.
This isn't a tutorial. Just some example output from a working setup.
off the top of my head, here's the order I would do it in:
Kong, Traefik, Caddy, Linkerd, Fabio, Vulcand, and Netflix Zuul seem to be the most common in microservice proxy/gateway solutions. Kubernetes Ingress is often a simple Ngnix, which is difficult to separate the popularity from other things.
This is just a picture of this link from March 2, 2019
Originally, I had included some other solution
--- | |
- hosts: localhost | |
gather_facts: False | |
connection: local | |
vars: | |
myvar: 'http://www.example.domain.com:9090' | |
tasks: | |
- name: not as good as a custom filter | |
debug: |