{"id":19952572,"url":"https://github.com/dosmike/blanks","last_synced_at":"2026-02-07T15:31:54.598Z","repository":{"id":133519800,"uuid":"91303831","full_name":"DosMike/Blanks","owner":"DosMike","description":"Totally useless language","archived":false,"fork":false,"pushed_at":"2017-05-15T18:03:55.000Z","size":8,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-18T07:02:23.087Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"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/DosMike.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":"2017-05-15T06:43:45.000Z","updated_at":"2017-05-15T06:43:45.000Z","dependencies_parsed_at":null,"dependency_job_id":"12218985-d6be-4fe6-ae70-f2c58337277d","html_url":"https://github.com/DosMike/Blanks","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/DosMike/Blanks","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DosMike%2FBlanks","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DosMike%2FBlanks/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DosMike%2FBlanks/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DosMike%2FBlanks/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DosMike","download_url":"https://codeload.github.com/DosMike/Blanks/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DosMike%2FBlanks/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29198178,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-07T14:35:27.868Z","status":"ssl_error","status_checked_at":"2026-02-07T14:25:51.081Z","response_time":63,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":"2024-11-13T01:13:39.557Z","updated_at":"2026-02-07T15:31:54.583Z","avatar_url":"https://github.com/DosMike.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Blanks\n\n## this is not intendet to be viable for anything usefull!\n**(But I'm curious on what you manage to do with this)**\n\nThe base concept of this language is to annoy anyone that tries to work with it.\nThus any character used is a UNICODE whitespace, or otherwise unreadable.\nSyntax is pretty straight forward: You type a command (e.g. ` `) followed by the argument (e.g. `    `) - Command or argument separators are not required as RAM has a fixed width of 16 bit (4 nibbles), 8 bit for NUMBERS and a single nibble for REG and arguments that may vary in length get prefixed with a matching indicator.\n\nI would have like to tell you that you can write comments at the end of the line, but the line feed will terminate your application, so you'll have to write the whole code without comments or linebreaks. BUT, this language has one advantage over others (like brainfuck) where here you can use external code using the `　` command.\n\nNow have fun (or not) with this masterpiece 👍\n\n```\nram[65535]\nreg[16] - implement as stack, programms may not pop at len 0, not pul at len 16\nflag[b] - flags only change on add/sub\nip\n\nU-000A ret     (exit the application and return reg [0] as exit code)\nU-2000 pul RAM (set value to reg [0], shifts upwards)\nU-2001 pop RAM (set ram to reg [0], shift downwards, fill with 0)\nU-2002 add VAL (add VAL to reg [0], sets [b]ound flag on overflow)\nU-2003 sub VAL (subtract VAL from reg [0], sets [b]ound flag on underflow)\nU-2004 big IPI (jump ip if reg [0] is \u003e 0 for +- {IPI}ncrement)\nU-2005 sml IPI (jump ip if reg [0] is \u003c 0 for +- {IPI}ncrement)\nU-2006 flb IPI (jump ip if [b]ound flag is set)\nU-2007 jmp IPI (just jump ip)\nU-2008 tbl LEN (from ip+1 to ip+1+LEN search reg [0], load value from ip+1+LEN+found to reg [0] or ip+1+LEN+LEN otherwise)\nU-2009 wrt VAL (write the next char to the output buffer)\nU-200A red     (read next char from input buffer to reg [0], shifts upwards)\nU-200B sys     (use OUT as input for a system() call, reg [0] will receive return value, INOUT binding will receive the first byte from the other apps STDOUT)\nU-202F flw     (flush writer, reset output buffer)\nU-205F flr     (flush reader, reset input buffer)\n\nArguments may be a RAM, REG or LITERAL NUMBER\n\noutput ram binding is 0xFF00-0xFFFF\ninput ram binding is 0xFE00-0xFEFF\n\nU-0009\t- indicate literal number\nU-000A\t- unused\nU-000D\t- indicate RAM\nU-0020\t- indicate REG\nU-00A0\t- Nibble 0\nU-2000\t- Nibble 1\nU-2001\t- Nibble 2\nU-2002\t- Nibble 3\nU-2003\t- Nibble 4\nU-2004\t- Nibble 5\nU-2005\t- Nibble 6\nU-2006\t- Nibble 7\nU-2007\t- Nibble 8\nU-2008\t- Nibble 9\nU-2009\t- Nibble A\nU-200A\t- Nibble B\nU-200B\t- Nibble C\nU-202F\t- Nibble D\nU-205F\t- Nibble E\nU-3000\t- Nibble F\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdosmike%2Fblanks","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdosmike%2Fblanks","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdosmike%2Fblanks/lists"}