Giora Guttsait

Results 64 comments of Giora Guttsait

@galexrt thanks for the help. I think I'll open an issue regarding documentation of maintaining a server running with docker-compose or kubernetes. As someone who's main work doesn't require to...

@ashmckenzie had the settings changed in `1.9.0`/`1.9.1`?

@timabbott wait, does it mean I can disable HTTPS and work with HTTP instead of HTTPS?

Say I run on a private network, where I don't give a damn about the security part, and the HTTPS means that people end up doing `advanced -> proceed` in...

Proposed change: https://github.com/mobxjs/mobx-utils/blob/master/src/deepObserve.ts#L101 ```ts function observeRecursively(thing: any, parent: Entry | undefined, path: string) { if (isRecursivelyObservable(thing)) { const entry = entrySet.get(thing) if (entry) { if (entry.parent !== parent || entry.path...

Another proposed solution: https://github.com/mobxjs/mobx-utils/blob/master/src/deepObserve.ts#L32 ```ts function isRecursivelyObservable(thing: any) { return isObservableObject(thing) || isObservableArray(thing) || isObservableMap(thing) || isObservableSet(thing); } ``` After thinking about it, an ObservableSet can also be recursively observable...

Hmmm good point, I think that the entries in a Set are the items themselves as well, so that means that the path will probably be a `toString` of the...

Hey guys, I've come to use zipkin-javascript-opentracing, and configured jaeger, and my backend services, to accept the zipkin format. I'll explain more once Bayren finishes raping Barcelona 🤦🏻‍♂️

So, I'm not in front of source code, but I might as well share. What I ended up doing was using `zipkin-javascript-opentracing`. The [typing](https://www.npmjs.com/package/@types/zipkin-javascript-opentracing) provided in @types is pretty awful,...

Any update on this? So far this has not caused me any problems other than files being shown with errors in the file explorer in vscode, but this should definitely...