{"id":19838983,"url":"https://github.com/objectionary/eo-sys","last_synced_at":"2025-05-01T18:31:43.829Z","repository":{"id":48242923,"uuid":"516771558","full_name":"objectionary/eo-sys","owner":"objectionary","description":"EO Objects Interacting with Operating System Level","archived":true,"fork":false,"pushed_at":"2024-08-14T09:04:13.000Z","size":181,"stargazers_count":5,"open_issues_count":14,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-16T00:27:30.854Z","etag":null,"topics":["eolang","java","syscall"],"latest_commit_sha":null,"homepage":"","language":"Java","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/objectionary.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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":"2022-07-22T14:01:08.000Z","updated_at":"2024-08-14T09:04:45.000Z","dependencies_parsed_at":"2023-02-10T12:00:48.717Z","dependency_job_id":"794c00cc-81bb-4be8-8c54-f8ffb4590ce3","html_url":"https://github.com/objectionary/eo-sys","commit_stats":{"total_commits":97,"total_committers":6,"mean_commits":"16.166666666666668","dds":0.6082474226804124,"last_synced_commit":"74aceac14d4fef88bdf986eb61a320e5fdcecb5b"},"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/objectionary%2Feo-sys","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/objectionary%2Feo-sys/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/objectionary%2Feo-sys/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/objectionary%2Feo-sys/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/objectionary","download_url":"https://codeload.github.com/objectionary/eo-sys/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251924795,"owners_count":21666039,"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":["eolang","java","syscall"],"created_at":"2024-11-12T12:19:49.610Z","updated_at":"2025-05-01T18:31:43.458Z","avatar_url":"https://github.com/objectionary.png","language":"Java","readme":"\u003cimg alt=\"logo\" src=\"https://www.objectionary.com/cactus.svg\" height=\"100px\" /\u003e\n\n[![EO principles respected here](https://www.elegantobjects.org/badge.svg)](https://www.elegantobjects.org)\n[![DevOps By Rultor.com](http://www.rultor.com/b/objectionary/eo-sys)](http://www.rultor.com/p/objectionary/eo-sys)\n[![We recommend IntelliJ IDEA](https://www.elegantobjects.org/intellij-idea.svg)](https://www.jetbrains.com/idea/)\n\n[![mvn](https://github.com/objectionary/eo-sys/actions/workflows/mvn.yml/badge.svg?branch=master)](https://github.com/objectionary/eo-sys/actions/workflows/mvn.yml)\n[![PDD status](http://www.0pdd.com/svg?name=objectionary/eo-sys)](http://www.0pdd.com/p?name=objectionary/eo-sys)\n[![codecov](https://codecov.io/gh/objectionary/eo-sys/branch/master/graph/badge.svg)](https://codecov.io/gh/objectionary/eo-sys)\n[![Maven Central](https://img.shields.io/maven-central/v/org.eolang/eo-sys.svg)](https://maven-badges.herokuapp.com/maven-central/org.eolang/eo-sys)\n[![Hits-of-Code](https://hitsofcode.com/github/objectionary/eo-sys)](https://hitsofcode.com/view/github/objectionary/eo-sys)\n![Lines of code](https://img.shields.io/tokei/lines/github/objectionary/eo-sys)\n[![License](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/objectionary/eo-sys/blob/master/LICENSE.txt)\n\n**This repository is deprecated! We've moved all EO objects from this repository\nto [objectionary/eo](https://github.com/objectionary/eo).**\n\n[EO](https://www.eolang.org) objects for interactions with operating system.\n\nThis is how you make a [`write`](https://man7.org/linux/man-pages/man2/write.2.html) \n[syscall](https://man7.org/linux/man-pages/man2/syscall.2.html) \nto print \"Hello, world\" to the console (here `1` is the handle of \n[stdout](https://en.wikipedia.org/wiki/Standard_streams)):\n\n```\n[] \u003e app\n  \"Hello, world!\" \u003e msg\n  QQ.sys.call \u003e @\n    \"write\"\n    1\n    msg\n    msg.length\n```\n\nThis is how you get the current process ID using\n[`getpid`](https://man7.org/linux/man-pages/man2/getpid.2.html):\n\n```\n[] \u003e app\n  QQ.io.stdout \u003e @\n    QQ.txt.sprintf\n      \"Current PID is %d\"\n      QQ.sys.call\n        \"getpid\"\n```\n\nThis is how you detect what OS you are with:\n\n```\n[] \u003e app\n  QQ.io.stdout \u003e @\n    QQ.txt.sprintf\n      \"This is %s\"\n      switch.\n        * \n          QQ.sys.uname.is-windows\n          \"Windows\"\n        * \n          QQ.sys.uname.is-unix\n          \"Unix\"\n        * \n          QQ.sys.uname.is-macos\n          \"MacOS\"\n        * \n          TRUE\n          \"something else\"\n```\n\n## How to Contribute\n\nFork repository, make changes, send us a pull request.\nWe will review your changes and apply them to the `master` branch shortly,\nprovided they don't violate our quality standards. To avoid frustration,\nbefore sending us your pull request please run full Maven build:\n\n```bash\n$ mvn clean install -Pqulice\n```\n\nYou will need Maven 3.3+ and Java 8+.\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fobjectionary%2Feo-sys","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fobjectionary%2Feo-sys","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fobjectionary%2Feo-sys/lists"}