Basic Java and Spigot Lessons - Free

Status
This thread has been locked.

silverblade1233

Feedback score
0
Posts
64
Reactions
11
Resources
0
Hey, I'm feeling nice and sometimes I get bored so I'm offering to anyone who has skype and a mic that doesn't sound like cancer (sorry if I offended you) but I just can't work for free for people with shit mics.

I've thought about how I want to go about teaching and I've decided that first we'll just see what you know by you telling me. If you don't know much I can show you the basics of Java that will be very important in the lessons. This will include if, else, else if statements. It'll also include how to use return, and the types of variables you can have, when to use them, and what they mean.

I'll show you how to create GUIs, use permissions, make commands, whatever you want to learn.

Again this is free. Let me know if you want a lesson by adding me on skype:
steven.silverglade1
 
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

Skionz

ogminecraft.com
Premium
Feedback score
1
Posts
1,544
Reactions
1,527
Resources
0
I don't see how neater and more concise code is not cleaner and better, but whatever floats your boat. As I mentioned, his code is correct. As for your last statement, I get that you're trying to be funny, but I was just showing him the neater way of doing it and telling him that it was a dick move to go at someone that was doing free work.
I wasn't trying to be funny. I agree with this post.
I still don't see why you would try flexing on him with that. That's what all of the skids do.
Skids constantly do that and I find it annoying as you probably do. These forums used to be litered with people who would put conditions like that in their signature to show how they are the alpha java coder.
 

Leon

Premium
Feedback score
3
Posts
603
Reactions
160
Resources
0
Alongside stating no information on how much Java you have knowledge of, how much experience, what you've done in the past, etc...
How are you going to teach people...


While you're only going to teach them the 'basics' of Java...

Nobody (who's normal, if you're superman, feel free to kill me in my sleep cause I was wrong on a forum), will be able to properly make plugins with just the knowledge of if, if/else, return, and variables. Or...

Code:
if( knowledge < basics )
    System.out.println( "You can't make plugins" );

else
  System.out.println( "oshitwadup you're a god" );

Will trigger the first statement

Lol you can make plugins with basic java knowledge, if you don't believe you can then you mustn't have much experience in the subject at hand.
 

Issyboi

Java Dev
Supreme
Feedback score
0
Posts
32
Reactions
12
Resources
0
Clean and efficient.
You dont have to look at the source code to say its clean and efficient.
If a code is clean, it dosent make it more efficient. Unless you have unnecessary code.
You can just test the plugin with timings reset and on, and then write /timings paste. Wow mate, no source code needed.
I have made codes that are not clean, but they were still efficient.
If you want to define a good plugin, it must have good performance, minimal bugs and do the things it's meant to do. You dont need clean code, the basic user wont really care.
GG this post, so toxic.
 
Last edited:

TrueNirvana

Feedback score
0
Posts
1
Reactions
0
Resources
0
Thank you :D

Hello. Sorry for all the toxic posts in your thread.

Are you still offering these lessons? I have intermediate knowledge of Java and wanted to learn a thing to 2 about plugins (GUI's, practice ideas). If this is so then I will add you on skype at some point tomorrow.
 

Ammar T

Programming Teacher
Supreme
Feedback score
7
Posts
820
Reactions
394
Resources
0
It seems you don't know Java well enough and tried flexing on him. Here is a better way to do what you just did:
Code:
String message = knowledge < basics ? "You don't know Java" : "You're a god";

System.out.println(message);

Don't get me wrong, your code is correct, but this is a better and cleaner way of doing this. I still don't see why you would try flexing on him with that. That's what all of the skids do.

Disregarding your failed attempt at roasting him, he offered free help. He doesn't need your bullshit nor does he need to state any info on how much he knows.
M'boi, you could've done that even shorter. I taught you code condensation better:
Code:
System.out.println(knowledge < basics ? "You don't know Java" : "You're a god");

Kappa
 

Ammar T

Programming Teacher
Supreme
Feedback score
7
Posts
820
Reactions
394
Resources
0
Also, GLWS :).
 
Status
This thread has been locked.
Top