{"id":16162160,"url":"https://github.com/d43m0nhlint3r/pepegaboard","last_synced_at":"2026-02-03T12:03:06.838Z","repository":{"id":37188155,"uuid":"283173603","full_name":"d43m0nhLInt3r/PepegaBoard","owner":"d43m0nhLInt3r","description":"An Open Source Pepega Board","archived":false,"fork":false,"pushed_at":"2023-01-06T12:39:48.000Z","size":7663,"stargazers_count":0,"open_issues_count":9,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-01T05:03:12.246Z","etag":null,"topics":["bootstrap","bttv-emotes","electron","memes","twitch"],"latest_commit_sha":null,"homepage":"","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/d43m0nhLInt3r.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-07-28T10:03:40.000Z","updated_at":"2020-10-15T15:25:56.000Z","dependencies_parsed_at":"2023-02-06T02:46:13.744Z","dependency_job_id":null,"html_url":"https://github.com/d43m0nhLInt3r/PepegaBoard","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/d43m0nhLInt3r/PepegaBoard","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d43m0nhLInt3r%2FPepegaBoard","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d43m0nhLInt3r%2FPepegaBoard/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d43m0nhLInt3r%2FPepegaBoard/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d43m0nhLInt3r%2FPepegaBoard/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/d43m0nhLInt3r","download_url":"https://codeload.github.com/d43m0nhLInt3r/PepegaBoard/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d43m0nhLInt3r%2FPepegaBoard/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29045440,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-03T10:09:22.136Z","status":"ssl_error","status_checked_at":"2026-02-03T10:09:16.814Z","response_time":96,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["bootstrap","bttv-emotes","electron","memes","twitch"],"created_at":"2024-10-10T02:29:14.581Z","updated_at":"2026-02-03T12:03:04.695Z","avatar_url":"https://github.com/d43m0nhLInt3r.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PepegaBoard\nAn Open Source Pepega Board\n\u003cbr\u003e\u003cimg src=\"https://github.com/d43m0nhLInt3r/PepegaBoard/raw/master/images/PepegaBoard.png\" width=\"400px\"\u003e\n\u003cimg src=\"https://github.com/d43m0nhLInt3r/PepegaBoard/raw/master/images/PepegaBoard2.png\" width=\"400px\"\u003e\n## How to add an image\nindex.html\n```bash\n$ \u003ca id=\"myNewEmote\" href=\"#\"\u003e\n$         \u003cimg src=\"./images/myNewEmote.jpg\" class=\"rounded float-left mb-5 mr-3\" style=\"width:200px; height:200px;\"\u003e\n$     \u003c/a\u003e\n```\nrenderer.js\n```bash\n$ document.getElementById(\"myNewEmote\").addEventListener(\"click\", (event) =\u003e {\n$  localStorage.setItem(\"id\", \"myNewEmote\");\n$  const modalPath = path.join(\"file://\", __dirname, \"frame.html\");\n$  let win = new BrowserWindow({ frame: false, width: 256, height: 256, alwaysOnTop: true });\n$  win.on(\"close\", () =\u003e {\n$    win = null;\n$  });\n$  win.loadURL(modalPath);\n$  win.show();\n$ });\n```\nframe.html\n```bash\n$ case \"myNewEmote\":\n$                    document.getElementById(\"view\").src = './images/myNewEmote.jpg';\n$                    break;\n```\n## How to add an audio\nindex.html\n```bash\n$ \u003ca id=\"myNewAudio\" href=\"#\"\u003e\n$        \u003cimg src=\"./images/play.png\" class=\"rounded float-left mb-5 mr-3\" style=\"width:200px; height:200px;\"\u003e\n$     \u003c/a\u003e\n```\nrenderer.js\n```bash\n$ document.getElementById(\"myNewAudio\").addEventListener(\"click\", (event) =\u003e {\n$  localStorage.setItem(\"id\", \"myNewAudio\");\n$ const modalPath = path.join(\"file://\", __dirname, \"audio.html\");\n$  let win = new BrowserWindow({ frame: false, width: 256, height: 256, alwaysOnTop: true });\n$  win.on(\"close\", () =\u003e {\n$    win = null;\n$  });\n$  win.loadURL(modalPath);\n$  win.show();\n$ });\n```\nframe.html\n```bash\ncase \"myNewAudio\":\n                    document.getElementById(\"play\").src = './audio/myNewAudio.mp3';\n                    document.getElementById(\"view\").src = './images/myNewAudio.jpg';\n                    break;\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fd43m0nhlint3r%2Fpepegaboard","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fd43m0nhlint3r%2Fpepegaboard","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fd43m0nhlint3r%2Fpepegaboard/lists"}