Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!
  1. tyrone

    Computer hardware service

    How many rams should I installed if I want to hack a Pentagon?
  2. tyrone

    Advent of Code

    Advent of Code --- The challenges are relatively small. I'd imagine you'd all enjoy this. Have fun!
  3. tyrone

    Ironman New Programmer needing Java mentor

    Use Eclipse. IntelliJ is great if you're looking to go professional or a career. However, 90% of its features won't be used by someone just writing bots. Use something you are familiar with, have set up and know already works. And by all means Eclipse is not a bad thing. I know the hivemind is...
  4. tyrone

    Suggestion Introducing additional formatting BB Code tags

    The suggested tags are: Horizontal Rule Subcode Demonstrated using SnackOverflow: This sort of code would be generated using the following code: Horizontal bar: [hr] Regular text Subcode text Regular text --- The horizontal rule would used to separate subtopics in a more concise manner...
  5. tyrone

    C Program need explanation

    To add onto what @Coma said, there are a few things here that should have been clarified by the original writer. The reason the memory allocation is maxLen + 1 is because strings in C need to be null-terminated. This refers to ending the string with the \0 character. More specifically, this is...
  6. tyrone

    Resource Script vs. Bot

    Y'all making me reinstall LaTeX to write a paper about this.
  7. tyrone

    Iterable support for contains/query methods.

    That was definitely a downside to this. The way this has been circumvented before was just to do containsAllOfNames(Iterable<String>) containsAllOfIds(Iterable<Integer>) I understand if you wouldn't feel comfortable compromising the integrity of the names. I'd sooner tear my own hairs out...
  8. tyrone

    Iterable support for contains/query methods.

    Effectively. Saves the hassle of having to convert it to an array before calling one of these methods. This is also Java 8 where the collections have far more usage.
  9. tyrone

    Iterable support for contains/query methods.

    Updated accordingly.
  10. tyrone

    Iterable support for contains/query methods.

    Hello. I've noticed that a few methods could benefit from the usage of iterable data types. Name ones such as: Inventory#containsAllOf(int[]) Bank#containsAnyOf(int[]) GroundItems#getLoaded(String[]) Just to name a few. This could work quite well with the changes to collections from Java 8...
  11. tyrone

    The Coding JukeBox

    Daft Punk. Up-beat, aptly alive; but not too exciting. Just good to chill out with. Avatar relevant.
Top