Minecraft PC IP: play.cubecraft.net

Search results

  1. alyphen

    Oh hey, haven't checked in here for a while. How's everything going?

    Oh hey, haven't checked in here for a while. How's everything going?
  2. alyphen

    Yep.

    Yep.
  3. alyphen

    Thanks :)

    Thanks :)
  4. alyphen

    Coding What does your desktop look like?

    This is my Linux side, I use this wallpaper because it inspires me to create. Might get around to uploading windows desktop at some point.
  5. alyphen

    Busy busy busy.

    Busy busy busy.
  6. alyphen

    Opinions on 1.9?

    I liked beta 1.7 PvP. There was no sprinting, and bows shot very quickly, making them incredibly viable if you had the resources to keep up your arrow supply. There was no food bar and if you had full diamond armour, there was no enchantment and you could jump into PvP knowing you had the best...
  7. alyphen

    Coding [Bukkit/Spigot Development] Basic Tutorial

    With regards to the tutorial itself, I'd say even for basic plugin development these days, looking into Gradle or Maven is a must. With IDEs, I'd go for IntelliJ over Eclipse, the autocomplete is better, live templates enhance productivity so much, and maven/git support is built in (as opposed...
  8. alyphen

    Coding [Bukkit/Spigot Development] Basic Tutorial

    I would disagree that gradle takes more time - it's incredibly simple and the configurations are a lot shorter. It also has the advantage of using a DSL, which you can use for scripting etc as well if you want.
  9. alyphen

    Coding Bukkit Plugin Command doesnt do anything!!!

    NanoNet is correct here, two methods different return types but the same name and parameters (in Java at least) will have the same method signature.
  10. alyphen

    Laptops

    Check sites like PCSpecialist or ThinkPenguin, which allow you to customise your build and then build it for you. My current laptop is a PCSpecialist model (though my budget was higher, the equivalent of about 2.5k AUD) and that's been running awesome. (Also, with this sort of site, you can save...
  11. alyphen

    Headphones w/ Mic Suggestions?

    Personally, I use a Corsair Vengeance 2100 (the older version of this: http://www.amazon.co.uk/Corsair-CA-9011127-EUCGH2100-Wireless-Gaming-Headset/dp/B00NHJQ8CA/ref=dp_ob_title_ce ) They're about £80, and have good sound quality (both in and out), good noise cancelling and wireless (with a USB...
  12. alyphen

    Coding Bukkit Plugin Command doesnt do anything!!!

    You can't just add parameters to onCommand - since onCommand overrides the method in JavaPlugin by the same name, it must be exactly the same (CommandSender sender, Command command, String label, String[] args) Adding gameName means the method signature is different. If you're taking the game...
  13. alyphen

    Also, buttons that used to be in logical places (like the profile) have been moved to some...

    Also, buttons that used to be in logical places (like the profile) have been moved to some really strange locations (took me a while to notice the bottom bar)
  14. alyphen

    I'm not sure I'm keen on the new layout - lack of contrast between text and background makes...

    I'm not sure I'm keen on the new layout - lack of contrast between text and background makes everything pretty hard to read
  15. alyphen

    Coding Advice for a Software Engineering/Developer career

    I know all of the topics you listed, and I've taken up software developer roles in the past (though currently a test analyst) I'd say go as if to get a job, and check websites such as GitHub jobs or StackOverflow Careers and see what they require. Look at graduate schemes and see what you can do...
  16. alyphen

    Luke & I live literally streets apart haha, I don't mind doing some 1-to-1 tutorials if you want...

    Luke & I live literally streets apart haha, I don't mind doing some 1-to-1 tutorials if you want to learn.
  17. alyphen

    Coding Android Studio Strange Error?!

    Often, errors like this can be prevented by just doing what it wants - create an empty folder and see if it still complains. If it does, you may get a different error which you can debug.
  18. alyphen

    Coding How to replace /help in Bukkit plugin development?

    If you simply want to override it, stick help as a command in your plugin.yml as you usually would, and add a HelpCommand class that implements CommandExecutor. Then just call getCommand("help").setExecutor(new HelpCommand()); from your onEnable method and override the onCommand method in your...
  19. alyphen

    Coding Cameron's Programming Tutorial #1 - What language should I choose?

    On a more serious note, learn everything and decide what's most appropriate. C is nice for fairly low-level applications development - for a desktop program, I'd usually expect it to be written in C or C++ (C is, in most regards, a subset of C++ so you can learn C first and then start using C++...
  20. alyphen

    Usually it's best to work towards a project (a game, a Minecraft server, whatever you enjoy...

    Usually it's best to work towards a project (a game, a Minecraft server, whatever you enjoy doing) and learn what's required to do that, then move onto a more ambitious project when you're ready.
  21. alyphen

    Java - it's plugin work on CCGN. We've managed one session so far, and then either I've been...

    Java - it's plugin work on CCGN. We've managed one session so far, and then either I've been away or Luke's been away.
  22. alyphen

    You can store the user in session data, and just store users and hashed passwords in a DB. When...

    You can store the user in session data, and just store users and hashed passwords in a DB. When someone attempts to log in, you has their password and compare it to the hash in the DB. If it matches, stick the user in the session data. When logging out, just clear session data.
  23. alyphen

    I found JDBC pretty simple to work with - most difficult library I've tried to get my head...

    I found JDBC pretty simple to work with - most difficult library I've tried to get my head around is JOGL, it's pretty low-level. Netty took about 2 days to learn as well. (JDBC in comparison took me about 30 mins to get up and running with the first time I used it.)
  24. alyphen

    Coding for loop or while loop?

    In this situation you would use a for loop, since you're running a predetermined number of iterations (based on the string length) If you are finding out how many iterations later (based on a condition), that is when you use the while loop. This is pretty much what @not2excel outlined, but I...
  25. alyphen

    Login systems are fairly easy - though programming comes naturally to me, design is a little...

    Login systems are fairly easy - though programming comes naturally to me, design is a little trickier
  26. alyphen

    Keep up the programming, dude. Good job so far, if you ever need any help, I'll be around.

    Keep up the programming, dude. Good job so far, if you ever need any help, I'll be around.
  27. alyphen

    Yeah, it's written from scratch in PHP/CSS - https://github.com/seventhroot/seventh-root.com

    Yeah, it's written from scratch in PHP/CSS - https://github.com/seventhroot/seventh-root.com
  28. alyphen

    Just released community site for my gaming community - https://seventh-root.com/

    Just released community site for my gaming community - https://seventh-root.com/
  29. alyphen

    good headphones?

    Corsair ones are nice, the 2100 is good for gaming (and roaming around the house while waiting to find a dota game...) although this thread is more for finding headphones for mobile. I don't agree that they're all terrible though, Razer and Sennheiser are both good makes.
  30. alyphen

    Coding Cameron's Help Panel

    Nope, but I don't see what you're trying to gain by finding syntactic sugar for the same result. Just specify 0 as the first parameter.
Top Bottom