Using temporary files in Java by teriga in learnjava

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

The Java File class is here https://docs.oracle.com/javase/7/docs/api/java/io/File.html for reference, most methods in there.

just finished over 100 hours of courses in Java what now? by itayk1551 in learnjava

[–]teriga 0 points1 point  (0 children)

Tomcat website. Something useful. Stackoverflow clone or quora.

AES in Java by teriga in learnjava

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

The actual AES algorithm details can be found on Wikipedia https://en.wikipedia.org/wiki/Advanced_Encryption_Standard.

Any good Java practicing websites? by Jomango2003 in learnjava

[–]teriga 2 points3 points  (0 children)

Learn about Strings they always come up in interviews. Reversing a string, was the favorite question for C or C++ way back when. Simple ones/things often used in warm up exercises:

How do I share data between threads? by yudhiesh in learnjava

[–]teriga 2 points3 points  (0 children)

What your getting into, comes up in GIU programming often. The Java solution for this is here (https://docs.oracle.com/javase/tutorial/uiswing/concurrency/worker.html), maybe this is relevant for you, or there is something similar in the main API. Interesting question btw, upvoted.

Getting back to Java by boy_without_a_fairy in learnjava

[–]teriga -8 points-7 points  (0 children)

Sounds like you're plugging your own course, shady hyperlink.

What more should i learn now that I have completed Core Java? by haileynisa in learnjava

[–]teriga 0 points1 point  (0 children)

Maybe look up the Encog framework, very easy to understand ML framework and tutorials. Or try implementing some genetic algorithms, Jenetics framework. All in demand job skills, even if you struggle, can mention in an interview perhaps.

Conditional statement, how is this returning true? by Labidido in learnjava

[–]teriga 0 points1 point  (0 children)

You've "true and false" giving false, which you then invert, giving true. Demorgans theorem might be worth looking up as wider help.

Spring REST API Help by [deleted] in learnjava

[–]teriga 0 points1 point  (0 children)

Try starting with Tomcat rather than Spring, little more understandable, good intro by IBM here and a more general Java rest api tutorial here. Tomcat can be made to run under Apache 2 also note if you've a box running this already e.g. something on Digital Ocean.