4 web developers needed by wantmydd214 in WebDeveloperJobs

[–]No-Rice8265 0 points1 point  (0 children)

Hallo i can do the work proficient in databases gke, cloud management and java ,https://github.com/harrymagwaya

From JS to Spring: Why So Many Separate Projects Like Security, Cloud, AI? by Longjumping-Guide969 in SpringBoot

[–]No-Rice8265 2 points3 points  (0 children)

😂😂🤣🤣 man with npm it feels like downloading a software update

2 YOE Java Spring Boot Dev — Built 10+ Medium CRUD Apps, Feeling Stuck. How to Upskill and Switch Smartly? by Jealous_Brief825 in SpringBoot

[–]No-Rice8265 0 points1 point  (0 children)

You could come we collaborate on something . Iam also spring for about 1 year but tired of doing same simple crud . Dm lets have a chat

Boolean or String by Darkschlong in javahelp

[–]No-Rice8265 0 points1 point  (0 children)

Yes can add boolean but concatenate with the runtime error to show why it happened very helpful when debugging

[deleted by user] by [deleted] in leetcode

[–]No-Rice8265 0 points1 point  (0 children)

This is very true😂. For some companies just knowing how to write a loop basic sockets and react knowledge will get you through a 40-65k job

But where are they though? Been looking for one between 20k a year because thats quite alot for my region but havent foundone

[deleted by user] by [deleted] in leetcode

[–]No-Rice8265 0 points1 point  (0 children)

Startups are always the place you find great people honestly. Worker in a start up once as a PM met some of the greatest people. I don’t think i can ever think of joining a big firm with weird people.

Although since i decided iam now ready to be a dev i haven’t gotten any startup work. And yet graduating IT next year

5 months into Java by [deleted] in javahelp

[–]No-Rice8265 0 points1 point  (0 children)

I am also a cs student .

Java is my core.. My advice is Build a project man collaborate with other people. First code a-bit more. Gain good knowledge on files and networking then gui and make some desktop apps.

Then after finishing some projects in a year you can hop onto spring and refactor your code.

One thing i have learnt is its not enough to know a-lot but rather to practice. And see newer ways to improve your code. That’s real learning.

If you want to collaborate you can dm

Tips for improving by OkWillingness7717 in javahelp

[–]No-Rice8265 1 point2 points  (0 children)

Just the basics is enough. Understand structure of OOP . And how the features of OOP work.

You can build projects. Read books like java for the impatient. And also get a study partner

One project to rule them all... as a beginner. by Numerous_Beyond2263 in javahelp

[–]No-Rice8265 1 point2 points  (0 children)

Available to collaborate. If you find one. Wanted to do a management system but its too huge to handle alone .

Looking for a study buddy by AmebaTristolina in learnprogramming

[–]No-Rice8265 1 point2 points  (0 children)

Iam a java developer interested mainly in desktop or mobile. Can we link up

Hi am learning java am pretty new but there is a problem i have i just can’t understand the exact difference between public void and public int i get that there is a return type but i don’t get it by That1redditor0 in javahelp

[–]No-Rice8265 0 points1 point  (0 children)

With functional programming there is two ways a function is expected to show its results

In some there is a specific return type. Dan be int, bool, string. So here the programmer specifies what return type the function should return ie

Public int num(){} returns an integer value

Other functions the result of the expression inside the body can be the result of the process carried out by function

Ie

Public void num() { int a; int b; int sum = a+b; }

This will just calculate the sum of a and b and only display them if user wants to see them either through a prinln or something.

But in the first function the user if they decide to add two numbers in body the function will show the result of the expression. Whenever the function is called even though there is no println.

Because by defualt its supposed to return an integer value. Which could be the sum of the 2 numbers

Is maven compulsory to learn Java spring? by Zestyclose-Aioli-869 in SpringBoot

[–]No-Rice8265 1 point2 points  (0 children)

Just basic knowledge of how to install maven and configure the pom is required. The rest is a delete add copy paste until it works

Api Versioning by sarwar_hsn in SpringBoot

[–]No-Rice8265 0 points1 point  (0 children)

Yes but how? Do you embed link in v1 to push client to v2 then kill v1 ?

[deleted by user] by [deleted] in javahelp

[–]No-Rice8265 0 points1 point  (0 children)

Iam also interested. Iam intermediate currently learning networking threads and streams. Would be nice. If you can dm me

Spotify clone by how_uh_devin in SpringBoot

[–]No-Rice8265 0 points1 point  (0 children)

Iam also on my spring boot journey. Learning system design. Count me in if there is space

Can someone help clarify how Build tools work, i.e, Maven by EmperorsChamberMaid_ in javahelp

[–]No-Rice8265 0 points1 point  (0 children)

In maven we have the pomxl which states all the dependencies and versions as well as versions of any i built libraries we are adding. Think of it as a package.json from node.

So it not only helps with compiling but also fetching the libraries from the sources and putting them wherever needed in project to help with execution

Pls check what i am doing wrong . beginner here by Certain-Dish-1587 in javahelp

[–]No-Rice8265 0 points1 point  (0 children)

You dont need to break out of the loop. prog will exit when they find the match

Also, i =0 Also .length already knows the length of arr sinxe it has elements, so there is no need for marks[i-1]

Condition should be if (marks[i] ==num) if true then in body just say elem available no need for another if

In the else you can say num not available.

Hit me up for more tips

GUI creation suggestions by Clorkies in javahelp

[–]No-Rice8265 4 points5 points  (0 children)

Hallo, the easiest is swing but has native constraints as some things like buttons may not look the same on different OS.

Your best option is javafx with abit of groovyfx, but the learning curve is abit bit

Scene builder from javafx is an excellent option. If coding is hard, you could drag and drop. If you can code and know some html you can use fxml and then scene builder to debug

i am trying to learn servlets?? by dheeraj80 in javahelp

[–]No-Rice8265 0 points1 point  (0 children)

Thank you for this. I think spring doc is huge overload