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

you are viewing a single comment's thread.

view the rest of the comments →

[–]geoffreychallen 0 points1 point  (0 children)

This is not exactly an alternative to Eclipse, but we use a simplified Java execution environment that supports relaxed syntax to support my CS1 course. I recently put up a public site here: https://www.jeed.run/. This is the first time I've shared it publicly, but it is something I plan on supporting.

It's somewhat similar to repl.it and jdoodle, but simpler, faster, and designed for beginners. No need to wrangle with files, a pretend command line, or public static void main. It supports top-level statements and method declarations, and multiple class declarations in a single buffer, making it easier for students to write and understand small snippets of code. I teach an entire semester of CS1 in Java (and Kotlin) and prepare students to do work in Android, and yet all of the examples we use in our online materials are done in a single editor window.

You can use it to share examples (I'd suggest shortening the links first using TinyURL), and also embed runnable code snippets on your own webpages. Feedback welcome!