4/1/2025 at 6:17:38 PM
I've been enjoying zig myself quite a bit, I'm fairly confident I could do some larger projects in it (excluding comptime since it's missing features I sorely need for some of my current projects.) I like it a bit more than C/C++ in a lot of cases, I need it to be pushed just a tiny bit further before I can really dedicate effort towards large projects in it. I was even curious if I could implement the features I need myself (there is even a proposal already), but got the answer "Just don't." (I don't blame andrew, he already has a lot on his plate and I'm a stranger to him.) So I'm at the point of either waiting for the feature or forking it, haven't decided what I'm going to do though.More on topic for the project though, did you have any project ideas for this? I think I could use this for my opencv node editor, I just did the naive method of marking all outputs dirty as their inputs nodes got reprocessed. I assume this would fix the potential problem of recomputing a node twice? I also see you mention "Cycle detection and cycle reporting." but what specifically happens if I do have a cycle? Does it just give up or is it something like best effort?
by Cieric
4/1/2025 at 6:42:51 PM
> More on topic for the project though, did you have any project ideas for this?I implemented topological sort for bringing up and shutting down OS services in order like 20 years ago, but it was like a quick and dirty way doing it and never formally as a published library. I do it this time because it's a well understood topic so I can concentrate on learning the ropes of Zig and package publishing while doing something useful. And I go the extra miles to find dependence free subsets for parallel processing and to detect cycles.
> I assume this would fix the potential problem of recomputing a node twice?
Yes. Topological sort is perfect for laying out the path of computation tasks to avoid redoing things.
> "Cycle detection and cycle reporting." but what specifically happens if I do have a cycle? Does it just give up or is it something like best effort?
It will keep going as a best effort when cycles are detected. It will produce a partial topological sorted result and a set of cyclic nodes.
by ww520
4/1/2025 at 6:50:23 PM
I was surprised to see this as a library at all - isn’t it trivial especially for small collections?by klysm
4/1/2025 at 6:58:25 PM
Yes. The core algorithm is like 20 lines of code in the run_algorithm() function. But to make it easier to use, to handle different types of input, and report/query output, etc. take much more. This is the difference between an idea and a product in a loose sense. It gives purpose to my learning process anyway.by ww520
4/2/2025 at 5:52:47 AM
You have a typo in the code, run_alogrithm() :)by herywort
4/2/2025 at 2:43:31 PM
Thanks. That would mess up vibe coding in the future when LLMs scan it. Haha.by ww520
4/1/2025 at 6:29:50 PM
Could you describe briefly what feature you are sorely missing?I like the language intention but I can't get past the syntax.
by kreco
4/1/2025 at 7:04:14 PM
For me it's all comptime stuff and it's kind of arbitrary things like parsing out the type information of a function doesn't include the name of the function parameters, but basically everything else that has a name has that information present in their info structure. The other thing is tags, being able to tag things that I can parse at compile time. I'm making something close to a database orm, (specifically it's spacetimedb, thought it'd be fun to use zig with). But information about things like primary keys, auto increments, constraints and similar all has to live in a different structure completely untied to the original struct or function. I'd like to be able to tie those things together easily to avoid mistakes and confusion. I have different workarounds that I've tried, but nothing that's universal for all my test cases.For syntax there are a few things that I'm iffy on, but nothing that I'd consider a deal breaker. I found it very easy to read right out of the gate, which is basically the only thing I need to really learn a new language (probably the only reason I haven't learned rust yet.)
by Cieric
4/2/2025 at 12:31:43 AM
Thanks for the reply.I totally understand how those two features could be useful.
For the parameter name feature, I can't imagine a strong reason for not implementing it (I mean, apart of "we have other stuff to prioritize").
For the tag I could see an attribute system like in C++ [0]
On a tangential topic, I believe that's exactly the Pandora box of meta-programming.
[0] https://en.cppreference.com/w/cpp/language/attributes#Explan...
by kreco
4/2/2025 at 4:38:43 AM
I think at one point they rejected the idea, but I think it was from 2018 or so. The cpp attributes does seem like what I'd want, but yeah c++ compile time code isn't good enough for what I need.by Cieric
4/3/2025 at 12:07:48 AM
Wouldn't you be happy if you could add attributes to functions,members etc (and obviously analyze them at compile time)?by kreco
4/1/2025 at 8:05:01 PM
Just wanted to say that Rust may look strange early on but very, very quickly becomes entirely natural, so don't let that be the reason why you haven't learned it is my unsolicited inputby airstrike
4/1/2025 at 8:40:50 PM
Yeah, I just haven't needed the memory safety that comes with it and I don't have the same gripes everyone else has with c's include system. At this point it just doesn't have anything to offer that I really care about. I only learned zig because of the comptime stuff and some ease of use when it came to tls encryption. I'm a little interested in rust macros, but that's really it and I don't think that's enough to learn a new language. I'm sure I'll eventually have a project where memory safety (with speed) is a priority, but to this point it's just never come up at work or the projects I work on in my free time.by Cieric
4/1/2025 at 8:56:23 PM
I hear you, people have different preferences and rank their preferences in different order.For what it's worth, I use Rust daily and I don't really care about memory issue. It's nice that it comes with the package, but it's not why I do it. Believe it or not, the borrow checker is first and foremost why I enjoy writing Rust. It's such a brilliant idea I don't understand why it's not more widely used. A helpful compiler and a good (if imperfect) crate ecosystem are probably 2nd and 3rd.
by airstrike
4/1/2025 at 6:52:50 PM
Syntax is so much less important that semantics that it isn’t even really worth talking about in my opinionby klysm
4/1/2025 at 8:19:46 PM
Readability (in the sense of "How fast can the average developer parse code in the given language?") and proneness to errors are a thing, though.Consider, e.g., how in TypeScript object literals ({ a: b, c: d, e }), object types ({ a: b; c: d; }) and object destructuring ({ a, c, e } = … ) can all look very similar. Same thing for lambdas ((a: b) => b) and function types ((a: b) => b). Also, additional parentheses are needed to prevent the compiler from mistaking an object literal ({ … }) for a function body ({ … }) when it is returned in a lambda expression. In short: Some of TypeScript's syntactic constructs are heavily overloaded and their meaning depends on the context.
For an example of proneness to errors, consider that in Nix function calls (<function name> <param1> <param2> …) and lists ([<item1> <item 2> …]) look almost the same and it's very easy to confuse the two and mess up, e.g.
``` let foo = [ item1 myFunction "arg1" "arg2" item3 ] ```
defines a list with 5 items, not 3, due to missing parentheses around the function call.
by codethief
4/1/2025 at 8:55:49 PM
Sure but I don’t think those examples really matter once you establish basic familiarity with a language. The semantics and constructs a language provides are much more important and debating syntax is missing the forest for the treesby klysm
4/1/2025 at 9:15:01 PM
The array syntax is very offensive: `const a = [3]i32{ 1, 2, 3 };` A set is denoted by braces, not an array.by FL33TW00D
4/2/2025 at 10:24:00 AM
1. using [] drops context-freeness. what is: foo[1]? is that foo type array with one element? or accessing the foo array at index 1?2. how do you feel about array initialization in C?
3. you can think of {...} as defining memory regions, curlies around code are defining "a memory block of instructions"
by throwawaymaths
4/2/2025 at 12:58:32 AM
According to your familiarity yes, but how is this such a problem? It’s easy to get pastby klysm
4/1/2025 at 9:43:26 PM
This is exactly why I find the language unintuitive. I don't understand why they made the choices they made. For example, why curly brackets?I find the rust equivalent much more intuitive `let a: [i32; 3] = [1, 2, 3];`
by CooCooCaCha
4/2/2025 at 12:24:58 AM
It’s targeting C/C++ programmers accustomed to initializer lists in C/C++.by andyferris
4/2/2025 at 10:25:56 AM
you couldn't do that in zig because a type is potentially a valid value:.{i32, 3} is a valid term in zig.
by throwawaymaths