{"id":43732230,"url":"https://github.com/someodd/interlog","last_synced_at":"2026-02-05T10:29:05.608Z","repository":{"id":314934116,"uuid":"1057230498","full_name":"someodd/interlog","owner":"someodd","description":"Gopher-genre phorum.","archived":false,"fork":false,"pushed_at":"2025-09-24T02:09:51.000Z","size":23,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-09-24T04:09:43.754Z","etag":null,"topics":["bbs","forum","gopher-protocol","textboard"],"latest_commit_sha":null,"homepage":"https://gopher.someodd.zip/interlog/","language":"Haskell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/someodd.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","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":"2025-09-15T12:56:50.000Z","updated_at":"2025-09-24T02:09:54.000Z","dependencies_parsed_at":"2025-09-15T19:16:44.429Z","dependency_job_id":"930084aa-3868-4806-a4bc-c7e62620e3dd","html_url":"https://github.com/someodd/interlog","commit_stats":null,"previous_names":["someodd/interlog"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/someodd/interlog","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/someodd%2Finterlog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/someodd%2Finterlog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/someodd%2Finterlog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/someodd%2Finterlog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/someodd","download_url":"https://codeload.github.com/someodd/interlog/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/someodd%2Finterlog/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29119232,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-05T09:40:36.738Z","status":"ssl_error","status_checked_at":"2026-02-05T09:36:49.977Z","response_time":65,"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":["bbs","forum","gopher-protocol","textboard"],"created_at":"2026-02-05T10:29:05.121Z","updated_at":"2026-02-05T10:29:05.602Z","avatar_url":"https://github.com/someodd.png","language":"Haskell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# interlog: Interactive Log Phorum\n\nSimple hyperminimal forum proof-of-concept. In the spirit of the Gopher protocol and Unix, used at: [gopher://gopher.someodd.zip/1/interlog](gopher://gopher.someodd.zip/1/interlog).\n\nJust a CLI tool, no daemon, no DB. All it does is (1) append to logs (2) create a gophermap index (3) create new logs.\n\nThreads are just text files, stored in this format:\n\n```\ninterlogs/\n  id_epoch_titleslug.txt\n```\n\n... replies are just lines appended to a log.\n\nA log caps at 1 MB (`LOG_MAX_SIZE`).\nThe maximum append/add size is `APPEND_MAX_SIZE`.\n\n## CLI Interface\n\n* `interlog \u003cinterlogs/\u003e append \u003cid\u003e \"message goes here\"`\n  Appends to the log beginning with `interlog_posts/id_`. Exits with an error if there is a filesystem error, if the log exceeds `LOG_MAX_SIZE`, or if the message exceeds `APPEND_MAX_SIZE`.\n\n* `interlog \u003cinterlogs/\u003e index`\n  Generates a gophermap of all logs in `interlogs/`, sorted by last updated file metadata. The epoch in the filename is the file creation date.\n  Includes a link to create a new log and, per log, to append to it.\n  Only the `FIRST_N_BYTES` and `LAST_N_BYTES` are shown (no overlap), along with the latest update/modify time.\n\n* `interlog \u003cinterlogs/\u003e new \"message goes here\"`\n  Creates a new log, with a slug derived from the first line (content is stripped). Exits with an error if there is a filesystem error, the log would exceed `LOG_MAX_SIZE`, or the message is too large.\n\nErrors are also raised if `\\n` is present in the message (may be expanded in future).\n\n## Options (helps with generating index)\n\n* `--host` (e.g. `gopher.someodd.zip`) required\n* Optional `--port`\n* Optional `--base-selector` to prepend to everything when generating the index\n\n## Administration\n\nJust modify the filesystem directly.\n\n## Venusia Gateway Setup\n\nYou can set up the Interlog CLI to be used as a gopherapp easily using my [Venusia Gopher daemon](https://github.com/someodd/venusia), editing `routes.toml`:\n\n```\n# FORUM/INTERLOG\n################\n\n[[files]]\nselector = \"/interlog/logs\"\npath = \"/var/gopher/output/interlogs/\"\n\n[[gateway]]\nselector = \"/interlog\"\nsearch = false\nwildcard = false\nmenu = false\ncommand = \"/usr/bin/interlog\"\narguments = [\"/var/gopher/output/interlogs/\", \"index\", \"--host=gopher.someodd.zip\", \"--base-selector=interlog\", \"--logs-selector=logs\"]\n\n[[gateway]]\nselector = \"/interlog/new\"\nsearch = true\nwildcard = false\nmenu = false\ncommand = \"/usr/bin/interlog\"\narguments = [\"/var/gopher/output/interlogs/\", \"new\", \"$search\", \"--confirm-text=0Created %s. Do not refresh. Open me or go back!\\t/interlog/logs/%s\\tgopher.someodd.zip\\t70\"]\n\n[[gateway]]\nselector = \"/interlog/append/*\"\nsearch = true\nwildcard = true\nmenu = false\ncommand = \"/usr/bin/interlog\"\narguments = [\"/var/gopher/output/interlogs/\", \"append\", \"$wildcard\", \"$search\", \"--confirm-text=0Appended to %s. Do not refresh. Open me or go back!\\t/interlog/logs/%s\\tgopher.someodd.zip\\t70\"]\n\n[[gateway]]\nselector = \"/interlog/log/*\"\nsearch = false\nwildcard = true\nmenu = false\ncommand = \"cat\"\narguments = [\"/var/gopher/output/interlogs/$wildcard\"]\n\n# The root most files needs to be defined last.\n#\n# [[files]] defines a route that uses the built-in file server.\n[[files]]\nselector = \"\"\npath = \"/var/gopher/output\"\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsomeodd%2Finterlog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsomeodd%2Finterlog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsomeodd%2Finterlog/lists"}