81 Considering my plan is to get it live one day, you probably get to see it one day
However, many things are not yet to my liking. The fact that it has turned into a school project (and thus I suddenly have pressure to work on it) has caused me to make some decisions that I rather not have made. Which on one hand is great as I have now learned that pressure to get something done effects my coding behavior, I would however have liked it if I found that out with another project though.
On the other hand, stuff is actually getting done right now instead of ending up in an dark abyss(?) of dead and decayed projects that I once started but lost interest in.
There are also some things that need to change in the future as I just lack the knowledge of those things right now. (one of which is that it is apparently possible for a browser to send stuff to another browser, which would help greatly in the turn logic as right now it just asks the server every second if a new turn has started.)
oh, btw the "bad" decisions I did shouldn't effect performance (well, except for the ping every second thing) but are mostly about not using the correct models or not being consistent with how I write queries. I used:
1, $result=$this->db->get_where()->row_array();
2, $this->db->select();
$this->db->from();
$this->db->where();
$query=$this->db->get();
$result=$query->row_array();
3, $result= $this->db->select()
->from()
->where()
->get()
->row_array();
Guess with which one I started and which ones I use now