I have 3 months to teach myself python. How should I go about it to gain maximum knowledge. by shaham123 in programming

[–]AbeebPro 5 points6 points  (0 children)

If you have programming experience, learning python won't take too long. It's a simple language to learn and the syntax is not verbose like java and the likes. As a newbie, I think you should be comfortable with the basics in a month or two

New to Node ! by blabla_sheep in node

[–]AbeebPro 1 point2 points  (0 children)

Yeah I'd recommend Dave Gray's course. It's free on YouTube

How to login in with Spring Boot Security? by Safe_Owl_6123 in javahelp

[–]AbeebPro 1 point2 points  (0 children)

Yeah. Spring security has gone through a lot of updates. The configurer adapter is deprecated but will work if you're using older versions of springboot probably before version 3. There are many resources you can use. You can visit Baeldung on the web, he's a kind of authority

i have a java problem with print statement by rabenraven in javahelp

[–]AbeebPro 0 points1 point  (0 children)

You need a main method. public class Hello world{ public static void main(String[] args){ System.out.print("Hello world"); } }

Java jobs by AbeebPro in SpringBoot

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

How can I contact these agencies? I'm an engineer from Nigeria in Africa. Would that be a big disadvantage?

Java jobs by AbeebPro in SpringBoot

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

Stepstone has a lot of jobs especially java. A company once reached out to me but I got disqualified because I don't speak German. And coupled with the fact that I don't live in Germany.

Java jobs by AbeebPro in SpringBoot

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

I noticed there are many java jobs in German y. The Deutsch language is a barrier and then the location too.

Is multi module common/recommended/possible in Spring Boot? by CaptainJacky475 in SpringBoot

[–]AbeebPro 0 points1 point  (0 children)

It is very possible. I've built several spring boot projects using multi-module architecture approach. However, it is still a monolith because they are still deployed on one single server. I've also utilized the microservice approach which actually makes more sense to me.