Skip to content

Instantly share code, notes, and snippets.

View stephenbaidu's full-sized avatar
🏠
Working from home

Stephen Baidu stephenbaidu

🏠
Working from home
  • Microsoft
  • Redmond, WA
View GitHub Profile
@StevenACoffman
StevenACoffman / _MicroService Proxy Gateway Solutions.md
Last active July 15, 2024 05:12
Microservice Proxy/Gateway Solutions

MicroService Proxy Gateway Solutions

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.

Github Star Trend:

Github Star History for Kong vs traefik vs fabio vs caddy vs Zuul

This is just a picture of this link from March 2, 2019

Originally, I had included some other solution

@andrewsouthard1
andrewsouthard1 / binary_search.rb
Last active June 28, 2022 20:33
Binary Search - Complete
def binary_search(n, arr)
middle = arr.length / 2
i = 0
j = arr.length - 1
while i < j
if arr[middle] == n
return true
elsif arr[middle] < n
i = middle + 1