Or: “Everybody likes being given a glass of water.”
By Merlin Mann.
It's only advice for you because it had to be advice for me.
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
(require '[clojure.walk :as w]) | |
(defmacro both [a b pred] `(and (~pred ~a) (~pred ~b))) | |
(defn union-structure [a b] | |
(cond (= a b) a | |
(both a b vector?) [(reduce union-structure (concat a b))] | |
(both a b map?) (merge-with union-structure a b) | |
; Dunno, said the ghoul |
JD Maturen, 2016/07/05, San Francisco, CA
As has been much discussed, stock options as used today are not a practical or reliable way of compensating employees of fast growing startups. With an often high strike price, a large tax burden on execution due to AMT, and a 90 day execution window after leaving the company many share options are left unexecuted.
There have been a variety of proposed modifications to how equity is distributed to address these issues for individual employees. However, there hasn't been much discussion of how these modifications will change overall ownership dynamics of startups. In this post we'll dive into the situation as it stands today where there is very near 100% equity loss when employees leave companies pre-exit and then we'll look at what would happen if there were instead a 0% loss rate.
What we'll see is that employees gain nearly 3-fold, while both founders and investors – particularly early investors – get dilute
(A book that I might eventually write!)
Gary Bernhardt
I imagine each of these chapters being about 2,000 words, making the whole book about the size of a small novel. For comparison, articles in large papers like the New York Times average about 1,200 words. Each topic gets whatever level of detail I can fit into that space. For simple topics, that's a lot of space: I can probably walk through a very basic, but working, implementation of the IP protocol.
Ping me if you know of an awesome conference that isn't on this list. | |
Most of these cover the cost of conference, travel and lodging. | |
Dates are currently almost all for 2015. | |
JSConf US CFP: Jan 30 Conf: May 27-29 FL http://jsconf.us | |
Clojure/West CFP: Feb 11 Conf: Apr 20-22 PDX http://clojurewest.org | |
LambdaConf CFP: Feb 27 Conf: May 22 BLDR http://www.degoesconsulting.com/lambdaconf-2015/ | |
SIGBOVIK CFP: Mar 15 Conf: Apr 1 CMU http://sigbovik.org | |
PolyConf CFP: Mar 28 Conf: Jul 2-4 Poland http://polyconf.com | |
Curry-On CFP: Apr 3 Conf: Jul 6-7 Prague http://www.curry-on.org |
-- Load foreign functions interface | |
local ffi = require("ffi") | |
-- Load Ruby library & define function headers | |
local ruby = ffi.load("msvcrt-ruby210") | |
ffi.cdef([[ | |
typedef uintptr_t RUBY_VALUE; | |
enum{ | |
RUBY_Qfalse = 0, | |
RUBY_Qtrue = 2, |
This is all personal opinion and a matter of taste. I'm putting it here because people have asked - I'm glad Cider exists and that a lot of people are obviously using it to great effect. This is not an attack on Cider or a an attempt to negate the experience of those who like it, just my own experience.
Also some of the critiques are more properly aimed at nRepl than Cider - I don't use nRepl either, in Emacs. For some reason I have fewer issues with it in Cursive (though I still do have some).
lein trampoline -m clojure.main
- if something goes wrong, it's either in Emacs (which is usually obvious) or my program. MiA checklist for designing and developing internet scale services, inspired by James Hamilton's 2007 paper "On Desgining and Deploying Internet-Scale Services."
#!/usr/bin/env ruby | |
# A sneaky wrapper around Rubocop that allows you to run it only against | |
# the recent changes, as opposed to the whole project. It lets you | |
# enforce the style guide for new/modified code only, as opposed to | |
# having to restyle everything or adding cops incrementally. It relies | |
# on git to figure out which files to check. | |
# | |
# Here are some options you can pass in addition to the ones in rubocop: | |
# |