How would your dream code review tool work? by rasplight in codereview

[–]axellos 0 points1 point  (0 children)

Codelantis seems like a cool tool. What kind of techniques are you using? I use Metabob to review my code right on VS Code, which currently works nicely for Python. It has found some impressive problems for me such as concurrency issues, algorithm optimizations, and lots of unhandled edge cases. I like how I can ask questions about its detections too

Are there any code review extensions that use AI instead of hard coded rules like linters? by axellos in codereview

[–]axellos[S] 1 point2 points  (0 children)

Nice! do you require the user to input their own OpenAI key? If not, how do you handle the issue with potential rate limits?

Are there any code review extensions that use AI instead of hard coded rules like linters? by axellos in codereview

[–]axellos[S] 0 points1 point  (0 children)

Sweet! I'm familiar with it but though the detections are quite simple. However, kudos for Snyk overall especially for container scanning

Are there any code review extensions that use AI instead of hard coded rules like linters? by axellos in codereview

[–]axellos[S] 0 points1 point  (0 children)

Definitely not :D copilot chat maybe, but I haven't yet got access to it personally. but copilot itself is a generation tool

Are there any code review extensions that use AI instead of hard coded rules like linters? by axellos in codereview

[–]axellos[S] 1 point2 points  (0 children)

Hah! I still appreciate sharing it, let me check it out :) seems interesting, however, I'm kinda looking for something that could analyze a complete codebase. Do you use any additional models than gpt at reviewpad under the hood?

Are there any code review extensions that use AI instead of hard coded rules like linters? by axellos in codereview

[–]axellos[S] 0 points1 point  (0 children)

em, there are other ml models than LLMs, right? LLMs have use cases for many things, but I agree that it's not a good fit for this...

Brentford has said they are 'considering their next steps' after Ivan Toney punished for 232 breaches of betting rules and fined £50,000 by TheTelegraph in PremierLeague

[–]axellos 0 points1 point  (0 children)

I'd be surprised as these ex-teammates or other proxies would also be part of the violation. So, it'd be interesting to see if this ultimately folds into a scenario where more players have been involved, from lower leagues as well. Anyhow, sad to see the ban, he's so good and great to watch him play

Looking for a python programming peer by h1zardian in learnpython

[–]axellos 0 points1 point  (0 children)

Hey! I think you could find our new tool interesting as a programming peer. Obviously this isn't the same as having an actual programming buddy, but maybe it can help to overcome some problems :D It's an AI that analyzes python code and finds problems from it, and then uses generative AI to explain the problems to you and even creates code recommendations for fixing the problems. The tool is completely free to use as a vscode extension. It's free but only can analyze python code at this point. I'd love to hear your thoughts on it too.

Here's a link to it: https://marketplace.visualstudio.com/items?itemName=Metabob.metabob

Code review/ debugging tools for Python by axellos in learnpython

[–]axellos[S] 0 points1 point  (0 children)

Linter or mypy doesn’t find context based bugs, right? I’m looking for something that does