Julián Díaz

Results 13 comments of Julián Díaz

Still not working on OS X 10.9.4.

This is somewhat annoying; I was planning on implementing auth on my own registry as well. I think the problem here lies with docker; if it doesn't receive an auth...

It's a tricky problem to solve. I use a mixin to deal with this for now... https://gist.github.com/jdiaz5513/6716e23c4995711db020 Could publish this mixin if it proves to be useful to anyone else.

I might be missing something here, but isn't this only a problem when you have circular imports? That's a thing to be avoided at all costs, and I certainly remember...

I have yet to take the time to fully grok the reference RPC implementation; hence the cryptic comments. This is basically first thing in my personal TODO. I'll help fill...

The stacktrace is misleading; it's failing because of the traversal limit being exceeded (and then proceeding to fail to fail because the segment is not yet defined... that needs a...

Yeah, I fought with this pretty hard. In TS you can't nest types, unfortunately. You can nest _objects_, but the result isn't as nice as you'd hope: ```typescript class B...

Yep that's basically the same problem. It's extra gnarly when you need to export the class with the nested type. I think I made an attempt to solve it using...

I think I remember trying that, and I believe you run into use-before-declare issues with self-referencing types. Notwithstanding the fact that writing the codegen for that is going to be...

Namespaces may work without a major headache. They even get around some of the use before define issues I run into elsewhere. ```typescript export class Foo { static foo =...