{"id":19447353,"url":"https://github.com/twhite96/checkyoself","last_synced_at":"2025-04-25T01:32:37.905Z","repository":{"id":47592835,"uuid":"87746798","full_name":"twhite96/checkyoself","owner":"twhite96","description":"Markdown Grammar Checker for blog posts, etc.","archived":false,"fork":false,"pushed_at":"2023-09-17T00:15:35.000Z","size":18299,"stargazers_count":41,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-03T14:43:48.821Z","etag":null,"topics":["grammar","grammar-checker","markdown-editor","markdown-parser","spelling-checker"],"latest_commit_sha":null,"homepage":"https://twhite96.github.io/checkyoself/","language":"TypeScript","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/twhite96.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":null,"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2017-04-09T23:20:52.000Z","updated_at":"2023-09-17T00:14:04.000Z","dependencies_parsed_at":"2024-11-10T16:18:09.309Z","dependency_job_id":"b2a92b9e-c45a-457c-b0dc-265c352d4b35","html_url":"https://github.com/twhite96/checkyoself","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/twhite96%2Fcheckyoself","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/twhite96%2Fcheckyoself/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/twhite96%2Fcheckyoself/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/twhite96%2Fcheckyoself/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/twhite96","download_url":"https://codeload.github.com/twhite96/checkyoself/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250738218,"owners_count":21479151,"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","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":["grammar","grammar-checker","markdown-editor","markdown-parser","spelling-checker"],"created_at":"2024-11-10T16:17:43.349Z","updated_at":"2025-04-25T01:32:37.898Z","avatar_url":"https://github.com/twhite96.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Check Yo Self\n\n\u003e  A site to check the grammar of your markdown blog posts/texts.\n\n[![Shields](https://img.shields.io/badge/Status-WIP-%2306d7d9?style=for-the-badge\u0026logo=appveyor)](https://img.shields.io/badge/Status-WIP-%2306d7d9)\n[![MIT Licence](https://img.shields.io/github/license/twhite96/checkyoself?style=for-the-badge)](https://opensource.org/licenses/mit-license.php)\n[![GitHub commits](https://img.shields.io/github/commits-since/twhite96/checkyoself/0.7?style=for-the-badge)](https://github.com/twhite96/checkyoself/releases/tag/0.7)\n![Mastodon Follow](https://img.shields.io/mastodon/follow/109368045337420181?color=%23278bff\u0026domain=https%3A%2F%2Fhachyderm.io\u0026logo=Mastodon\u0026style=for-the-badge)\n\n[Live Demo](https://checkyoself.tiffstuff.dev)\n\n[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/twhite96/checkyoself)\n\n---\n\nHow to use:\n\n1. 🌀 Clone the repo at `https://github.com/twhite96/checkyoself.git`\n2. 🏃 Run: `npm i` to install dependencies.\n3. 🎊 Have fun with it.\n\n---\n\n## 💪🏽 Motivation for this app\nFrustrated by Grammarly and Hemingway apps' inability to process markdown blog posts, I decided to make my own site to process markdown blog posts or other texts. I settled on React Bulma for the UI because it is lightweight and flexible, like Bulma.\n\n## 🥞 Stack\nI am currently using React-Bulma, create-react-app, write-good, and SimpleMDE markdown editor. Eventually I'd like to use Firebase for data persistence.\n\n## 👊🏽 Wins\nThe components are written for the most part; there are some breaking changes with SimpleMDE editor and so I am not upgrading to the latest version.\n\nI've also become more cognizant of React patterns and concepts.\n\nFor instance,\n\n## 😐 Difficulties\n\nGetting the styling was easy. At first, getting the navigation together with the `react-transition-group` library was difficult as I didn't have much experience with React when I started this project for instance, this hamburger button:\n\n```jsx\n\nexport default ({ open, ...props }) =\u003e (\n  \u003cdiv className={open ? \"burger-menu open\" : \"burger-menu\"} {...props}\u003e\n    \u003cdiv className=\"bar1\" key=\"b1\" /\u003e\n    \u003cdiv className=\"bar2\" key=\"b2\" /\u003e\n    \u003cdiv className=\"bar3\" key=\"b3\" /\u003e\n  \u003c/div\u003e\n);\n```\n\nI didn't know what it was doing. What was this line: `{open ? \"burger-menu open\" : \"burger-menu\"}` and what did it do?\n\n\n## 🚶‍♂️Next steps\n\n\n## ⚡ Refactor ⚡\n\n\n###  📘 Further reading\n\n\n## Meta\n\nDistributed under the MIT license. See ``LICENSE`` for more information.\n\n[https://github.com/twhite96/checkyoself](https://github.com/twhite96/checkyoself)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftwhite96%2Fcheckyoself","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftwhite96%2Fcheckyoself","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftwhite96%2Fcheckyoself/lists"}