1. Bluesky Feeds /
  2. verdverm /
  3. Verm's CUE Feed

Feeds Stats

  • 💙 Liked by 0 users
  • 📅 Updated 2 months ago
  • ⚙️ Provider graze.social

Verm's CUE Feed Likes over time

Like count prediction
The feed Verm's CUE Feed has not gained any likes in the last month.

Feed Preview for Verm's CUE Feed

verdverm
@verdverm.com
2 days ago
One of the reasons @cuelang.org chose OCI for modules is a future where WASM can be shipped with your config and schemas.
0
0
2
Patrick Dubroy
@dubroy.com
6 days ago
Man, I still really like a lot of the ideas behind @cuelang.org. (But I need to find a good excuse to use it properly to see how it fares in practice.)
Philosophy and principles

Types are Values

CUE does not distinguish between values and types. This is a powerful notion that allows CUE to define ultra-detailed constraints, but it also simplifies things considerably: there is no separate schema or data definition language to learn and related language constructs such as sum types, enums, and even null coalescing collapse onto a single construct.

Below is a demonstration of this concept. On the left one can see a JSON object (in CUE syntax) with some properties about the city of Moscow. The middle column shows a possible schema for any municipality. On the right one sees a mix between data and schema as is exemplary of CUE.

Data

Copy code
moscow: {
	name:    "Moscow"
	pop:     11.92M
	capital: true
}
Schema

Copy code
municipality: {
	name:    string
	pop:     int
	capital: bool
}
CUE

Copy code
largeCapital: {
	name:    string
	pop:     >5M
	capital: true
}
In general, in CUE one starts with a broad definition of a type, describing all possible instances. One then narrows down these definitions, possibly by combining constraints from different sources (departments, users), until a concrete data instance remains.
2
1
8
verdverm
@verdverm.com
13 days ago
Have I told you about CUE lately? #cuelang @cuelang.org
1
0
1
CUE
@cuelang.org
13 days ago
Missed last week’s Community Update? Catch up with the full recording, including an extensive demo of the LSP. www.youtube.com/watch?v=y….
CUE Community Update (from Sept 18, 2025)

www.youtube.com

CUE Community Update (from Sept 18, 2025)

YouTube video by cuelang

0
2
2
verdverm
@verdverm.com
14 days ago
OCI is already this, adopted by far more than containers now. The CNCF ecosystem is all over that @cuelang.org is the first language I've seen use OCI. CUE also uses MVS that was popularized with Go modules.
0
0
7
verdverm
@verdverm.com
15 days ago
I swear using @cuelang.org is like having superpowers Just CUE-ified the lexicon for permissioned spaces, so much easier to have consistency and readability. The JSON form is generated into the expected directory. github.com/blebbit/atpr... #atdev #atprotodev @atproto.com

github.com

atproto/lexicons/com/atproto/space/flexicon at main · blebbit/atproto

Social networking technology created by Bluesky (with Blebbit patches) - blebbit/atproto

0
2
11
@rtd-rts.bsky.social
19 days ago
cuelangやっと慣れてきた yamlとかtomlは全部これでスキーマ着けて記述することにする
0
0
0
CUE
@cuelang.org
21 days ago
🚀 Join us for our next CUE Community Update on Thursday, Sept 18 at 1400 UTC. We'll be sharing updates on the evaluator, cue lsp, the Central Registry and much more. You can find the full agenda and call link here: github.com/cue-lang/cue... Looking forward to seeing both new and familiar faces!
2025-09-18 CUE Community Update · cue-lang cue · Discussion #4053

github.com

2025-09-18 CUE Community Update · cue-lang cue · Discussion #4053

We are excited to announce our next CUE Community Update, on Thursday September 18, 2025 at 1400 UTC. Agenda Release updates Evaluator updates, including performance improvements Encodings Central ...

0
0
1
verdverm
@verdverm.com
24 days ago
A @cuelang.org (CUE) schema: github.com/blebbit/atpr... turned into @authzed.com (SpiceDB) schema: github.com/blebbit/atpr... and validated with @atproto.com private spaces and bubbles: github.com/blebbit/atpr...
0
0
2
CUE
@cuelang.org
28 days ago
🚀 "cue cmd" and declarative workflows are where CUE really “clicks” for many users. We’re exploring what a v2 could/should look like and want your feedback. Office hours on Thu 11 Sep 2025, 14:00 UTC. More details in the discussion linked below github.com/cue-lang/cue...
cue cmd v2: office hours · cue-lang cue · Discussion #4080

github.com

cue cmd v2: office hours · cue-lang cue · Discussion #4080

We are excited to announce Office Hours as part of our analysis on cue cmd v2 on Thursday September 11, 2025 at 14:00 UTC. Agenda What is cue cmd? What can it do today? What could/should cue cmd v2...

0
0
4
verdverm
@verdverm.com
29 days ago
@cuelang.org is a vastly underutilized language, it's like the greatest thing since sliced bread
0
0
2
Willian Braga
@neverping.bsky.social
about 1 month ago
The year is 2025, and I am having arguments with Sonnet 3.7 and ChatGPT 4.1, as they provided incorrect syntax for CUELang, which I have to fix myself.
0
0
0
CUE
@cuelang.org
about 2 months ago
Come find @mvdan.cc at #GopherConUK in London this Thursday and Friday! If you want to chat about anything CUE related - evaluator performance, language changes, LSP, module registries, encodings - all the better in person!
0
1
3
verdverm
@verdverm.com
about 2 months ago
KYAML is optional, they can pry @cuelang.org from my cold dead hands
0
0
1
verdverm
@verdverm.com
about 2 months ago
I've been building a tool that does some of what bazel does with @dagger.io + @cuelang.org but it's for a client, so I cannot show anyone 😭
1
0
0
verdverm
@verdverm.com
about 2 months ago
0
0
1
verdverm
@verdverm.com
about 2 months ago
I'm migrating someone from Jenkins to Argo Workflows, which you can run locally in Kind or Minikube. I'm not sure how I feel about Argo Workflows, it is painful at times too. At least I can avoid YamHell by writing @cuelang.org
0
0
1
Hidden, might be NSFW
Hidden, might be NSFW
Kube Architect
@kube.archi
about 2 months ago
SafetyCulture migrated 300+ Kubernetes microservices to ArgoCD using a custom Cuelang DSL to eliminate Helm drift, enable declarative GitOps, and achieve zero-downtime cutovers ➤ ku.bz/h-Ndr-K3c
0
1
2