TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Launch HN: PullRequest (YC S17) – On-Demand Code Review

90 pointsby lyalalmost 8 years ago
Hi! I am Lyal Avery, founder of PullRequest (<a href="https:&#x2F;&#x2F;www.pullrequest.com" rel="nofollow">https:&#x2F;&#x2F;www.pullrequest.com</a>) - we’re currently in the YC S17 batch. PullRequest is offering code review as a service.<p>We built PullRequest to help developers. After waiting several days for feedback on a pull request while a colleague was on vacation, I knew there had to be a way to improve this process. Our mission is to improve code quality and save time for dev teams. We combine static and linting tools with real on-demand reviewers to help augment your current code review process. Dev managers like extra coverage, but our real intent is to free up developers to make better software more efficiently<p>We’re onboarding experts across a lot of different languages for this reason. Sometimes teams might only have one person working within a given framework&#x2F;language – it can be difficult to get objective feedback before shipping to production if you’re working on an island.<p>All reviewers sign NDAs to protect your IP. We start with surface level reviews – complying with framework or language standards, algorithmic work, performance or other questions. Since our reviewers continue working on the same projects, they will also gain context for deeper reviews.<p>Looking forward to hearing your thoughts and feedback!

21 comments

senkoalmost 8 years ago
I am skeptical that this can work well.<p>Having deep understanding of the code in question is essential for a good code review. Not just the code under review, but the wider scope of the project. This helps spot architectural problems, inconsistencies, unearth hidden assumptions or assumption breakages, and the like.<p>Reviewing the code as a drive-by loses all of those benefits and boils down to focusing on the code at hand, coding style, nitpicks, and implicitly assuming the code fits well with the rest (enforcing consistent coding style and pointing out code smells is certainly useful, these however can be automated to some extent by linters and services like CodeClimate).<p>I have been a reviewer in hundreds of pull requests, and reviews I&#x27;ve done where I have been intimately familiar with the existing code base were consistently much better than the reviews I did as an outsider to the project - even when, knowing this, I spent a lot more effort on the reviews as an outsider.<p>The founders seem to recognize this (it&#x27;s mentioned in the TC article) and mention pairing up reviewers with the same companies, but this IMHO will not be enough, unless these reviewers are basically on retainer and work regularly, and often, with the same company.<p>I&#x27;d love to be proven wrong, so good luck PullRequest team!
评论 #15041040 未加载
评论 #15040016 未加载
git-pullalmost 8 years ago
This looks like something that could catch on, especially if you&#x27;re already compartmentalizing projects into libraries, that alleviates a lot of hesitation in sharing a codebase. It&#x27;s good to see that NDA&#x27;s are involved as a layer of protection.<p>There are things that a human can suggest that computers can&#x27;t. Such as a refactoring suggestion.<p>Here are a few ideas:<p>- Consider adopting a standard like EditorConfig (<a href="http:&#x2F;&#x2F;editorconfig.org&#x2F;" rel="nofollow">http:&#x2F;&#x2F;editorconfig.org&#x2F;</a>) for reviewers to have compliant indentation out of the box<p>- For Enterprise packages: perhaps there can also be an opportunity to sub-contract out features and write tests?<p>- Consider experimenting internal CI tools (like as done in open source projects) to scan for obvious&#x2F;low-hanging fruit automatically<p>- Scanning for &#x2F; suggesting package updates<p>- Provide QA &#x2F; audit for a large open source project for exposure<p>- Security auditing<p>Here are things that are good to hear:<p>- Static &#x2F; Linting: things like vulture, flake8, etc. seem like a nice thing to stick to. It&#x27;s good that these linters have configuration files to it
评论 #15036759 未加载
lozzoalmost 8 years ago
I am very skeptical about this service. Aside from cosmetic changes (which should be automated anyway) code reviews are better served by people who know intimately the problem we are trying to solve. Some code could look pretty neat (and pass the review) but still overall would be a mistake to have it.
评论 #15038476 未加载
danpalmeralmost 8 years ago
Roughly speaking, I think there are 3 aims for code review:<p>1. Style&#x2F;consistency, re-use of existing code, utils, etc.<p>2. Architecture&#x2F;design, how does this fit into the rest of the codebase, scaling concerns, how will the deploy work, will this have race conditions, etc.<p>3. Knowledge sharing with other members of the team.<p>Currently, it looks like this would satisfy half each of 1 and 2, but will miss the (possibly large) amount of context that people working on the project have. To be honest, I don&#x27;t know how you solve that. How does a reviewer who lacks knowledge about the codebase spot a common pattern and know that another dev abstracted that out into a util a few weeks ago, for example.<p>I also wonder what could be done to address (3). I&#x27;ve seen the team I work on go from a place where everyone could review everything to a place where I can&#x27;t review all the code that goes live, and particularly after time off, I can&#x27;t really catch up. I&#x27;d love to see some sort of automated changelog of useful notes on what has changed. I&#x27;m not sure if this is possible, but summarising merged PRs, highlighting config changes, showing new utilities that have been added, etc, would be quite valuable.
评论 #15037491 未加载
评论 #15042208 未加载
评论 #15037490 未加载
traviswingoalmost 8 years ago
Seems like a good idea, but I wonder about the true quality of the review? In my experience, only a true team member who&#x27;s familiar with the project (i.e. has actually been working on it) can provide a quality code review. Beyond that, they&#x27;re just looking at ways to optimize blocks or find weird bugs in non-breaking recursive lines...
评论 #15037343 未加载
tedmistonalmost 8 years ago
I&#x27;m a huge fan of static analysis and code quality, and am really excited to see where this goes.<p>It would be nice to see a demo video before giving full access to my private repos.<p>&gt; Pricing &gt; Standard starting at $49 per month*<p>&gt; * Billing is dependent on amount of meaningful change per month. $9 per user per month for static analysis.<p>This metric is pretty unclear. Does this mean hourly billing based on reviewer time? Are there tiers or an upper bound? Is there a different tier for open source? Is the pricing different for surface vs deep reviews?<p>As one of those weird people that thinks doing code reviews and managing code quality is really fun, if I wanted to become a reviewer, what&#x27;s the vetting process like?<p>Can you elaborate on, besides involving humans, how the underlying service is different than Code Climate, Codacy, etc?<p>P.S. Found a small bug on your dev signup form which I reported on Twitter. It would be awesome to be able to help review PullRequest using PullRequest ;).
评论 #15041170 未加载
naturalgradientalmost 8 years ago
My suspicion is this:<p>All the issues someone with no familiarity of the code base or the problem could typically uncover are things that are prone to be automated away by software in the long run (or are already in the process of being automated).
评论 #15041196 未加载
jlambertsalmost 8 years ago
I would love this as an individual when learning new languages on my own projects. I find it really hard to tell if I&#x27;m actually doing things the &quot;right&quot; way without talking to someone more experienced.
评论 #15040363 未加载
acconradalmost 8 years ago
Awesome idea, just signed up to help out and review code! Is there an incentive &#x2F; gamification system to reward strong reviewers so their reputation increases as they provide good feedback to companies?
评论 #15037379 未加载
josh_carterPDXalmost 8 years ago
<i></i><i>All reviewers sign NDAs to protect your IP.</i><i></i><p>How does your company back this up? What happens if one of your Developers violates this? Will you pay for the legal fees?
评论 #15041206 未加载
bberenbergalmost 8 years ago
Do we expect them to provide feedback like &quot;this algorithm is not right because XYZ&quot; or &quot;I fixed this algorithm to work correctly&quot;. Those are very different levels of service and I think defining exactly what someone should expect will really helps set expectations.<p>I also think that this seems absurdly cheap, and I can&#x27;t imagine it scaling with quality reviewers. Would love to be wrong on this one.
评论 #15039123 未加载
评论 #15039458 未加载
redmalmost 8 years ago
I like this idea, it seems useful for all the ways described. My skepticism comes from the reviewers themselves. I think they will have a hard time attracting and keeping top talent who can provide high-quality reviews as such talent will want to be creating code, not only reviewing it. I&#x27;m not sure how they would resolve this.
评论 #15039569 未加载
评论 #15041130 未加载
评论 #15039571 未加载
edraferialmost 8 years ago
Very interesting. What are your thoughts about independent developers using this as an education tool? It would be really nice to get external input on projects I&#x27;m using to teach myself new technologies and patterns.
评论 #15038089 未加载
pj_mukhalmost 8 years ago
I am very interested in a product like this even if for just individual use. Your pricing says $49&#x2F;month depending on &quot;meaningful&quot; changes suggested? What does that mean?<p>Another good idea is for new programmers in a production environment just having an eye over their shoulders making sure they aren&#x27;t making rookie language mistakes (simpler ways of doing etc.). Letting official company engineers focus on architectural&#x2F;roadmap related issues.<p>This, to me, would be the fastest way to learn as well.
评论 #15041663 未加载
overcastalmost 8 years ago
Dang. One of the most painful things to do in this field, is dig through someones code. I don&#x27;t even like figuring out MY old code. I&#x27;m surprised reviewers are voluntarily submitting themselves to this torture :D Cool program though, hope it takes off for you.
评论 #15037946 未加载
fergiealmost 8 years ago
What are the benefits of reviewers over automated testing?<p>My workflow (which I believe is pretty standard) is:<p>* Write code<p>* Verify that tests pass locally (including stylistic tests, linting)<p>* Submit pull request<p>* Pull request triggers build and tests on Travis<p>* If all tests pass on Travis, code is stylistically and functionally correct<p>* Merge pull request<p>How can human reviewers improve this workflow?
评论 #15037861 未加载
评论 #15038241 未加载
评论 #15037953 未加载
评论 #15037895 未加载
fitzndalmost 8 years ago
Great idea! I agree that $49&#x2F;mo is a bit steep if targeting startups. Though at the same time, each PR could easily take an hour to review so it could get time consuming fast. Is there any free trial?
评论 #15038868 未加载
评论 #15038442 未加载
tcholasalmost 8 years ago
Congrats on building this product, guys. This tool is very interesting for startups that have only one developer and freelancers. However, a $49&#x2F;month pricing may be quite expensive for these people.
评论 #15037684 未加载
haydalmost 8 years ago
Do you pay reviewers? How much ?per review&#x2F;hour, how&#x27;s that work?
评论 #15041220 未加载
zazpoweredalmost 8 years ago
This could work well for Ethereum smart contracts
评论 #15039483 未加载
koolbaalmost 8 years ago
You should edit the submission description to make <a href="https:&#x2F;&#x2F;www.pullrequest.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.pullrequest.com&#x2F;</a> a clickable link. I&#x27;ve seen that done for other Launch HN submissions.
评论 #15037904 未加载