HackerTrans
TopNewTrendsCommentsPastAskShowJobs

Qerub

no profile record

comments

Qerub
·il y a 21 jours·discuss
This reminds me of Alan Kay's OOPSLA 1997 presentation "The Computer Revolution Hasn’t Happened Yet" when he describes the Air Force / Burroughs 220 file format from 1961 where the file/tape contained both the data and the procedures to read/write/print them: https://youtu.be/oKg1hTOQXoY?t=1355
Qerub
·il y a 3 mois·discuss
With Red Hat's UBI Micro:

  microcontainer=$(buildah from registry.access.redhat.com/ubi8/ubi-micro)
  micromount=$(buildah mount $microcontainer)
  yum install \
      --installroot $micromount \
      --releasever 8 \
      --setopt install_weak_deps=false \
      --nodocs -y \
      httpd
(from https://www.redhat.com/en/blog/introduction-ubi-micro published in 2021)
Qerub
·il y a 5 mois·discuss
Speaking about high agency workers, this Company as Code framework reminds me a lot of SaaSiroth introduced in https://youtu.be/dLTUqPue9sQ?si=OIxmP5_D-YZZD2UO&t=200 (KRAZAM: High Agency Individual Contributor).
Qerub
·il y a 9 mois·discuss
> I was completely struck by how elegant its codebase is.

Well... I like Clojure but I bet you will reconsider that sentiment if you scroll through https://github.com/clojure/clojure/blob/master/src/jvm/cloju... .
Qerub
·il y a 10 mois·discuss
There's a nice Manning book from 2014 about this way of working named The Mikado Method.
Qerub
·il y a 2 ans·discuss
Adding product location would be great! As a resident of the European Union I'm unlikely to order one of these mini PCs from the USA due to import taxes and additional shipping costs.
Qerub
·il y a 2 ans·discuss
Looks like it: https://docs.github.com/en/actions/hosting-your-own-runners/...
Qerub
·il y a 2 ans·discuss
> aching for some higher level abstraction

CI/CD components (GA since 17.0) improve the situation a notch: https://docs.gitlab.com/ee/ci/components/
Qerub
·il y a 2 ans·discuss
Reminds me of this previous effort to build upon Go but add a more flexible type system: https://github.com/oden-lang/oden
Qerub
·il y a 3 ans·discuss
> […] they have 4 lines of code in Wing, but the long Pulumi example sets up permissions. So how did the permissions get set up in Wing?

As it says on the page: "Wing allows developers to write very few lines of code and let the compiler take care of IAM policies and other cloud mechanics."

Basically it auto-generates least-privilege IAM policies.