May 2020 - Ravi Desai

JIRA UI in Python

Problem statement See the problem statement in this post. This post is about using Python to write a program that implements a shell (REPL) to JIRA’s servers. Implement the REPL I implemented this REPL the same way the C version was made. I opted to not go for the “eval” option (as I did in […]

Jira UI in Nodejs

Problem statement See the problem statement in this post. This post is about using NodeJS to write a program that implements a shell (REPL) to JIRA’s servers. Implement the REPL I implemented this REPL the same way the C version was made. I opted to not go for the “eval” option (as I did in […]

JIRA CLI in Ruby

Problem statement See the problem statement in this post. This post is about using the Ruby programming language to write a program that implements a shell (REPL) to JIRA’s servers. Implement the REPL I implemented this REPL the same way the C version was made. I opted to not go for the “eval” option (as […]

JIRA UI in C

Problem statement See the problem statement in the previous post. This post is about using the C programming language to write a program that implements a shell (REPL) to JIRA’s servers. Implement the REPL The basic framework of the “shell” was brought in from this tutorial. The tutorial is well-written and made it easy to […]