Dave Mason

Results 27 comments of Dave Mason

The other workaround for this is to open Iceberg settings and click "Share Repositories between images" and give a path that doesn't have any weird characters. I managed to get...

Sorry I haven't had a chance to resolve this, but if you're using d3, you might want to look at my https://github.com/dvmason/Pharo-Functional repo which includes CompileWithCompose which gives Pharo a...

> @astares thanks for sharing. Here is a POC implementation of this: https://gist.github.com/zeroflag/1634116227c3b811f0692db4f2889634 > > > Gist**[chain.st](https://gist.github.com/zeroflag/1634116227c3b811f0692db4f2889634)**GitHub Gist: instantly share code, notes, and snippets. Yes, if you look at the...

> I think from all the extensions shown, destructuring assignments are the easiest to integrate: > > * less parser friction, it should be implemented without breaking the parser >...

> 2\. Provide a flag that disables various errors, including unused variables, in Zig that slow down development. How about not reporting the (style) errors when in debug mode. 1)...

CPS conversion is always possible - if you have a heap and garbage collection. So that isn't really an (automatic) option for Zig. However, I am using CPS conversion in...

There are examples in the standard library of it being backward, too. e.g. std/mem.zig assumes it in places (like test "indexOfDiff")... The natural thing is you type the value you're...

> > Shouldn't you know what type you are expecting to find? As I commented, the type of the actual is almost certainly the right type... if it isn't you...

> function signature. But putting `expected` first makes sense so that `actual` can coerce to its type. Actually, `actual` will never be a comptime value, but `expected` often will be,...

I don't care which of these proposals is implemented, as long as one is. It produces ugly and less type-safe code to have to convert the enums to int. As...