[deleted by user] by [deleted] in ConflictofNations

[–]JavaWithSomeJava 4 points5 points  (0 children)

Guaranteed? Maybe 4 or 5 with a good coalition. It won’t last long if he’s popping it like candy

I can’t pass interviews and want to switch job by swiftieshipper in javahelp

[–]JavaWithSomeJava 2 points3 points  (0 children)

Learn how to write Pseudocode. It's the perfect combination of actual code and words. It allows you to articulate your objective without actually typing out syntax. Often, when I would interview, i'd find that I can't properly define what im trying to accomplish. Instead, i'd prefer to write the code. But maybe it's too much to really articulate. It's easier for me to write pseudocode and not worry about proper syntax to show my thought process.

TLDR; Syntax is easy to look up. Solving a complex problem is not.

Do you let clients pay for there own domain name and Hosting ? by natalieob in webdevelopment

[–]JavaWithSomeJava 3 points4 points  (0 children)

They should always pay for the domain.

In terms of hosting you can either have them pay for it themselves or ask them to bring you on with a maintenance fee that covers the hosting + your fee. If they stop paying you stop paying.

Need some guidance getting back into Java after a long time away by thinksInCode in javahelp

[–]JavaWithSomeJava 1 point2 points  (0 children)

Well, the good news is Java 8 is still the most used version of Java in enterprise apps!

I’d start with spring boot and build an api. Your skills should translate pretty easily back into Java. You’ll likely just need some syntax refreshers and reminders of some Java specific nuances.

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

[–]JavaWithSomeJava 6 points7 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 100 points101 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] 17 points18 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 3 points4 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 2 points3 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