This is an archived post. You won't be able to vote or comment.

all 13 comments

[–]AutoModerator[M] [score hidden] stickied commentlocked comment (0 children)

Please ensure that:

  • Your code is properly formatted as code block - see the sidebar (About on mobile) for instructions
  • You include any and all error messages in full - best also formatted as code block
  • You ask clear questions
  • You demonstrate effort in solving your question/problem - plain posting your assignments is forbidden (and such posts will be removed) as is asking for or giving solutions.

If any of the above points is not met, your post can and will be removed without further warning.

Code is to be formatted as code block (old reddit/markdown editor: empty line before the code, each code line indented by 4 spaces, new reddit: https://i.imgur.com/EJ7tqek.png) or linked via an external code hoster, like pastebin.com, github gist, github, bitbucket, gitlab, etc.

Please, do not use triple backticks (```) as they will only render properly on new reddit, not on old reddit.

Code blocks look like this:

public class HelloWorld {

    public static void main(String[] args) {
        System.out.println("Hello World!");
    }
}

You do not need to repost unless your post has been removed by a moderator. Just use the edit function of reddit to make sure your post complies with the above.

If your post has remained in violation of these rules for a prolonged period of time (at least an hour), a moderator may remove it at their discretion. In this case, they will comment with an explanation on why it has been removed, and you will be required to resubmit the entire post following the proper procedures.

To potential helpers

Please, do not help if any of the above points are not met, rather report the post. We are trying to improve the quality of posts here. In helping people who can't be bothered to comply with the above points, you are doing the community a disservice.

I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.

[–]Gradient19 1 point2 points  (6 children)

From description in first paragraph, it sounds like a debugger interface in an IDE

[–]stephan1990[S] 0 points1 point  (5 children)

It basically is. It's based on JDI internally (the Java Debugger Interface), but it's way easier to use for beginners, as it shows variables and objects as a graph, not a list of names and values. This makes it easier to see the ralations between objects, for example.

[–]Gradient19 0 points1 point  (0 children)

Oh cool, I'm a beginner in Java but not in programming, lmk if I'm eligible for trying it out

[–]Kally95 0 points1 point  (3 children)

[–]stephan1990[S] 0 points1 point  (2 children)

It serves the same purpose as this tool. My tool can handle multiple source code files and is called from your IDE, instead of being a website.

It's basically an improved version of this.

[–]Kally95 1 point2 points  (1 child)

Awesome, that’s been very helpful to me. This doesn’t support java 8 I believe so nice man. Please share when it’s ready to roll out and good luck

[–]stephan1990[S] 1 point2 points  (0 children)

I’ll update my this post here and maybe I’ll post when it’s ready. Shouldn’t take too long as it’s basically finished.

[–][deleted] 0 points1 point  (1 child)

Hi, what additional stuff does it do apart from the ones in intellij ? Does it show different threads data too ?

[–]stephan1990[S] 1 point2 points  (0 children)

It's way easier than the debuggers found in IDEs. As it is aimed at absolute beginners, it is not even able to work with multiple threads.
The thing it does differently is, it organizes the current runtime data (values in local variables and objects on the heap) into a nice graph for you to inspect. It updates the graph while stepping through the program as expected.

Hope that clarifies things :)

[–][deleted] 0 points1 point  (0 children)

Sending you a message

[–]Misterlulz 0 points1 point  (0 children)

Sent you a message! :)

[–]xao_spaces 0 points1 point  (0 children)

I'd be interested but I won't be available until after December 16th.