Read & Write Reviews About The Tools You Use.
Sign up for free to start sharing your opinion today!

rayofstafford's Profile



rayofstafford



Reviews
9
Helpful: 7


Code of the Week
0
Won: 0

User Reviews

    CloudBees Codeship

    Company: CloudBees
    • Currently 4/5 Stars.
    • 1
    • 2
    • 3
    • 4
    • 5

    "Enhance pipeline, great debugger."

    by rayofstafford on Jul 3, 2022 12:00 AM

    Summary:
    Open source tool simplifies and enhances your CI/CD pipeline. Great for debugging. Community is not as large as I would've expected.

    Report post

    Was this review helpful? (1) (0)
  • Rafay Kubernetes Operations Platform

    Company: Rafay
    • Currently 5/5 Stars.
    • 1
    • 2
    • 3
    • 4
    • 5

    "Simplify Kubernetes Management"

    by rayofstafford on Jun 22, 2022 3:13 PM

    Summary:
    The Rafay team is comprised of flexible dynamic partners that efficiently adapt, deliver and continuously innovate. Their product is easy to use and the engagement of integration effort is fantastic.rn

    Report post

    Was this review helpful? (0) (0)
  • AWS EC2

    Company: AWS
    • Currently 5/5 Stars.
    • 1
    • 2
    • 3
    • 4
    • 5

    "Great Return on Investment"

    by rayofstafford on Jun 13, 2022 5:59 PM

    Summary:
    We rely on EC2 instances for all of our day-to-day tasks on both the front-end and the back-end. It's saved us money, time, and resources while providing a much more efficient and stable environment.

    Report post

    Was this review helpful? (1) (0)
  • Urban Code

    Company: IBM
    • Currently 4/5 Stars.
    • 1
    • 2
    • 3
    • 4
    • 5

    "Great Automation"

    by rayofstafford on Jun 12, 2022 9:53 PM

    Summary:
    Urbancode is fast, reliable, and efficient. We've been able to repeatedly meet implementations deadlines of 10 to 15 minutes. This is an intuitive implementation platform and with the variety of add-ons, makes for great automations. Support takes a while to respond, but overall a great product.

    Report post

    Was this review helpful? (0) (0)
  • Android Studio

    Company: Google
    • Currently 5/5 Stars.
    • 1
    • 2
    • 3
    • 4
    • 5

    "Easy to operate and automate Kubernete's management tasks."

    by rayofstafford on May 2, 2022 12:00 AM

    Summary:
    The two main components of Amazon EKS are the Control Plane and Worker Nodes. I love the flexibiltity it gives you for the layout. There is a huge amount of open-source solutions that you can find within the Kubernetes community supported by EKS. Overall, easy to operate and automate Kubernete's management tasks.

    Report post

    Was this review helpful? (1) (0)
  • SUSE Rancher

    Company: SUSE
    • Currently 5/5 Stars.
    • 1
    • 2
    • 3
    • 4
    • 5

    "Flexibility with Native Code"

    by rayofstafford on Feb 9, 2022 12:00 AM

    Summary:
    Our company relies on desiging appls that are compatible with all types of devices. We use Android Studio because it gives allows us the most flexibility. This tool has enabled us to provide our clients with robust and reliable apps.

    Report post

    Was this review helpful? (1) (0)
  • Rancher

    Company: SUSE
    • Currently 5/5 Stars.
    • 1
    • 2
    • 3
    • 4
    • 5

    "Great for Kubernetes Beginniers"

    by rayofstafford on Jan 26, 2022 12:00 AM

    Summary:
    Has a great GUI to display what's going on. It alloqws for faster deployments and provides better visibilitry of our deployments for other team memebers.

    Report post

    Was this review helpful? (1) (0)
  • Rafay Kubernetes Operations Platform

    Company: Rafay
    • Currently 5/5 Stars.
    • 1
    • 2
    • 3
    • 4
    • 5

    "Easy to learn, abundance of features."

    by rayofstafford on Jan 5, 2022 12:00 AM

    Summary:
    Flat learning curve allowing anoyone can easily pick up the basics. Includes everything from release management, automation, time management, task boarding, and source repository. Some features, such as some security features, are not very intuitive and take a little documentation to figure out.

    Report post

    Was this review helpful? (1) (0)
  • Creator

    Company: Zoho Corporation
    • Currently 4/5 Stars.
    • 1
    • 2
    • 3
    • 4
    • 5

    "Low-code Dev Platform"

    by rayofstafford on Jun 12, 2017 12:00 AM

    Summary:
    This is a great option if you are looking for something easy and requires little coding. The designs are minimalistic but includes a strong selcetion of pre-build apps.

    Report post

    Was this review helpful? (1) (0)


Write Reviews

Share your opinion about the tools you use.

Join the Evans Data Developer Panel!

As a DevNet panelist you will:

1. Have your voice heard on hot topics, innovative technologies and key initiatives.
2. Receive points for every validated survey submission.
3. Redeem award points for cash.

SOLVE THIS CODE

What does this code do?

static void mysteryFunction(int nr, int dr) {
        if (dr == 0 || nr == 0) {
            return;
        }
        if (dr % nr == 0) {
            System.out.print("1/" + dr / nr);
            return;
        }
        if (nr % dr == 0) {
            System.out.print(nr / dr);
            return;
        }
        if (nr > dr) {
            System.out.print(nr / dr + " + ");
            mysteryFunction(nr % dr, dr);
            return;
        }
        int n = dr / nr + 1;
        System.out.print("1/" + n + " + ");

        mysteryFunction(nr * n - dr, dr * n);
    }
 
// Driver Code
    public static void main(String[] args) {
        int nr = 6, dr = 14;
        System.out.print("Fraction Representation of "
                + nr + "/" + dr + " is\n ");
        mysteryFunction(nr, dr);
    }
}

Programming Language: Java

Newsletter

Get weekly reviews sent directly to your inbox!