Code Anonymization Tool for Paper Review

Convert your code repository into an anonymous static website for paper review

This tool helps you create an anonymous version of your code repository for paper review

Features:

📁
Drag and drop your code repository ZIP file here or click to select
Support for ZIP format code repositories only
主题预览
def fibonacci(n):
    if n <= 1:
        return n
    a, b = 0, 1
    for _ in range(2, n + 1):
        a, b = b, a + b
    return b
Processing files...

Learn how to deploy your anonymous site to Cloudflare Pages