Click any tag below to further narrow down your results
Links
Open Code Review is an open-source CLI tool that uses LLMs to review code diffs and full files with higher precision than general-purpose AI agents while using 9x fewer tokens. It combines deterministic engineering (file selection, rule matching, positioning) with an agent for dynamic decisions, and has been validated across 200 real pull requests from 50 open-source projects.
- Achieves significantly higher precision and F1 scores than Claude Code with the same underlying model, consuming only ~1/9 of the tokens and completing reviews faster
- Uses hard constraints (precise file selection, smart bundling, fine-grained rule matching, external positioning modules) to eliminate common AI agent failures like incomplete coverage and position drift
- Built on production data from Alibaba's internal use across two years serving tens of thousands of developers and identifying millions of defects
This issue rounds up dev tools and research, from a zero-latency domain autocomplete engine and Transformer internals to Go’s padding trick for faster clears. It also covers memcached vs Redis, using AI for large code diffs, building desktop apps with Deno, orchestrating agents with Orca, and GLM-5.2’s performance plus its head-to-head with Claude Opus.
- Wirewiki's autocomplete handles 240M domain names with p99 latency of 0ms by caching popular domains client-side and only querying the backend for unfamiliar entries.
- GLM-5.2 beats most open models on benchmarks but lacks vision checks and can overfit, making it better for cheap text-heavy work.
- Claude Opus 4.8 is slower and pricier than GLM-5.2 but produces cleaner code and visual feedback, winning a 3D WebGL platformer test.
This guide shows how to use Apple Silicon and the Gemma 3 270M model to fine-tune a small language model offline in under 10 minutes. It walks through installing the uv/MLX toolchain, preparing a simple code-review dataset, and running the training on any M-chip Mac without a cloud GPU.
- Gemma 3 270M runs on ~830MB RAM and hits 150+ tokens/sec on an M3, fine-tuning in under 10 minutes via MLX's uv toolchain (as fast as 3 minutes on an M1 Air)
- A dataset of only ~60 Python code snippets paired with expert review notes was enough to teach the model to flag security issues (SQL injection, unclosed files, insecure shell commands) and style problems
- The entire workflow runs offline on Apple Silicon with no cloud GPU or rental fees required