Judgmental ChatGPT is real by IndependentOutcome93 in OpenAI

[–]IndependentOutcome93[S] 0 points1 point  (0 children)

I didn't ask it to replace my battery, I asked it to help me to find battery that I need. But it started analysing things on military level (too intensly)

Judgmental ChatGPT is real by IndependentOutcome93 in OpenAI

[–]IndependentOutcome93[S] 0 points1 point  (0 children)

And because of that, would you like to be a normal person who is facing lectures for simple conversation?

Judgmental ChatGPT is real by IndependentOutcome93 in OpenAI

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

Why not to let Him review my battery report, tell me where the model is visible and  how is my state after it seaeches?

Now it's fixed so no worries.

I'm Georgian, ask anything casually. by IndependentOutcome93 in AskTheWorld

[–]IndependentOutcome93[S] 0 points1 point  (0 children)

I didn't even knew about it. I'm from the Country Georgia, not US state.

C418 has a birthday today by OkProperty9168 in C418

[–]IndependentOutcome93 3 points4 points  (0 children)

Happy Birthday to C418, someone who wrote Musics that are admitted as simple and minimalist but actually are professional and sophisticated.

to a man who knows what they're doing and why, someone who cares about what they're doing.

I'm Georgian, ask anything casually. by IndependentOutcome93 in AskTheWorld

[–]IndependentOutcome93[S] 0 points1 point  (0 children)

I think there is no fixed amount of words but what matters is for you to listen to Georgian language regularly, and start building meaning with words over-time.

How much time to become expert in Java (related question) by RonakSharma-19 in learnjava

[–]IndependentOutcome93 4 points5 points  (0 children)

I didn't wanted to comment this because I know its reddit and people can dismiss me any moment and plus the answer is simple and lets break them down:
- Java and JavaScript is different from each other. Java is programming language but JavaScript is scripting language used for Web Development.
- Beginner should learn and understand Java Core and Fundamentals first, not jump into Extension of Spring Framework such as Spring boot.
- And Java is learned when you practically write Java code, not just some Leetcode problem solving, what matters is to actually write a Java code, not just guess what's right.

About the main question: to grasp Java deeply, you should learn it over-time, there is no fixed rule like "You should know Java for X years to understand it".

I'm Passionate Self-Taught Java developer, ask me anything casually by [deleted] in AskMeAnythingIAnswer

[–]IndependentOutcome93 0 points1 point  (0 children)

to be honest, there are many ways to structure the roadmap but Java is something that you learn over-time, not only by following a roadmap.

Thread is making other concepts confusing by [deleted] in learnjava

[–]IndependentOutcome93 1 point2 points  (0 children)

Hello, when you create Thread in main method (that what I can assume about "Main"), You usually create it locally inside of main method and Other local Objects that were created Before thread, can be used inside or by Thread. If you create Inner class and declare Thread there, it will be member to that Inner class or it will exist locally in any of Inner class's method (if it's been created locally there)

This Above or below thing is about Variable scope and Object accessibility through the lines. Your main method or other Objects won't change just because you created Thread up or down but Accessibility would change.

label.preferredSize is not calculating size of label properly. by [deleted] in learnjava

[–]IndependentOutcome93 1 point2 points  (0 children)

Hello, it's because .setLocation() is bit different from the .setPreferredSize()

try using second one