{"id":24960959,"url":"https://github.com/chunes3/nebbish","last_synced_at":"2026-01-28T19:05:56.610Z","repository":{"id":274326733,"uuid":"922577745","full_name":"chunes3/nebbish","owner":"chunes3","description":"A golfing language without syntax","archived":false,"fork":false,"pushed_at":"2025-02-01T17:13:36.000Z","size":136,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-01T17:03:42.404Z","etag":null,"topics":["euphoria","golfing-language","programming-language","stack-based-language"],"latest_commit_sha":null,"homepage":"","language":"Euphoria","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/chunes3.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}},"created_at":"2025-01-26T15:33:07.000Z","updated_at":"2025-02-01T17:13:40.000Z","dependencies_parsed_at":null,"dependency_job_id":"2d9239ab-bf84-4e7e-8137-315c65f313c2","html_url":"https://github.com/chunes3/nebbish","commit_stats":null,"previous_names":["chunes3/nebbish"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/chunes3/nebbish","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chunes3%2Fnebbish","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chunes3%2Fnebbish/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chunes3%2Fnebbish/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chunes3%2Fnebbish/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chunes3","download_url":"https://codeload.github.com/chunes3/nebbish/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chunes3%2Fnebbish/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28849419,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T15:15:36.453Z","status":"ssl_error","status_checked_at":"2026-01-28T15:15:13.020Z","response_time":57,"last_error":"SSL_read: 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":["euphoria","golfing-language","programming-language","stack-based-language"],"created_at":"2025-02-03T08:33:08.498Z","updated_at":"2026-01-28T19:05:56.592Z","avatar_url":"https://github.com/chunes3.png","language":"Euphoria","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Nebbish\n\u003cimg src=\"res/nebbish-logo.png\" width=\"150\" height=\"100\"\u003e\n\n\u003e `X01[:}+ix=b];` A program to calculate the nth Fibonacci number.\n\n\u003e `[[ij*P84*pj9=b]Ni9=b]` A program to show a times table.\n\n## Overview\n\nNebbish is a stack-based golf language that uses one printable ASCII character per command. Unlike say, a language like [Vyxal](https://github.com/Vyxal/Vyxal), with a command for everything, Nebbish aims to provide a modest set of primitives that combine to tackle golf-style problems orthagonally. The primary goal of the language is to make terse procedural code fun to write. Terseness itself is secondary.\n\n## Table of contents\n- [Installation](#installation)\n- [Your first program](#your-first-program)\n- [Commands](#commands)\n- [Building](#building)\n\n## Installation\n\n## Your first program\n\n## Commands\n\n### Arithmetic\n| Instruction | Name        | Signature | Examples |\n|-------------|-------------|------------|--------|\n| `+`         | Add         | `obj obj -- obj` | `11+ \\ 2` \u003cbr\u003e `123L2+ \\ {3,4,5}` \u003cbr\u003e `123LI456LT+ \\ {5,7,9}` |\n| `-`         | Subtract    | `obj obj -- obj` | `106L#7- \\ 99` |\n| `*`         | Multiply    | `obj obj -- obj` |\n| `/`         | Divide      | `obj obj -- obj` |\n| `^`         | Power       | `obj obj -- obj` |\n| `%`         | Mod         | `obj obj -- obj` |\n| `f`         | Floor       | `obj -- obj` |\n\n### Stack\n| Instruction | Name         |\n|-------------|--------------|\n| `:`         | Dup          |\n| `~`         | Swap         |\n| `,`         | Over         |\n| `;`         | Drop         |\n| `I`         | Intangibilize|\n| `T`         | Tangibilize  |\n| `}`         | Bury          |\n| `{`         | Exhume         |\n\n### List\n| Instruction | Name         |\n|-------------|--------------|\n| `a`         | Append       |\n| `c`         | Concat       |\n| `l`         | Length       |\n| `L`         | Listify      |\n| `s`         | Sum          |\n| `S`         | Sort         |\n\n### String\n| Instruction | Name        |\n|-------------|-------------|\n| `\"`         | String mode  |\n| `` ` ``     | Command mode  |\n\n### Loop\n| Instruction | Name         |\n|-------------|--------------|\n| `[`         | Start loop         |\n| `]`         | End loop         |\n| `b`         | Break if     |\n| `i`         | iteration index      |\n| `j`         | deeper iteration index      |\n| `k`         | deepest iteration index      |\n\n### Comparison\n| Instruction | Name         |\n|-------------|--------------|\n| `=`         | Equal        |\n| `\u003e`         | Greater than |\n| `\u003c`         | Less than    |\n\n### Register\n| Instruction | Name         |\n|-------------|--------------|\n| `x`         | Copy from X       |\n| `X`         | Move to X    |\n| `y`         | Copy from Y       |\n| `Y`         | Move to Y    |\n\n### Output\n| Instruction | Name         |\n|-------------|--------------|\n| `p`         | Print        |\n| `P`         | Prettyprint  |\n| `N`         | Output newline |\n\n### Miscellaneous\n| Instruction | Name         |\n|-------------|--------------|\n| `d`         | Dump         |\n| `#`         | Join Ints    |\n| `r`         | Random    |\n\n## Building\n\nMore to come soon!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchunes3%2Fnebbish","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchunes3%2Fnebbish","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchunes3%2Fnebbish/lists"}