search
HomeJavajavaTutorialFirst Interaction With Open Source

Introduction

I've never thought that my hand will ever touch an open source, as it sounded like something unreachable to me. However, starting this semester I chose the course called "Open Source Development" by David Humphrey, not knowing what is waiting me, my expectation was like "Another boring course to fulfill my program", but once we started I realized that it is going to be something different from other courses. On the first lecture we were tasked with building a simple a CLI tool that allows us to use any compatible AI API endpoint in order to transform files in some helpful way. Probably, it changed my life. Literally, I have never been that passionated about programming, had thoughts that I don't belong to this sphere, but we all know that road isn't always straight, sometimes it's narrow. I witnessed so many students in our class which were so skilled, the only thought that revived my love to coding was: "Am I worse than them? Nahhh... It pushed me so hard, so I am sitting third week without leaving my laptop. I chose completely new language, started my research, and testings. Eventually, I came up with something simple, but interesting that helped me to understand that I can, literally, build anything I want.

PolyglotCode

PolyglotCode is a command-line tool that aids developers to translate their files with the code in ANY other programming language. This tool was written in Java using Maven dependencies manager. It simply takes file, language user wants to translate sends it as a query to the API endpoint and outputs translated material to the terminal or writes it to the file (user's choice.) Going forward, I want to mention that I used Cohere's AI v1 endpoint.

First Interaction With Open Source

I uploaded video with detailed demo of the tool.

Getting Started

Step 1. Generate and provide Cohere API key into the defaultValue of -a && --api-key flag inside of the main class:

@Option(
        names = {"-a", "--api-key"},
        defaultValue = "YOUR_API-KEY",
        description = "Modifying api key manually"
)
private String api;

or

Specify call and provide the api-key into the command line, using flags(Available only after Step 3) :

./polyglot <file> <language> -a <your-api-key>
</your-api-key></language></file>

Step 2. Make bash script executable, so user would be able to use ./polyglot command to run code

chmod +x polyglot

Step 3. Run Maven Package to compile the source code

mvn package

Features

For the reason, that is release v0.1, I was struggling crafting this tool(struggling, I mean it took a lot of time I ENJOYED IT :D) it doesn't contain all the features that I planned to implement. However, it still contains some of the required features, I just simply was following the requirements. So here they are:

Help

Isn't peak of programming, (-h, --help) flags. This flag helps user to learn the usage and all flags. Usage:

./polyglot -h

or

./polyglot --help

First Interaction With Open Source

Version

Another peak of programming is (-v, --version) flag. Shows current version of the tool. Usage:

./polyglot -v

or

./polyglot --version

First Interaction With Open Source

Api-Key

As it was mentioned earlier, user is able to specify Cohere-Api key without going into the code, simply using flags (-a, --api-key) Usage:

./polyglot <file> <language> -a <your-api>
</your-api></language></file>

or

./polyglot <file> <language> --api-key <your-api>
</your-api></language></file>

BaseUrl

It is not recommended to change the baseUrl of this application, as it may produce an unexpected output; however this option is still available to the user. Usage:

./polyglot <file> <language> -u <baseurl>
</baseurl></language></file>

or

./polyglot <file> <language> --base-url <baseurl>
</baseurl></language></file>

First Interaction With Open Source

Output

Creates the file, specified by user and writes the result there. It's highly recommended to use this option with one file at the time. Usage:

./polyglot <file> <language> -o file.txt
</language></file>

or

./polyglot <file> <language> --output file.txt
</language></file>

First Interaction With Open Source

How it looks in the new file:

First Interaction With Open Source

Challenges I faced

After I shared all my features with you, it's time to talk about the challenges that I faced. One of the challenges was learning new language, it wasn't that hard as I learnt before C/C . Second one was finding appropriate AI endpoint because many of them wouldn't be that developed to answer even simple questions, and my goal was to find it for free :) Third challenge came with learning the usage of picoCLI, tool that helps you to setup CLI tool, at first I created a bash script to help me with it, I was trying to avoid use of picoCLI, then It became soooo inconvenient, and I decided to learn about picoCLI better.

Overall, this project helped me to understand that everything is possible, if you work hard!

The above is the detailed content of First Interaction With Open Source. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Top 4 JavaScript Frameworks in 2025: React, Angular, Vue, SvelteTop 4 JavaScript Frameworks in 2025: React, Angular, Vue, SvelteMar 07, 2025 pm 06:09 PM

This article analyzes the top four JavaScript frameworks (React, Angular, Vue, Svelte) in 2025, comparing their performance, scalability, and future prospects. While all remain dominant due to strong communities and ecosystems, their relative popul

Spring Boot SnakeYAML 2.0 CVE-2022-1471 Issue FixedSpring Boot SnakeYAML 2.0 CVE-2022-1471 Issue FixedMar 07, 2025 pm 05:52 PM

This article addresses the CVE-2022-1471 vulnerability in SnakeYAML, a critical flaw allowing remote code execution. It details how upgrading Spring Boot applications to SnakeYAML 1.33 or later mitigates this risk, emphasizing that dependency updat

How do I implement multi-level caching in Java applications using libraries like Caffeine or Guava Cache?How do I implement multi-level caching in Java applications using libraries like Caffeine or Guava Cache?Mar 17, 2025 pm 05:44 PM

The article discusses implementing multi-level caching in Java using Caffeine and Guava Cache to enhance application performance. It covers setup, integration, and performance benefits, along with configuration and eviction policy management best pra

How does Java's classloading mechanism work, including different classloaders and their delegation models?How does Java's classloading mechanism work, including different classloaders and their delegation models?Mar 17, 2025 pm 05:35 PM

Java's classloading involves loading, linking, and initializing classes using a hierarchical system with Bootstrap, Extension, and Application classloaders. The parent delegation model ensures core classes are loaded first, affecting custom class loa

Iceberg: The Future of Data Lake TablesIceberg: The Future of Data Lake TablesMar 07, 2025 pm 06:31 PM

Iceberg, an open table format for large analytical datasets, improves data lake performance and scalability. It addresses limitations of Parquet/ORC through internal metadata management, enabling efficient schema evolution, time travel, concurrent w

Node.js 20: Key Performance Boosts and New FeaturesNode.js 20: Key Performance Boosts and New FeaturesMar 07, 2025 pm 06:12 PM

Node.js 20 significantly enhances performance via V8 engine improvements, notably faster garbage collection and I/O. New features include better WebAssembly support and refined debugging tools, boosting developer productivity and application speed.

How to Share Data Between Steps in CucumberHow to Share Data Between Steps in CucumberMar 07, 2025 pm 05:55 PM

This article explores methods for sharing data between Cucumber steps, comparing scenario context, global variables, argument passing, and data structures. It emphasizes best practices for maintainability, including concise context use, descriptive

How can I implement functional programming techniques in Java?How can I implement functional programming techniques in Java?Mar 11, 2025 pm 05:51 PM

This article explores integrating functional programming into Java using lambda expressions, Streams API, method references, and Optional. It highlights benefits like improved code readability and maintainability through conciseness and immutability

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor