kostyay | 1 year ago | on: gRPC: 5 Years Later, Is It Still Worth It?
kostyay's comments
kostyay | 1 year ago | on: gRPC: 5 Years Later, Is It Still Worth It?
I actually forgot about this when writing the article. This is a major pain in the ass both in Go and Python and basically forces you to ensure than no 2 services have the same file called "api/users/service.proto". There have been multiple instances where we literally had to rename a proto file to something like reponame_service.proto to avoid this limitation.
kostyay | 1 year ago | on: gRPC: 5 Years Later, Is It Still Worth It?
> grpc-web never worked well for me. connectrpc is good alternative for the client side libraries. The code it generates is much better than the one produced by grpc-web (and the 3-4 different plugins on the market for it). it also supports grpc-web encoding out of the box. we are still using grpc-web internally just with connectrpc generated clients. The frontend engineers were extremely happy when we moved from the grpc-web clients to but ones. The DX is much better.
> grpc-gateway works pretty well, though. I think grpc-gateway is a decent choice if you are building REST api for internal use. It does feel like an unfinished product (well.. it is a community effort). Specifically if you decide to follow Google's AIPs guidelines (https://google.aip.dev/general) you may find that some things are not implemented. Another downside of it is that it can't produce OpenAPI v3.
kostyay | 1 year ago | on: gRPC: 5 Years Later, Is It Still Worth It?
kostyay | 1 year ago | on: gRPC: 5 Years Later, Is It Still Worth It?
kostyay | 1 year ago
It is no surprise that the most effective method for evaluating frontend changes is through hands-on visual inspection and interaction. Inspired by platforms like Vercel and Netlify, we've decided to implement a preview environment generator into our CI pipeline, automatically creating fully functioning preview environments on our K8S cluster for each pull request in our frontend repository.
This has significantly enhanced our development process, allowing us to: 1. Craft more comprehensive and refined pull requests 2. Collaborate more closely with UI/UX designers and product managers 3. Execute end-to-end tests prior to merging changes into the main branch
To find out more, I invite you to read my latest article on Torq's engineering blog.
kostyay | 2 years ago | on: Ask HN: Where do you live? What's good or bad about it?
kostyay | 2 years ago | on: Zero Downtime Migration of CloudSQL Postgres Database
kostyay | 8 years ago | on: Show HN: PriceCompare.bike – Find cheap bike parts online
Thanks for the feedback.
Unfortunately bike24 don't provide product feeds for 3rd party use so I am not indexing them yet.
Currently the following online shops are indexed: Chain Reaction Cycles, Evans Cycles, Tweeks Cycle, Hargroves Cycles, Merlin Cycles, Wiggle Online Cycle Shop, ProBikeKit, CycleStore, Performance Bike, RibbleCycles, AW Cycles, Cycle Surgery, Velo Champion, OutdoorGear UK
kostyay | 8 years ago | on: Show HN: PriceCompare.bike – Find cheap bike parts online
The way it works is that it fetches products from several big online vendors offers easy way to search and browse these products and find the cheapest price for any given product across various online retailers. At the moment I have around 15 online retailers that I index daily with close to 200000 products in my database.
The unique features is that it manages to group the same product from different vendors under on the same product page (thus allowing you to select the cheapest online retailer for that product, if avaliable) and has a decent search engine. The grouping part is not perfect yet and I'm working on it implementing different algorithms to improve it.
I have built it completely from scratch. It took me about a year to get it to its current stage. It's developed using Ruby-on-Rails, with Postgres and Elasticsearch as databases. I'm currently working on marketing it and getting some feedback from users. I also some cool features that I'm developing such as a price history feature that will be able to tell you if the current product price is good and if you should buy it or not based on previous price history (like on flight reservation websites).
Let me know if you have any questions of feedback.
Thanks.