Java Hate Thread

Have you ever met someone who intuitively understands hand drawn GUI design in Java? Because even if they exist, I've never met anyone who understands it well enough to explain it.

Attached: Java_Is_Terrific_-_It_Instills_Terror.png (1366x744, 66K)

Other urls found in this thread:

pastebin.com/EyCL6mUU
bitbucket.org/Mithridates/
jce3000gt.com/forum/forumdisplay.php?fid=28
twitter.com/SFWRedditVideos

Here's what I want it to look like, by the way (item selection area isn't in this screencap, it's on the left).

Attached: Screenshot at 2018-06-21 10-52-48.png (764x530, 47K)

Looks like my visual basic tutorial from 1998, user.

Start from scratch with Qt
>Qt Hate Thread
Start from scratch with wxWidgets
>wxWidgets Hate Thread

Is there any other language which forces you to nest dozens of "simple" container objects, that collectively have amazingly diverse and horrifying interactions with one another?

/**
* Setup top level containers.
*/
private void setupContainers()
{
FrameBox = new Box(BoxLayout.X_AXIS);
getContentPane().add(FrameBox);

MajorLeftBox = new Box(BoxLayout.Y_AXIS);
FrameBox.add(MajorLeftBox);

MajorCenterBox = new Box(BoxLayout.Y_AXIS);
FrameBox.add(MajorCenterBox);

MajorRightBox = new Box(BoxLayout.Y_AXIS);
FrameBox.add(MajorRightBox);

MajorRightTopSubBox = new Box(BoxLayout.Y_AXIS);
MajorRightBox.add(MajorRightTopSubBox);

MajorRightBottomSubBox = new Box(BoxLayout.X_AXIS);
MajorRightBox.add(MajorRightBottomSubBox);

MajorRightBottomSubSubTopBox = new Box(BoxLayout.Y_AXIS);
MajorRightBottomSubBox.add(MajorRightBottomSubSubTopBox);

MajorRightBottomSubSubBottomBox = new Box(BoxLayout.Y_AXIS);
MajorRightBottomSubBox.add(MajorRightBottomSubSubBottomBox);

}

just kode it in html5 my nigga

Just do it in electron and write it in JS and html

That's just the top level containers. I was hopelessly naive to assume those and the ones for each section (and subsection, and in some cases sub-sub section) would be enough. Nope, I need MEDIUM LEVEL CONTAINERS.It's like an infinite stream of YO DAWG, I HEARD YOU LIKE CONTAINERS, SO YOUR CONTAINERS GOT CONTAINERS N SHIIIIIEEEEEEEEEETTTTTTTTTT, repeating forever and ever, each one with it's own poorly explained behaviors that interact with one another to produce a massive clusterfuck.I wrote disc image I/O in maybe 200 man hours. I've invested tens of thousands of hours into fucking with the GUI for THIS ONE FUCKING PROGRAM and this is all I have to show for it.We need death camps for language designers. I'm serious. If your language/OS/software is shit, you do hard labor in Alaska on starvation rations for as many programmer hours as you wasted.

You obviously never used any other GUI toolkit.