{"id":20760682,"url":"https://github.com/dracula27/caesar","last_synced_at":"2025-12-26T03:56:05.078Z","repository":{"id":245027933,"uuid":"817045458","full_name":"DrAcula27/caesar","owner":"DrAcula27","description":"Used C to encode a string of text using the Caesar cypher based on two inputs from the user: the key and the text to encode.","archived":false,"fork":false,"pushed_at":"2024-06-18T23:13:24.000Z","size":4,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-18T05:28:30.232Z","etag":null,"topics":["c","c-language-programming","cs50x"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/DrAcula27.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2024-06-18T23:04:02.000Z","updated_at":"2024-06-18T23:16:58.000Z","dependencies_parsed_at":"2024-06-19T06:27:46.300Z","dependency_job_id":null,"html_url":"https://github.com/DrAcula27/caesar","commit_stats":null,"previous_names":["dracula27/caesar"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DrAcula27%2Fcaesar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DrAcula27%2Fcaesar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DrAcula27%2Fcaesar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DrAcula27%2Fcaesar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DrAcula27","download_url":"https://codeload.github.com/DrAcula27/caesar/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243076663,"owners_count":20232437,"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":["c","c-language-programming","cs50x"],"created_at":"2024-11-17T10:14:51.586Z","updated_at":"2025-12-26T03:56:05.047Z","avatar_url":"https://github.com/DrAcula27.png","language":"C","readme":"\u003c!-- Improved compatibility of back to top link: See: https://github.com/othneildrew/Best-README-Template/pull/73 --\u003e\n\n\u003ca name=\"readme-top\"\u003e\u003c/a\u003e\n\n\u003c!-- PROJECT LOGO --\u003e\n\u003cdiv align=\"center\"\u003e\n  \u003ch3 align=\"center\"\u003eCaesar\u003c/h3\u003e\n  \u003cp align=\"center\"\u003e\n    Encode text using a Caesar Cypher.\n  \u003c/p\u003e\n\u003c/div\u003e\n\n\u003c!-- TABLE OF CONTENTS --\u003e\n\u003cdetails\u003e\n  \u003csummary\u003eTable of Contents\u003c/summary\u003e\n  \u003col\u003e\n    \u003cli\u003e\n      \u003ca href=\"#about-the-project\"\u003eAbout The Project\u003c/a\u003e\n      \u003cul\u003e\n        \u003cli\u003e\u003ca href=\"#built-with\"\u003eBuilt With\u003c/a\u003e\u003c/li\u003e\n      \u003c/ul\u003e\n    \u003c/li\u003e\n    \u003cli\u003e\u003ca href=\"#usage\"\u003eUsage\u003c/a\u003e\u003c/li\u003e\n    \u003cli\u003e\u003ca href=\"#optimizations\"\u003eOptimizations\u003c/a\u003e\u003c/li\u003e\n    \u003cli\u003e\u003ca href=\"#lessons-learned\"\u003eLessons Learned\u003c/a\u003e\u003c/li\u003e\n    \u003cli\u003e\u003ca href=\"#contact\"\u003eContact\u003c/a\u003e\u003c/li\u003e\n    \u003cli\u003e\u003ca href=\"#acknowledgments\"\u003eAcknowledgments\u003c/a\u003e\u003c/li\u003e\n  \u003c/ol\u003e\n\u003c/details\u003e\n\n\u003c!-- ABOUT THE PROJECT --\u003e\n\n## About The Project\n\n\u003e CS50x - Week 2 - Problem Set 2: Caesar\n\n\u003e For this assignment, I used C to encode a string of text using the Caesar cypher based on two inputs from the user: the key and the text to encode.\n\n\u003cp align=\"right\"\u003e(\u003ca href=\"#readme-top\"\u003eback to top\u003c/a\u003e)\u003c/p\u003e\n\n### Built With\n\n- ![C](https://img.shields.io/badge/programming_language-a9bacd?style=flat\u0026logo=c\u0026logoColor=white)\n\n\u003cp align=\"right\"\u003e(\u003ca href=\"#readme-top\"\u003eback to top\u003c/a\u003e)\u003c/p\u003e\n\n\u003c!-- USAGE --\u003e\n\n## Usage\n\n1. Clone this repository\n2. In a terminal, navigate to the directory where you cloned this repository\n3. Run `./caesar.c \u003cint\u003e`\n4. When prompted, enter a string of text to encode\n5. View your encoded text in the terminal\n\n\u003cp align=\"right\"\u003e(\u003ca href=\"#readme-top\"\u003eback to top\u003c/a\u003e)\u003c/p\u003e\n\n\u003c!-- OPTIMIZATIONS --\u003e\n\n## Optimizations\n\nThis project can be improved by:\n\n- [ ] Clarifying the error message if the user enters something incorrectly\n\n\u003cp align=\"right\"\u003e(\u003ca href=\"#readme-top\"\u003eback to top\u003c/a\u003e)\u003c/p\u003e\n\n\u003c!-- LESSONS LEARNED --\u003e\n\n## Lessons Learned\n\n- **Learning C.** I improved on the basics with this assignment, especially with nesting conditionals in loops\n- **Function Inputs.** I added inputs to the main function of the program\n- **Algorithmic Thinking.** Improved my process of thinking through problems\n\n\u003cp align=\"right\"\u003e(\u003ca href=\"#readme-top\"\u003eback to top\u003c/a\u003e)\u003c/p\u003e\n\n\u003c!-- CONTACT --\u003e\n\n## Contact\n\nDanielle Andrews - [@DrAcula_codes](https://twitter.com/DrAcula_codes 'Twitter/X') - [daniellerandrews](https://www.linkedin.com/in/daniellerandrews 'LinkedIn') - danielle.andrews.dev@icloud.com\n\nProject Link: [https://github.com/DrAcula27/cash](https://github.com/DrAcula27/cash)\n\n\u003cp align=\"right\"\u003e(\u003ca href=\"#readme-top\"\u003eback to top\u003c/a\u003e)\u003c/p\u003e\n\n\u003c!-- ACKNOWLEDGMENTS --\u003e\n\n## Acknowledgments\n\nA special thanks to these resources used in the project!\n\n- [GitHub Pages](https://pages.github.com)\n- [CS50](https://www.edx.org/learn/computer-science/harvard-university-cs50-s-introduction-to-computer-science)\n\n\u003cp align=\"right\"\u003e(\u003ca href=\"#readme-top\"\u003eback to top\u003c/a\u003e)\u003c/p\u003e\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdracula27%2Fcaesar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdracula27%2Fcaesar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdracula27%2Fcaesar/lists"}