HackerTrans
TopNewTrendsCommentsPastAskShowJobs

_asummers

no profile record

comments

_asummers
·4 anni fa·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 anni fa·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 anni fa·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 anni fa·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 anni fa·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 anni fa·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 anni fa·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 anni fa·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 anni fa·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 anni fa·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 anni fa·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
·9 anni fa·discuss
That's what the address :is "From" "[email protected]", bit does . This is just more specific.
_asummers
·9 anni fa·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 anni fa·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.