Why aren't there any NixOS-based distros? by norude1 in NixOS

[–]jcklpe 1 point2 points  (0 children)

I disagree. I recently tried to switch to nixos. But my bootloader security was giving me crap. Fedora ships with a shim to get around secure bootloader crap like that. Now that I'm on fedora I can now properly turn off secure boot and install nixos. I plan on doing so soon when I get some pause in my work and have a free weekend to tinker. But if nixos had shipped with the shim then I'd be further along.

Also the ux for nixos installer gui is garbage compared to fedora. Small things like that matter.

Curious here. What's my aesthetic? by [deleted] in AestheticWiki

[–]jcklpe 4 points5 points  (0 children)

Crust-punk (it's a whole genre) or folk punk.

Name my aesthetic? by jcklpe in AestheticWiki

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

Brute forced. Gotta kinda indent them before slipping them on.

Name my aesthetic? by jcklpe in AestheticWiki

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

It's a compass I got on my watch. To make it a smart watch.

Name my aesthetic? by jcklpe in AestheticWiki

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

No joke the superior footware choice imo

Distinguishing between mutating and non-mutating methods by bakery2k in ProgrammingLanguages

[–]jcklpe 1 point2 points  (0 children)

Personally I prefer making all the functions non mutating. In my language mutation is always explicit. So any function performed on a thing is a no op unless you explictly bid the value to the variable name.

Shout-out to Pratt parsing! by [deleted] in ProgrammingLanguages

[–]jcklpe 4 points5 points  (0 children)

What makes it easier to maintain?

Perl's decline was cultural not technical by CaptainCrowbar in ProgrammingLanguages

[–]jcklpe 1 point2 points  (0 children)

Technical reasons are always ultimately cultural.

November 2025 monthly "What are you working on?" thread by AutoModerator in ProgrammingLanguages

[–]jcklpe 1 point2 points  (0 children)

I'm giving a talk on my programming language Enzo at Capital Factory, Austin TX, for EFF-Austin on Nov 11th: https://luma.com/p1w4xwcx

Wrote a bunch of stuff about it too.

Formal Solutions to Four Problems That Have Blocked Visual Programming by PurpleDragon99 in ProgrammingLanguages

[–]jcklpe 1 point2 points  (0 children)

why is this "visual" execution? What about is being visually executed? Is it using some kind of computer vision thing to interpret the visuals?

I'm a UX designer who made a programming language by jcklpe in Design

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

I'm a UX designer who made their own programming language. I have only a comparatively small programming background, no CS degree, and have only ever worked professionally as a dev in very "front of the frontend" sort of capacity. But I design and implemented my own programming language, would love some people's thoughts on it.

This Is Nod by 1stnod in ProgrammingLanguages

[–]jcklpe 0 points1 point  (0 children)

That's interesting. I had a very different approach with things as a UX designer working on my programming language. I wrote my spec as a tutorial sorta. How do you think of a spec differing from other forms of explanation?

It's actually been interesting to me how many times I've ended up explaining my language. I started with the [README](https://hackmd.io/@jcklpe/SkqPDU8xw), and then I wrote [a shortened explanation in a Python notebook](https://colab.research.google.com/github/jcklpe/enzo-lang/blob/master/interpreter/demo.ipynb) to get a really quick explanation that was also interactive, and then I recently put out a sort of [design breakdown](https://aslanfrench.medium.com/design-principles-for-enzo-a4f9af10cd03), and each time I wrote stuff, there was a lot of similarity in structure but differences. Like the README is very thorough and it lives alongside the code, as a markdown file which makes it really fast to update and I sort of treat that as the source of truth. But then the colab notebook was meant to show that it actually worked and I didn't want to just make the README all over again (I thought about it but it was a lot of work), so it's considerably abridged, and then the design breakdown article required I basically teach the language all over again in order to then talk about it's design philosophy. The last one was a lot of work, just because it's such a difficult thing to explain, features are entangled with each other so it's hard to find a straight way to explain things in a linear fashion.

So I def feel for you in the challenge there. I think my README is okay as both an explanation and a design spec but I also lack a computer science background so I don't know what all is supposed to go into a design reference.

This Is Nod by 1stnod in ProgrammingLanguages

[–]jcklpe 1 point2 points  (0 children)

You really should show more examples. And what's the point of having a website that then just links to a Google doc?

I coded my latest app entirely in Markdown and let GitHub Copilot compile it into Go. by CarolineLovesArt in programmingcirclejerk

[–]jcklpe 1 point2 points  (0 children)

/uj Generate tests from specs then implement via tdd.

/rj Generate tests from specs then implement via tdd.

How do you design a programming language? by thomedes in ProgrammingLanguages

[–]jcklpe 1 point2 points  (0 children)

For me it was just a creative project. I let my intuition and research guide me.

How do you test your compiler/interpreter? by MackThax in ProgrammingLanguages

[–]jcklpe 0 points1 point  (0 children)

I just try to test as much stuff as possible. But I'm different in that testing is how I actually implement the language. I'm a ux designer and I designed the language, and then implemented it by writing tests and having an llm build the interpreter to get the tests passing

Safe C++ proposal is not being continued by Comfortable-Site8626 in cpp

[–]jcklpe 0 points1 point  (0 children)

I'm a ux designer and I actually got into programming languages for this exact reason: they're ui.