Paul Liétar

Results 59 comments of Paul Liétar

@SeanTAllen Sure, I'll write it up later today or tomorrow @sylvanc example of this with no fields involved : ```pony interface Default new default() class Counter var _value : U32...

Take the first example : ```pony class Cell[X: Default #any] var x: X new create() => this.x = recover X.default() end ``` 1)`X.default()` has type `X ref` 2) `recover X.default()...

Simpler test case, which relies on `X! ≤ ref->X`. The method `alias` duplicates any reference, including an `iso` or `trn`. ```pony class Foo fun alias[X](x: X!) : X^ => let...

The straightforward solution is to look in all declared interfaces and traits for behaviours when deciding whether the literal should be an actor/object/primitive. However I do find it surprising that...

@eddyb I've been putting some thoughts into a feature like that I've posted about it on irlo : https://internals.rust-lang.org/t/pre-rfc-anonymous-enum-which-automatically-implement-forwarding-traits/4806

While we're renaming stable, may I suggest renaming `bundle.json` to `tack.json`? We can temporarily support both (with a warning?) for a bit.

Adding the pi user to the audio group should be enough

:+1: Once you have it implemented, I'd be willing to help with the french translation.

I'm not really familiar with ogg and vorbis, what sort of granularity do pages offer ? The comment on the function describes the argument as `absolute granule position`. What's the...

@est31 I've given it a try, and it works well for [my usecase](https://github.com/plietar/librespot), and with this lewton has everything I need to replace libvorbis. Thanks for your work ! As...