HackerTrans
TopNewTrendsCommentsPastAskShowJobs

eugene0

41 karmajoined 7 lat temu

Submissions

All My Meters Said Innocent

ihnatz.github.io
3 points·by eugene0·19 godzin temu·0 comments

Figma Make, now on your local code

figma.com
3 points·by eugene0·2 miesiące temu·0 comments

Show HN: The easiest way to review the code

viezly.com
3 points·by eugene0·5 lat temu·1 comments

Show HN: Better Code Review for GitHub

viezly.com
2 points·by eugene0·5 lat temu·1 comments

One big reason to review the code

blog.viezly.com
2 points·by eugene0·5 lat temu·0 comments

comments

eugene0
·5 lat temu·discuss
We do dependency visualization (it's correlates with dataflow) at viezly. You can check it out here: https://viezly.com/change_requests/3986
eugene0
·5 lat temu·discuss
Hi HN!

Code reviews can be painfully hard to review. Remember those with 1000+ LOC changed and multiple approves without any comment? Yeah (:

So we build a tool for easier review, that splits big changes into smaller parts. Also, you can see the architectural diagram for the changed code. It's useful for finding the entry file for review. And with navigation via file dependency, it's really easy to understand the changes in pull requests without spending a lot of time on it.

To start using the tool go to our website: https://viezly.com. Also, here is the example available for everyone: https://viezly.com/change_requests/3986
eugene0
·5 lat temu·discuss
Hey HN,

At Viezly we do a lot of experiments for the code review interface. Our goal is better code reading in code review. We did pretty good progress on that, so I'm happy to share our main features:

- Code visualization to find an entry point to start review. And to get a bird-eye view on changes

- Dependency navigation - once any file is opened, you can see its diff with its dependencies diff. And you can navigate into deeper dependencies on the left sidebar

- Pull request split. We detect big pull requests and split them into smaller parts. Thus you can a power of small pull requests (more comments), and the team can share the review on one pr between several people.

You can see the demo of our interface here: https://viezly.com/change_requests/3986.

Let me know what you think!
eugene0
·5 lat temu·discuss
> - When reviewing PRs and wanting to check out some surrounding code that is not part of the actual PR.

It's interesting to see how suitable is the IDE for code review for different people. For me, it's usually pretty much overload, since it's focused on writing, not reading. But GitHub is really doing a great job of eliminating the necessity of cloning the branch for the review.

I'm doing a few experiments in this area on a tool called Viezly (example: https://viezly.com/change_requests/3986). Its focus is on dependency and navigation. So it's a light version of IDE-in-the-cloud for these cases of code review.