{"id":25763496,"url":"https://github.com/krondorl/polyglot-programming","last_synced_at":"2026-03-03T04:40:13.353Z","repository":{"id":227904407,"uuid":"771760275","full_name":"krondorl/polyglot-programming","owner":"krondorl","description":"Examples in multiple languages","archived":false,"fork":false,"pushed_at":"2025-08-15T16:20:17.000Z","size":288,"stargazers_count":16,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-15T18:35:34.773Z","etag":null,"topics":["c","go","haskell","java","rust","typescript"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/krondorl.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":"2024-03-13T22:39:00.000Z","updated_at":"2025-08-15T16:20:21.000Z","dependencies_parsed_at":"2024-07-06T12:24:38.062Z","dependency_job_id":"7fafb05e-5a5d-4b10-9b58-c16f8ceb9990","html_url":"https://github.com/krondorl/polyglot-programming","commit_stats":null,"previous_names":["krondorl/polyglot-programming"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/krondorl/polyglot-programming","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/krondorl%2Fpolyglot-programming","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/krondorl%2Fpolyglot-programming/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/krondorl%2Fpolyglot-programming/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/krondorl%2Fpolyglot-programming/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/krondorl","download_url":"https://codeload.github.com/krondorl/polyglot-programming/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/krondorl%2Fpolyglot-programming/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30032062,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-03T03:27:35.548Z","status":"ssl_error","status_checked_at":"2026-03-03T03:27:09.213Z","response_time":61,"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":["c","go","haskell","java","rust","typescript"],"created_at":"2025-02-26T20:17:16.206Z","updated_at":"2026-03-03T04:40:13.338Z","avatar_url":"https://github.com/krondorl.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cimg src=\"doc/typescript-original.svg\" width=\"128\"/\u003e \u003cimg src=\"doc/go-original-wordmark.svg\" width=\"128\"/\u003e \u003cimg src=\"doc/rust-original.svg\" width=\"128\"/\u003e \u003cimg src=\"doc/java-original-wordmark.svg\" width=\"128\"/\u003e \u003cimg src=\"doc/c-original.svg\" width=\"128\"/\u003e\n\u003cimg src=\"doc/haskell-original.svg\" width=\"128\"/\u003e\n\n# Polyglot Programming\n\nThese are practice tasks based on multiple programming languages simultaneously.\n\n## Inspiration\n\nI was inspired by ThePrimeagen's course [\"Polyglot Programming: TypeScript, Go, \u0026 Rust\"](https://frontendmasters.com/courses/typescript-go-rust/) to start this repository.\n\n## Language\n\nTypeScript, Go, Rust and Java are currently in this repo, but I might add more languages later.\n\n## Source Code\n\nThe code is in the `src/` folder.\n\n## Installation of Programming Language Tools\n\nFirst, the TypeScript, Go, and Rust tools must be installed.\n\n- [Install TypeScript (Node.js)](https://nodejs.org/en)\n- [Install Go](https://go.dev/doc/install)\n- [Install Rust](https://www.rust-lang.org/tools/install)\n- [Install Java SE with Amazon Corretto](https://aws.amazon.com/corretto/?filtered-posts.sort-by=item.additionalFields.createdDate\u0026filtered-posts.sort-order=desc) also [Install Maven](https://www.baeldung.com/install-maven-on-windows-linux-mac)\n- [Install MinGW, Windows for compiling C language](https://code.visualstudio.com/docs/cpp/config-mingw) also [How to Install MinGW](https://semicolon.dev/windows/how-to-install-mingw-gcc-g-compiler-windows-10-11-2023)\n- [Install GHCup for Haskell](https://www.haskell.org/ghcup/)\n\n## Running the Code\n\nGo to the language folder then execute the following:\n\n### Typescript\n\n1. `npm install` (for the first time to install packages)\n1. `npm run dev` (to run the program)\n\n### Go\n\n`go run .\\filename.go` for example: `go run .\\dog_age_calculator.go`\n\n### Rust\n\n`cargo run`\n\n### Java\n\n```\nmvn compile\nmvn package\nmvn exec:java -Dexec.mainClass=\"com.yourpackage.MainClass\"\n```\n\n### C\n\n```\ngcc -o dog-age-calculator main.c\n```\n\n### Haskell\n\n```\nghc .\\main.hs\n```\n\n## License\n\nPlease see the [LICENSE file](LICENSE).\n\n## History\n\nStarted in March, 2024.\n\n## Icon Credits\n\nIcons are used from [devicons / devicon](https://github.com/devicons/devicon) under MIT license.\n\nThe MIT License (MIT) Copyright (c) 2015 konpa.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkrondorl%2Fpolyglot-programming","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkrondorl%2Fpolyglot-programming","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkrondorl%2Fpolyglot-programming/lists"}