Jump to content

Botre

Members
  • Posts

    5883
  • Joined

  • Last visited

  • Days Won

    18
  • Feedback

    100%

Everything posted by Botre

  1. I would pick you. You would be my hoe. I would be your pimp. The business would be called Noass and you would be our store.
  2. No way anyone is going to give you 20-30M. that's just too much of a comittement and risk just to be allowed to work for you :p
  3. Really liked it, so much less cringe an cheese than the usual super hero tv serie :p
  4. t'has been a fun journey amigo.
  5. Today i met my girlfriend at mcdonalds and touched tips with her dad. This was not a normal father he was sick. He told this daughter,
  6. Today i met my girlfriend at mcdonalds and touched tips with her dad. This was not a normal father he was sick. He told this
  7. 17-18, not really a guess though :V @guy below me: well played
  8. Today i met my girlfriend at mcdonalds and touched tips with her dad. This was not
  9. The "Scripting" sub-section of the of the "Development" section was recently un-condensed by popular demand a couple of weeks/months ago, if you're planning to change it again then you might want to consider consulting those who actively participate in that section first. Last time that section was reorganized and condensed some of its subsections became hard to find, people requested help in the wrong places, etc... it just created a lot of chaos. Just a heads up
  10. Botre

    Finally

    What was your thesis about?
  11. Botre

    GUI Practise

    I'm going to steal all of these for my game idgafag.
  12. Because the code hasn't been ported for other operating systems. I don't know.
  13. Short answer: no you can't, it's windows only.
  14. ^section Disputed member: Thousands of gold shops Thread Link: Thousands of threads. Explanation: I was the first player to ever provide gold buying and selling services around 10 years ago to various people (can't prove this but whatever). I recently discovered that this inspired people to do exactly the same thing and are passing off the service as their own... I would like all gold shops to be closed immediately thanks. Evidence: Nothing to be removed or seen by staff only.
  15. Looks better than the current on skin!
  16. More like an engine at this point but yeah Such funs, much lels
  17. Quit defining yourself as socially awkward / complex / shy / all that other bullshit, you're setting yourself up for failure. Social weaknesses tend to come from social inexperience: go practice and stop blaming that fear on bs self-imposed personality traits. You need to stop overthinking this. Just fucking tell her what's on your mind, it's not like you're facing a moral dilemma or anything: it's an old-fashioned, useless, sexist tradition. Just talk about it, if she makes a big deal out of it -> NEXT Easy peazy jeezy
  18. I wish I could play this game all by myself. Granted but you have to suck my dick. Ok no problem. *sucks own dick*
  19. Cookie pls package org.bjornkrols.botre.datastructures.queue; import java.util.Iterator; import java.util.NoSuchElementException; /** * Created by Bjorn on 25/05/2015. * Last edit: 25/05/2015. */ public class CircularArrayQueue<T> implements Queue<T>, Iterable<T> { private T[] queue; private int front, insert, size; public CircularArrayQueue(int capacity){ queue = (T[]) new Object[capacity]; } /** * Inserts the element at the rear of the queue. * If the queue is full, the oldest value will be removed and the the second oldest element will become the front element. */ @Override public void enqueue(T element) { queue[insert] = element; insert = (insert + 1) % queue.length; if (isFull()) { front = (front + 1) % queue.length; } else { size++; } } @Override public T dequeue() { if (size == 0) { throw new NoSuchElementException("Queue is empty."); } T element = queue[front]; queue[front] = null; front = (front + 1) % queue.length; size--; return element; } @Override public boolean isEmpty() { return size == 0; } public boolean isFull() { return size == queue.length; } @Override public int size() { return size; } @Override public Iterator<T> iterator() { return new QueueIterator(); } public class QueueIterator implements Iterator<T> { private int current = front; private int i; @Override public boolean hasNext() { return i < queue.length; } @Override public T next() { T value = queue[current]; current = (current + 1) % queue.length; i++; return value; } } }
×
×
  • Create New...