HackerTrans
TopNewTrendsCommentsPastAskShowJobs

_asummers

no profile record

comments

_asummers
·قبل 4 سنوات·discuss
I love 1940s/1950s instruction videos. Here’s one from Hamilton that shows how they work that I really like. https://www.youtube.com/watch?v=rL0_vOw6eCc
_asummers
·قبل 4 سنوات·discuss
They have a bunch of differences under the hood, particularly when you want to give perms. It makes sense, sort of, on its face, that a user can’t have teams, but why? That decision is pretty arbitrary, to me. Then in GHE, users and orgs have all sorts of fun differences when you consider things like internal/public/private and how people can interact with them; to wit, if you’re in ANY team you can see ANY internal repo in an org, but if you’re limited to just personal repos, you can see no such things.
_asummers
·قبل 5 سنوات·discuss
The Cue integrated Kubernetes project I'm most excited about is KubeVela[0]. Effectively, you can create an "operator" for just the YAML bits to narrow your Kubernetes API and provide best practices via the Components and Trait overrides, and it should allow platform teams to standardize how their teams are deploying software on large Kubernetes installations.

[0] https://kubevela.io/
_asummers
·قبل 5 سنوات·discuss
My initial misread was about classroom sizes, and I came to the same conclusion before I thought "huh, that's... not how you reference classroom size".
_asummers
·قبل 5 سنوات·discuss
I use Docker Compose for integration testing against DBs in CI, and even for that, have to go through gymnastics working around not having k8s things.
_asummers
·قبل 5 سنوات·discuss
"Yesterday morning" and "tomorrow morning" is my favorite example. Several previous Indian coworkers of mine would say "today morning", which always made me smile a bit. It's not an unreasonable phrase to exist, given the others do as well.
_asummers
·قبل 5 سنوات·discuss
Ooooh that didn't used to be true, from what I saw! Happy that changed. I can clean up a bunch of images on my side.
_asummers
·قبل 5 سنوات·discuss
DateTime was added in Elixir 1.8.0. Timex filled a vacuum for a long time, and still has a few nice convenience functions. In new codebases, I of course drop Timex, but it was very much needed until those APIs were added.
_asummers
·قبل 5 سنوات·discuss
Only issue here is that they don't do subpatch versions. We needed Erlang 22.3.4.1 for something, so had to build by hand.
_asummers
·قبل 5 سنوات·discuss
It had them. But if you did a System.get_env inside the config.exs/dev.exs/prod.exs etc it would be at compile time. Various patterns arose to do that at runtime, by using things like `{:system, "FOO", Integer}` as conventions, but it was always a bit ad hoc. If a lib saw that they would know to punt the actual reading to runtime, which is what many folks did before releases.exs, which runs at RUNTIME, so things like System.get_env work as expected.
_asummers
·قبل 5 سنوات·discuss
When entering the camps, they made sure to document well, because they knew no one could possibly believe the extent of the atrocities without seeing themselves.
_asummers
·قبل 5 سنوات·discuss
Feel free, but it's a bad hill.

I can write my own config management, secret management, volume mounting, deployments, replica scaling, hardware affinity, antiaffinity for resilience, rollover kicking out e.g. staging if there's not enough room to schedule production workloads, and the list goes on.

I can also figure out how to install and upgrade each piece of software in my universe, across a few different languages.

Or I can just use kubernetes.

From the perspective of my developers, they tell me a few things like: "I need 4GB RAM, 2 cores, I need access to the postgres secret to talk to it, and here is my hostname" and while they can tell me many, many more things, with that little information, they can have a full application in one of several different languages in minutes.

If I were to hand roll this, it'd be held together by prayers and duct tape. And I lose out on a huge active community building tools around this. I now have istio and get cross service telemetry. For free. I can set networking rules up setting up QOS between arbitrary services, both inside my network and outside. All applied behind a single interface. There's a lot of stuff I get for free, and as my team discovers things it needs to do, I have a consistent layer to do that all behind.

I'm one guy. I don't work for Google. But my team still manages _a lot_ of services, both on application end, and things like queues, databases, etc. You can say we don't need all of that, but you'd be wrong. We arguably could use more. I can reason about my infrastructure in both the small and the large.

Then you get into the idea of transferring to other companies. If someone comes into my org, they can look at what I have and see more or less everything there is in any part of my infrastructure. It's all right there, laid out in YAML. If I were to switch companies, or even teams, it'd be the same. Having a lingua franca of common terms and ideas is super critical there. To say nothing of all the work happening in the ecosystem allowing me to help my users ship features faster to our stakeholders. Doing this in VMs would be a literal nightmare.

So, respectfully, I believe your opinion is not correct here. You personally may not need it, but it's not very long before you get to reasonable amounts of services for any project that's sufficiently complex, in my experience. And even when I have just 1 or 2 I still need many of the primitives of kubernetes.
_asummers
·قبل 9 سنوات·discuss
That's what the address :is "From" "[email protected]", bit does . This is just more specific.
_asummers
·قبل 9 سنوات·discuss
On a rapidly developing API, that would be way too much churn on our front end. For an externally facing API, I completely agree.
_asummers
·قبل 9 سنوات·discuss
We version each of our individual resources. so a /v1/user might have many /v3/post . Seems to work for us as a smaller engineering team.