{"id":43001877,"url":"https://github.com/bad-antics/bad-antics.github.io","last_synced_at":"2026-01-31T04:08:30.587Z","repository":{"id":333983393,"uuid":"1139266150","full_name":"bad-antics/bad-antics.github.io","owner":"bad-antics","description":"🌐 bad-antics GitHub Pages | NullSec Framework homepage | @AnonAntics | discord.gg/killers","archived":false,"fork":false,"pushed_at":"2026-01-29T17:47:12.000Z","size":132,"stargazers_count":1,"open_issues_count":3,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-30T05:31:22.107Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","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/bad-antics.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-21T18:31:07.000Z","updated_at":"2026-01-29T17:47:16.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/bad-antics/bad-antics.github.io","commit_stats":null,"previous_names":["bad-antics/bad-antics.github.io"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bad-antics/bad-antics.github.io","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bad-antics%2Fbad-antics.github.io","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bad-antics%2Fbad-antics.github.io/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bad-antics%2Fbad-antics.github.io/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bad-antics%2Fbad-antics.github.io/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bad-antics","download_url":"https://codeload.github.com/bad-antics/bad-antics.github.io/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bad-antics%2Fbad-antics.github.io/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28928895,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-31T04:05:25.756Z","status":"ssl_error","status_checked_at":"2026-01-31T04:02:35.005Z","response_time":128,"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-01-31T04:08:30.036Z","updated_at":"2026-01-31T04:08:30.581Z","avatar_url":"https://github.com/bad-antics.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Bad Antics ISO Archive\n\nA GitHub Pages site for sharing operating system ISOs and installation media.\n\n## 🚀 Setup Instructions\n\n### 1. Create the GitHub Repository\n\n1. Go to [GitHub](https://github.com) and log in\n2. Click the **+** icon in the top right and select **New repository**\n3. Name it exactly: `bad-antics.github.io` (or `your-username.github.io`)\n4. Make it **Public**\n5. Do NOT initialize with README (we'll push our existing files)\n6. Click **Create repository**\n\n### 2. Push This Project to GitHub\n\n```bash\ncd \"w:\\misc workspaces\\blackflag\\bad-antics.github.io\"\ngit init\ngit add .\ngit commit -m \"Initial commit: ISO archive site\"\ngit branch -M main\ngit remote add origin https://github.com/bad-antics/bad-antics.github.io.git\ngit push -u origin main\n```\n\n### 3. Enable GitHub Pages\n\n1. Go to your repository on GitHub\n2. Click **Settings** → **Pages**\n3. Under **Source**, select **main** branch\n4. Click **Save**\n5. Your site will be live at: `https://bad-antics.github.io`\n\n## 📦 Adding ISOs\n\n### Option 1: GitHub Releases (Recommended for large files)\n\n1. Go to your repository → **Releases**\n2. Click **Create a new release**\n3. Upload your ISO files (up to 2GB per file)\n4. Get the download URL and add it to `script.js` or `index.html`\n\n### Option 2: External Hosting\n\nFor ISOs larger than GitHub's limits:\n- Use **MEGA** (50GB free)\n- Use **Google Drive**\n- Use **Internet Archive**\n- Use **torrents** with magnet links\n\nUpdate the download links in the ISO cards accordingly.\n\n## 🎨 Customization\n\n### Adding a New ISO\n\nEdit `index.html` and add a new card in the appropriate section:\n\n```html\n\u003cdiv class=\"iso-card\"\u003e\n    \u003cdiv class=\"iso-icon\"\u003e🐧\u003c/div\u003e\n    \u003ch4\u003eYour ISO Name\u003c/h4\u003e\n    \u003cp class=\"iso-info\"\u003eSize: X.X GB | Released: Month Year\u003c/p\u003e\n    \u003cp class=\"iso-checksum\"\u003eSHA256: [checksum here]\u003c/p\u003e\n    \u003ca href=\"download-url\" class=\"download-btn\" data-iso=\"iso-name\"\u003eDownload\u003c/a\u003e\n\u003c/div\u003e\n```\n\n### Changing Colors\n\nEdit `styles.css` and modify the CSS variables:\n\n```css\n:root {\n    --primary-color: #ff4444;  /* Main accent color */\n    --secondary-color: #333;   /* Secondary color */\n    --bg-color: #1a1a1a;       /* Background */\n    --card-bg: #2a2a2a;        /* Card backgrounds */\n    --text-color: #e0e0e0;     /* Text color */\n    --accent-color: #ff6b6b;   /* Accent highlights */\n}\n```\n\n## ⚖️ Legal Considerations\n\n1. **Licensing**: Only share ISOs that are:\n   - Open source and freely distributable\n   - You have permission to share\n   - Not violating copyright\n\n2. **Safe Options**:\n   - Linux distributions (Ubuntu, Fedora, Debian, etc.)\n   - BSD systems (FreeBSD, OpenBSD, etc.)\n   - Recovery tools (SystemRescue, GParted Live, etc.)\n   - Legitimate free software\n\n3. **DO NOT share**:\n   - Pirated software\n   - Windows ISOs without proper licensing\n   - Commercial software you don't own\n\n## 📊 File Size Limits\n\n- GitHub Pages: 1GB total repository size recommended\n- Individual files: Use Git LFS for files \u003e 100MB\n- GitHub Releases: 2GB per file\n- For larger ISOs, use external hosting\n\n## 🔧 Advanced Features\n\n### Enable Download Analytics\n\nUse GitHub Actions or external analytics to track downloads.\n\n### Add Magnet Links\n\nFor torrent distribution, add magnet link support:\n\n```html\n\u003ca href=\"magnet:?xt=urn:btih:...\" class=\"download-btn\"\u003eTorrent\u003c/a\u003e\n```\n\n### Add Direct Download Mirrors\n\nProvide multiple download sources for reliability.\n\n## 📝 Maintenance\n\n- Keep checksums updated\n- Verify all download links monthly\n- Update the \"Last Updated\" date\n- Remove dead/outdated ISOs\n\n## 🛠️ Technologies Used\n\n- HTML5\n- CSS3 (Grid, Flexbox)\n- Vanilla JavaScript\n- GitHub Pages (hosting)\n\n## 📞 Support\n\nFor issues or suggestions, open an issue on GitHub.\n\n---\n\n**Remember**: Always verify ISO checksums before use and respect software licenses!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbad-antics%2Fbad-antics.github.io","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbad-antics%2Fbad-antics.github.io","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbad-antics%2Fbad-antics.github.io/lists"}