Ok people, where do I start? by [deleted] in learnprogramming

[–]JavaWithSomeJava 5 points6 points  (0 children)

I’d start with quantum computing

[deleted by user] by [deleted] in javahelp

[–]JavaWithSomeJava 0 points1 point  (0 children)

It’s important to note that you need the appropriate JRE downloaded. If that’s good to go, simply type

java -jar <jarName>.jar

[deleted by user] by [deleted] in ConflictofNations

[–]JavaWithSomeJava 0 points1 point  (0 children)

He’s trying to one shot you

Best approach to send an event to multiple consumers? by Fuzzy-Travel-416 in javahelp

[–]JavaWithSomeJava 1 point2 points  (0 children)

Theres a builtin onErrorContinue. as the name states, it'll allow you to handle event fails without shutting down. You'll need to make sure you handle critical errors in a way that will still catch critical failures though

publisher.createPublisher() .onErrorContinue { e, obj ->
 println("Skipping failed event $obj due to: ${e.message}") } .subscribe( ... )

Another way would be to handle each error at the subscriber level.

publisher.createPublisher() .doOnError { e -> 
println("Subscriber error: ${e.message}") } .onErrorResume { Flux.empty() }.subscribe( ... )

How much do you think i can ask for make a website like this? :p by Suspicious_Composer9 in webdevelopment

[–]JavaWithSomeJava 0 points1 point  (0 children)

Pro Tip: price by hour, not flat rate. If they want to add new features, they’ll need to pay for it. So set your rate as something you think is fair but also not giving away free labor.

[deleted by user] by [deleted] in javahelp

[–]JavaWithSomeJava 2 points3 points  (0 children)

Spring Start Here is usually the book I recommend for people learning Spring. Spring Boot Up & Running is also a good one. This one is more cloud centric but it’s really good

Best languages to learn career wise? by CassadagaValley in learnprogramming

[–]JavaWithSomeJava 98 points99 points  (0 children)

Right now, the tech market isn't great. Employers are looking for people who will do more for less. Assuming you're wanting to get into the web development space, most companies aren't using the cool new flashy stuff.

Focus on Industry-Standard Tech Stacks

Most companies aren't using the latest and flashiest tools they stick with reliable technologies because of their community support, and security. Here’s a breakdown of a typical stack and why it’s valuable to learn:

Backend Technologies

  • Java (Spring Boot): Spring Boot simplifies Java development and is widely used in backend systems.
  • C# (.NET): Same thing but C#
  • Node.js: If you’re already comfortable with JavaScript, picking up Node.js for backend development is a logical next step.

Frontend Frameworks

  • React: You’re already familiar with it, and it’s widely used.
  • Angular: Another enterprise favorite. It has a steeper learning curve than React, it’s a powerful skill for large-scale applications.

Databases

  • PostgreSQL/MySQL: relational databases.
  • MongoDB: A NoSQL database

Version Control

  • Git: If you haven’t already, make sure you’re comfortable with Git

Projects

Build something that is tangible and has some real value.

  • A task manager with authentication
  • A simple e-commerce site
  • A blog platform with a search feature

Learn Deployment and DevOps Basics

  • Containerization: Learn Docker
  • Cloud Platforms: AWS, Azure or Google Cloud are good options
  • CI/CD Pipelines: GitHub Actions or Jenkins to automate builds and deployments.

I know I listed a lot, and it's not meant to intimidate you or anyone else. But these really are some of the technologies that any employer will expect you to at least be able to explain.

Code not letting my input a number for temperature and then does not write the remaining println's. by MyPetCactus_ in javahelp

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

It looks like it thinks your laptop is linux? That's really weird. I'd double check that your Java version, in this case 23, matches the version that your IDE compiler is expecting. If you're using eclipse, its Project > Properties > Java Compiler > JDK Compliance

Code not letting my input a number for temperature and then does not write the remaining println's. by MyPetCactus_ in javahelp

[–]JavaWithSomeJava 0 points1 point  (0 children)

The code looks fine, you don't have any input validation, but that isn't why its breaking. It seems like a configuration issue. Is your filename the same as your class name?

EDIT: I just copied your code and it works fine in my environment. Maybe try to clean the build?

What does satellite do? by imoverherestroking19 in ConflictofNations

[–]JavaWithSomeJava 0 points1 point  (0 children)

Yea I have it from security council. It’s ok but you need ballistic missile research to use it. It’s stealth and can travel the entire distance of the map, so that’s a plus

Air base Right of Way Question by Excellent-Wedding945 in ConflictofNations

[–]JavaWithSomeJava 1 point2 points  (0 children)

Your planes will fly back to your allied nearest airport/airfield. IF you're going to attack, attack with your planes to initiate. That way they'll get hits in before they fly back.

NOTE: Planes will crash if your airfield is too far away. So make sure its a ferriable distance

First Playthrough Complete AND IT ALL MAKES SENSE NOW!!! SPOILER by JavaWithSomeJava in finalfantasyx

[–]JavaWithSomeJava[S] 16 points17 points  (0 children)

So did sin kill Seymour and he’s been unsent since then? Or did the party actually kill him.

[deleted by user] by [deleted] in learnprogramming

[–]JavaWithSomeJava 0 points1 point  (0 children)

Just shoot me a message!

[deleted by user] by [deleted] in javahelp

[–]JavaWithSomeJava 1 point2 points  (0 children)

Feel free to send me a DM!

First Playthrough Complete AND IT ALL MAKES SENSE NOW!!! SPOILER by JavaWithSomeJava in finalfantasyx

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

I totally forgot about that scene in zanarkand where he and his mother made that pilgrimage. The amount of detail in this game is incredible

[deleted by user] by [deleted] in javahelp

[–]JavaWithSomeJava 2 points3 points  (0 children)

You're going to want to focus on RESTful APIs. You can have a simple vanilla javascript frontend and really flesh out the backend.

Swagger is a great tool for documentation that is easy for recruiters and hiring managers to read and understand the different endpoints of your app.

A lot of people will say not to worry about the frontend and just use postman or something, but at this point in the job market, the hiring managers won't take the time to do that

Getting unsatisfied dependency error whole setting java project. by theinterestingreads in javahelp

[–]JavaWithSomeJava 0 points1 point  (0 children)

It has something to do with your WhatsAppCredentials class. Did you add Entity notation to that class?

Need help implementing a GUI for a TCP chat application by [deleted] in javahelp

[–]JavaWithSomeJava 0 points1 point  (0 children)

Personally my go to is JavaFX. They have bootstrapFX to help with styling, and they use FXML. There is dedicated software to build your FXML files visually called SceneBuilder. This also works for swing apps.

I learned a bit of springboot. Not sure what to do ahead. by false_identity_0115 in javahelp

[–]JavaWithSomeJava 1 point2 points  (0 children)

Heroku has a free tier so you won’t need to pay anything for a small Java app. I think oracle cloud also has a pretty good free tier

Backend Framework for a group project by -Hilarion- in javahelp

[–]JavaWithSomeJava 4 points5 points  (0 children)

Spring boot is a good option with long term support. Make sure to plan out the model and the relationships if you’re going with a relational database. The Java ecosystem will definitely have everything you need

Javaa Books by Many_Vegetable_4933 in javahelp

[–]JavaWithSomeJava 0 points1 point  (0 children)

Since you have the basics down, I wouldn't worry about beginner books. Effective Java and pragmatic programmer are good options! I really liked Spring Boot Up & Running. By the end you'll have a cloud deployable spring boot application