Aleksander Heintz

Results 138 comments of Aleksander Heintz

One problem with your example, though I'm not sure it's something to mitigate, but just something that peoples need to know. If `fs.readFile` depends on being called as a method...

@vojtajina or `fs.readFile.bind(fs)`.

> I'll try to get at least an informal feel from the committee next week though. Somewhat off topic, but where would "updates" (so to speak) be posted? Like, how...

Traceur needs to extend/create globals (in browser or not) to be able to do what it does. Like implement promises and Sets/Maps. If not these would not be spec-compliant (which...

Nope. Cause DNX is dead. The dotnet CLI is the new and shiny. My understanding is that as of RC2 there won't be a DNX anymore, thus this project will...

The first example can be argued that isn't di at all. It's just allowing to pass arguments out of order (or by name, if you like). If you wanted to...

I agree. Being able to log the command before it's executed would be very useful.

It's mainly just a convenience thing. I'm writing a xtask, and would like to log the commands that run. Now, there are a few ways I could go about this....

Example output from something I threw together: ![image](https://user-images.githubusercontent.com/112334/105516383-18935e80-5cd6-11eb-8df5-915abe26a7f2.png)

What you might want to do is create an iterator over some sort of "component" enum instead. `to_lossy_parts()`? Something that one could `.map(ToString::to_string)` and then `join` on space. I'm also...