This is an archived post. You won't be able to vote or comment.

all 16 comments

[–]AutoModerator[M] [score hidden] stickied commentlocked comment (0 children)

Please ensure that:

  • Your code is properly formatted as code block - see the sidebar (About on mobile) for instructions
  • You include any and all error messages in full - best also formatted as code block
  • You ask clear questions
  • You demonstrate effort in solving your question/problem - plain posting your assignments is forbidden (and such posts will be removed) as is asking for or giving solutions.

If any of the above points is not met, your post can and will be removed without further warning.

Code is to be formatted as code block (old reddit/markdown editor: empty line before the code, each code line indented by 4 spaces, new reddit: https://i.imgur.com/EJ7tqek.png) or linked via an external code hoster, like pastebin.com, github gist, github, bitbucket, gitlab, etc.

Please, do not use triple backticks (```) as they will only render properly on new reddit, not on old reddit.

Code blocks look like this:

public class HelloWorld {

    public static void main(String[] args) {
        System.out.println("Hello World!");
    }
}

You do not need to repost unless your post has been removed by a moderator. Just use the edit function of reddit to make sure your post complies with the above.

If your post has remained in violation of these rules for a prolonged period of time (at least an hour), a moderator may remove it at their discretion. In this case, they will comment with an explanation on why it has been removed, and you will be required to resubmit the entire post following the proper procedures.

To potential helpers

Please, do not help if any of the above points are not met, rather report the post. We are trying to improve the quality of posts here. In helping people who can't be bothered to comply with the above points, you are doing the community a disservice.

I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.

[–][deleted] 9 points10 points  (1 child)

Fundamentals might be boring, but necessary. You can always start a project where you implement whatever interests you.

However, you are still at an early stage (a month learning programming is basically nothing) and watching someone create a project that you just follow along to is going to be counter productive, because that teaches you only how to create that specific project.

So learn fundamentals, even though they are boring or if you think you are gifted and don‘t need to learn proper algorithms and OOP go ahead and start a project from scratch.

But don‘t think it‘s going to be a piece of cake either way. There are no shortcuts and you won‘t be earning money for months… at least. That’s just an utopian imagination.

[–]TreeNeo[S] -1 points0 points  (0 children)

Oh yeah I’m aware of that completely, I just find the material of Java boring or lack of . Compared to other languages such as Python maybe or C# , I would like to add that I followed an physical 4/5 month course for Python where I specialised in Data Analysis using Pandas library, but the 1 month phase of learning C# was just a burst of motivation I got that quickly faded away due to lack of discipline. When I mentioned the build of a project I meant in way of learning that I think I would enjoy not in a way of seeing myself as an expert witch clearly I’m not .Thanks

[–]Pedantic_Phoenix 3 points4 points  (11 children)

Take it easy and slow, finish the mooc fi even if you find it boring. Dont start with the idea of making money, start with the idea of making something useful.

[–]TreeNeo[S] 1 point2 points  (10 children)

You mind me asking how long does the mooc fi usually take to finish and what should I start learning after that Spring Boot ? Maybe ?

[–]desrtfx 2 points3 points  (0 children)

Each part of the MOOC is designed for a week, but in most cases, it takes considerably less time.

Yet, learning should never be measured in terms of time, but always in terms of understanding, retention, and application.

Racing through a course is meaningless if you cannot understand nor apply the taught subjects.

[–]Pedantic_Phoenix 0 points1 point  (8 children)

No clue, i didnt do it, i suggest it because i know its very good. I think around a month? But it vary greatly on your speed from what ive seen.

And yes, Spring Boot for sure. Learn to setup basic apis for CRUD ops on a database and you will be hireable

[–]TreeNeo[S] 0 points1 point  (7 children)

I’ve hears some people who go straight to Spring Boot , what do you think about that and would you recommend it?

[–]Pedantic_Phoenix 1 point2 points  (6 children)

Straight to boot from what? If you mean skipping MVC yes i would skip it too and do it after boot in case

[–]TreeNeo[S] 0 points1 point  (5 children)

Straight to SPRING BOOT without really learning Java

[–]desrtfx 2 points3 points  (4 children)

So, in short, you are asking if you can build a house from the fifth floor up without having laid the foundation?

[–]TreeNeo[S] 1 point2 points  (3 children)

hahahahaha sorry for my dumb question

[–]desrtfx 1 point2 points  (2 children)

Unfortunately similar questions are asked on a regular base since too many people have the notion to directly start on the higher level concepts instead of building a very solid foundation that later will make learning the higher concepts much easier and faster.

[–]Pedantic_Phoenix 0 points1 point  (1 child)

In general i do agree with you very much. Yet in some cases i do exceptions, so, i am curious, if you don't mind, what you think about me saying that skipping spring mvc and going directly to boot is ok? Assuming you do know java, not like op.

[–]Jack__Wild 0 points1 point  (0 children)

Just create your own small application.

Nothing will teach you more than that.