{"id":21171476,"url":"https://github.com/tebogoyungmercykay/programming-languages-coding-booth","last_synced_at":"2025-03-14T17:26:01.971Z","repository":{"id":241559335,"uuid":"775897777","full_name":"TebogoYungMercykay/Programming-Languages-Coding-Booth","owner":"TebogoYungMercykay","description":"Chris Hanson and the MIT Scheme Team. MIT/GNU Scheme reference manual. Technical report, Mas- sachusetts Institute of Technology, 2018.","archived":false,"fork":false,"pushed_at":"2024-05-30T17:30:59.000Z","size":4500,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"development","last_synced_at":"2025-01-21T10:51:15.897Z","etag":null,"topics":["cobol","fortran","functional-programming","imperative-programming-language","imperative-scripting-languages","languages","logic-programming","object-oriented-programming","programmin","racket","ruby","scheme"],"latest_commit_sha":null,"homepage":"","language":"COBOL","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/TebogoYungMercykay.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}},"created_at":"2024-03-22T09:09:47.000Z","updated_at":"2024-08-26T20:25:35.000Z","dependencies_parsed_at":"2025-01-21T10:44:24.512Z","dependency_job_id":"2d29a502-ac09-4acc-8650-64cd4e2870b7","html_url":"https://github.com/TebogoYungMercykay/Programming-Languages-Coding-Booth","commit_stats":null,"previous_names":["tebogoyungmercykay/programming-languages-coding-booth"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TebogoYungMercykay%2FProgramming-Languages-Coding-Booth","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TebogoYungMercykay%2FProgramming-Languages-Coding-Booth/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TebogoYungMercykay%2FProgramming-Languages-Coding-Booth/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TebogoYungMercykay%2FProgramming-Languages-Coding-Booth/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TebogoYungMercykay","download_url":"https://codeload.github.com/TebogoYungMercykay/Programming-Languages-Coding-Booth/tar.gz/refs/heads/development","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243617293,"owners_count":20320047,"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":["cobol","fortran","functional-programming","imperative-programming-language","imperative-scripting-languages","languages","logic-programming","object-oriented-programming","programmin","racket","ruby","scheme"],"created_at":"2024-11-20T16:06:27.874Z","updated_at":"2025-03-14T17:26:01.939Z","avatar_url":"https://github.com/TebogoYungMercykay.png","language":"COBOL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Programming Languages Learning Repository\n\nWelcome to my Programming Languages Learning Repository! This repository is a comprehensive collection of materials and exercises designed to help me learn various programming languages and paradigms. Here, I document my journey through different concepts, tools, and techniques in the world of programming.\n\n## Table of Contents\n\n1. [Introduction](#introduction)\n2. [Repository Structure](#repository-structure)\n3. [Featured Concepts](#featured-concepts)\n    - [Functional Programming](#functional-programming)\n    - [Logic Programming](#logic-programming)\n    - [Imperative Programming Languages](#imperative-programming-languages)\n    - [Imperative Scripting Languages](#imperative-scripting-languages)\n    - [Object-Oriented Programming](#object-oriented-programming)\n4. [Additional Resources](#additional-resources)\n5. [Contributing](#contributing)\n6. [License](#license)\n\n## Introduction\n\nThis repository is intended to be a learning resource for various programming languages and paradigms. It contains exercises, code samples, and documentation that will aid in understanding different approaches to programming.\n\n## Repository Structure\n\nThe repository is organized into several directories, each focusing on a specific aspect of programming:\n\n```\n├── .git\n├── .gitignore\n├── LICENSE\n├── README.md\n├── docs\n├── functional-and-logic-programming\n├── functional-programming\n├── images\n├── imperative-programming-languages\n├── imperative-scripting-languages\n├── logic-programming\n├── object-oriented-programming\n└── practice\n```\n\n- **.git/**: Contains version control data.\n- **.gitignore**: Specifies files and directories that Git should ignore.\n- **LICENSE**: The license for this repository.\n- **README.md**: This file, providing an overview of the repository.\n- **docs/**: Documentation related to the programming languages and paradigms.\n- **functional-and-logic-programming/**: Combined resources on functional and logic programming.\n- **functional-programming/**: Resources and exercises on functional programming.\n- **images/**: Images and diagrams used in documentation.\n- **imperative-programming-languages/**: Resources and exercises on imperative programming languages.\n- **imperative-scripting-languages/**: Resources and exercises on imperative scripting languages.\n- **logic-programming/**: Resources and exercises on logic programming.\n- **object-oriented-programming/**: Resources and exercises on object-oriented programming.\n- **practice/**: Additional practice exercises and projects.\n\n## Featured Concepts\n\n### Functional Programming\n\nFunctional programming is a paradigm that treats computation as the evaluation of mathematical functions and avoids changing state and mutable data. Key concepts include:\n\n- First-class functions\n- Higher-order functions\n- Pure functions\n- Recursion\n- Immutable data structures\n\n### Logic Programming\n\nLogic programming is a paradigm based on formal logic. Programs are written as a set of sentences in logical form, expressing facts and rules about some problem domain. Key concepts include:\n\n- Prolog language\n- Facts, rules, and queries\n- Backtracking\n- Unification\n\n### Imperative Programming Languages\n\nImperative programming is a paradigm where the program describes a sequence of steps that change the state of the computer. Key concepts include:\n\n- Variable assignment\n- Control structures (loops, conditionals)\n- Procedures and functions\n- State and mutability\n\n### Imperative Scripting Languages\n\nImperative scripting languages are used for writing scripts that automate tasks. They often emphasize ease of use and speed of development. Key concepts include:\n\n- Scripting in languages like Python, Bash, and Perl\n- Automation of repetitive tasks\n- String manipulation\n- File I/O operations\n\n### Object-Oriented Programming\n\nObject-oriented programming (OOP) is a paradigm based on the concept of \"objects\", which can contain data and code that manipulates the data. Key concepts include:\n\n- Classes and objects\n- Inheritance\n- Polymorphism\n- Encapsulation\n- Abstraction\n\n## Additional Resources\n\n- **Docs/**: Contains detailed documentation for each programming language and paradigm covered in this repository.\n- **Practice/**: Includes additional practice exercises to reinforce learning.\n\n## Contributing\n\nIf you would like to contribute to this repository, please fork the repository, create a new branch, and submit a pull request. Your contributions are greatly appreciated!\n\n## License\n\nThis repository is licensed under the MIT License. See the [LICENSE](LICENSE) file for more details.\n\n---\n\nHappy coding! If you have any questions or suggestions, feel free to open an issue or contact me directly.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftebogoyungmercykay%2Fprogramming-languages-coding-booth","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftebogoyungmercykay%2Fprogramming-languages-coding-booth","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftebogoyungmercykay%2Fprogramming-languages-coding-booth/lists"}