{"id":30910949,"url":"https://github.com/rostrovsky/learn","last_synced_at":"2026-02-17T18:03:48.250Z","repository":{"id":313774891,"uuid":"1052611778","full_name":"rostrovsky/learn","owner":"rostrovsky","description":"Learning materials","archived":false,"fork":false,"pushed_at":"2025-10-20T20:01:10.000Z","size":95,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-20T22:07:12.647Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rostrovsky.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":"2025-09-08T09:51:02.000Z","updated_at":"2025-10-20T20:01:14.000Z","dependencies_parsed_at":"2025-09-08T12:25:35.060Z","dependency_job_id":"d012ff0b-dc3a-48e4-bc9c-99870bb7451e","html_url":"https://github.com/rostrovsky/learn","commit_stats":null,"previous_names":["rostrovsky/learn"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rostrovsky/learn","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rostrovsky%2Flearn","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rostrovsky%2Flearn/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rostrovsky%2Flearn/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rostrovsky%2Flearn/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rostrovsky","download_url":"https://codeload.github.com/rostrovsky/learn/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rostrovsky%2Flearn/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29552251,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-17T17:56:56.811Z","status":"ssl_error","status_checked_at":"2026-02-17T17:56:55.544Z","response_time":100,"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":[],"created_at":"2025-09-09T19:01:20.158Z","updated_at":"2026-02-17T18:03:48.245Z","avatar_url":"https://github.com/rostrovsky.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Learn\n\nInteractive learning tools for studying various topics through flashcards and quizzes.\n\n## Page\n\nThe page is available at: **https://rostrovsky.github.io/learn/**\n\n## Features\n\n- **Flashcards**: Study with interactive flashcards that support touch gestures on mobile\n- **Quiz Mode**: Test your knowledge with sequential quiz questions\n- **Dark Theme**: Toggle between light and dark theme\n- **JSON-based**: Load your own learning materials from JSON files\n- **Mobile-friendly**: Touch navigation support for flashcards\n\n## Learning Materials\n\nLearning content is stored in JSON format in the `json` directory:\n\n- **Flashcards**: [`json/flashcard/`](./json/flashcard/) - Contains flashcard decks organized by topic\n- **Quizzes**: [`json/quiz/`](./json/quiz/) - Contains quiz questions organized by topic\n\n## Preparing JSONs\n\n### Flashcards\n\nPrompt:\n\n````\n\u003cyour materials here\u003e\n\n---\n\nConvert above knowledge into flashcards JSON similar to below.\n\n```json\n{\n  \"title\": \"Artificial Intelligence Fundamentals \u0026 Generative AI\",\n  \"version\": 1,\n  \"cards\": [\n    {\n      \"id\": 1,\n      \"front\": \"What is Artificial Intelligence (AI)?\",\n      \"back\": [\n        \"A computer system that imitates some aspect of human behavior or capabilities such as recognizing speech, classifying images, translating languages, making decisions, and predicting outcomes.\"\n      ]\n    },\n    {\n      \"id\": 2,\n      \"front\": \"How does Generative AI differ from regular AI?\",\n      \"back\": [\n        \"Regular AI: Primarily imitates specific human behaviors (e.g., speech recognition, image classification, translation).\",\n        \"Generative AI: Focuses on creating original content after being trained on large amounts of information.\"\n      ]\n    }\n  ]\n}\n```\n````\n\n### Quiz\n\n````\n\u003cyour materials here\u003e\n\n---\n\nConvert above knowledge into single and multiple choice quiz according to the below example. Provide at least 20 questions.\n\n```json\n{\n  \"title\": \"Sample Quiz: Basics\",\n  \"version\": 1,\n  \"questions\": [\n    {\n      \"id\": 1,\n      \"type\": \"single\",\n      \"prompt\": \"Which planet is known as the Red Planet?\",\n      \"choices\": [\n        { \"id\": 1, \"text\": \"Venus\", \"is_correct\": false },\n        { \"id\": 2, \"text\": \"Mars\", \"is_correct\": true },\n        { \"id\": 3, \"text\": \"Jupiter\", \"is_correct\": false }\n      ],\n      \"explanation\": \"Mars appears red due to iron oxide on its surface.\"\n    },\n    {\n      \"id\": 2,\n      \"type\": \"multiple\",\n      \"prompt\": \"Select all prime numbers.\",\n      \"choices\": [\n        { \"id\": 1, \"text\": \"2\", \"is_correct\": true },\n        { \"id\": 2, \"text\": \"3\", \"is_correct\": true },\n        { \"id\": 3, \"text\": \"4\", \"is_correct\": false },\n        { \"id\": 4, \"text\": \"5\", \"is_correct\": true }\n      ],\n      \"explanation\": \"A prime number has exactly two divisors: 1 and itself.\"\n    },\n    {\n      \"id\": 3,\n      \"type\": \"single\",\n      \"prompt\": \"What is the chemical symbol for water?\",\n      \"choices\": [\n        { \"id\": 1, \"text\": \"H2O\", \"is_correct\": true },\n        { \"id\": 2, \"text\": \"O2\", \"is_correct\": false },\n        { \"id\": 3, \"text\": \"CO2\", \"is_correct\": false }\n      ],\n      \"explanation\": \"Two hydrogen atoms and one oxygen atom.\"\n    }\n  ]\n}\n```\n````\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frostrovsky%2Flearn","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frostrovsky%2Flearn","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frostrovsky%2Flearn/lists"}