enow.com Web Search

Search results

  1. Results from the WOW.Com Content Network
  2. (Discussion) Which IDE is best for Java : r/java - Reddit

    www.reddit.com/r/java/comments/xztgwj/discussion_which_ide_is_best_for_java

    Intellij. VS Code is a glorified text editor. I mean, all ides are at the end of the day but Intellij is better suited for Java. It works out box. VS Code needs some setup and a bunch of extensions to get it to the same level as an IDE, at which point you may as well use an IDE.

  3. Which is actually the best AI tool for Coding? : r/ChatGPT -...

    www.reddit.com/r/ChatGPT/comments/17hnyaz/which_is_actually_the_best_ai_tool...

    Sometimes it's great, but others it's just annoying that I can't get it to go through more of my code. GPT-4 API works, of course, quite well, but, man, does it eat my balance quickly. I also use Open Interpreter to help me out with some scripts/shorter files, it reasons through them quite nicely, and can even replace the code if I want.

  4. VS Code for Java: good or bad? : r/java - Reddit

    www.reddit.com/r/java/comments/152o7z9

    Our application code is primarily Java. I use VS Code and it works great for me using extensions applicable to our Java projects. I do a lot on the ops side where I use a separate set of extensions (e.g., Kubernetes, Docker, etc.). I started working on a dev container for our Java projects.

  5. Best free Java course for pure beginners : r/learnjava - Reddit

    www.reddit.com/r/learnjava/comments/rxl61k

    Java for Complete Beginners. accompanying site CaveOfProgramming. Derek Banas' Java Playlist. accompanying site NewThinkTank. Hyperskill is a fairly new resource from Jetbrains (the maker of IntelliJ) Also, don't forget to look at: The official Documentation. The official Java Tutorials. Our community resources thread

  6. Website for practicing Java? : r/learnjava - Reddit

    www.reddit.com/r/learnjava/comments/lejpcb/website_for_practicing_java

    If you're looking for an in-depth, comprehensive, high quality, free Java course, use the MOOC Object Oriented Programming with Java from the University of Helsinki and maybe Java for Complete Beginners by John Purcell as secondary resource. I am a bot and this message was triggered by you mentioning thenewboston. Please do not respond to this ...

  7. Can my professor really tell if I used chatgpt for a coding ... -...

    www.reddit.com/r/OpenAI/comments/18czxg0/can_my_professor_really_tell_if_i...

    Not at all. If you run your professors code through an AI detector it will come back as AI written so its obviously not accurate. I've submitted code written by AI before and never got in trouble for it. That being said when you get to higher level courses (anything beyond an intro class), AI wont help at all

  8. Where is the best place to learn java seriously? : r/learnjava -...

    www.reddit.com/r/learnjava/comments/br8cie/where_is_the_best_place_to_learn...

    As for whether Java is the best language to learn, that totally depends on what kind of work you are going to be doing. Java seems to be more suitable for web and mobile development. Android apps are built with Java, although nowadays, devs are starting to prefer Kotlin, which is akin to the switch from Objective-C to Swift for iOS developers.

  9. Bedrock V.S Java: Final Verdict (Unbiased) : r/Minecraft - Reddit

    www.reddit.com/r/Minecraft/comments/lm5ghx/bedrock_vs_java_final_verdict_unbiased

    Minecraft Java was coded in, well, Java. However, Minecraft Bedrock was coded in C++, a much faster language than Java. What this means in simple terms, is *Java edition was never made to support many players*, and was coded as such, in an easy language like Java.

  10. java error code 112 : r/javahelp - Reddit

    www.reddit.com/r/javahelp/comments/krud97/java_error_code_112

    This doesn't have anything to do with Java, but with Windows Installer. It simply can't unpack stuff into temporary directory because you don't have any space left on C: As a workaround, you could try changing TEMP environment variable to point to D:/temp

  11. Jar to source code : r/javahelp - Reddit

    www.reddit.com/r/javahelp/comments/119tm0w/jar_to_source_code

    You can get the source code out of the JAR in two ways. If the JAR has the sources exported within it, then you can use an IDE to look at the code by inspecting the JAR, or simply unzip the JAR and search for the .java files. If the JAR only has .class files, then you need to use a decompiler.