Joonatan Uusväli

Results 16 comments of Joonatan Uusväli

I have decided for another approach. I use computed value that computes a `imageUrl` if there is a `image` value present. The function: ```javascript async function headerImageUrl(data) { if(!data.image ||...

I would be very interested in nested bundles capability, too. The `block` syntax does not work when eleventy's front-matter `layout` is used. One must use nunjuck's `extend` instead, but that...

I've been thinking about the same possible improvement on the spec. I have my own [C# Ulid](https://github.com/ByteAether/Ulid) implementation and I'm really tempted to implement a "random increment" feature. My thoughts...

Source generators for expression method capability would be nice! Here's a project that implements `[Projectable]` attribute in the context of EF Core: https://github.com/koenbeuk/EntityFrameworkCore.Projectables If their approach could be copied, it...

[Crockford's Base32](https://www.crockford.com/base32.html) is supposed to be case-insensitive and has even alias characters (Like `I`, `i`, `L`, `l` and `1` all are number `1`). The website you are using, is not...

In the end, it's just a well-defined mapping for 5-bit values. And during decoding, there are some "aliases" defined in addition. The simple bullet-point list in this ULID spec here...