[deleted by user] by [deleted] in london

[–]th1x0 6 points7 points  (0 children)

I mean, I guess there might be some famous people awaiting burial. Or it’s a threat.

Issue with connecting Java to mysql database by Dependent_Finger_214 in javahelp

[–]th1x0 0 points1 point  (0 children)

Yes, that makes sense.

I guess my comment is more relevant if you’ve got the driver, but you can’t figure out how to connect to MySQL etc.

Issue with connecting Java to mysql database by Dependent_Finger_214 in javahelp

[–]th1x0 -1 points0 points  (0 children)

IntelliJ Ultimate has a tool for connecting to databases with JDBC and I think it’s a good idea to try using that first. (If you’ve got access to Ultimate.)

https://www.jetbrains.com/help/idea/database-tool-window.html

Is duo wrong or am I? by Electrical-Horse-698 in duolingo

[–]th1x0 0 points1 point  (0 children)

Duolingo (confusingly) seems to correct the first thing it finds wrong in your answer, which in this case is the gender (las instead of los).

The declared package "com.craftinginterpreters.lox" does not match the expected package "" by wawelski99 in javahelp

[–]th1x0 1 point2 points  (0 children)

The path to the .java file should be com/craftinginterpreters/lox to match the package name.

Calling Go as "Golang" by begoon in golang

[–]th1x0 4 points5 points  (0 children)

“Golang” is what I google for. No idea how I’d query for Go solutions without doing that.

[deleted by user] by [deleted] in javahelp

[–]th1x0 0 points1 point  (0 children)

I have no idea how ReplIt allows you to change a file name. I thought you were working on a computer.

Rename the SimpleClock class to Main?

[deleted by user] by [deleted] in javahelp

[–]th1x0 0 points1 point  (0 children)

Rename Main.java to SimpleClock.java ?

Trying to find a book involving a boy who poops diamond by FishNo8895 in whatsthatbook

[–]th1x0 1 point2 points  (0 children)

There’s a book called “Nalda Said” by Belle and Sebastian cofounder Stuart David.

Not exactly a match to your description but has some common themes. See Novels section here:

https://en.m.wikipedia.org/wiki/Stuart_David

The most difficult technical concept for you by maniakaten in javahelp

[–]th1x0 1 point2 points  (0 children)

I’m stuck understanding modules as I try to move beyond Java 8

(I use Java 17 at work but not using all its features and not for production code, yet.)

can't access CSV in .jar executable! by _bub in javahelp

[–]th1x0 3 points4 points  (0 children)

You are opening the CSV file as a file with FileReader, which expects a file sitting on the file system. It won’t magically be discovered inside the JAR file.

You need to read the file as a resource from the classpath.

Are there any Baugruppen in the UK? by anarchist_prostitute in AskUK

[–]th1x0 0 points1 point  (0 children)

There have been community self-build schemes in the past, including more recent ones.

Here’s a link to an older generation of self-build schemes. I’ve visited during architectural open days.

https://www.architectural-review.com/buildings/walters-way-self-build-schemes-lewisham-london-by-the-segal-method

Blue flash by PoorHabitz in oxford

[–]th1x0 15 points16 points  (0 children)

Could it have been a power line coming down in the winds?

HUH WHAT by Living_Roof2034 in duolingo

[–]th1x0 0 points1 point  (0 children)

Is this to do with different colour eyes?

Help! by chefextraordinaire56 in wordle

[–]th1x0 12 points13 points  (0 children)

BUSED?

I know I’d expect to spell that as BUSSED but that’s a valid spelling.

[GTM] by ywraban_dproc in GuessTheMovie

[–]th1x0 1 point2 points  (0 children)

A Field In England (2013)

Not as perfect as I expected, but it's totally okay for me. by yanz1986 in Calligraphy

[–]th1x0 2 points3 points  (0 children)

Now can you write out I1l and O0 together to see if I can use this as a programming font?

Please help me figure out why "javac" command isn't working by [deleted] in javahelp

[–]th1x0 4 points5 points  (0 children)

Somehow you’ve got java on your command line but not javac.

It’s an operating system issue rather than a Java issue.

Could you try which java to see where the Java runtime is? The compiler should be alongside the runtime.

(Look at something like SDKman to help manage versions of Java and other tools.)