{"id":18573070,"url":"https://github.com/buganini/checkio-task-try-to-crush","last_synced_at":"2025-07-19T06:03:06.337Z","repository":{"id":17093483,"uuid":"19858780","full_name":"buganini/checkio-task-try-to-crush","owner":"buganini","description":null,"archived":false,"fork":false,"pushed_at":"2014-05-18T04:41:40.000Z","size":2274,"stargazers_count":1,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-15T23:12:24.973Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://www.checkio.org/mission/try-to-crush/","language":"JavaScript","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/buganini.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}},"created_at":"2014-05-16T14:11:06.000Z","updated_at":"2024-08-24T22:51:33.000Z","dependencies_parsed_at":"2022-08-26T11:33:47.493Z","dependency_job_id":null,"html_url":"https://github.com/buganini/checkio-task-try-to-crush","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/buganini/checkio-task-try-to-crush","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/buganini%2Fcheckio-task-try-to-crush","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/buganini%2Fcheckio-task-try-to-crush/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/buganini%2Fcheckio-task-try-to-crush/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/buganini%2Fcheckio-task-try-to-crush/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/buganini","download_url":"https://codeload.github.com/buganini/checkio-task-try-to-crush/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/buganini%2Fcheckio-task-try-to-crush/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265895656,"owners_count":23845375,"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":[],"created_at":"2024-11-06T23:07:59.811Z","updated_at":"2025-07-19T06:03:06.288Z","avatar_url":"https://github.com/buganini.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"checkio-task-template\n=====================\n\nThis is the basic CheckiO template for user generated tasks.\nIt has a fixed folder structure so please be careful with\nyour file and naming conventions.\n\n\n## Tasks examples\n\n[Traingle angles](https://github.com/Bryukh-Checkio-Tasks/checkio-task-triangle-angles)  \n\n[Magic square](https://github.com/Bryukh-Checkio-Tasks/checkio-task-magic-square)\n\n\n## Some examples\n\nSeveral users created their own missions, and you can view (and solve!) them on CheckiO.  \nLike [Amachua](http://www.checkio.org/user/Amachua/)’s [Sudoku Solver](http://www.checkio.org/mission/sudokusolver/). Or [Suwanditan](http://www.checkio.org/user/suwanditan/)’s [Periodic Table](http://www.checkio.org/mission/periodic-table/) (our CTO doesn’t even know how to solve this challenge!).\n\n\n# Files definition\n\nBelow you can read an explanation for the role of each folder and file inside the project.\n\n### Info folder\n\nThis folder contains information about the task's mission.\n\n#### task_description.html\n\nThis file is a description for your task.\nHere, you should explain the goal of the task.\nWhen writing this file, you must use proper HTML syntax for the description to\nbe readable on the site as it will be inserted on the task page as a block.\n\n##### Task's text\nNext, you must write the main description of the task.\nYou can insert some images for explanation (see below for\ninformation about images) and you can use html tags as \n```em```, ```strong``` or ```pre``` to display formulas or example code.\nEach paragraph or div element can have the class\n\"for_editor_only\" or \"for_info_only\".\n\n**\"for\\_editor\\_only\"** – means that the element will only show in the editor mode.\n\n**\"for\\_info\\_only\"** – will only show up in the main task description.\n\n##### Input and Output\nThis is a short description of the input and output data.\n\n##### Example\nThis section gives some examples for the task.\nYou can use the ```pre``` tag with class \"brush: python\" for syntax highlighting.\n\n##### Images\nYou can paste your images inside the task.\nThe image files must be placed inside the illustrations folder.\nThe link is defined as src=\"{{ MEDIA_URL }}/*image-name.png*\"\nIllustrations should be created with specified colors from our colors guide. (*color.pdf* or *example.png*))\n\n##### Icons\nIcons for the task are placed inside the logo folder.\nIcons are created as a pair: \n**disabled.svg** for unsolved tasks and **enabled.svg** for solved tasks.\nIn the task runner you can see both icons with click to it.\nIcons should be created with specified icons' colors from our colors\nguide (*color.pdf*).\nIcons should be 128x128px and placed inside a grey color block (size 116x116px) with a border radius of 10px.\nUse the given template.\n\n#### story.html\nThis is a funny story about the task, it does not need to\nexplain the task's goal. A paragraph of div with the story\nclass does not show in the editor's task description.\n\n#### short_task_description.html\nA summary of the task.\n\n### Verification Folder\n\nThis folder contains a referee and additional files with tests, if you need these. Also it contains the folder with initial code.\n\n#### initial_code/interpretator\n\nHere is the code which users will see as a starting template for the interpretator.\n\nIf you use a string for python2.7 -- use an unicode string.\n\n### Editor folder\n\n\n#### templates.html\n\nThis file describes layout and structure for the tests explanation or tryit.\nIt's **not necessary** to change it.\n\nFurther description of this will be added later.\n\n\n#### Animation Folder\n\n#### init.js\n\nThis file describes an animation for the tests explanation or tryit.\nIt's **not necessary** to change it.\n\nFurther description of this will be added later.\n\n#### init.css\n\nThis file describes styles for the tests explanation or tryit.\nIt's **not necessary** to change it.\n\nFurther description of this will be added later.\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbuganini%2Fcheckio-task-try-to-crush","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbuganini%2Fcheckio-task-try-to-crush","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbuganini%2Fcheckio-task-try-to-crush/lists"}