As per Coursera
Python is a computer programming language often used to build websites and software, automate tasks, and conduct data analysis. Python is a general-purpose language, meaning it can be used to create a variety of different programs and isn't specialized for any specific problems.
...
I don’t really need to oversell this, it sells itself when you check code complexity. Let’s start with the easiest comparative: the Hello World comparison in languages.
C
Code Block | ||
---|---|---|
| ||
#include <stdio.h> int main() { printf("Hello, World!"); return 0; } |
Java
Code Block | ||
---|---|---|
| ||
class HelloWorld { public static void main(String[] args) { System.out.println("Hello, World!"); } } |
Assembly
Code Block | ||
---|---|---|
| ||
; ld -m elf_i386 -s -o hello hello.o section .text align=0 global _start message db 'Hello, World!', 0x0a len equ $ - msg _start: mov eax, 4 ; mov ebx, 1 ; mov ecx, message; mov edx, len ; int 0x80 mov eax, 1 int 0x8 |
and ….
Python
Code Block | ||
---|---|---|
| ||
print("Hello, World!") |
...
Personal Experience using coding apps
I’ve been working with Scriptrunner (the shoe app) for little more than 3 years now, and even having lots of experience with it, It’s always the same flow, the amount of time wasted developing in it is really too much to bear, I cannot say a word about reliability though, Scriptrunner is German technology, you can never say anything about way they design anything because it is reliable, cars, houses, everything, it is made to last and it’s surely reliable. Problem is the counter part of that reliability, we have to get their docs (even after 3 years, because their functions to make API requests are too big), or get some pre-packed code I use in all my implementations to simplify development and scale that.
As I am a developer, while using Scriptrunner I saw a lot of room for improvement, as I created the main pillars of all my scripts as a framework to develop on the app, with some ready to use functions to simplify their complications, this action made coding solutions easier.
Some of what I saw coding in Scriptrunner for 3+ years:
Hard for newcomers, steep learning curve
You take a lot of time to get some familiarity with the app, as it’s engine is in Groovy (java) and for newcomers this is really a challenge. I’ve known at least 7 individuals that gave up on learning Scriptrunner due to the high complexity allied to their little understanding of Java, they knew programming, but could not bear working with Groovy. All the code you do is like 100+ lines of code if you want something minimally complex. Coding should not be that hard.Integrations are up to you
If you want to have any sort of integration running, you need to code it yourself, from scratch, no help at all, they do have some coding examples, but nothing really usable for integrations.Simple things made overly complicated
Editing a single issue takes 6 lines of code with NO logic, if you add logic go to 20 lines of code, this just does not make sense as it can be direct, as it is in Easy for Jira.Time. The over complication makes it time consuming
From the stakeholder request for a new feature, to it’s implementation, testing and deployment, considering a lot of factors but the main one the feature complexity, it can take from 5 days to up to 2 weeks, depending of course in a lot of factors. So let’s put this to numbers:
If a consultant or admin takes 10 hours developing a solution, with an hourly rate of 65 USD, it costs to the company $650 to develop.
Our main goal in Easy for Jira is to reduce Lead Time so the same thing you do in 10 hours in Scriptrunner, you can easily achieve in less than one hour in our app, due to the Context Variables such as the Issue object, that facilitate your assess to Issue data.Lack of reusability around the code you create
If you want your code to run as a post function in different workflows and transitions, good luck and get ready for hours of boredom, because if you need your function running on lets say 50 transitions, it’s at least 450 mouse clicks to create that. Now you want to make a change, well, good luck again editing all the code you created, because you need to edit each one of them, to avoid that we created the Code Repository where you can code once, save your code, import it around your instance and edit it in a single place.
...
To back that, I will outline some use cases, that is the most used functionality, editing issues and working with related issues, a comparison between the 2 apps.
This is the Scriptrunner code to edit one Issue
Code Block | ||
---|---|---|
| ||
def response = put("/rest/api/2/issue/${issuekey}") .header('Content-Type', 'application/json') .body([ summary: "My Example Summary" ]).asString() // this is to log the request, if it was successful, because sometimes it can fail assert response.status == 204 |
This is the Easy for Jira Equivalent
Code Block | ||
---|---|---|
| ||
issue.set("summary", "My Example Summary") |
Now let’s consider I want to search for issues using JQL with Scriptrunner.
Code Block | ||
---|---|---|
| ||
def issues = [] def startAt = 0 while (true) { def result = get('/rest/api/2/search') .queryString('jql', jql) .queryString('startAt', startAt) .queryString('maxResults', 100) .asObject(Map).body issues.addAll(result.issues) if (issues.size == result.total) { break } else { startAt += 100 } } |
And the Easy for Jira Equivalent is →
Code Block | ||
---|---|---|
| ||
issues = api.search_jqlissues("your query here") |
Really wanted to have a comment about this, but to summarize, the excess of code, makes it harder to maintain, harder to read, and too intimidating, but you can take your own conclusions.
...