Minecraft PC IP: play.cubecraft.net

Search results

  1. not2excel

    Windows 10 Store Won't Load - Infinite Circle

    Win10 is still ridden with minor bugs here and there. Granted nearly all of them will never be found by an average user, or they don't actually cause anything breaking. I know I've had some compositor issues (minor tearing in the window borders), but those are usually only a few pixels torn...
  2. not2excel

    Junior Developer, Helper, Builder APPLICATIONS NOW OPEN. CubeCraft needs YOU!

    (facepalm) @NanoNet said that he's not interested in the bukkit side of java development. But if you read his posts on the software subforum, he does have an interest in programming. Everyone has their own preferences. For example I will not do any web based development for anyone other than...
  3. not2excel

    Coding Bukkit Plugin Command doesnt do anything!!!

    Can't edit lol. Anyways disregarding the bytecode level fun you can have, you are correct. (in terms of source only)
  4. not2excel

    Coding Bukkit Plugin Command doesnt do anything!!!

    Actually, that's only correct for compilation usage. However, bytecode wise, the return type is included as part of the sig. eg. Ljava/lang/String/length()I As for compilation it will drop the return type and only respect the first part. You can hackishly get the jvm to comply with multiple...
  5. not2excel

    #scalamasturrac

    #scalamasturrac
  6. not2excel

    Coding Advice for a Software Engineering/Developer career

    Not entirely true, but not false either. Math knowledge is the hardest part of software engineering imo. Especially since there is so many examples and places you can get with for development. SO, JavaRanch, reddit (ik im ashamed to have to put this) You can also go the /r/dailyprogramming...
  7. not2excel

    Coding Android Studio Strange Error?!

    pastebin the gradle script then. I'm assuming you modified it, since the default build script provided usually works just fine
  8. not2excel

    Coding Bukkit Plugin Command doesnt do anything!!!

    name, parameters, and return type
  9. not2excel

    Coding for loop or while loop?

    the main differences between the standard for (fori) loop and while loop are the reason you use them. If you know beforehand how many times you wish to loop, eg. the number of indices in a collection or just say 10 times. While loops are best for condition checking in which the condition could...
  10. not2excel

    Coding Lambda or Implement ActionListener?(Java)

    Now I know that this thread's been deadish for ~10 days now, but I can't help but add in some more information. Lambda's in general (note the keyword general) are faster than setting up either an anonymous class or a regular class for what java calls FunctionalInterfaces (eg. just single method...
  11. not2excel

    Coding [API] Network API.

    Few things you should either 1) take note of or 2) give a thought to switching to. Greedy naming - while every developer loves their credit, greedy naming will turn away some people. (CheckSumLib being much less greedy that NicksLib) Only reason I say this is that Nick not only is a first name...
Top Bottom