{"id":47876325,"url":"https://github.com/py7hon/final-ride","last_synced_at":"2026-04-04T01:15:58.759Z","repository":{"id":331436364,"uuid":"1126622152","full_name":"py7hon/final-ride","owner":"py7hon","description":null,"archived":false,"fork":false,"pushed_at":"2026-01-02T10:36:24.000Z","size":13433,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-08T08:45:22.933Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/py7hon.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-02T09:22:57.000Z","updated_at":"2026-01-02T10:36:27.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/py7hon/final-ride","commit_stats":null,"previous_names":["py7hon/final-ride"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/py7hon/final-ride","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py7hon%2Ffinal-ride","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py7hon%2Ffinal-ride/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py7hon%2Ffinal-ride/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py7hon%2Ffinal-ride/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/py7hon","download_url":"https://codeload.github.com/py7hon/final-ride/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py7hon%2Ffinal-ride/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31383994,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-03T23:20:52.058Z","status":"ssl_error","status_checked_at":"2026-04-03T23:20:51.675Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-04-04T01:15:57.913Z","updated_at":"2026-04-04T01:15:58.749Z","avatar_url":"https://github.com/py7hon.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Final Ride 🚀\n\n**Final Ride** is a secure, decentralized file management tool built on **Ethereum Swarm**. It allows you to encrypt, chunk, and upload files to the Swarm network, and download them securely.\n\n## Features\n\n- **🛡️ Secure Encryption**: Files are encrypted with AES-256-GCM (Go-compatible across Web \u0026 Desktop).\n- **🧩 Smart Chunking**: Large files (up to 10MB chunks) are automatically processed with integrity verification.\n- **🌐 Web \u0026 Desktop**: Purely graphical Windows app, CLI, and a high-performance Web interface.\n- **🚀 Auto-Download**: Share direct links (`?download=CID`) that trigger automatic downloads on the web.\n- **🏎️ Real-time Feedback**: Live progress bars and transfer speed indicators on all platforms.\n- **🎨 Premium UI**: Modern Montserrat typography with immediate theme switching and zero-freeze performance.\n- **☁️ Swarm Powered**: Decentralized storage via Ethereum Swarm gateway.\n\n## Installation\n\nRun the following commands to build the project:\n\n```bash\n# Build CLI tool\ngo build -o final-ride-cli.exe ./cmd/cli\n\n# Build GUI (Modern Desktop App - Hidden Console)\ngo build -o final-ride-gui.exe -ldflags=\"-H windowsgui\" ./cmd/gui\n```\n\n## Quick Start: Web Interface 🌐\nThe project includes a **Swarm Web Downloader/Uploader** for browser-native access.\n\n1. Navigate to `cmd/web/index.html` or host it on your server.\n2. **Auto-Download**: Simply visit `index.html?download=CID` to start an automatic download.\n3. **Secure Upload**: Drag and drop files to upload with optional AES-256-GCM encryption.\n4. **Shareable Links**: Copy the direct \"Final Ride\" link generated after every upload.\n\n## Configuration\n\nEdit `config.yaml` to customize your experience:\n\n```yaml\nswarm_api: https://api.gateway.ethswarm.org\nweb_url: https://final-ride.ethswarm.org\ndownload_link: \"http://localhost:8080/index.html?download=%s\"\nchunk_size_mb: 10\ntheme: \"dark\"           # \"light\" or \"dark\"\ndownload_dir: \"C:/Downloads\"\nencrypt_default: true   # Initial state of encryption toggle\n```\n\n## Usage\n\n### CLI (`final-ride-cli.exe`)\n\n**Upload a file:**\n```bash\n# Encrypted (Default)\n.\\final-ride-cli.exe upload MySecretFile.zip\n\n# Unencrypted\n.\\final-ride-cli.exe upload PublicImage.png --no-encrypt\n```\n\n**Download a file:**\n```bash\n# Via CID\n.\\final-ride-cli.exe download \u003cMetadata-CID\u003e\n\n# Via Shareable URL (Directly pasted)\n.\\final-ride-cli.exe download \"http://localhost:8080/index.html?download=Qmb...\"\n```\n\n### GUI (`final-ride-gui.exe`)\n\n1. **Launch**: Double-click `final-ride-gui.exe` (no terminal window will appear).\n2. **Branding**: Enjoy the new **Montserrat** powered interface with the \"FINAL RIDE\" branding.\n3. **Upload Tab**:\n   - Select your file and toggle encryption.\n   - Watch the **Live Progress** and **Transfer Speed**.\n   - **Share**: Copy the generated **Shareable Link** to send to others.\n4. **Download Tab**:\n   - Paste a **Metadata CID** or a full **Shareable URL**.\n   - Use the **Paste** button next to the input for quick clipboard access.\n   - Files are fetched, integrity-checked, and decrypted automatically.\n5. **Settings**: Customize your default download directory and theme instantly.\n\n## Project Structure\n\n- `cmd/cli`: Command-line tool entry point.\n- `cmd/gui`: Desktop GUI entry point (Gio UI).\n- `internal/finalride`: Shared core logic (Crypto, Swarm, Chunking).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpy7hon%2Ffinal-ride","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpy7hon%2Ffinal-ride","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpy7hon%2Ffinal-ride/lists"}