A list of developer portfolios for your inspiration
This report presents the forensic synthetic code analysis of emmabostian/developer-portfolios, a Python project with 25,223 GitHub stars. SynthScan v2.0 examined 12,660 lines of code across 21 source files, recording 67 pattern matches distributed across 7 syntactic categories. The overall adjusted score of 8.9 places this repository in the Low AI signal band.
The scanner applied 160+ deterministic lexical heuristics, multi-line block detectors, abstract syntax tree depth profilers, and a cross-file Jaccard similarity matrix to construct a statistically normalised synthetic code estimate. All matches are individually weighted by severity coefficient and contextual multiplier before summation, and the resulting headline score is temporally discounted to account for the repository's development history relative to the commercial emergence of large language model coding tooling (November 2022 onward).
This chart maps the temporal evolution of the adjusted synthetic code score across successive scan runs. An upward trajectory indicates ongoing incorporation of AI-generated code or expanding LLM-assisted scaffolding; a stable or declining trajectory may reflect active human refactoring, code removal, or the adoption of stricter authorship policies. The dashed secondary line (right axis) independently tracks total raw pattern hit count, which can diverge from the normalised score when codebase size changes significantly between scans.
Classifies detected patterns by their diagnostic confidence and structural impact. CRITICAL patterns (coefficient 10) represent definitive synthetic signatures — hallucinated imports, explicit LLM attribution metadata — virtually never produced by human authors. HIGH (5) indicates strong structural tells such as cross-file repetition or cross-linguistic idioms. MEDIUM (2) covers recognisable conversational padding and AI-specific vocabulary. LOW (1) captures subtle indicators like tautological comments and generic boilerplate that require density to carry independent signal.
This horizontal bar chart decomposes the repository's raw synthetic code score by top-level directory, allowing you to pinpoint precisely which modules or components carry the highest AI authorship density. Directories with disproportionately high scores relative to their size warrant targeted manual review: concentrated AI signatures often trace back to mass-generated configuration layers, auto-ported test suites, LLM-scaffolded boilerplate classes, or entire subsystems authored under heavy copilot assistance. Use this view to prioritise your human code-review effort.
The scanner identified 67 distinct pattern matches across 7 syntactic categories. Each entry below represents a discrete location in the source code where the engine recorded a statistically significant AI authorship indicator. Expand any category row to inspect the individual file paths, line numbers, code snippets, and the lexical context (CODE, COMMENT, or STRING) in which each match was detected.
Reading the findings table: The Severity column indicates the diagnostic confidence level (CRITICAL / HIGH / MEDIUM / LOW). The Context column identifies whether the match occurred inside executable code, an inline comment, or a string literal — comment-context matches receive a ×1.5 weight because LLMs systematically over-annotate. The ⚡ bolt icon marks clustered matches: three or more patterns within a 10-line window, each receiving an additional ×1.5 density multiplier as dense clusters constitute far stronger evidence of synthetic authorship than isolated hits.
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | src/check_parking_redirects.py | 29 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | src/check_parking_redirects.py | 31 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | src/check_parking_redirects.py | 69 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | src/check_parking_redirects.py | 71 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | src/check_parking_redirects.py | 116 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | src/check_parking_redirects.py | 118 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | src/check_parking_redirects.py | 188 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | src/check_parking_redirects.py | 190 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | src/check_parking_redirects.py | 215 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | src/check_parking_redirects.py | 217 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | src/check_parking_redirects.py | 255 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | src/check_parking_redirects.py | 257 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | src/check_parking_redirects.py | 280 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | src/check_parking_redirects.py | 282 | # --------------------------------------------------------------------------- | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW⚡ | tests/test_emoji_detection.py | 6 | def test_link_text_with_emoji(self): | CODE |
| LOW⚡ | tests/test_emoji_detection.py | 10 | def test_no_emoji_in_link_text(self): | CODE |
| LOW⚡ | tests/test_emoji_detection.py | 14 | def test_emoji_in_bracketed_description(self): | CODE |
| LOW⚡ | tests/test_emoji_detection.py | 18 | def test_emoji_in_parenthesized_description(self): | CODE |
| LOW⚡ | tests/test_emoji_detection.py | 22 | def test_zwj_sequence_detection(self): | CODE |
| LOW⚡ | tests/test_emoji_detection.py | 28 | def test_url_with_emoji_but_not_text(self): | CODE |
| LOW | tests/test_main_e2e.py | 8 | def test_main_trims_and_writes_backup(self): | CODE |
| LOW | tests/test_fullstack_variants.py | 8 | def test_bracket_variants_normalized(self): | CODE |
| LOW⚡ | tests/test_remove_emoji.py | 6 | def test_remove_from_link_text(self): | CODE |
| LOW⚡ | tests/test_remove_emoji.py | 13 | def test_remove_from_bracket_desc(self): | CODE |
| LOW⚡ | tests/test_remove_emoji.py | 20 | def test_remove_from_paren_desc(self): | CODE |
| LOW | tests/test_feed_json.py | 16 | def test_extract_portfolio_data(): | CODE |
| LOW | tests/test_alphabetical.py | 6 | def test_trim_and_remove_duplicate(self): | CODE |
| LOW | tests/test_alphabetical.py | 36 | def test_non_markdown_ignored(self): | CODE |
| LOW | tests/test_alphabetical.py | 48 | def test_multiple_adjacent_duplicates(self): | CODE |
| LOW | tests/test_alphabetical.py | 59 | def test_remove_leading_single_letter_token(self): | CODE |
| LOW | tests/test_alphabetical.py | 70 | def test_strip_aaa_prefix_token(self): | CODE |
| LOW | tests/test_alphabetical.py | 90 | def test_validate_section_placement_single_misplaced(self): | CODE |
| LOW | tests/test_alphabetical.py | 118 | def test_validate_section_placement_multiple_misplaced(self): | CODE |
| LOW | tests/test_alphabetical.py | 135 | def test_validate_section_placement_accented_characters(self): | CODE |
| LOW | tests/test_alphabetical.py | 151 | def test_validate_section_placement_no_misplaced(self): | CODE |
| LOW | tests/test_alphabetical.py | 166 | def test_validate_section_placement_creates_new_section(self): | CODE |
| LOW | src/alphabetical.py | 87 | def validate_section_placement(lines): | CODE |
| LOW | src/alphabetical.py | 222 | def sort_lists_alphabetically(lines): | CODE |
| LOW | src/alphabetical.py | 504 | def remove_exact_duplicate_links(lines): | CODE |
| LOW | src/check_parking_redirects.py | 202 | def parse_lychee_flagged_urls(lychee_path: str) -> set: | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | tests/test_feed_json.py | 99 | except Exception as e: | CODE |
| LOW | tests/test_feed_json.py | 109 | except Exception as e: | CODE |
| MEDIUM⚡ | src/generate_feed.py | 67 | print(f"Error: {readme_path} not found.") | CODE |
| LOW⚡ | src/generate_feed.py | 69 | except Exception as e: | CODE |
| MEDIUM⚡ | src/generate_feed.py | 70 | print(f"Error creating feed.json: {e}") | CODE |
| LOW | src/alphabetical.py | 154 | except Exception: | CODE |
| LOW | src/alphabetical.py | 276 | except Exception: | CODE |
| LOW | src/alphabetical.py | 607 | except Exception as e: | CODE |
| MEDIUM | src/alphabetical.py | 608 | print(f"Error creating feed.json: {e}") | CODE |
| LOW | src/alphabetical.py | 621 | except Exception: | CODE |
| LOW | src/check_parking_redirects.py | 84 | except Exception: | CODE |
| LOW | src/check_parking_redirects.py | 159 | except Exception as e: | CODE |
| LOW⚡ | src/check_parking_redirects.py | 181 | except Exception: | CODE |
| LOW | src/check_parking_redirects.py | 240 | except Exception as e: | CODE |
| LOW | src/run_tests.py | 24 | except Exception as e: | CODE |
| MEDIUM | src/run_tests.py | 25 | print(f"Error discovering tests in {args.dir}: {e}") | CODE |
| LOW | src/remove_emoji_in_readme.py | 20 | except Exception: | CODE |
| LOW | src/remove_emoji_in_readme.py | 23 | except Exception: | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | src/alphabetical.py | 87 | CODE | |
| LOW | src/alphabetical.py | 222 | CODE | |
| LOW | src/alphabetical.py | 504 | CODE | |
| LOW | src/check_parking_redirects.py | 219 | CODE | |
| LOW | src/run_dup_report.py | 13 | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | src/alphabetical.py | 12 | # Use a robust split that treats common whitespace (including NBSP) as separators | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | src/alphabetical.py | 39 | # Check if the word has uppercase letters after the first character (e.g. DevOps, GenAI) | COMMENT |
| LOW | src/alphabetical.py | 162 | # Check if in correct section | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | feed.json | 3767 | "name": "John Doe", | CODE |