Anri Asaturov

Results 10 comments of Anri Asaturov

I managed to debug it and here is what i found: 1. https://github.com/v3ss0n/goto/blame/8095c5b149571018f2f98dad9ff56507b6df176b/lib/symbol-generator.coffee#L64 this line generates insane amount of logs 2. in combination with my pretty large locale files in...

@kjvalencik do you mean like copy and paste the any.proto content to my proto? because the file exists in `./google/protobuf` folder relative to my proto

@kjvalencik ```syntax = "proto3"; option go_package = "go"; package wire; import "google/protobuf/any.proto"; message RequestEnvelope { string correlationId = 1; string callPath = 2; google.protobuf.Any payload = 3; } ``` this...

Could you check out this sandbox please? https://repl.it/repls/GleamingWhimsicalInformationtechnology

Ok so what i managed to figure out is that when proto is parsed, it looks like this ```{ syntax: 3, package: 'wire', imports: [ 'google/protobuf/any.proto' ], enums: [ {...

@janch11 no, I had to fork/rewrite pbf to my needs since there was even more issues not aligning with my use case

I had the same in my electron project, i found that the reason is this style i have: ``` * { font-family: "Open Sans", sans-serif; } ``` It overrides material-icons...

Do you have a `position:absolute` or `fixed` on your `body`?

> I don't understand. How can I preemptively generate a cuid() ? Before hitting the database? Can I use https://github.com/paralleldrive/cuid2 ? yes, you can use cuid2, but you will have...

Here's what I found: Fail: ``` yarn upgrade-interactive --latest yarn upgrade-interactive -L yarn -L upgrade-interactive ``` Success: ``` yarn --latest upgrade-interactive ``` I use yarn workspaces.