{"id":24373746,"url":"https://github.com/neknaj/nlps","last_synced_at":"2026-03-14T22:34:06.863Z","repository":{"id":187217750,"uuid":"676331741","full_name":"neknaj/nlps","owner":"neknaj","description":"スタックマシンを基にした自作プログラミング言語とその処理システム - Neknaj Language Processing System","archived":false,"fork":false,"pushed_at":"2024-01-21T03:14:16.000Z","size":1997,"stargazers_count":3,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-10T19:04:20.907Z","etag":null,"topics":["b-debt","neknaj","programming-language","virtual-machine"],"latest_commit_sha":null,"homepage":"https://github.com/neknaj/bdebt","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/neknaj.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,"governance":null,"roadmap":null,"authors":null}},"created_at":"2023-08-09T01:05:29.000Z","updated_at":"2024-05-04T10:18:10.000Z","dependencies_parsed_at":"2023-08-10T18:44:37.574Z","dependency_job_id":"2e5fb5d7-e61c-4679-aa25-11e8f2227875","html_url":"https://github.com/neknaj/nlps","commit_stats":{"total_commits":124,"total_committers":4,"mean_commits":31.0,"dds":"0.16935483870967738","last_synced_commit":"aae382813200c653432c22dc6aa506499192b7fa"},"previous_names":["bem130/nlps","neknaj/nlps"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/neknaj/nlps","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neknaj%2Fnlps","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neknaj%2Fnlps/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neknaj%2Fnlps/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neknaj%2Fnlps/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/neknaj","download_url":"https://codeload.github.com/neknaj/nlps/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neknaj%2Fnlps/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30520459,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-14T19:51:21.629Z","status":"ssl_error","status_checked_at":"2026-03-14T19:51:12.959Z","response_time":57,"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":["b-debt","neknaj","programming-language","virtual-machine"],"created_at":"2025-01-19T05:12:31.643Z","updated_at":"2026-03-14T22:34:06.843Z","avatar_url":"https://github.com/neknaj.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Neknaj Language Processing System\n\u003cimg width=\"100%\" src=\"./spec/logo/npl-all2.png\"\u003e\nスタックマシンを基にした自作プログラミング言語、B-debtとその処理システム\n\n雑に拡張し続けて把握不可能になった前のプログラムたちを整理して作り直すプロジェクト  \n前は個別に名前をつけてたけど、相互に依存しまくって意味不明なので、全体にNLPSという名前を付けてみた  \n\n# Web Editor\n[/nlps/editor.html](https://neknaj.github.io/nlps/editor.html)\n\n# ドキュメント\nNLPS全体: [/spec/main.pdf](./spec/main.pdf)  \nNPLのみ: [/spec/npl.pdf](./spec/npl.pdf)\n\n# 処理系の特徴\n| 特徴 | 理由 | 対象 |\n| -- | -- | -- |\n| 逆ポーランド記法 | - 中置演算子や括弧を含む式の解析が難しかった為\u003cbr\u003e - 引数の式を先に書くことで引数の式が評価されてから関数がcallされることが明確になる為 | B-debt |\n| 右に記述する代入先の変数 | - 式を先に書くことで式が評価されてから変数へ代入されることが明確になる為 | B-debt |\n| 代入を表す`:\u003e` | - 等号として用いられる`=`との違いを明確にするため\u003cbr\u003e - 代入の方向を明確にする為\u003cbr\u003e - 顔文字のようで可愛い為  | B-debt |\n| コメントアウトとノート | - 無効化されたコードと、必要なメモを区別するため  | B-debt |\n| 関数の定義の巻き上げ | - 定義文の前でも使用できるのが便利で気に入った為 | B-debt |\n| 変数の定義の巻き上げ | - 同じスコープの同じ名前が違うものを指すのは気に入らなかった為 | B-debt |\n| 浮動小数点数は基数10が基本 | - 2進化による丸め誤差が気に入らなかった為 | BemLib for NVM |\n| コンパイル結果をincludeする | - inlcudeしたプログラムもコンパイルしないといけないのが面倒と感じた為 | NLPS |\n| 全関数呼び出しでハンドリングする例外 | - 例外の為に特別な処理を作るのが気に入らなかった為 | NLPS |\n\n## 旧プロジェクトの場所\n### NLP\n/mylang/nlp/\n### ASM Linker VM\n/nve/vm2/\n\n## 略称\n| 略称 | |\n| -- | -- |\n| NLPS | Neknaj Language Processing System |\n| NPL | Neknaj Programming Language |\n| NLPO | Neknaj Language for Programming - Object file |\n| NVA NVASM | Neknaj Virtual machine - Assembly language |\n| NVMC | Neknaj Virtual machine - Machine Code |\n| NVM | Neknaj Virtual Machine |","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneknaj%2Fnlps","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fneknaj%2Fnlps","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneknaj%2Fnlps/lists"}