Detect plagiarized and similar code across trillions of code sources on the web See what's new

Code Intelligence Hub

Expert insights on AI code detection and academic integrity

Latest Articles

Stay ahead with expert analysis and practical guides

Scanning a Codebase for GPL Violations Before Acquisition General 11 min
Emily Watson Emily Watson · 2 weeks ago

Scanning a Codebase for GPL Violations Before Acquisition

When ZephyrCloud faced a pre-acquisition license audit, its engineering team turned to automated code similarity scanning after manual searches proved unreliable. The process uncovered several GPL-licensed snippets copied from Stack Overflow and GitHub, forcing a careful remediation effort that saved the deal. Here’s what they learned about using plagiarism detection for open-source compliance.

Bootcamps Are Automatically Scanning Every Submission for AI Code General 6 min
James Okafor James Okafor · 2 weeks ago

Bootcamps Are Automatically Scanning Every Submission for AI Code

Coding bootcamps that graduate thousands of developers a year are shifting from manual spot-checks to automated AI code detection on every single submission. Here’s a hands‑on guide to building that pipeline with Codequiry’s API — from single‑file scanning to a full CI‑grade batch checker you can run in a GitHub Action.

How Code Similarity Detection Grew From Diff to AI General 8 min
James Okafor James Okafor · 2 weeks ago

How Code Similarity Detection Grew From Diff to AI

From the early days of the Unix diff command to the rise of MOSS, JPlag, and AI-powered detectors, code similarity detection has undergone a quiet revolution. This retrospective traces the key technical milestones—tokenization, ASTs, fingerprinting, web-source matching, and the new frontier of AI-generated code—showing how each layer made plagiarism harder to hide. See how modern platforms like Codequiry unify these techniques into a single pipeline.

How an Engineering Team Automated Code Originality Checks for Contractors General 11 min
James Okafor James Okafor · 2 weeks ago

How an Engineering Team Automated Code Originality Checks for Contractors

When a mid-sized software firm started scaling external contractor contributions, they needed a way to verify code originality at scale. By integrating Codequiry’s API into their CI/CD pipeline, they built an automated gate that flagged plagiarized open-source snippets and AI-generated code before it ever hit the main branch. Here’s a look at their process, the false-positive tradeoffs, and the integration that saved their legal review hours.

Automating Source Code Plagiarism Checks With Canvas and Codequiry General 12 min
Marcus Rodriguez Marcus Rodriguez · 2 weeks ago

Automating Source Code Plagiarism Checks With Canvas and Codequiry

When a single CS1 assignment yields 300+ submissions, manual plagiarism checking simply doesn't scale. This hands-on guide walks through connecting Canvas to Codequiry's API, running similarity and AI-detection scans with a handful of Python scripts, and posting flagged results directly back into the SpeedGrader — so you catch the cases that matter without drowning in paperwork.

A Triage Protocol for AI-Generated Code in CS Assignments General 12 min
Marcus Rodriguez Marcus Rodriguez · 3 weeks ago

A Triage Protocol for AI-Generated Code in CS Assignments

A single run of an AI detector on a suspicious student submission is not enough. CS professors need a systematic triage protocol that stacks similarity analysis, AI code detection, web-source fingerprinting, and manual review into a defensible pipeline. This article outlines a concrete workflow you can implement this semester.

A Framework for Scanning AI-Generated Code in Student Submissions General 13 min
Priya Sharma Priya Sharma · 3 weeks ago

A Framework for Scanning AI-Generated Code in Student Submissions

AI large language models can now generate passable code for many introductory CS assignments, leaving instructors scrambling. A systematic scanning framework—combining AI detection, plagiarism analysis, and human review gates—can reliably identify AI-written submissions while respecting due process. Here’s how to build one.

Contractor Code Audit at a 50-Person SaaS Startup General 9 min
James Okafor James Okafor · 3 weeks ago

Contractor Code Audit at a 50-Person SaaS Startup

When a growing SaaS startup suspected a third‑party deliverable contained unattributed open‑source code, they built a verification pipeline that now scans every contractor commit. Here’s what they learned about trade‑offs, accuracy, and the tools that stuck.

Why Cross-Language Code Plagiarism Detection Is Now Essential General 8 min
James Okafor James Okafor · 3 weeks ago

Why Cross-Language Code Plagiarism Detection Is Now Essential

Modern CS courses often span multiple programming languages, but traditional plagiarism tools like MOSS only compare files within the same language. This case study walks through a practical detection pipeline that catches students rewriting Java logic in Python, using token-normalised AST comparisons and Codequiry’s cross-language API.

How Code Fingerprints Catch GPL License Violations General 9 min
Rachel Foster Rachel Foster · 3 weeks ago

How Code Fingerprints Catch GPL License Violations

Detecting GPL license violations in a codebase requires more than grep. Code fingerprinting and AST-based similarity analysis can identify copied open-source code even after heavy modification. This article explains the techniques behind automated license compliance detection and how enterprises use them to avoid lawsuits.

A DevOps Engineer's Playbook for Plagiarism and Code Smells in CI General 10 min
James Okafor James Okafor · 3 weeks ago

A DevOps Engineer's Playbook for Plagiarism and Code Smells in CI

This practical guide walks DevOps engineers through integrating code smell detection and plagiarism checking into a single CI pipeline. Using SonarQube and the Codequiry API, you'll learn how to catch refactoring-resistant copy-paste, known vulnerabilities, and code-quality regressions before they reach production. The guide includes a complete GitHub Actions workflow, token-based authentication, and advice on setting meaningful thresholds.