{"id":13619811,"url":"https://github.com/tsoding/minicel","last_synced_at":"2025-04-29T12:15:25.335Z","repository":{"id":48608301,"uuid":"385915279","full_name":"tsoding/minicel","owner":"tsoding","description":"Simple Excel engine without any UI","archived":false,"fork":false,"pushed_at":"2021-07-18T10:56:32.000Z","size":69,"stargazers_count":56,"open_issues_count":0,"forks_count":9,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-29T12:15:18.807Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C","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/tsoding.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}},"created_at":"2021-07-14T11:25:55.000Z","updated_at":"2025-04-04T22:34:42.000Z","dependencies_parsed_at":"2022-09-11T02:51:51.066Z","dependency_job_id":null,"html_url":"https://github.com/tsoding/minicel","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tsoding%2Fminicel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tsoding%2Fminicel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tsoding%2Fminicel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tsoding%2Fminicel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tsoding","download_url":"https://codeload.github.com/tsoding/minicel/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251498957,"owners_count":21598983,"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-08-01T21:00:48.999Z","updated_at":"2025-04-29T12:15:25.311Z","avatar_url":"https://github.com/tsoding.png","language":"C","funding_links":[],"categories":["C"],"sub_categories":[],"readme":"# Minicel\n\nThe idea is to implement a batch program that can accept a CSV file that looks like this:\n\n```csv\nA      | B\n1      | 2\n3      | 4\n=A1+B1 | =A2+B2\n```\n\nAnd outputs:\n\n```csv\nA      | B\n1      | 2\n3      | 4\n3      | 7\n```\n\nBasically a simple Excel engine without any UI.\n\n## Quick Start\n\nThe project is using [nobuild](https://github.com/tsoding/nobuild) build system.\n\n```console\n$ cc -o nobuild nobuild.c\n$ ./nobuild\n$ ./minicel csv/sum.csv\n```\n\n## Syntax\n\n### Types of Cells\n\n| Type       | Description                                                                                                        | Examples                          |\n| ---        | ---                                                                                                                | ---                               |\n| Text       | Just a human readiable text.                                                                                       | `A`, `B`, `C`, etc                |\n| Number     | Anything that can be parsed as a double by [strtod](https://en.cppreference.com/w/c/string/byte/strtof)                                                                | `1`, `2.0`, `1e-6`, etc           |\n| Expression | Always starts with `=`. Excel style math expression that involves numbers and other cells.                         | `=A1+B1`, `=69+420`, `=A1+69` etc |\n| Clone      | Always starts with `:`. Clones a neighbor cell in a particular direction denoted by characters `\u003c`, `\u003e`, `v`, `^`. | `:\u003c`, `:\u003e`, `:v`, `:^`             |\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftsoding%2Fminicel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftsoding%2Fminicel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftsoding%2Fminicel/lists"}