{"id":21408583,"url":"https://github.com/raku-community-modules/pastebin-shadowcat","last_synced_at":"2026-02-25T20:33:46.990Z","repository":{"id":29811899,"uuid":"33356333","full_name":"raku-community-modules/Pastebin-Shadowcat","owner":"raku-community-modules","description":"Raku module to use http://fpaste.scsys.co.uk/ pastebin","archived":false,"fork":false,"pushed_at":"2023-01-17T23:24:59.000Z","size":37,"stargazers_count":2,"open_issues_count":1,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-10-14T18:31:55.068Z","etag":null,"topics":["raku"],"latest_commit_sha":null,"homepage":"https://raku.land/zef:raku-community-modules/Pastebin::Shadowcat","language":"Raku","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"artistic-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/raku-community-modules.png","metadata":{"files":{"readme":"README.md","changelog":"Changes","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":"2015-04-03T09:18:19.000Z","updated_at":"2024-11-30T18:45:34.000Z","dependencies_parsed_at":"2023-02-10T12:31:30.417Z","dependency_job_id":null,"html_url":"https://github.com/raku-community-modules/Pastebin-Shadowcat","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/raku-community-modules/Pastebin-Shadowcat","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raku-community-modules%2FPastebin-Shadowcat","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raku-community-modules%2FPastebin-Shadowcat/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raku-community-modules%2FPastebin-Shadowcat/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raku-community-modules%2FPastebin-Shadowcat/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/raku-community-modules","download_url":"https://codeload.github.com/raku-community-modules/Pastebin-Shadowcat/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raku-community-modules%2FPastebin-Shadowcat/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29838133,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-25T19:08:47.527Z","status":"ssl_error","status_checked_at":"2026-02-25T18:59:04.705Z","response_time":61,"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":["raku"],"created_at":"2024-11-22T17:17:20.409Z","updated_at":"2026-02-25T20:33:46.972Z","avatar_url":"https://github.com/raku-community-modules.png","language":"Raku","readme":"[![Actions Status](https://github.com/raku-community-modules/Pastebin-Shadowcat/workflows/test/badge.svg)](https://github.com/raku-community-modules/Pastebin-Shadowcat/actions)\n\nNAME\n====\n\nPastebin::Shadowcat - Raku interface to http://fpaste.scsys.co.uk/\n\nSYNOPSIS\n========\n\n```raku\nuse Pastebin::Shadowcat;\n\nmy $p = Pastebin::Shadowcat.new;\nsay \"Pasting test content:\";\nmy $paste_url = $p.paste('\u003cpre\u003etest paste1\u003c/pre\u003e', 'My optional summary');\nsay \"Paste is located at $paste_url\";\n\nsay \"Retrieiving paste content:\";\nmy ( $content, $summary ) = $p.fetch('http://fpaste.scsys.co.uk/471157');\nsay \"Summary: $summary\";\nsay \"Content: $content\";\n```\n\nDESCRIPTION\n===========\n\nThis module allows to paste to [http://fpaste.scsys.co.uk/](http://fpaste.scsys.co.uk/) pastebin as well as retrieve content from existing pastes.\n\nMETHODS\n=======\n\n`new`\n-----\n\n```raku\nmy $p = Pastebin::Shadowcat.new;\n```\n\nCreates new `Pastebin::Shadowcat` object.\n\n`paste`\n-------\n\n```raku\nmy $paste_url = $p.paste('Paste content');\n\nmy $paste_url = $p.paste('Paste content', 'Optional summary');\n```\n\n**Returns** URL to the created paste (e.g. [http://fpaste.scsys.co.uk/471157](http://fpaste.scsys.co.uk/471157)). `fail`s on error. **Takes** one mandatory and one optional arguments: the content to paste and optional sumary.\n\n`fetch`\n-------\n\n```raku\nmy ($content,$summary) = $p.fetch('http://fpaste.scsys.co.uk/471157');\n\nmy ($content, $summary) = $p.fetch('471157');\n```\n\n**Returns** a two-item list: paste content and paste summary. `fail`s on error. **Takes** one mandatory argument: a full URL or just the ID number of the paste you want to retrieve.\n\nAUTHOR\n======\n\nZoffix Znet\n\nCOPYRIGHT AND LICENSE\n=====================\n\nCopyright 2015 - 2017 Zoffix Znet\n\nCopyright 2018 - 2022 Raku Community\n\nThis library is free software; you can redistribute it and/or modify it under the Artistic License 2.0.\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraku-community-modules%2Fpastebin-shadowcat","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fraku-community-modules%2Fpastebin-shadowcat","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraku-community-modules%2Fpastebin-shadowcat/lists"}