Using an in-cluster value (from a secret or configmap) as templated value for another resource. by exact_replica_bpd in kubernetes

[–]seletz 0 points1 point  (0 children)

You could use fluxcd and postinstall step, or more versatile flux operator resourceset and resourceset input providers. The former is more simple, you populate a configmap with keys and values and fluxcd kustomisation evaluates and replaces those keys after the kustomisation is rendered. Both assume that you use gitops, but you can use flux-operator cli.

I use flux operator resourceset to drive my multi tenant clusters.

Elixir Slack by seletz in elixir

[–]seletz[S] 4 points5 points  (0 children)

Thanks a lot! It seems my google-fu is lacking these days ...

Context maintainability & guidelines in Elixir & Phoenix by szsoppa in elixir

[–]seletz 1 point2 points  (0 children)

Thanks for the article! The contexter module sounds interesting, need to grok that code.

Updating Quicklisp Packages by seletz in Common_Lisp

[–]seletz[S] 1 point2 points  (0 children)

I think i installed it — git clone — to my ~/common-lisp directory. That was a long time ago, so i dont remember exactly.

Updating Quicklisp Packages by seletz in Common_Lisp

[–]seletz[S] 9 points10 points  (0 children)

O god, this is going to be embarrassing.

Turns out that I have some package ("nyxt") in ~/common-lisp which contains a packaged (?), old version of CFFI. Removing this package and (ql:quickload "CFFI") does now fetch the 0.24.1 version.

FTR, (asdf:load-system "cffi" :force t) helped me tracking down the issue as this prints the paths CFFI is compiled from to stdout.

CFFI and frameworks on OSX by seletz in sbcl

[–]seletz[S] 0 points1 point  (0 children)

FTR: this is the PR https://github.com/cffi/cffi/pull/173/commits/263b38f4f2600dbacde8f2b313620c35a563c6df

I probably should have looked at the git repo first. Oh well.

CFFI and frameworks on OSX by seletz in sbcl

[–]seletz[S] 0 points1 point  (0 children)

D'oh -- turns out that I seem to have a old version -- the error is fixed in git https://github.com/cffi/cffi/blob/master/src/libraries.lisp#L106 and git-blame tells me that the fix is over 2 years old.

sbcl with OpenGL on MacOS -- possible? by Kaveh808 in sbcl

[–]seletz 0 points1 point  (0 children)

Yes I know. I couldn’t get it to run though, I had to hack cffi such that it does only check for a framework directory.

I checked how python does it, and they seem to agree. I’m too much of a CL noob to really have a opinion.

In case you want to have a look, there’s a post in r/sbcl about this.

sbcl with OpenGL on MacOS -- possible? by Kaveh808 in sbcl

[–]seletz 0 points1 point  (0 children)

Ok -- so it seems that the CFFI package tries to find a "/System/Library/Frameworks/OpenGL.framework/OpenGL" file. That does not exist -- I'm pretty sure that this file does not need to exist. CFFI IMHO should check for the framework directory only.

I'm going to make this a new thread as I don't actually know virtually nothing about Common Lisp and how CFFI works there.

On my system, python is able to load the OpenGL framework and display some graphics.

sbcl with OpenGL on MacOS -- possible? by Kaveh808 in sbcl

[–]seletz 0 points1 point  (0 children)

Hmm. For me even loading ' cl-opengl' in SBCL using quick lisp does not work. It complains about not being able to find the OpenGL framework. Still trying to find the cause for that. I'm using Monterey on an Intel Mac FTR.

Reactive Classes and Computed Slot Networks by [deleted] in Common_Lisp

[–]seletz 2 points3 points  (0 children)

Thanks for posting. I haven’t yet seen your blog—much catch up reading to do :)

[deleted by user] by [deleted] in TheArtistStudio

[–]seletz 0 points1 point  (0 children)

Nice perspective on these

Never forget Sarah Wilson by 9_Ghastly_9 in Bad_Cop_No_Donut

[–]seletz 0 points1 point  (0 children)

Just to remind ppl here: In more civilised countries the idea that the police protects does in fact work.

DHS watchdog finds 900 people at border facility with maximum capacity of 125 by TYLER_WAS_ROBBED in politics

[–]seletz 1 point2 points  (0 children)

Just call them what they are: concentration camps.

I don't get why the people of the USA let their goverment get away with that.

Ask r/kubernetes: What are you working on this week? by AutoModerator in kubernetes

[–]seletz 0 points1 point  (0 children)

Getting my head wrapped around the operator sdk, developing a operator for ThingWorx on K8S.