{"id":17802058,"url":"https://github.com/tlkamp/mockbob","last_synced_at":"2025-09-22T04:32:18.699Z","repository":{"id":54248937,"uuid":"226606041","full_name":"tlkamp/mockbob","owner":"tlkamp","description":"Converts text into Spongebob meme mocking format.","archived":false,"fork":false,"pushed_at":"2025-09-02T01:19:57.000Z","size":46,"stargazers_count":9,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-02T03:27:37.553Z","etag":null,"topics":["cli","go","golang","hacktoberfest","meme"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tlkamp.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,"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":"2019-12-08T02:56:36.000Z","updated_at":"2025-09-02T01:20:01.000Z","dependencies_parsed_at":"2025-09-02T03:15:29.749Z","dependency_job_id":null,"html_url":"https://github.com/tlkamp/mockbob","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/tlkamp/mockbob","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tlkamp%2Fmockbob","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tlkamp%2Fmockbob/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tlkamp%2Fmockbob/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tlkamp%2Fmockbob/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tlkamp","download_url":"https://codeload.github.com/tlkamp/mockbob/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tlkamp%2Fmockbob/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":276346899,"owners_count":25626547,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-22T02:00:08.972Z","response_time":79,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["cli","go","golang","hacktoberfest","meme"],"created_at":"2024-10-27T12:40:34.203Z","updated_at":"2025-09-22T04:32:18.415Z","avatar_url":"https://github.com/tlkamp.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Go Report Card](https://goreportcard.com/badge/github.com/tlkamp/mockbob)](https://goreportcard.com/report/github.com/tlkamp/mockbob)\n\n# mockbob\n\n![mascot](doc/gopher.png)\n\nA CLI tool for generating Spongebob meme text.\n\nBecause sometimes manually typing out that format takes too many braincells.\n\n## Demo\n![mockbob](https://user-images.githubusercontent.com/18516698/72223486-eed92080-3534-11ea-94df-b9d5ae48e43f.gif)\n\n## Usage\n\n\u003e Note: Stdin takes precedence over argument provided values\n\nTo use `mockbob`, simply call it in your terminal.\n\n```shell\n$ mockbob herpaderp\nhErPaDeRp\n```\n\nFor multiple words, use quotes:\n\n```shell\n# Arg\n$ mockbob do you even lift bro\ndO yOu EvEn LiFt BrO\n\n# Stdin\n$ echo do you even lift bro | mockbob\ndO yOu EvEn LiFt BrO\n```\n\n`mockbob` will preserve punctuation:\n\n```shell\n# Arg\n$ mockbob 'do you even lift bro?'\ndO yOu EvEn LiFt BrO?\n\n# Stdin\n$ echo 'do you even lift bro?' | mockbob\ndO yOu EvEn LiFt Bro?\n```\n\nAnd if you want to start off with capital letters, pass the `-c` flag.\n\n```shell\n# Arg\n$ mockbob -c \"do you even lift bro?\"\nDo YoU eVeN lIfT bRo?\n\n# Stdin\n$ echo \"do you even lift bro?\" | mockbob -c\nDo YoU eVeN lIfT bRo?\n```\n\n## Installation\n\nTo install this module, simply run:\n\n```console\n$ go install github.com/tlkamp/mockbob@latest\n\n# mockbob is now available in your terminal\n$ which mockbob\n/Users/traci/go/bin/mockbob\n\n$ mockbob -h\nmockbob will take any set of input text, and return it in a Spongebob meme mocking format.\n\nExamples:\n  mockbob \"do you even lift bro\" -\u003e dO yOu EvEn LiFt BrO\n  mockbob -c \"do you even lift bro\" -\u003e Do YoU eVeN lIfT bRo\n  mockbob herpderp -\u003e hErPdErP\n  mockbob -c herpderp -\u003e HeRpDeRp\n  mockbob -r herpaderp -\u003eHerPAdErP\n\nUsage:\n  mockbob [word or sentence] [flags]\n\nFlags:\n  -h, --help          help for mockbob\n  -r, --random-caps   randomize the capital letters through the text\n  -c, --start-caps    start the text with a capital letter\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftlkamp%2Fmockbob","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftlkamp%2Fmockbob","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftlkamp%2Fmockbob/lists"}