Jump to content

Botre

Members
  • Posts

    5883
  • Joined

  • Last visited

  • Days Won

    18
  • Feedback

    100%

Everything posted by Botre

  1. Apaec, Bobrocket, Ericthecmh, The Hero of Time Woohoo popularity contests
  2. Stop objectifying women like that!!!!!!!!!!
  3. Please, no one do this. This is exactly how people get murdered.
  4. Realist, interesting, mhm, not my preferred pick but a strong candidate nevertheless Scotty: sure (now I feel weird) Muffin: I'd honestly like to see him as cba again first. Epsilon: sure. Pain: not active enough
  5. http://nypost.com/2012/08/11/teen-stole-fantasy-coins-for-video-game-runescape-with-gun-threat-cops/
  6. Inspired by: https://docs.oracle.com/javase/8/docs/api/java/util/function/Consumer.html The functional package does provide a Consumer (1 arg) and a BiConsumer (2args) but you're on your own if you want more args. I stopped at 5 because I have never really needed more than that. Example public static void main(String[] args) { Consumer.One<String> printInput = input -> System.out.println(input); Consumer.Two<Integer, Double> printSum = (a, b) -> System.out.println(a + b); //... Consumer.Five<Integer, Integer, Integer, Integer, Integer> printMultiplication = (a, b, c, d, e) ->System.out.println(a * b * c * d *e); } Consumers /** * Represents an operation that accepts one or multiple arguments and returns no result. * * Created by Botre on 24/05/2016. */ public final class Consumer { private Consumer() { } private interface IConsumer { } @FunctionalInterface public interface One<A> extends IConsumer { void consume(final A a); } @FunctionalInterface public interface Two<A, B> extends IConsumer { void consume(final A a, final B b); } @FunctionalInterface public interface Three<A, B, C> extends IConsumer { void consume(final A a, final B b, final C c); } @FunctionalInterface public interface Four<A, B, C, D> extends IConsumer { void consume(final A a, final B b, final C c, final D d); } @FunctionalInterface public interface Five<A, B, C, D, E> extends IConsumer { void consume(final A a, final B b, final C c, final D d, final E e); } }
  7. http://www.krksys.com/krk-studio-monitor-speakers.html
  8. Marcske van de kampioenen.
  9. Gefeliciteerd. Another year further from your day of birth and closer to your day of death
  10. Botre

    Help me?

    Collect evidence of her social media whoring, screenshots and everything. Any proof of her being a bad mother / wife. Make your wife looks as bad as possible without doing anything bad yourself. Collect evidence of you trying to contact your son and her illegally denying such contact. Any proof of you being a great dad. Calmly and consistently request contact with your son on a daily basis (keep the emails and texts you send her and her responses), don't ever get aggressive. Do not do anything stupid or that could possibly be used against you in court, that includes flirting with other girls, harassing her, threatening her, etc... Don't get emotional, be smart about this, I smell a break-up so keep your eyes on the prize, that prize being custody of your child. If there's any record of anything that could reflect badly on you in court, try to subtly get rid of it asap. In court, be very fucking careful with this, it's the kind of information that can backfire instantly: You weren't often at home: softening circumstances for her cheating. She's financially dependent: alimony. Good luck my man!
  11. https://en.wikipedia.org/wiki/Jython Play with that, it makes python a bit more fun :p
  12. Sexy job Alek I wouldn't really qualify the syntax-sugar usage of functional interfaces in this case as functional programming but okay :|
  13. There's another big advantag: if you have 2 and 1 of them goes bad then your machine doesn't become useless / you aren't forced into buying RAM immediately. Whereas if you only have 1, well... RIP :p
  14. A. Their shows are not edited to accommodate for advertising breaks. B. Openly tolerating illegal viewings devalues the product they sell to the consumer market: exclusive premium content payed for through subscriptions. C. Openly tolerating illegal viewings devalues the product they sell to the network market (licensing and syndication). D. People will always find a way to skip commercials (edit them out, addblockers, etc...). HBO Go & HBO Now seem to have failed miserably mainly because they are not global and you could access to content much quicker through less legal alternatives. They can't really offer a global direct online platform without pissing the consumer market or the network market either. Networks are adapting too slowly to the internet, the whole system hasn't changed much since the 80s-90s :p I respect that they want to protect their product but if networks had embraced the internet a bit sooner they wouldn't be in this nasty situation..
  15. Via JNI: http://biletnikov-dev.blogspot.be/2009/09/global-hotkeys-for-java-applications_25.html Will only work on Windows (unless you're up to writing implementations for other OSes yourself). I would not recommend un-focused command anyways.
  16. The Entry array backing the map does not respect the order of insertion because elements are inserted based on a hash of their hash value. The reason it can't guarantee any other kind of order is because of hash collision (which is pretty much unavoidable). Come to thing of it I'm actually not even sure anymore where the non-guarantee of order is introduced.. at insertion or retrieval.. you may have been right, eh time to hit the books I guess x) Peace (dis thread hijack tho)
×
×
  • Create New...