New: MCP integration. Run plagiarism scans from Claude, Cursor or any AI assistant. Run scans from Claude or Cursor. Set it up
David Kim

David Kim

Platform Engineer at Codequiry

David works on the scanning pipeline and API that power Codequiry checks at scale, from ingestion to results delivery.

Articles by David Kim

How Open Source License Scanning Evolved From SPDX to Policy Gates General 7 min
David Kim David Kim 6 days ago

How Open Source License Scanning Evolved From SPDX to Policy Gates

License scanning went from hand-checking COPYING files to SPDX metadata and policy-as-code gates. This piece traces that arc, shows which gaps still let copied code slip through, and explains how to pair license scans with source matching for audit-grade evidence.

How a Fintech DevSecOps Lead Runs Contractor Code Plagiarism Detection General 8 min
David Kim David Kim 1 week ago

How a Fintech DevSecOps Lead Runs Contractor Code Plagiarism Detection

Most vendor code passes unit tests and static analysis. It fails provenance checks. This is the exact merge gate I run in a fintech CI pipeline: Codequiry's plagiarism and AI scans wired into GitHub Actions, with thresholds, evidence review, and a failure policy.

How Web Code Plagiarism Detection Actually Works General 4 min
David Kim David Kim 1 month ago

How Web Code Plagiarism Detection Actually Works

A technical deep-dive into how modern plagiarism checkers spot code lifted from the open web. We walk through crawling, token-based fingerprinting, and matching algorithms that survive renaming and refactoring, with real examples and a look at where tools like MOSS fall short.

MOSS, JPlag, and AI Detectors Across 1,200 Obfuscated Submissions General 12 min
David Kim David Kim 1 month ago

MOSS, JPlag, and AI Detectors Across 1,200 Obfuscated Submissions

A deep-dive comparison of MOSS, JPlag, Dolos, and hybrid detectors on deliberately obfuscated student Java code. Token-based algorithms catch most refactoring, but AI-generated obfuscation is changing the game — and combining similarity checks with AI detection is the only reliable way to stay ahead.

Three Semesters of Detecting Collusion in CS1 Without Burnout General 11 min
David Kim David Kim 1 month ago

Three Semesters of Detecting Collusion in CS1 Without Burnout

When you teach 400 students each semester, “check the MOSS output” stops being a casual Friday task and becomes a logistical nightmare. After three iterations of the same introductory Java course, I’ve settled on a repeatable workflow that catches collusion without sacrificing evenings, weekends, or relationships with honest students. Here’s exactly how the pipeline works, what tools sit where, and where Codequiry finally closed the gap I was losing sleep over.

At What Renaming Threshold Do Token-Based Detectors Fail? General 10 min
David Kim David Kim 1 month ago

At What Renaming Threshold Do Token-Based Detectors Fail?

Most CS instructors trust MOSS to catch code copying — but how much renaming actually breaks it? This step-by-step guide shows you how to run a controlled experiment, measure the exact threshold where token-based similarity collapses, and see why a multi-stage engine that combines tokens with AST fingerprinting catches what MOSS misses.

One Community College's Web Code Plagiarism Strategy Case Studies 2 min
David Kim David Kim 2 months ago

One Community College's Web Code Plagiarism Strategy

When intro programming students at a mid-sized community college were copying entire code snippets from Stack Overflow and GitHub, the department needed a scalable detection solution. By integrating Codequiry’s web-source matching into their grading pipeline, they reduced surface-level copy-paste incidents by 40% in a single semester while cutting manual review time by 60%.

How Winnowing Fingerprints Resist Variable Renaming General 8 min
David Kim David Kim 4 months ago

How Winnowing Fingerprints Resist Variable Renaming

Winnowing fingerprinting is a powerful technique for detecting code plagiarism that survives variable renaming, refactoring, and cosmetic changes. This case study examines how the algorithm works, where it succeeds, and where it falls short compared to AST-based approaches.

What Code Similarity Metrics Actually Measure in Student Work General 9 min
David Kim David Kim 4 months ago

What Code Similarity Metrics Actually Measure in Student Work

Not all code similarity is plagiarism, and not all plagiarism is caught by string matching. This article breaks down the three major detection techniques—AST comparison, token-based analysis, and algorithmic fingerprinting—and explains what each one actually reveals about student submissions.

An OSPO Lead's Map Through the GNU License Compliance Maze General 12 min
David Kim David Kim 4 months ago

An OSPO Lead's Map Through the GNU License Compliance Maze

Navigating the tangled web of GNU license compliance across thousands of repositories isn't an academic exercise—it's a daily operational challenge. This profile of a senior OSPO lead reveals the tools, triage workflows, and legal nuance that keep enterprise products out of litigation.

Teaching Students to Write Attribution Comments in Group Work Academic Integrity 10 min
David Kim David Kim 4 months ago

Teaching Students to Write Attribution Comments in Group Work

Attribution comments are a simple but powerful tool for teaching code integrity in collaborative programming projects. This article explains how to implement them effectively, what to include, and how they transform group work from a plagiarism minefield into a learning opportunity.