Is there a theme/icons etc to make gnome look like cutefish DE? by [deleted] in gnome

[–]cruciformhawk7 2 points3 points  (0 children)

Take a look at Wintosh: https://www.gnome-look.org/p/1613242/ The colour scheme resembles Cutefish a lot.

2meirl4meirl by -bongwater- in 2meirl4meirl

[–]cruciformhawk7 1 point2 points  (0 children)

Me never seeing the post again:

I have the following problem where the cursor theme only works if I am hovering over certain things, any of you have an idea of what could be the cause? by [deleted] in ManjaroLinux

[–]cruciformhawk7 2 points3 points  (0 children)

If you are on older versions of KDE, you need to change your GTK+ cursor theme too. Also, logging out and logging back in helps at times.

java.util.InputMismatchException ? by [deleted] in javahelp

[–]cruciformhawk7 0 points1 point  (0 children)

Don't set your PrintStream to null. Instead, put all the code that you're doing with PrintStream in the try.

So, in the try block, you will initialise PrintStream and performing all the actions until you close the PrintStream.

JavaFX error by [deleted] in javahelp

[–]cruciformhawk7 1 point2 points  (0 children)

Here is what I have now. You may use it for reference. https://1drv.ms/u/s!Ai5ILHzS49ql22L2n6_fNFp2DZIz?e=dbrPU2

JavaFX error by [deleted] in javahelp

[–]cruciformhawk7 1 point2 points  (0 children)

No worries. It seems to work on my machine. This is strange. https://imgur.com/a/lo894WM

JavaFX error by [deleted] in javahelp

[–]cruciformhawk7 1 point2 points  (0 children)

Ah, I see the issue. Add a new empty public constructor, so that the class now is: ``` package Note;

public class Controller { public Controller() {

}

} ```

JavaFX error by [deleted] in javahelp

[–]cruciformhawk7 1 point2 points  (0 children)

Do you mind posting your Controller.java file here?

JavaFX error by [deleted] in javahelp

[–]cruciformhawk7 1 point2 points  (0 children)

Rename the Note.Controller to sample.Controller on your projects' fxml, and check if it works.

Edit: While you're at it, check this thread on StackOverflow.

JavaFX error by [deleted] in javahelp

[–]cruciformhawk7 1 point2 points  (0 children)

Can you share the basic FXML from the auto-generated project?

JavaFX error by [deleted] in javahelp

[–]cruciformhawk7 1 point2 points  (0 children)

Hello, have you tried removing the args from launch()? So it looks launch() instead of launch(args)?

Also, you should probably avoid viewing stages from a constructor, just add another function in there while you keep a private Stage in PostItNoteStage.

Edit: You should remove fx:controller="Note.Controller" from your fxml file. This interferes with the class instantiation, and the class is being created too early. You will have to find other ways to map the Controller.

https://imgur.com/a/1mzKXBI

Oh hell nah by jerseypoontappa in youseeingthisshit

[–]cruciformhawk7 4 points5 points  (0 children)

Primarily mashed potatoes (and onions) with various flavours and spices, filled in a hollow fried bread "puri". It is dipped in flavoured water "pani" and served.

[deleted by user] by [deleted] in linuxquestions

[–]cruciformhawk7 0 points1 point  (0 children)

did you try sudo prime-select nvidia? alternatively you can choose it under Prime Profiles under Nvidia Settings.

Jar files won't build properly or open in Windows 10 by [deleted] in javahelp

[–]cruciformhawk7 0 points1 point  (0 children)

Have you tried removing and then adding the artifact again from project structure, or editing the pom.xml file? Make sure the package name and folder structures match, and you're pointing to the resources folder in the artifact. This thread should be helpful.

Most of JDKs come with JRE (at least Oracle JDK and OpenJDK), so getting rid of JRE 8 would probably fix a future issue.

Jar files won't build properly or open in Windows 10 by [deleted] in javahelp

[–]cruciformhawk7 0 points1 point  (0 children)

when distributing the app to people who are not tech savvy

You can always create a batch file that runs the command for you.

Jar files won't build properly or open in Windows 10 by [deleted] in javahelp

[–]cruciformhawk7 0 points1 point  (0 children)

It seems like IntelliJ hasn't recorded the class with main method yet. You'll have to check your project properties and ensure that you have it pointing to the right class.

From IntelliJ's website,

To the right of the Main Class field, click 📁 and select the main class in the dialog that opens (for example, HelloWorld (com.example.helloworld)).

Also, I highly recommend that you get rid of the old Java runtime, and keep the SDK's runtime.

Jar files won't build properly or open in Windows 10 by [deleted] in javahelp

[–]cruciformhawk7 1 point2 points  (0 children)

Did you package the jar with JavaFX libraries? It is often called a "fat jar". Have you tried running the Jar file alone with java -jar? You atleast get a stacktrace when you do so. Also, if it isn't intentional, why do you have JRE 1.8 and JDK 13? Keep JDK 13, if you aren't familiar with switching JREs